input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "strin...
{"id" : 99318, "name" : "From WEB2B.by", "description" : "\u0423\u0437\u043a\u0430\u044f \u0448\u0430\u043f\u043a\u0430 \u0438 \u0437\u0430\u043c\u0435\u043d\u0430 \u043b\u043e\u0433\u043e\u0442\u0438\u043f\u0430 \u043d\u0430 gmail \u0438 \u0413\u0443\u0433\u043b-\u0434\u0438\u0441\u043a\u0435 \u043e\u0442 tut.by", "us...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "ob...
{"hash" : "0xe6d0d9ca77b677f60457e044b327c7c9455c66c87fb9a8351c8f587b5b785757", "parentHash" : "0xe5927360c633aa5a386ad99e0abf10c79d3ad175588834222e227401a80376cd", "number" : 101897, "timestamp" : 1439829719, "nonce" : "0x3b760000f899e618", "difficulty" : 3891890073716, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : ...
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"assessment": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "integer"}}, "required": ["name", "weight"]}}}, "required": ["assessment"], "$schema": ...
{"assessment" : [{"name" : "Participation and Attendance", "weight" : 4}, {"name" : "Tareas evaluadas", "weight" : 16}, {"name" : "Test 1", "weight" : 24}, {"name" : "Reading and Composition ", "weight" : 10}, {"name" : "Oral group presentation", "weight" : 22}, {"name" : "Test 2", "weight" : 24}]}
json_instruct
{"type": "object", "properties": {"assessment": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "integer"}}, "required": ["name", "weight"]}}}, "required": ["assessment"], "$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"}, "author": {"type": "string"}, "main": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "au...
{"name" : "ractive-decorators-noUiSlider", "version" : "0.1.0", "author" : "Jeremy Bouquain", "main" : "ractive-decorators-noUiSlider.js", "ignore" : ["**/.*", "src", "test", "Gruntfile.js"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "author", "main", "ignore"], "$schema": "http://json-schema.org/draft-07/schem...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "numb...
{"id" : "138136769", "name" : "Chatsworth Place", "nodes" : [{"type" : "node", "id" : 1514296783, "lat" : 52.5758007, "lon" : -0.279256}, {"type" : "node", "id" : 1514296785, "lat" : 52.5757909, "lon" : -0.2790468}, {"type" : "node", "id" : 3012135917, "lat" : 52.575766, "lon" : -0.2791459}], "volunteer_postcode" : "PE...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunte...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId"...
{"id" : "2011", "provinceId" : "12", "regencyId" : "78", "districtId" : "01", "name" : "Lolowonu Niko\\'otano"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"dataType": {"type": "string"}, "longName": {"type": "string"}, "hl7Table": {"type": "string"}}, "required": ["dataType", "longName", "hl7Table"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"dataType" : "CE", "longName" : "Health Care Provider Classification Code", "hl7Table" : "HL70453"}
json_instruct
{"type": "object", "properties": {"dataType": {"type": "string"}, "longName": {"type": "string"}, "hl7Table": {"type": "string"}}, "required": ["dataType", "longName", "hl7Table"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"Make": {"type": "string"}, "Model": {"type": "string"}, "Software": {"type": "string"}, "ExifOffset": {"type": "integer"}, "Compression": {"type": "integer"}, "ThumbnailOffset": {"type": "integer"}, "ThumbnailLength": {"typ...
{"Make" : " ", "Model" : "4MDSC", "Software" : "1.00{B0648}", "ExifOffset" : 148, "Compression" : 6, "ThumbnailOffset" : 796, "ThumbnailLength" : 3533, "ExposureTime" : 0.000933009889904833, "FNumber" : 5.14, "ISO" : 100, "DateTimeOriginal" : "2004/09/09 11:32:37", "CreateDate" : "2004/09/09 11:...
json_instruct
{"type": "object", "properties": {"Make": {"type": "string"}, "Model": {"type": "string"}, "Software": {"type": "string"}, "ExifOffset": {"type": "integer"}, "Compression": {"type": "integer"}, "ThumbnailOffset": {"type": "integer"}, "ThumbnailLength": {"type": "integer"}, "ExposureTime": {"type": "number"}, "FNumber":...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"success": {"type": "boolean"}, "code": {"type": "string"}, "data": {"type": "object", "properties": {"states": {"type": "null"}, "districts": {"type": "array", "items": {"type": "object", "properties": {"name": {"typ...
{"success" : true, "code" : "SUCCESS", "data" : {"states" : null, "districts" : [{"name" : "ludhiana", "registeredUsers" : 230404}, {"name" : "sas nagar", "registeredUsers" : 161605}, {"name" : "patiala", "registeredUsers" : 90123}, {"name" : "amritsar", "registeredUsers" : 82735}, {"name" : "jalandhar", "registeredUse...
json_instruct
{"type": "object", "properties": {"success": {"type": "boolean"}, "code": {"type": "string"}, "data": {"type": "object", "properties": {"states": {"type": "null"}, "districts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "registeredUsers": {"type": "integer"}}, "required": [...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "numb...
{"id" : "56471719", "name" : "Markham Walk", "nodes" : [{"type" : "node", "id" : 707264525, "lat" : 52.4841677, "lon" : -0.7204992}, {"type" : "node", "id" : 708095013, "lat" : 52.4846296, "lon" : -0.7211194}, {"type" : "node", "id" : 708095017, "lat" : 52.484708, "lon" : -0.7204757}, {"type" : "node", "id" : 708095020...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunte...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "background": {"type": "object", "properties": {"service_worker": {"type": "string"}}, "requ...
{"name" : "WebFSR", "description" : "Add FSR to all video and canvas elements", "version" : "0.1", "manifest_version" : 3, "background" : {"service_worker" : "webfsr.background.js"}, "content_scripts" : [{"matches" : ["*://*/*"], "js" : ["webfsr.imagefilter.js", "webfsr.content.js"], "run_at" : "document_idle"}], "perm...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "background": {"type": "object", "properties": {"service_worker": {"type": "string"}}, "required": ["service_worker"]}, "content_scripts": {"type": "ar...
Please provide a valid JSON object following this schema: {"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" : "3601130014", "district_id" : "3601130", "name" : "BABADSARI"}
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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "symfony/console": {"type": "string"}, "friendsofphp/php-cs-f...
{"name" : "prestashop/php-dev-tools", "description" : "PrestaShop coding standards", "license" : "MIT", "require" : {"php" : ">=5.6.0", "symfony/console" : "~3.2 || ~4.0 || ~5.0", "friendsofphp/php-cs-fixer" : "^2.14", "squizlabs/php_codesniffer" : "^3.4", "symfony/filesystem" : "~3.2 || ~4.0 || ~5.0", "prestashop/head...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "symfony/console": {"type": "string"}, "friendsofphp/php-cs-fixer": {"type": "string"}, "squizlabs/php_codesniffer": {"t...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"board_name": {"type": "string"}, "the_album": {"type": "string"}, "access_token": {"type": "string"}}, "required": ["board_name", "the_album", "access_token"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"board_name" : "Al cospetto dei Conti di Gorizia", "the_album" : "http://www.compagniadarmedelsantoluca.it/galleria-foto/al-cospetto-dei-conti-di-gorizia-gorizia-20-22-aprile-2018/", "access_token" : "put_here_your_token"}
json_instruct
{"type": "object", "properties": {"board_name": {"type": "string"}, "the_album": {"type": "string"}, "access_token": {"type": "string"}}, "required": ["board_name", "the_album", "access_token"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}...
{"schema_version" : "1.2.0", "id" : "GHSA-8wph-h4fh-v5wh", "modified" : "2022-05-01T23:28:30Z", "published" : "2022-05-01T23:28:30Z", "aliases" : ["CVE-2008-0224"], "details" : "SQL injection vulnerability in index.php in the Newbb_plus 0.92 and earlier module in RunCMS 1.6.1 allows remote attackers to execute arbitrar...
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "a...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[-5.081, 35.435], [-5.125, 35.418], [-5.136, 35.397], [-5.172, 35.375], [-5.193, 35.323], [-5.214, 35.298], [-5.205, 35.262], [-5.227, 35.252], [-5.253, 35.225], [-5.301, 35.224], [-5.317, 35.237], [-5.347, 35.235], [-5.379, 35.215], [-5.439, 35.2...
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": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob...
Please provide a valid JSON object following this schema: {"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": "...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-70.268697, 43.657285], [-70.266076, 43.657717], [-70.26847, 43.660053], [-70.265413, 43.661877], [-70.266313, 43.662959], [-70.260966, 43.665789], [-70.25554, 43.661537], [-70.265517, 43.655631], [-70.264137, 43.654672],...
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...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "string"}, "SERIES_NAME": {"type": "string"}, "X_CALENDAR_YEAR": {"type": "integer"}, "Y_PREVALENCE_1000PP": {"type": "number"}}, "requir...
{"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : "80-89", "SERIES_NAME" : "FEMALE", "X_CALENDAR_YEAR" : 2012, "Y_PREVALENCE_1000PP" : 0.04827}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : 201207, "Y_PREVALENCE_1000PP" : 0.00255}, "CONDITIONS_BY_TYPE" : {"CONCEPT_NAME" : "Observation recorded from EHR", "COUNT_VAL...
json_instruct
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "string"}, "SERIES_NAME": {"type": "string"}, "X_CALENDAR_YEAR": {"type": "integer"}, "Y_PREVALENCE_1000PP": {"type": "number"}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "...
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" : "sempervirent", "definition" : "Always fresh; evergreen. [R.] Smart."}
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": {"900687816": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900687817": {"type": "object", "properties":...
{"900687816" : {"nama" : "TPS 1", "dapil" : [6401, 16403, 2640102]}, "900687817" : {"nama" : "TPS 2", "dapil" : [6401, 16403, 2640102]}, "900687818" : {"nama" : "TPS 3", "dapil" : [6401, 16403, 2640102]}, "900687819" : {"nama" : "TPS 4", "dapil" : [6401, 16403, 2640102]}, "900687820" : {"nama" : "TPS 5", "dapil" : [640...
json_instruct
{"type": "object", "properties": {"900687816": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900687817": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"content": {"type": "boolean"}}, "required": ["content"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "5d7d2acd9ce97efbf535", "c" : {"content" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"content": {"type": "boolean"}}, "required": ["content"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"AssamblyConfigurations": {"type": "array", "items": {"type": "object", "properties": {"Assambly": {"type": "string"}, "AssamblyDependencies": {"type": "array", "items": {}}, "Guid": {"type": "string"}}, "required": ["Assambly"...
{"AssamblyConfigurations" : [{"Assambly" : "ManualDi.Main", "AssamblyDependencies" : [], "Guid" : "2831785f1fa04efeb10b7d72b2e32628"}], "IgnorePaths" : ["[Bb]in/", "[Oo]bj/", ".git/", ".vs/", "ManualDi.Main.Tests/", "ManualDi.Main/Properties/", ".github/"]}
json_instruct
{"type": "object", "properties": {"AssamblyConfigurations": {"type": "array", "items": {"type": "object", "properties": {"Assambly": {"type": "string"}, "AssamblyDependencies": {"type": "array", "items": {}}, "Guid": {"type": "string"}}, "required": ["Assambly", "AssamblyDependencies", "Guid"]}}, "IgnorePaths": {"type"...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "str...
{"name" : "University of Liberia", "alt_name" : "(UL)", "country" : "Liberia", "state" : null, "address" : {"street" : "PO Box 9020, Capitol Hill", "city" : "Monrovia", "province" : "Montserrado County", "postal_code" : "231"}, "contact" : {"telephone" : "+231(22) 6418 +231(22) 6418", "website" : "http://www.university...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "static/css/1.f962b925.chunk.css": {"type": "string"}, "static/js/1.612035a4.chunk.js": {"type": "string"}, "static/js/1.612035a4...
{"main.css" : "/advent-of-code-2018/static/css/main.4e2c2334.chunk.css", "main.js" : "/advent-of-code-2018/static/js/main.ba922b19.chunk.js", "main.js.map" : "/advent-of-code-2018/static/js/main.ba922b19.chunk.js.map", "static/css/1.f962b925.chunk.css" : "/advent-of-code-2018/static/css/1.f962b925.chunk.css", "static/j...
json_instruct
{"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "static/css/1.f962b925.chunk.css": {"type": "string"}, "static/js/1.612035a4.chunk.js": {"type": "string"}, "static/js/1.612035a4.chunk.js.map": {"type": "string"}, "runtime~main.js": {"ty...
The schema below describes a JSON structure. Generate a valid example: {"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"}}, "typ...
{"id" : 66661678, "name" : "Royal Knight of the Ice Barrier", "is_illegal" : false, "is_custom" : false, "text" : "When this card is Tribute Summoned, Special Summon 1 \"Ice Coffin Token\" (Aqua-Type/WATER/Level 1/ATK 1000/DEF 0) in Attack Position to your opponent's side of the field. This Token cannot be Tributed for...
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":...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv",...
{"place_name" : "Liberty", "state_name" : "Kansas", "state_abbrv" : "KS", "lat" : "37.1576", "long" : "-95.6017"}
json_instruct
{"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "a2fcadd6af2e327b3ae2", "c" : {}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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": "integ...
{"nom" : "Poinson-l\u00e8s-Grancey", "circ" : "1\u00e8re circonscription", "dpt" : "Haute-Marne", "inscrits" : 45, "abs" : 17, "votants" : 28, "blancs" : 1, "nuls" : 1, "exp" : 26, "res" : [{"nuance" : "LR", "nom" : "M. Adrien GUEN\u00c9", "voix" : 15}, {"nuance" : "REM", "nom" : "Mme B\u00e9rang\u00e8re ABBA", "voix" ...
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"...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferre...
{"userId" : 13829, "cartId" : "8d0e69d9-0a4d-4f3b-8e78-686ee213be86", "preferredProducts" : [1017, 2570, 4840], "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....
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"imports": {"type": "array", "items": {"type": "string"}}, "global": {"type": "object", "properties": {"type": {"type": "string"}, "category": {"type": "string"}}, "required": ["type", "category"]}, "props": {...
{"imports" : ["./aliases.json"], "global" : {"type" : "size", "category" : "elevation"}, "props" : {"ELEVATION_XS" : {"value" : "{!ELEVATION_XS}"}, "ELEVATION_SM" : {"value" : "{!ELEVATION_SM}"}, "ELEVATION_BASE" : {"value" : "{!ELEVATION_BASE}"}, "ELEVATION_LG" : {"value" : "{!ELEVATION_LG}"}, "ELEVATION_XL" : {"value...
json_instruct
{"type": "object", "properties": {"imports": {"type": "array", "items": {"type": "string"}}, "global": {"type": "object", "properties": {"type": {"type": "string"}, "category": {"type": "string"}}, "required": ["type", "category"]}, "props": {"type": "object", "properties": {"ELEVATION_XS": {"type": "object", "properti...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"*": {"type": "object", "properties": {"*": {"type": "array", "items": {"type": "string"}}}, "required": ["*"]}}, "required": ["*"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"*" : {"*" : ["cson", "dicttoxml", "xmltodict"]}}
json_instruct
{"type": "object", "properties": {"*": {"type": "object", "properties": {"*": {"type": "array", "items": {"type": "string"}}}, "required": ["*"]}}, "required": ["*"], "$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"}, "dependencies": {"type": "object", "properties": {"koa": {"type": "string"}, "koa-body": ...
{"name" : "uploadfile", "version" : "1.0.0", "description" : "", "main" : "index.js", "dependencies" : {"koa" : "^2.11.0", "koa-body" : "^4.1.1", "koa-router" : "^8.0.8", "qrcode" : "^1.4.4"}, "devDependencies" : {}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"koa": {"type": "string"}, "koa-body": {"type": "string"}, "koa-router": {"type": "string"}, "qrcode": {"type": "s...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type":...
{"private" : true, "name" : "@svg2jsx/app", "version" : "1.0.0", "description" : "The svg2jsx UI", "main" : "server.js", "license" : "MIT", "dependencies" : {"@svg2jsx/transform" : "1.0.0", "axios" : "0.19.2", "brace" : "0.11.1", "next" : "9.3.5", "pretty" : "2.0.0", "prop-types" : "15.7.2", "react" : "16.13.1", "react...
json_instruct
{"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@svg2jsx/transform": {"type": "string"}, "axios": ...
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["110109003003", "\u5317\u6da7\u6c9f\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["110109003006", "\u6cb3\u5357\u8857\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["110109003016", "\u5efa\u8bbe\u8857\u793e\u533a\u5c45\u59d4\u4f1a", "123", "0"], ["110109003017", "\u77ff\u5efa\u8857\u793e\u533a\u5c45\u59d4\u4f1a", "111...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["440111016001", "\u8427\u5c97\u5357\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["440111016002", "\u8427\u5c97\u5317\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["440111016003", "\u8427\u5c97\u82b1\u56ed\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["440111016004", "\u660e\u73e0\u793e\u533a\u5c45\u59d4\u4f1a", "111...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"activePlaceCount": {"type": "integer"}, "birth": {"type": "object", "properties": {"place": {"type": "object", "properties": {"name": {"type": "string"}, "placeName": {"type": "string"}, "placeType": {"type": "stri...
{"activePlaceCount" : 0, "birth" : {"place" : {"name" : "London, United Kingdom", "placeName" : "London", "placeType" : "inhabited_place"}, "time" : {"startYear" : 1840}}, "date" : "1840\u20131921", "death" : {"place" : {"name" : "London, United Kingdom", "placeName" : "London", "placeType" : "inhabited_place"}, "time"...
json_instruct
{"type": "object", "properties": {"activePlaceCount": {"type": "integer"}, "birth": {"type": "object", "properties": {"place": {"type": "object", "properties": {"name": {"type": "string"}, "placeName": {"type": "string"}, "placeType": {"type": "string"}}, "required": ["name", "placeName", "placeType"]}, "time": {"type"...
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" : "230184400412", "text" : "\u767d\u77f3\u782c\u7ecf\u8425\u6240\u793e\u533a"}, {"id" : "230184400414", "text" : "\u957f\u5f81\u7ecf\u8425\u6240\u793e\u533a"}, {"id" : "230184400415", "text" : "\u51e4\u51f0\u5c71\u7ecf\u8425\u6240\u793e\u533a"}, {"id" : "230184400417", "text" : "\u94c1\u5c71\u7ecf\u8425\u6240\u7...
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": {"failed_steps": {"type": "string"}, "slave": {"type": "string"}, "results": {"type": "integer"}, "sourceStamp": {"type": "object", "properties": {"branch": {"type": "string"}, "changes": {"type": "array", "items": ...
{"failed_steps" : "<strong>steps</strong> and <strong>gn_check</strong>", "slave" : "build24-a1", "results" : 2, "sourceStamp" : {"branch" : "master", "changes" : [{"at" : "Wed 10 Aug 2015 14:27:50", "branch" : "master", "comments" : "Latest build is red.\n\nThis CL indicates the latest build is red.\n\nBUG=504558\n\nR...
json_instruct
{"type": "object", "properties": {"failed_steps": {"type": "string"}, "slave": {"type": "string"}, "results": {"type": "integer"}, "sourceStamp": {"type": "object", "properties": {"branch": {"type": "string"}, "changes": {"type": "array", "items": {"type": "object", "properties": {"at": {"type": "string"}, "branch": {"...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"471011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "count": {"type": "integer"}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "requir...
{"471011" : {"count" : 1}, "count" : 23, "N.A.//" : {"count" : 18}, "119051" : {"count" : 1}, "113121" : {"count" : 1}, "472061" : {"count" : 1}, "414010" : {"count" : 1}}
json_instruct
{"type": "object", "properties": {"471011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "count": {"type": "integer"}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "119051": {"type": "object", "properties": {"count": {"typ...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"polymer": {"type": "string"}, "autobahnjs": {"type": "string"}}, "required": ["polyme...
{"name" : "autobahn-connection", "description" : "webcomponents wrapper around autobahnjs, for pubsub and rpc comms over websockets", "main" : "autobahn-connection.html", "dependencies" : {"polymer" : "Polymer/polymer#^1.4.0", "autobahnjs" : "autobahn#^0.11.1"}, "devDependencies" : {"iron-component-page" : "PolymerElem...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"polymer": {"type": "string"}, "autobahnjs": {"type": "string"}}, "required": ["polymer", "autobahnjs"]}, "devDependencies": {"type": "object", "...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/...
{"id" : "170702011101", "variable1" : 0.98, "variable2" : 0.2722, "variable3" : "C"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"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" : "3522070014", "district_id" : "3522070", "name" : "GLAGAH WANGI"}
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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"serverListeningPort": {"type": "integer"}, "mongoServerUrl": {"type": "string"}, "loginResponseDelay": {"type": "integer"}, "automaticRegistration": {"type": "boolean"}, "minimumPasswordStrength": {"type": "integer"}...
{"serverListeningPort" : 8080, "mongoServerUrl" : "mongodb://mongo:27017/mobdisttool", "loginResponseDelay" : 1000, "automaticRegistration" : false, "minimumPasswordStrength" : 4, "jwtSecretToken" : "DONT_FORGET_TO_CHANGE_IT", "enableCompression" : false}
json_instruct
{"type": "object", "properties": {"serverListeningPort": {"type": "integer"}, "mongoServerUrl": {"type": "string"}, "loginResponseDelay": {"type": "integer"}, "automaticRegistration": {"type": "boolean"}, "minimumPasswordStrength": {"type": "integer"}, "jwtSecretToken": {"type": "string"}, "enableCompression": {"type":...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"_id": {"type": "string"}, "brewery": {"type": "string"}, "name": {"type": "string"}, "category": {"type": "string"}, "style": {"type": "string"}, "updated": {"type": "string"}}, "required": ["_id", "brewery", "nam...
{"_id" : "beer_Festive_Ale_2000", "brewery" : "Empyrean Brewing Company", "name" : "Festive Ale 2000", "category" : "North American Ale", "style" : "American-Style Pale Ale", "updated" : "2010-07-22 20:00:20"}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "brewery": {"type": "string"}, "name": {"type": "string"}, "category": {"type": "string"}, "style": {"type": "string"}, "updated": {"type": "string"}}, "required": ["_id", "brewery", "name", "category", "style", "updated"], "$schema": "http://json-schema.org/...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"model": {"type": "string"}, "dataset": {"type": "string"}, "rmse_train": {"type": "number"}, "rmse_test": {"type": "number"}, "log_score_train": {"type": "number"}, "log_score_test": {"type": "number"}, "crps_train": {"type": "n...
{"model" : "PNN-E", "dataset" : "powerplant", "rmse_train" : 4.035161859117315, "rmse_test" : 3.845210223719116, "log_score_train" : -2.793496641200239, "log_score_test" : -2.765001837080706, "crps_train" : 2.1953642681155063, "crps_test" : 2.157472629765289, "picp_train" : 0.9714352066883418, "picp_test" : 0.973849372...
json_instruct
{"type": "object", "properties": {"model": {"type": "string"}, "dataset": {"type": "string"}, "rmse_train": {"type": "number"}, "rmse_test": {"type": "number"}, "log_score_train": {"type": "number"}, "log_score_test": {"type": "number"}, "crps_train": {"type": "number"}, "crps_test": {"type": "number"}, "picp_train": {...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "version": {"type": "string"}, "unity": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependenci...
{"name" : "com.unity.2d.pixel-perfect", "displayName" : "2D Pixel Perfect", "version" : "1.0.1-preview", "unity" : "2018.2", "description" : "The 2D Pixel Perfect package contains the Pixel Perfect Camera component which ensures your pixel art remains crisp and clear at different resolutions, and stable in motion.\n\nI...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "version": {"type": "string"}, "unity": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {}, "required": []}...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.or...
{"towns" : [{"name" : "Karaunkur", "url" : "karaunkur"}]}
json_instruct
{"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"from": {"type": "string"}, "name": {"type": "string"}, "num": {"type": "integer"}, "comps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "place": {"type": "string"}, ...
{"from" : " , ", "name" : "PatronumBots", "num" : 5972, "comps" : [{"name" : "WI FTC Championship Tournament", "place" : "UWM Union Ballroom", "date" : "02-Feb-13", "highest" : 165, "QP" : 6, "RP" : 188, "matches" : 5}, {"name" : "Indiana State FTC Championship Tournament", "place" : "Crawfordsville High School", "...
json_instruct
{"type": "object", "properties": {"from": {"type": "string"}, "name": {"type": "string"}, "num": {"type": "integer"}, "comps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "place": {"type": "string"}, "date": {"type": "string"}, "highest": {"type": "integer"}, "QP": {"type": ...
Create a JSON structure that matches this 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": {"t...
{"ast" : null, "code" : "import _classCallCheck from\"D:/RelateDate2/temp/rd-dashboard/node_modules/babel-preset-react-app/node_modules/@babel/runtime/helpers/esm/classCallCheck\";import _createClass from\"D:/RelateDate2/temp/rd-dashboard/node_modules/babel-preset-react-app/node_modules/@babel/runtime/helpers/esm/creat...
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"}, "sourcesCont...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"station_g": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_name": {"type"...
{"station_g" : [{"pref_cd" : 7, "line_cd" : 11227, "line_name" : "JR\u53ea\u898b\u7dda", "station_cd" : 1122703, "station_name" : "\u897f\u82e5\u677e"}, {"pref_cd" : 7, "line_cd" : 99216, "line_name" : "\u4f1a\u6d25\u9244\u9053\u4f1a\u6d25\u7dda", "station_cd" : 9921601, "station_name" : "\u897f\u82e5\u677e"}]}
json_instruct
{"type": "object", "properties": {"station_g": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_name": {"type": "string"}}, "required": ["pref_cd", "line_cd", "line_na...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"face_keypoints": {"type": "array", "items": {}}, "pose_keypoints": {"type": "array", "items": {"type": "number"}}, "hand_right...
{"version" : 1.0, "people" : [{"face_keypoints" : [], "pose_keypoints" : [101.291338582677, 39.5636363636364, 0.912651747465134, 90.9606299212598, 84.7127272727273, 0.767116248607635, 54.4251968503937, 83.0836363636364, 0.61839471757412, 48.3779527559055, 141.730909090909, 0.751101210713387, 49.8897637795276, 199.44727...
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"face_keypoints": {"type": "array", "items": {}}, "pose_keypoints": {"type": "array", "items": {"type": "number"}}, "hand_right_keypoints": {"type": "array", "items": {}}, "hand_left_k...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "strin...
{"stationId" : 2800505, "stationGroupId" : 1130217, "name" : "\u897f\u65e5\u66ae\u91cc", "lineId" : 28005, "zipCode" : "116-0013", "pref" : "\u6771\u4eac\u90fd", "city" : "\u8352\u5ddd\u533a", "town" : "\u897f\u65e5\u66ae\u91cc", "longitude" : 139.766511, "latitude" : 35.732257, "status" : 0}
json_instruct
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latit...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type"...
{"name" : "next-react-server-component", "version" : "0.1.0", "private" : true, "engines" : {"node" : ">=14.9.0"}, "repository" : "https://github.com/yellowbeee/next-react-server-component", "scripts" : {"dev" : "cross-env NODE_OPTIONS='--conditions=react-server' next dev", "build" : "next build", "start" : "next start...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "st...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"piece": {"type": "string"}, "moves": {"type": "object", "properties": {}, "required": []}}, "required": ["piece", "moves"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"piece" : "p", "moves" : {}}
json_instruct
{"type": "object", "properties": {"piece": {"type": "string"}, "moves": {"type": "object", "properties": {}, "required": []}}, "required": ["piece", "moves"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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": "i...
{"id" : 101782545, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "4a58952b3d5cad79dbeb971250fe060c", "wof:id" : 101782545, "wof:repo" : "whosonfirst-data-admin-ro"}, "bbox" : [26.812242, 47.394043, 26.848394, 47.410339], "geometry" : {"coordinates"...
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": ["...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "...
{"version" : 1.2, "people" : [{"pose_keypoints_2d" : [412.894, 206.727, 0.916429, 454.66, 245.942, 0.840021, 422.119, 247.157, 0.861577, 412.892, 302.002, 0.724231, 390.703, 311.11, 0.80907, 485.99, 247.191, 0.770542, 485.984, 321.571, 0.819273, 422.036, 318.986, 0.88587, 419.464, 377.685, 0.60647, 389.443, 465.162, 0....
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "han...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"gender": {"type": "string"}, "name": {"type": "object", "properties": {"title": {"type": "string"}, "first": {"type": "string"}, "last": {"type": "string"}}, "required": ["title", "first", "last"]}, "location": {"t...
{"gender" : "female", "name" : {"title" : "ms", "first" : "jelke", "last" : "karssen"}, "location" : {"street" : "6458 herenstraat", "city" : "enkhuizen", "state" : "zeeland", "postcode" : 42982}, "email" : "jelke.karssen@example.com", "login" : {"username" : "purpleleopard978", "password" : "snuggles", "salt" : "ZXqbP...
json_instruct
{"type": "object", "properties": {"gender": {"type": "string"}, "name": {"type": "object", "properties": {"title": {"type": "string"}, "first": {"type": "string"}, "last": {"type": "string"}}, "required": ["title", "first", "last"]}, "location": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"bbox": {"type": "string"}, "used": {"type": "boolean"}, "class_name": {"type": "string"}}, "required": ["bbox", "used", "class_name"]}, "$schema": "http://json-schema.org/draft-07/schema...
[{"bbox" : "163 219 206 276", "used" : true, "class_name" : "aeroplane"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"bbox": {"type": "string"}, "used": {"type": "boolean"}, "class_name": {"type": "string"}}, "required": ["bbox", "used", "class_name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"author": {"type": "array", "items": {"type": "string"}}, "install_msg": {"type": "string"}, "name": {"type": "string"}, "short": {"type": "string"}, "requirements": {"type": "array", "items": {"type": "string"}}, "description": ...
{"author" : ["Flame442 (Flame#2941)"], "install_msg" : "Thanks for installing deepfry. Use `[p]deepfry` or `[p]nuke`.", "name" : "Deepfry", "short" : "Deepfry or nuke images.", "requirements" : ["pillow"], "description" : "Deepfry or nuke images passively and actively.", "permissions" : ["Send Messages", "Attach Files"...
json_instruct
{"type": "object", "properties": {"author": {"type": "array", "items": {"type": "string"}}, "install_msg": {"type": "string"}, "name": {"type": "string"}, "short": {"type": "string"}, "requirements": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "permissions": {"type": "array", "ite...
Generate a valid JSON object that conforms to the following 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": "s...
{"text" : {"0" : {"m1" : "\u06af\u0631 \u062a\u0648 \u0639\u0627\u0631\u0641 \u0634\u0648\u06cc \u0634\u0648\u06cc \u0628\u062e\u0634\u06cc", "m2" : "\u0627\u06cc\u0646 \u0686\u0646\u06cc\u0646 \u0639\u0627\u0631\u0641\u06cc \u0628\u0647 \u0627\u0631 \u0628\u062e\u0634\u06cc"}, "1" : {"m1" : "\u0647\u0631\u0686\u0647 \...
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"]}}, "requ...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1893, 5], [1901, 9], [1907, 7], [1908, 6], [1912, 9], [1913, 14], [1914, 8], [1915, 23], [1916, 22], [1917, 15], [1918, 24], [1919, 24], [1920, 34], [1921, 33], [1922, 27], [1923, 24], [1924, 36], [1925, 24], [1926, 28], [1927, 27], [1928, 20], [1929, 28], [1930, 18], [1931, 11], [1933, 13], [1934, 20], [1935, 13], [...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "src": {"type": "string"}}, "required": ["name", "src"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "Radio De Blauwe Klomp", "src" : "http://radio.deblauweklomp.nl:8040/;?t=1526281359"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "src": {"type": "string"}}, "required": ["name", "src"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"defs": {"type": "array", "items": {"type": "object", "properties": {"defName": {"type": "string"}, "query": {"type": "string"}}, "required": ["defName", "query"]}}, "packs": {"type": "array", "items": {"type": "ob...
{"defs" : [{"defName" : "por", "query" : "from[*]?set='por"}, {"defName" : "por-basic-land", "query" : "from[por]?type='Basic Land'"}, {"defName" : "por-main", "query" : "from[por]-from[por-basic-land]-from[*]?usableForDeckBuilding=false"}], "packs" : [{"packName" : "por-all-cards", "packDesc" : "Portal: All Cards", "i...
json_instruct
{"type": "object", "properties": {"defs": {"type": "array", "items": {"type": "object", "properties": {"defName": {"type": "string"}, "query": {"type": "string"}}, "required": ["defName", "query"]}}, "packs": {"type": "array", "items": {"type": "object", "properties": {"packName": {"type": "string"}, "packDesc": {"type...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"label": {"type": "string"}, "id": {"type": "string"}, "_sink": {"type": "string"}, "_sinkLabel": {"type": "string"}, "_vertexId": {"type": "string"}, "_vertexLabel": {"type": "string"}, "_isEdge": {"type": "boolean"...
{"label" : "seenIn", "id" : "5a2b17a3-f38d-4d46-935e-42f8c8e27dea", "_sink" : "1e0f3c0a-e56e-4e74-abf2-b61674ba18c8", "_sinkLabel" : "comic", "_vertexId" : "b3df2db6-0004-4b29-a0bf-ddf6215e29c7", "_vertexLabel" : "hero", "_isEdge" : true, "_rid" : "VyAjAPMRAAACAgAAAAAAAA==", "_self" : "dbs/VyAjAA==/colls/VyAjAPMRAAA=/d...
json_instruct
{"type": "object", "properties": {"label": {"type": "string"}, "id": {"type": "string"}, "_sink": {"type": "string"}, "_sinkLabel": {"type": "string"}, "_vertexId": {"type": "string"}, "_vertexLabel": {"type": "string"}, "_isEdge": {"type": "boolean"}, "_rid": {"type": "string"}, "_self": {"type": "string"}, "_etag": {...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : " Determine the slope between two points that are fractions\n\n\n\n\n", "url" : "https://www.youtube.com/watch?v=V1qV70I2xvc"}
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map...
{"ast" : null, "code" : "export var tanhDocs = {\n name: 'tanh',\n category: 'Trigonometry',\n syntax: ['tanh(x)'],\n description: 'Compute the hyperbolic tangent of x in radians.',\n examples: ['tanh(0.5)', 'sinh(0.5) / cosh(0.5)'],\n seealso: ['sinh', 'cosh']\n};", "map" : null, "metadata" : {}, "sourceType" : ...
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/s...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "workspaces": {"type": "array", "items": {"type": "string"}}, "resolutions": {"typ...
{"repository" : "https://github.com/polkadot-js/tools", "author" : "Jaco Greeff <jacogr@gmail.com>", "license" : "Apache-2", "private" : true, "workspaces" : ["packages/*"], "resolutions" : {"@polkadot/api" : "^1.33.0-beta.0", "@polkadot/api-derive" : "^1.33.0-beta.0", "@polkadot/keyring" : "^3.4.1", "@polkadot/types" ...
json_instruct
{"type": "object", "properties": {"repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "workspaces": {"type": "array", "items": {"type": "string"}}, "resolutions": {"type": "object", "properties": {"@polkadot/api": {"type": "string"}, "@polkadot/...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "null"}, "state": {"type": "str...
{"name" : "Volksschule Augsburg-Hammmerschmiede", "id" : "BY-8519", "address" : "Pappelweg 8 86169 Augsburg", "school_type" : "Grundschule", "fax" : "0821 3242585", "phone" : "0821 3242581", "website" : null, "state" : "BY", "programs" : {"programs" : []}, "full_time_school" : false, "lon" : 10.914167, "lat" : 48.40134...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "null"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"progr...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"description": {"type": "string"}, "recorded": {"type": "string"}, "language": {"type": "string"}, "duration": {"type": "integer"}, "related_urls": {"type": "array", "items": {"type": "object", "properties": {"label": {"type...
{"description" : "Cette ann\u00e9e, le premier crawler de Google (\u00e9crit en Python 1.2 !) f\u00eate ses 20 ans ... Il a depuis longtemps \u00e9t\u00e9 remplac\u00e9 par des versions en C++, mais comment s'y prendrait-on, en 2016, s'il fallait tout recommencer de z\u00e9ro ?\nJe pr\u00e9senterai dans en premier temp...
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "recorded": {"type": "string"}, "language": {"type": "string"}, "duration": {"type": "integer"}, "related_urls": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "url": {"type": "string"}}, "required": ["label"...
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": {"build": {"type": "string"}, "lint": {"type": "...
{"name" : "cards-moving-automation", "version" : "1.0.0", "description" : "Automate that cards of GitHub Project move to any column with expiration", "main" : "index.js", "scripts" : {"build" : "ncc build index.js -m", "lint" : "eslint .", "test" : "jest --coverage --verbose"}, "repository" : {"type" : "git", "url" : "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "lint": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "lint", "te...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "azogue", "definition" : "Lit.: Quicksilver; hence: pl. (Mining) Silver ores suitable for treatment by amalgamation with mercury. [Sp. Amer.]"}
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": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1938, 5], [1940, 5], [1941, 7], [1942, 7], [1946, 5], [1948, 8], [1949, 7], [1950, 5], [1951, 7], [1952, 5], [1956, 6], [1957, 9], [1958, 9], [1961, 5], [1966, 5], [1968, 6], [1978, 5], [1983, 5], [1986, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"model": {"type": "string"}, "pk": {"type": "integer"}, "fields": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["model", "pk", "fields"]}, "$schem...
[{"model" : "sts.state", "pk" : 1, "fields" : {"name" : "(In Transition)"}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"model": {"type": "string"}, "pk": {"type": "integer"}, "fields": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["model", "pk", "fields"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"apiTitle": {"type": "string"}, "apiVersion": {"type": "string"}, "apiFileName": {"type": "string"}, "apiFormat": {"type": "string"}, "measurementDate": {"type": "string"}, "measurement": {"type": "array", "items": {"...
{"apiTitle" : "NPR Authorization Service", "apiVersion" : "2", "apiFileName" : "npr.org-authorization-2-swagger.yaml", "apiFormat" : "OPENAPI", "measurementDate" : "2019/12/13", "measurement" : [{"metricName" : "DataWeight", "metricValue" : 65.0}, {"metricName" : "ArgumentsPerOperation", "metricValue" : 2.25}, {"metric...
json_instruct
{"type": "object", "properties": {"apiTitle": {"type": "string"}, "apiVersion": {"type": "string"}, "apiFileName": {"type": "string"}, "apiFormat": {"type": "string"}, "measurementDate": {"type": "string"}, "measurement": {"type": "array", "items": {"type": "object", "properties": {"metricName": {"type": "string"}, "me...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "emai...
{"name" : "yahiru/entity-factory", "description" : "Create entities", "type" : "library", "license" : "MIT", "authors" : [{"name" : "yuhei yoshida", "email" : "yahiru1121@gmail.com"}], "autoload" : {"psr-4" : {"Yahiru\\EntityFactory\\" : "src/"}}, "autoload-dev" : {"psr-4" : {"Yahiru\\EntityFactory\\Tests\\" : "tests/"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"ty...
{"name" : "laravel-books-api", "description" : "Laravel Books API Demo", "version" : "1.0", "homepage" : "http://www.bitclaw.com", "license" : "MIT", "private" : true, "dependencies" : {"angular-mocks" : "1.4.10", "jquery" : "2.1.4", "bootstrap" : "3.3.6", "angular-bootstrap" : "1.0.3", "angular" : "1.4.9", "angular-an...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"angular-mocks": {"type": "string"}, "jquery": ...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"xywh": {"type": "string"}}, "required": ["xywh"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"xywh" : "945,3427,3895,515"}
json_instruct
{"type": "object", "properties": {"xywh": {"type": "string"}}, "required": ["xywh"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-0...
{"word" : "Abhor", "definitions" : ["detest"], "parts-of-speech" : "Verb"}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"p": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "s": {"typ...
{"type" : "minecraft:crafting_shaped", "pattern" : ["ppp", "psp", "pdp"], "key" : {"p" : {"item" : "minecraft:phantom_membrane"}, "s" : {"item" : "minecraft:nether_star"}, "d" : {"item" : "minecraft:dragon_breath"}}, "result" : {"item" : "minecraft:elytra", "count" : 1}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"p": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "s": {"type": "object", "properties": {"item": {"type": "string"}},...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "o...
{"hash" : "0xb85fc957b84391006c581a6c3b3f7f603ce8949af293d41704a180e2f816b7cc", "parentHash" : "0xc90b7ca70f3e070824399100d7baeb45b7f83e3aa575d9981dfd4c2bb7485c40", "number" : 72063, "timestamp" : 1439346629, "nonce" : "0xead389611d4fa13f", "difficulty" : 2159070760707, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {...
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]...
The schema below describes a JSON structure. Generate a valid example: {"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":...
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Poblacion, Mansalay, Oriental Mindoro, MIMAROPA (Region IV-B), PH", "locale" : "ph.mimaropa-region-iv-b.oriental-mindoro.mansalay.poblacion", "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": {...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"...
{"type" : "MultiPolygon", "coordinates" : [[[[-3.09239387512207, 40.3544172817439], [-3.22983026504517, 40.6139524411666], [-4.229736328125, 40.5638956111022], [-4.05309677124023, 40.3544172817439], [-3.09239387512207, 40.3544172817439]]], [[[-2.384033203125, 40.3544172817439], [-2.384033203125, 40.6139524411666], [-2....
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"is_valid": {"type": "boolean"}, "is_simple": {"type": "boolean...
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"meeting_cd": {"type": "string"}, "committee": {"type": "string"}, "dttm": {"type": "string"}, "session": {"type": "string"}, "bill_name": {"type": "string"}, "bill_cd": {"type": "string"}, ...
[{"meeting_cd" : "C5402009043012001", "committee" : "Finance", "dttm" : "April 30, 2009 - 12:00 PM or upon adjournment", "session" : "81R", "bill_name" : "SB\u00a0\u00a0763", "bill_cd" : "SB763", "position" : "On", "rbnt" : false, "self" : false, "fullWitnessName" : "Pigott, Ron\u00a0\u00a0 Director, TX Procurement & S...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"meeting_cd": {"type": "string"}, "committee": {"type": "string"}, "dttm": {"type": "string"}, "session": {"type": "string"}, "bill_name": {"type": "string"}, "bill_cd": {"type": "string"}, "position": {"type": "string"}, "rbnt": {"type": "boolean"}, "self": ...
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": ["t...
{"name" : "WiiUSSU", "version" : "1.0.0", "description" : "A self-hosted website to upload screenshots from a Wii U.", "main" : "app.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "snuggles08", "license" : "MIT", "dependencies" : {"express" : "^4.13.3", "fs-extra" : "^0.24.0", "mi...
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"]}, "author": {"type": "string"}, "license": {"type": "string"}, "depen...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"assessment": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "integer"}}, "required": ["name", "weight"]}}}, "required": ["assessment"], "$schema": "http:/...
{"assessment" : [{"name" : "Tutorial exercises and discussion", "weight" : 10}, {"name" : "Notes from an interview with a workplace writer", "weight" : 10}, {"name" : "Original style guide entry", "weight" : 15}, {"name" : "In-class editing test", "weight" : 30}, {"name" : "Article for a professional publication", "wei...
json_instruct
{"type": "object", "properties": {"assessment": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "integer"}}, "required": ["name", "weight"]}}}, "required": ["assessment"], "$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"}, "rakamlarNumaraSi...
{"oid" : "on_2005-08-15", "hafta" : 158, "buyukIkramiyeKazananIl" : "", "cekilisTarihi" : "15/08/2005", "cekilisTuru" : "ON_NUMARA", "rakamlar" : "03#10#13#14#15#17#18#19#24#26#27#34#37#40#48#52#59#61#62#71#74#78", "rakamlarNumaraSirasi" : "3 - 10 - 13 - 14 - 15 - 17 - 18 - 19 - 24 - 26 - 27 - 34 - 37 - 40 - 48 - 52 - ...
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"}, "d...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"success_message": {"type": "string"}, "fail_message": {"type": "string"}, "form": {"type": "object", "properties": {"title": {"type": "string"}, "diemCurrency": {"type": "string"}, "diemCurrency_placeholder": {"type"...
{"success_message" : "Your transaction is on the way!", "fail_message" : "Failed to send transaction", "form" : {"title" : "Send Money", "diemCurrency" : "currency", "diemCurrency_placeholder" : "Select a currency", "fiatCurrency" : "fiat currency", "amount" : "Amount", "price" : "currently equal to", "address" : "reci...
json_instruct
{"type": "object", "properties": {"success_message": {"type": "string"}, "fail_message": {"type": "string"}, "form": {"type": "object", "properties": {"title": {"type": "string"}, "diemCurrency": {"type": "string"}, "diemCurrency_placeholder": {"type": "string"}, "fiatCurrency": {"type": "string"}, "amount": {"type": "...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"alpha": {"type": "integer"}, "beta": {"type": "integer"}, "data": {"type": "array", "items": {"type": "integer"}}, "expected": {"type": "array", "items": {"type": "number"}}}, "required": ["alpha", "beta", "d...
{"alpha" : 1, "beta" : 3, "data" : [5, 8, 10, 15, 20], "expected" : [0.4, 0.625, 0.7, 0.8, 0.85]}
json_instruct
{"type": "object", "properties": {"alpha": {"type": "integer"}, "beta": {"type": "integer"}, "data": {"type": "array", "items": {"type": "integer"}}, "expected": {"type": "array", "items": {"type": "number"}}}, "required": ["alpha", "beta", "data", "expected"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["locizify"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"clbid": {"type": "integer"}, "credits": {"type": "number"}, "crsid": {"type": "integer"}, "departments": {"type": "array", "items": {"type": "string"}}, "instructors": {"type": "array", "items": {"type": "string"}}, "level": {...
{"clbid" : 54978, "credits" : 0.25, "crsid" : 17311, "departments" : ["GCON"], "instructors" : ["Jolene Barjasteh"], "level" : 200, "name" : "FLC - French", "number" : 218, "pn" : false, "prerequisites" : false, "semester" : 3, "status" : "X", "term" : 20063, "type" : "FLAC", "year" : 2006}
json_instruct
{"type": "object", "properties": {"clbid": {"type": "integer"}, "credits": {"type": "number"}, "crsid": {"type": "integer"}, "departments": {"type": "array", "items": {"type": "string"}}, "instructors": {"type": "array", "items": {"type": "string"}}, "level": {"type": "integer"}, "name": {"type": "string"}, "number": {...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type...
{"contract" : "0xeacfcd969710a4bb9d75162b43a92ba7e267254f", "tool" : "mythril", "start" : 1563673088.5075407, "end" : 1563673104.4146307, "duration" : 15.907089948654175, "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...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "strin...
{"name" : "multiverse-reader-server", "version" : "0.0.1", "main" : "src/handler.ts", "license" : "MIT", "scripts" : {"start" : "serve ../../.cache & serverless offline;", "test" : "jest", "test:watch" : "jest --watch", "lint" : "tslint --project ./tsconfig.json '{src,test}/**/*.{ts,tsx}'"}, "jest" : {"transform" : {"^...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "test:watch": {"type": "string"}, "lint": {"type": "string"}}, "re...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"val": {"type": "integer"}}, "required": ["val"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"val" : 9223372036854775808}
json_instruct
{"type": "object", "properties": {"val": {"type": "integer"}}, "required": ["val"], "$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": {"extract": {"type": "string"}, "package": {"type": "string"}...
{"name" : "gsk-branding", "version" : "1096", "description" : "", "main" : "index.js", "scripts" : {"extract" : "bash ./extract.sh", "package" : "rm -rf package && rm -rf tube && gulp revision && gulp package && mv package tube && zip -r tube.1096.zip ./tube && rm -rf tube"}, "author" : "Bunch Inc", "devDependencies" :...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"extract": {"type": "string"}, "package": {"type": "string"}}, "required": ["extract", "package"]}, "author": {"type": ...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"homepage": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "architecture": {"type": "object", "properties": {"64bit": {"type": "object", "propert...
{"homepage" : "https://slack.com", "description" : "A collaboration hub for work.", "version" : "4.5.0", "license" : "Freeware", "architecture" : {"64bit" : {"url" : "https://downloads.slack-edge.com/releases_beta_x64/slack-4.5.0-full.nupkg", "hash" : "sha1:46b3c98b011d3ae83af138406c5f2719c36fe191"}}, "extract_dir" : "...
json_instruct
{"type": "object", "properties": {"homepage": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "architecture": {"type": "object", "properties": {"64bit": {"type": "object", "properties": {"url": {"type": "string"}, "hash": {"type": "string"}}, "require...
Create a JSON structure that matches this schema definition: {"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" : "Feature", "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[-0.047155, 51.4921], [-0.046868, 51.49214], [-0.046778, 51.491836], [-0.047035, 51.491803], [-0.047155, 51.4921]]]]}, "properties" : {"name" : "41-55 Rotherhithe Old Road", "organisation" : "local-authority-eng:SWK", "geography" : "brownfie...
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"]}...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"$schema": {"type": "string"}, "id": {"type": "string"}, "$$target": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type"...
{"$schema" : "http://json-schema.org/draft-04/schema#", "id" : "http://judkins.house/apis/k2/v1/awsStorageDevice.json", "$$target" : "awsStorageDevice.json", "title" : "AWS Storage Device", "description" : "Describes an AWS storage device.", "properties" : {"type" : {"description" : "The type of storage", "type" : "str...
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "id": {"type": "string"}, "$$target": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "object", "properties": {"description": {"type": "string"}, "type": ...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"api_id": {"type": "integer"}, "api_hash": {"type": "string"}, "phone": {"type": "string"}, "database_encryption_key": {"type": "string"}}, "required": ["api_id", "api_hash", "phone", "database_encryption_key"], "$schema": "htt...
{"api_id" : 100000, "api_hash" : "bf5ec06a9e9b18be245ae94d9494bf38", "phone" : "token_or_phone_number", "database_encryption_key" : "type_key_here_with_anything"}
json_instruct
{"type": "object", "properties": {"api_id": {"type": "integer"}, "api_hash": {"type": "string"}, "phone": {"type": "string"}, "database_encryption_key": {"type": "string"}}, "required": ["api_id", "api_hash", "phone", "database_encryption_key"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"dockerImageBuilder": {"type": "string"}, "inputs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}}, "required": ["dockerImageB...
{"dockerImageBuilder" : "cimg/python:3.8", "inputs" : [{"name" : "rit_github_token", "type" : "CREDENTIAL_GITHUB_TOKEN"}, {"name" : "rit_github_user", "type" : "CREDENTIAL_GITHUB_USERNAME"}, {"label" : "Repositories to get insights from:", "name" : "rit_repos", "type" : "text", "required" : true, "items" : ["ALL", "SEL...
json_instruct
{"type": "object", "properties": {"dockerImageBuilder": {"type": "string"}, "inputs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}}, "required": ["dockerImageBuilder", "inputs"], "$schema": "http://json-schema.org/dr...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}, "flags": {"type": "array", "items": {}}, "id": {"type": "integer"}, "chat_link": {"type": "string"}}, "required": ["name", "descripti...
{"name" : "Lava Rift", "description" : "Summons forth lava elementals, damaging nearby foes.", "icon" : "https://render.guildwars2.com/file/1D55D34FB4EE20B1962E315245E40CA5E1042D0E/62248.png", "flags" : [], "id" : 51721, "chat_link" : "[&BgnKAAA=]"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}, "flags": {"type": "array", "items": {}}, "id": {"type": "integer"}, "chat_link": {"type": "string"}}, "required": ["name", "description", "icon", "flags", "id", "chat_link"], "$schema": "http://j...