input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Please provide a valid JSON object following this schema:
{"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" : "MDR i\u00e7in Desert Tech tutama\u00e7 blk", "ShortName" : "MDR El kunda\u011f\u0131", "Description" : "MDR i\u00e7in Desert Tech el kunda\u011f\u0131 ek cihaz ve aksesuarlar\u0131n montaj\u0131 i\u00e7in M-LOK aray\u00fcz\u00fc ile donat\u0131lm\u0131\u015ft\u0131r. Siyah varyasyon."} | 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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#... | [{"name" : "ROMILA", "frequency" : 0, "gender" : "male"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"ty... | {"limit" : 100, "name" : "Imphide hood", "value" : 200, "highalch" : 120, "id" : 25845, "lowalch" : 80, "name_pt" : "Capuz de pele de diabinho", "price" : 827, "last" : 827} | json_instruct | {"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["l... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}}, "required": ["lib"]}, "scripts": {"type": "object", "... | {"name" : "wallet", "version" : "1.0.0", "main" : "server.js", "directories" : {"lib" : "lib"}, "scripts" : {"build" : "browserify --require ./src/index.js:wal ./src/index.js > ./public/js/page/wal.js"}, "author" : "", "license" : "ISC", "dependencies" : {"babel-core" : "^6.26.3", "babel-loader" : "^7.1.5", "babel-pre... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}}, "required": ["lib"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"packages": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}}, "required": ["packages", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"packages" : ["modules/*"], "version" : "0.0.2"} | json_instruct | {"type": "object", "properties": {"packages": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}}, "required": ["packages", "version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {}}, "creation_date": {"type": "string"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions": {"type": "string"... | {"accession_number" : "1986.247", "actors" : [], "creation_date" : "about 1700", "credit_line" : "Gift of Mr. and Mrs. Norris Gary Chumley", "cultures" : [], "dimensions" : "H: 19 in.", "dynasty" : null, "images" : [], "irn" : 1205, "materials" : "gilt bronze", "on_view" : true, "period" : null, "printers" : [], "publi... | json_instruct | {"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {}}, "creation_date": {"type": "string"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions": {"type": "string"}, "dynasty": {"type": "null"}, "images": {"type": "array... |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"username": {"type": "string"}, "password": {"type": "string"}}, "required": ["username", "password"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"username" : "Snowden", "password" : "I hate NSA"}, {"username" : "Sheldon", "password" : "I love trains"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"username": {"type": "string"}, "password": {"type": "string"}}, "required": ["username", "password"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}... | [{"postal_code" : "27840", "place_name" : "El Ancora", "place_type" : "Ejido", "county" : "San Pedro", "state" : "Coahuila de Zaragoza", "city" : "San Pedro"}, {"postal_code" : "27840", "place_name" : "Proletaria Benito Ju\u00e1rez", "place_type" : "Colonia", "county" : "San Pedro", "state" : "Coahuila de Zaragoza", "c... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "s... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"modules": {"type": "array", "items": {"type": "object", "properties": {"tagged": {"type": "array", "items": {"type": "string"}}, "code": {"type": "string"}, "title": {"type": "string"}, "credits": {"type": "str... | {"modules" : [{"tagged" : ["ITProfessionalism"], "code" : "IS1103", "title" : "Ethics in Computing", "credits" : "4"}, {"tagged" : ["ITProfessionalism"], "code" : "CS2101", "title" : "Effective Communication for Computing Professionals", "credits" : "4"}, {"tagged" : ["ITProfessionalism"], "code" : "ES2660", "title" : ... | json_instruct | {"type": "object", "properties": {"modules": {"type": "array", "items": {"type": "object", "properties": {"tagged": {"type": "array", "items": {"type": "string"}}, "code": {"type": "string"}, "title": {"type": "string"}, "credits": {"type": "string"}}, "required": ["tagged", "code", "title", "credits"]}}}, "required": ... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema":... | {"Time" : "2021-07-04T14:00:00Z", "Temp" : 31.8, "RelHum" : 31, "WindSpeed" : 6.5, "WindDir" : 306} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"inputs": {"type": "array", "items": {"type": "string"}}, "outputs": {"type": "array", "items": {"type": "string"}}}, "required": ["inputs", "outputs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"inputs" : ["C:\\Users\\neeli\\Downloads\\flutter_windows_2.10.0-stable\\slide_puzzle-release\\lib/l10n/arb\\app_en.arb"], "outputs" : ["C:\\Users\\neeli\\Downloads\\flutter_windows_2.10.0-stable\\slide_puzzle-release\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_en.dart", "C:\\Users\\neeli\\Downloads\\flutter... | json_instruct | {"type": "object", "properties": {"inputs": {"type": "array", "items": {"type": "string"}}, "outputs": {"type": "array", "items": {"type": "string"}}}, "required": ["inputs", "outputs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"generator-angularjs-library": {"type": "object", "properties": {"props": {"type": "object", "properties": {"author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name"... | {"generator-angularjs-library" : {"props" : {"author" : {"name" : "Aymeric Derbois", "email" : "aymeric.derbois@evest.fr"}, "libraryName" : {"original" : "Angular Format Number", "camelized" : "angularFormatNumber", "dasherized" : "angular-format-number", "slugified" : "angular-format-number", "parts" : ["angular", "fo... | json_instruct | {"type": "object", "properties": {"generator-angularjs-library": {"type": "object", "properties": {"props": {"type": "object", "properties": {"author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "libraryName": {"type": "object", "propertie... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d122-179", "text" : "AFFILIATE MEMBERS\nInstitution\nContact Person Address\nEvangelical Lutheran Church\n(Minneapolis)\nJanies V. Anderson,\nDir., Radio-TV\n422 S. Fifth St.\nMinneapolis, Minn.\nMISSISSIPPI (Region II)\nMississippi Southern College\n(Hattiesburg)\n' 2/ys7\nNEBRASKA (Region IV)\nUniversity of ... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"outDir": {"type": "string"}, "rootDir": {"type": "string"}, "baseUrl": {"type": "string"}, "declarationDir": {"type": "null"... | {"extends" : "./tsconfig", "compilerOptions" : {"outDir" : "lib", "rootDir" : "ts", "baseUrl" : ".", "declarationDir" : null, "allowSyntheticDefaultImports" : true, "module" : "commonjs", "declaration" : false}, "include" : ["ts/**/*.ts"], "exclude" : ["node_modules/**"]} | json_instruct | {"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"outDir": {"type": "string"}, "rootDir": {"type": "string"}, "baseUrl": {"type": "string"}, "declarationDir": {"type": "null"}, "allowSyntheticDefaultImports": {"type": "boolean"}, "module": {"type": "s... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"IsSuccessStatusCode": {"type": "boolean"}, "StatusCode": {"type": "integer"}, "Headers": {"type": "object", "properties": {"SPRequestGuid": {"type": "string"}, "SPClientServiceRequestDuration": {"type": "string"},... | {"IsSuccessStatusCode" : true, "StatusCode" : 200, "Headers" : {"SPRequestGuid" : "adf60ca0-a05b-3000-787b-4ac449b0da7a", "SPClientServiceRequestDuration" : "130", "X-SharePointHealthScore" : "2", "X-SP-SERVERSTATE" : "ReadOnly=0"}, "Response" : "{\"odata.null\":true}"} | json_instruct | {"type": "object", "properties": {"IsSuccessStatusCode": {"type": "boolean"}, "StatusCode": {"type": "integer"}, "Headers": {"type": "object", "properties": {"SPRequestGuid": {"type": "string"}, "SPClientServiceRequestDuration": {"type": "string"}, "X-SharePointHealthScore": {"type": "string"}, "X-SP-SERVERSTATE": {"ty... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"upper_left_x": {"type": "number"}, "upper_left_y": {"type": "number"}, "bottom_right_x": {"type": "number"}, "bottom_right_y": {"type": "number"}, "time": {"type": "integer"}, "is_final": {"type": "boolean"}, "event... | {"upper_left_x" : 148.32910073245918, "upper_left_y" : 115.60944615912254, "bottom_right_x" : 540.9649556124981, "bottom_right_y" : 693.6566769547352, "time" : 1480345133105, "is_final" : true, "event_type" : "movement", "op_order" : 92, "id" : 92} | json_instruct | {"type": "object", "properties": {"upper_left_x": {"type": "number"}, "upper_left_y": {"type": "number"}, "bottom_right_x": {"type": "number"}, "bottom_right_y": {"type": "number"}, "time": {"type": "integer"}, "is_final": {"type": "boolean"}, "event_type": {"type": "string"}, "op_order": {"type": "integer"}, "id": {"t... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "sheol", "definition" : "The place of departed spirits; Hades; also, the grave. For thou wilt not leave my soul to sheel. Ps. xvi. 10. (Rev. Ver.)"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"profiles": {"type": "object", "properties": {"SqlConsole.Host": {"type": "object", "properties": {"commandName": {"type": "string"}, "commandLineArgs": {"type": "string"}}, "required": ["commandName", "commandLineAr... | {"profiles" : {"SqlConsole.Host" : {"commandName" : "Project", "commandLineArgs" : "console sqlite --data-source=:memory:"}}} | json_instruct | {"type": "object", "properties": {"profiles": {"type": "object", "properties": {"SqlConsole.Host": {"type": "object", "properties": {"commandName": {"type": "string"}, "commandLineArgs": {"type": "string"}}, "required": ["commandName", "commandLineArgs"]}}, "required": ["SqlConsole.Host"]}}, "required": ["profiles"], "... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "421321109001", "text" : "\u5317\u56ed\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "421321109002", "text" : "\u7d2b\u91d1\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "421321109003", "text" : "\u6587\u5cf0\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "421321109004", "text" : "\u9a95\u9aa6\u793e\u533a\u5c45\u6c11\u59d4\u5... | 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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language... | {"citations" : [{"textCitation" : "[See efi4p on Metamath](http://us.metamath.org/mpegif/efi4p.html)"}], "names" : ["efi4p"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cF", "#T_wceq", "#T_vn", "#T_cmpt--1", "#T_cn0", "#T_cmpt--2", "#T_ci", "#T_cmul", "#T_cA", "#T_cexp", "#T_vn", "#T_cdiv", "#T_cfa", "#T_cfv"... | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "st... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"$schema": {"type": "string"}, "additionalProperties": {"type": "boolean"}, "type": {"type": "string"}, "description": {"type": "string"}, "properties": {"type": "object", "properties": {"protection": {"type": "object", "pro... | {"$schema" : "http://json-schema.org/draft-07/schema", "additionalProperties" : false, "type" : "object", "description" : "The armor item component determines the amount of protection you have in your armor item.", "properties" : {"protection" : {"description" : "How much protection does the armor item have.", "type" :... | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "additionalProperties": {"type": "boolean"}, "type": {"type": "string"}, "description": {"type": "string"}, "properties": {"type": "object", "properties": {"protection": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type":... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"outDir": {"type": "string"}, "typeRoots": {"type": "array", "items": {"type": "string"}}, "resolveJsonModule": {"type": "boolean"}, "plugins": {"type": "array", "i... | {"compilerOptions" : {"outDir" : "./dist", "typeRoots" : ["./node_modules/@types", "./src/types"], "resolveJsonModule" : true, "plugins" : [{"transform" : "typescript-is/lib/transform-inline/transformer"}], "emitDecoratorMetadata" : true, "experimentalDecorators" : true, "importHelpers" : true, "forceConsistentCasingIn... | json_instruct | {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"outDir": {"type": "string"}, "typeRoots": {"type": "array", "items": {"type": "string"}}, "resolveJsonModule": {"type": "boolean"}, "plugins": {"type": "array", "items": {"type": "object", "properties": {"transform": {"type": "strin... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "p... | {"name" : "angular-picturefill", "description" : "An AngularJS directive for Picturefill", "version" : "1.1", "main" : "angular-picturefill.js", "ignore" : ["readme.md"], "dependencies" : {"picturefill" : "~1.2.1", "angular" : "~1.2.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"picturefill": {"type": "string"}, "angular": {"type": "... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {}}, "dependencies": {"type": "o... | {"name" : "elastic-search", "version" : "1.0.0", "keywords" : ["util", "functional", "server", "client", "browser"], "author" : "abel", "contributors" : [], "dependencies" : {"elasticsearch" : "^15.1.1", "promise" : "^8.0.2", "xml2js-parser" : "^1.1.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {}}, "dependencies": {"type": "object", "properties": {"elasticsearch": {"type": "string"}, "p... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"molecule_structure": {"type": "string"}, "definition": {"type": "string"}, "virus_id": {"type": "string"}, "isolate_id": {"type": "string"}, "_id": {"type": "string"}, "host": {"type"... | [{"molecule_structure" : "circular", "definition" : "UNVERIFIED: Tomato golden leaf spot virus isolate TO83 Araguaina", "virus_id" : "d9b83307", "isolate_id" : "si51oouy", "_id" : "NC_021579", "host" : "tomato"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"molecule_structure": {"type": "string"}, "definition": {"type": "string"}, "virus_id": {"type": "string"}, "isolate_id": {"type": "string"}, "_id": {"type": "string"}, "host": {"type": "string"}}, "required": ["molecule_structure", "definition", "virus_id", ... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, ... | {"title" : "\"Preventative\" vs. \"Reactive\": How Parental Mediation Influences Teens' Social Media Privacy Behaviors.", "fields" : ["social media", "mediation", "computer science", "social psychology"], "abstract" : "Through an empirical, secondary analysis of 588 teens (ages 12 - 17) and one of their parents living ... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"typ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": ... | {"appid" : 231910, "name" : "Leisure Suit Larry in the Land of the Lounge Lizards: Reloaded", "windows" : true, "mac" : true, "linux" : true, "early_access" : false, "lookup_time" : 1490971657} | json_instruct | {"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"stats": {"type": "object", "properties": {"minecraft:custom": {"type": "object", "properties": {"minecraft:time_since_rest": {"type": "integer"}, "minecraft:play_one_minute": {"type": "integer"}, "minecraft:leave_game": {"type... | {"stats" : {"minecraft:custom" : {"minecraft:time_since_rest" : 2235, "minecraft:play_one_minute" : 2235, "minecraft:leave_game" : 1, "minecraft:time_since_death" : 2235}, "minecraft:used" : {"minecraft:redstone_torch" : 4, "chunkactivator:chunk_activator" : 6}}, "DataVersion" : 2230} | json_instruct | {"type": "object", "properties": {"stats": {"type": "object", "properties": {"minecraft:custom": {"type": "object", "properties": {"minecraft:time_since_rest": {"type": "integer"}, "minecraft:play_one_minute": {"type": "integer"}, "minecraft:leave_game": {"type": "integer"}, "minecraft:time_since_death": {"type": "inte... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"axes": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "centroid": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "part_id": {"type": "integer"}, "scales": ... | {"axes" : [[0.14215372502803802, -0.9898446202278137, -3.71245332644321e-05], [0.011851757764816284, 0.0017394045135006309, -0.9999282956123352], [-0.9897736310958862, -0.14214323461055756, -0.011978193186223507]], "centroid" : [[-0.9054998755455017], [0.45456114411354065], [2.016491413116455]], "part_id" : 0, "scales"... | json_instruct | {"type": "object", "properties": {"axes": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "centroid": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "part_id": {"type": "integer"}, "scales": {"type": "array", "items": {"type": "array", "items": {"type": "number"}... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"address": {"type": "string"}}, "required": ["address"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"address" : "0x89E3ca22189538a442255A45cF9E420326C195E7"} | json_instruct | {"type": "object", "properties": {"address": {"type": "string"}}, "required": ["address"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"nv.d3.css": {"type": "string"}, "nv.d3.js": {"type": "string"}, "nv.d3.min.css": {"type": "string"}, "nv.d3.min.js": {"type": "string"}}, "required": ["nv.d3.css", "nv.d3.js", "nv.d3.min.css", "nv.d3.min.js"], "$schema": "http... | {"nv.d3.css" : "sha256-tMzoc0ZrZIm8l3dd0OvOuJ5iOmxiLFzz2hKmog5laas=", "nv.d3.js" : "sha256-4Vo3aIo9FRjRrrfPu3nkorPHRDwWb3xLUI3N+U6AOGY=", "nv.d3.min.css" : "sha256-3CsJgu02eqxey/fq0iexa7XiKKWMwyxQSz5WITxe0GU=", "nv.d3.min.js" : "sha256-DscPeslRnZbUqBS8z6c/V0o7OowmRu6qRJzOpoAz/nw="} | json_instruct | {"type": "object", "properties": {"nv.d3.css": {"type": "string"}, "nv.d3.js": {"type": "string"}, "nv.d3.min.css": {"type": "string"}, "nv.d3.min.js": {"type": "string"}}, "required": ["nv.d3.css", "nv.d3.js", "nv.d3.min.css", "nv.d3.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}... | {"name" : "@cw1997/ez-promise", "version" : "1.0.0", "description" : "ECMAScript 6 Promise ployfill", "main" : "index.js", "repository" : "git@github.com:cw1997/ez-promise.git", "author" : "cw1997 <867597730@qq.com>", "license" : "Apache 2.0 License", "scripts" : {"build" : "webpack", "test" : "jest"}, "devDependencies... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "strin... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"task": {"type": "string"}, "add_task": {"type": "string"}, "new_task": {"type": "string"}, "list_task": {"type": "string"}, "current_task": {"type": "string"}, "delete_task": {"type": "string"}, "english": {"type": "string"}, "v... | {"task" : "Nhi\u1ec7m v\u1ee5", "add_task" : "Th\u00eam nhi\u1ec7m v\u1ee5", "new_task" : "Nhi\u1ec7m v\u1ee5 m\u1edbi", "list_task" : "Danh s\u00e1ch nhi\u1ec7m v\u1ee5", "current_task" : "Nhi\u1ec7m v\u1ee5 hi\u1ec7n t\u1ea1i", "delete_task" : "X\u00f3a nhi\u1ec7m v\u1ee5", "english" : "Ti\u1ebfng Anh", "vietnam" : "... | json_instruct | {"type": "object", "properties": {"task": {"type": "string"}, "add_task": {"type": "string"}, "new_task": {"type": "string"}, "list_task": {"type": "string"}, "current_task": {"type": "string"}, "delete_task": {"type": "string"}, "english": {"type": "string"}, "vietnam": {"type": "string"}}, "required": ["task", "add_t... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "queryName": {"type": "string"}, "severity": {"type": "string"}, "category": {"type": "string"}, "descriptionText": {"type": "string"}, "descriptionUrl": {"type": "string"}}, "required"... | {"id" : "9d13b150-a2ab-42a1-b6f4-142e41f81e52", "queryName" : "SNS Topic Should Specify KmsMasterKeyId Attribute", "severity" : "MEDIUM", "category" : "Encryption and Key Management", "descriptionText" : "KmsMasterKeyId attribute should not be undefined", "descriptionUrl" : "https://docs.aws.amazon.com/AWSCloudFormatio... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "queryName": {"type": "string"}, "severity": {"type": "string"}, "category": {"type": "string"}, "descriptionText": {"type": "string"}, "descriptionUrl": {"type": "string"}}, "required": ["id", "queryName", "severity", "category", "descriptionText", "descripti... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "number"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "number"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_song... | {"artist_id" : "ARN4G4X1187FB485B4", "artist_latitude" : 54.31392, "artist_location" : "Great Britain / UK", "artist_longitude" : -2.23218, "artist_name" : "The Donkeys", "duration" : 214.96118, "num_songs" : 1, "song_id" : "SOSLGRK12A58A76E90", "title" : "Excelsior Lady", "year" : 0} | json_instruct | {"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "number"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "number"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "ti... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": ... | {"author" : {"id" : "t2_1xf4pssa", "name" : "NorthwesternGuy"}, "date" : {"day" : 1559865600, "full" : 1559927476, "month" : 1559347200, "week" : 1559433600}, "id" : "t3_bxx4qp", "picture" : {"filesize" : 107705, "fullUrl" : "https://preview.redd.it/4wmijucqvy231.jpg?auto=webp&s=4da1fcbaded0e99ab25561bf1646cb56693504ef... | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}},... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "propertie... | {"contract" : "0x68623fdf159dbdb7d1547d3050821ce57448aa47", "tool" : "osiris", "start" : 1564625831.334627, "end" : 1564625945.6192558, "duration" : 114.28462886810303, "analysis" : [{"errors" : [], "file" : "/unique_chucks/17/0x68623fdf159dbdb7d1547d3050821ce57448aa47.sol", "name" : "BasicToken"}, {"errors" : [], "fil... | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "strin... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"UG-C": {"type": "string"}, "UG-E": {"type": "string"}, "UG-N": {"type": "string"}, "UG-W": {"type": "string"}}, "required": ["UG-C", "UG-E", "UG-N", "UG-W"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"UG-C" : "Centrinis rajonas", "UG-E" : "Rytinis Fid\u017eio padalinys", "UG-N" : "\u0160iaurinis Fid\u017eio padalinys", "UG-W" : "Vakarinis Fid\u017eio padalinys"} | json_instruct | {"type": "object", "properties": {"UG-C": {"type": "string"}, "UG-E": {"type": "string"}, "UG-N": {"type": "string"}, "UG-W": {"type": "string"}}, "required": ["UG-C", "UG-E", "UG-N", "UG-W"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}}, "required": ["extends"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"extends" : ["github>startoutdev/renovate"]} | json_instruct | {"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}}, "required": ["extends"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/schema#... | [{"Similarity" : "0.962", "Title" : "Incremental Nonmonotonic Parsing through Semantic Self-Organization", "Year" : 2003}, {"Similarity" : "0.95", "Title" : "Parsing Verb-Final Clauses in German Garden-path and ERP Effects Modeled by a Parallel Dynamic Parser", "Year" : 2008}, {"Similarity" : "0.946", "Title" : "N400 a... | 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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"tooltip.es5.js": {"type": "string"}, "tooltip.es5.min.js": {"type": "string"}, "tooltip.js": {"type": "string"}, "tooltip.min.js": {"type": "string"}}, "required": ["tooltip.es5.js", "tooltip.es5.min.js", "tooltip.js", "tooltip.... | {"tooltip.es5.js" : "sha256-WlTv83V4aXlz/9h2H5TBxuQ8gbPRrNi2BAnbiavfUF4=", "tooltip.es5.min.js" : "sha256-Z8IVsy/blWtKz+XZd9xnnnHFk7YW8xXaPCVL98vHTTc=", "tooltip.js" : "sha256-wClgoISQuYzZ2LFaMF0zmnFGCqmw31Mt9WIU+/sTGeU=", "tooltip.min.js" : "sha256-9vpHdwQJXnWiPoUUUcgXC+3b8++i0RYbA/Z/BL9i6Io="} | json_instruct | {"type": "object", "properties": {"tooltip.es5.js": {"type": "string"}, "tooltip.es5.min.js": {"type": "string"}, "tooltip.js": {"type": "string"}, "tooltip.min.js": {"type": "string"}}, "required": ["tooltip.es5.js", "tooltip.es5.min.js", "tooltip.js", "tooltip.min.js"], "$schema": "http://json-schema.org/draft-07/sch... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "start": {"type": "string"}, "end": {"type": "string"}}, "required": ["id", "type", "start", "end"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "region2loc2lloc214", "type" : "HAS", "start" : "noctilum", "end" : "loc214"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "start": {"type": "string"}, "end": {"type": "string"}}, "required": ["id", "type", "start", "end"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d350-119", "text" : "The University of Texas\nAUSTIN 12\nHOUSE\nOctober 1, 1952\nG-raydon Ausmus, Director\nRadio Broadcasting Services\nUniversity of Alabama\nUniversity, Alabama\nDear G-raydon,\nI\u2018m still looking for a good scriptwriter-producer.\nRuth Hunnicutt is no longer with us and I\u2019m trying ... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"expireTime" : 9007200897890481000, "key" : "/static/5e095143445ae8e81ae7db5fe96057bd/d1f84/Kirk.jpg", "val" : "a172a3f81d0f05900d9d49f6f0c9d1f9"} | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"python.pythonPath": {"type": "string"}}, "required": ["python.pythonPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"python.pythonPath" : "/home/bryan/anaconda3/bin/python"} | json_instruct | {"type": "object", "properties": {"python.pythonPath": {"type": "string"}}, "required": ["python.pythonPath"], "$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": "array", "items": {}}}, "required": ["contract... | {"contract" : "0x228837072115f63d973cdfe83311a434a6075b9c", "tool" : "manticore", "start" : 1564614544.3579476, "end" : 1564616345.9170425, "duration" : 1801.5590949058533, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"city": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}, "borders": {"type": "array", "items": {"type": "array", "items": {"type": "object", "propert... | {"city" : {"name" : "NOVA PORTEIRINHA", "state" : "MG"}, "borders" : [[{"lat" : -15.828477997361631, "lng" : -43.262323999752766}, {"lat" : -15.780903529274383, "lng" : -43.317040414983126}, {"lat" : -15.735923997394536, "lng" : -43.29692099980423}, {"lat" : -15.668430997492521, "lng" : -43.301304999625984}, {"lat" : -... | json_instruct | {"type": "object", "properties": {"city": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}, "borders": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, ... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"code": {"type": "string"}, "description": {"type": "string"}, "label": {"type": "string"}, "language": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["code", "description", "label", "language", "uuid... | {"code" : "523", "description" : "", "label" : "Gebrek aan organisatie voor het analyseren van de overeenstemming tussen de behoeften en de capaciteit van de uitrustingen", "language" : "NL", "uuid" : "69fc19f2-4591-11e9-9173-0800277f0571"} | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "description": {"type": "string"}, "label": {"type": "string"}, "language": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["code", "description", "label", "language", "uuid"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string"}, "not_after... | {"issuer_ca_id" : 81435, "issuer_name" : "C=HU, L=Budapest, O=NetLock Kft., CN=NetLock \u00dczleti CTCA", "name_value" : "rina.neak.gov.hu", "min_cert_id" : 950862279, "min_entry_timestamp" : "2018-11-16T09:29:55.472", "not_before" : "2018-11-16T09:29:48", "not_after" : "2020-11-15T09:29:48"} | json_instruct | {"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string"}, "not_after": {"type": "string"}}, "required": ["issuer_ca_id", "iss... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"month": {"type": "string"}, "num": {"type": "integer"}, "link": {"type": "string"}, "year": {"type": "string"}, "news": {"type": "string"}, "safe_title": {"type": "string"}, "transcript": {"type": "string"}, "alt"... | {"month" : "12", "num" : 2393, "link" : "", "year" : "2020", "news" : "", "safe_title" : "Presidential Middle Names", "transcript" : "", "alt" : "The bottom of the list remains unchanged. Poor Rutherford Birchard Hayes.", "img" : "https://imgs.xkcd.com/comics/presidential_middle_names.png", "title" : "Presidential Midd... | json_instruct | {"type": "object", "properties": {"month": {"type": "string"}, "num": {"type": "integer"}, "link": {"type": "string"}, "year": {"type": "string"}, "news": {"type": "string"}, "safe_title": {"type": "string"}, "transcript": {"type": "string"}, "alt": {"type": "string"}, "img": {"type": "string"}, "title": {"type": "stri... |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["tractor", "tractor-plugin-loader", "tractor-plugin-visual-regression", "tractor-server"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.or... | [{"year" : 1974, "sex" : "F", "n" : 7, "prop" : 4.47e-06}, {"year" : 1993, "sex" : "F", "n" : 5, "prop" : 2.54e-06}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"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": ... | {"id" : 1125833197, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "0c20b16c052a4cdc82987360a8e7a182", "wof:id" : 1125833197, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [5.12154, 49.06148, 5.12154, 49.06148], "geometry" : {"coordinates" : [5.12154, 49.0614... | 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": ["... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "idParent": {"type": "integer"}, "namaWilayah": {"type": "string"}, "tingkatWilayah": {"type": "integer"}, "idPro": {"type": "integer"}, "idKab": {"type": "integer... | [{"id" : 81062, "idParent" : 81060, "namaWilayah" : "AMAMAPARE", "tingkatWilayah" : 4, "idPro" : 78203, "idKab" : 81007, "idKec" : 81060, "idKel" : 81062, "namaPro" : "PAPUA", "namaKab" : "MIMIKA", "namaKec" : "MIMIKA TIMUR JAUH", "namaKel" : "AMAMAPARE", "kodeWilayah" : "91.09.07.2002"}, {"id" : 81061, "idParent" : 81... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "idParent": {"type": "integer"}, "namaWilayah": {"type": "string"}, "tingkatWilayah": {"type": "integer"}, "idPro": {"type": "integer"}, "idKab": {"type": "integer"}, "idKec": {"type": "integer"}, "idKel": {"type": "integer"}, "nama... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"ExpandedNodes": {"type": "array", "items": {"type": "string"}}, "SelectedNode": {"type": "string"}, "PreviewInSolutionExplorer": {"type": "boolean"}}, "required": ["ExpandedNodes", "SelectedNode", "PreviewInSol... | {"ExpandedNodes" : ["", "\\interactiveComic"], "SelectedNode" : "\\interactiveComic\\main.js", "PreviewInSolutionExplorer" : false} | json_instruct | {"type": "object", "properties": {"ExpandedNodes": {"type": "array", "items": {"type": "string"}}, "SelectedNode": {"type": "string"}, "PreviewInSolutionExplorer": {"type": "boolean"}}, "required": ["ExpandedNodes", "SelectedNode", "PreviewInSolutionExplorer"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"pro... | {"userId" : 65748, "cartId" : "d672f675-6222-4b25-b092-275849e029d5", "preferredProducts" : [3019, 2626, 1738, 292, 1394, 1071], "productReviews" : [{"productId" : 1842, "reviewText" : "My chicken loves to play with it.", "reviewDate" : "2017-04-24T08:43:35.4229172+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "js": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "update": {"type": "string"}, "version": {"type": "string"}}, "required": ["path", "update", "version"]}},... | {"id" : "df78427a-f4b6-40e0-a8ac-15d717cf160f", "js" : [{"path" : "app.js", "update" : "full", "version" : "63cf9d0511c38ce1cb76d5201fa38e8d48085c0e"}], "css" : [{"path" : "resources/css/app.css", "update" : "delta", "version" : "b77a8993f4bcb6c627253ad3db9130feb269d2bc"}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "js": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "update": {"type": "string"}, "version": {"type": "string"}}, "required": ["path", "update", "version"]}}, "css": {"type": "array", "items": {"type": "object", "prop... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "subsulphate", "definition" : "A sulphate with an excess of the base."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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" : "Hewitt", "state_name" : "New Jersey", "state_abbrv" : "NJ", "lat" : "41.1709", "long" : "-74.3686"} | 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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["description", "homepage"]}, "versions... | {"latest_version" : ["0.1.4"], "meta" : {"description" : "Given a list of nested lists/tuples, returns all the elements in a single list", "homepage" : "https://pypi.python.org/pypi/FlattenList"}, "versions" : {"0.1.4" : {"sha256" : "f355e71557c89c7c792fa81b6fe5b9a7eabcaaff294408638f66230fde936e0e", "url" : "https://fi... | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["description", "homepage"]}, "versions": {"type": "object", "properties": {"0.1.4": {"type": "obj... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "typeName": {"type": "string"}, "typeLogoUrl": {"type": "string"}, "access": {"type": "string"}, "url": {"type": "string"}, "password": {"type": "string"}, "user": {"type"... | {"name" : "Helium API", "type" : "marcusolsson-json-datasource", "typeName" : "JSON API", "typeLogoUrl" : "public/plugins/marcusolsson-json-datasource/img/logo.svg", "access" : "proxy", "url" : "https://api.helium.io/v1/", "password" : "", "user" : "", "database" : "", "basicAuth" : false, "isDefault" : false, "jsonDat... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "typeName": {"type": "string"}, "typeLogoUrl": {"type": "string"}, "access": {"type": "string"}, "url": {"type": "string"}, "password": {"type": "string"}, "user": {"type": "string"}, "database": {"type": "string"}, "basicAuth": {... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-... | {"variants" : {"" : {"model" : "undergarden:block/grongle_cap"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": ... | {"name" : "onvalid", "description" : "a tool for validating JSON objects against schemas written in javascript", "version" : "0.2.1", "author" : "Mark Doffman <mark.doffman@gmail.com>", "repository" : {"type" : "git", "url" : "http://github.com/doffm/Onvalid.git"}, "dependencies" : {"underscore" : ">=1.1.3"}, "main" : ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "ob... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "difficulty": {"type": "string"}, "question": {"type": "string"}, "code": {"type": "string"}}, "required": ["number", "title", "u... | {"number" : "200", "title" : "Number of Islands", "url" : "https://leetcode.com/problems/number-of-islands", "difficulty" : "Medium", "question" : "Given a 2d grid map of '1's (land) and '0's (water), count the number of islands. An island is surrounded by water and is formed by connecting adjacent ... | json_instruct | {"type": "object", "properties": {"number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "difficulty": {"type": "string"}, "question": {"type": "string"}, "code": {"type": "string"}}, "required": ["number", "title", "url", "difficulty", "question", "code"], "$schema": "http://json-schema.... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"text": {"type": "array", "items": {"type": "string"}}, "lawID": {"type": "string"}, "entityType": {"type": "string"}, "sentenceID": {"type": "string"}, "time": {"type": "string"}}, "required": ["text", "lawID", "enti... | {"text" : ["a", "comprehensive", "evaluation", "of", "the", "perpetrator", "and", "his", "act"], "lawID" : "56a20255a18bdf3fadda8294", "entityType" : "Unary", "sentenceID" : "56a20255a18bdf3fadda8295", "time" : "2016\\-02\\-03\\ 21\\:12\\:42\\.096326"} | json_instruct | {"type": "object", "properties": {"text": {"type": "array", "items": {"type": "string"}}, "lawID": {"type": "string"}, "entityType": {"type": "string"}, "sentenceID": {"type": "string"}, "time": {"type": "string"}}, "required": ["text", "lawID", "entityType", "sentenceID", "time"], "$schema": "http://json-schema.org/dr... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text"... | {"author" : "Emily Dickinson", "classification" : "Common Measure", "keywords" : ["Nature", "Winter", "Landscapes", "Pastorals", "Weather"], "period" : "", "reference" : "http://www.poetryfoundation.org/poem/182154", "region" : "U.S., New England", "text" : ["It sifts from Leaden Sieves -", "It powders all the Wood.", ... | json_instruct | {"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"final seeds": {"type": "string"}, "diameter_out": {"type": "string"}, "total_seeds": {"type": "integer"}, "archive_len": {"type": "string"}, "min_members_dist": {"type": "string"}, "radius_in": {"type": "stri... | {"final seeds" : "20", "diameter_out" : "12.570445", "total_seeds" : 100, "archive_len" : "30", "min_members_dist" : "0.82993776", "radius_in" : "3.912727", "max_members_dist" : "7.480794", "avg_members_dist" : "4.019028", "std_members_dist" : "1.6188539", "radius_out" : "4.967707", "covered_seeds" : 20, "sparseness" :... | json_instruct | {"type": "object", "properties": {"final seeds": {"type": "string"}, "diameter_out": {"type": "string"}, "total_seeds": {"type": "integer"}, "archive_len": {"type": "string"}, "min_members_dist": {"type": "string"}, "radius_in": {"type": "string"}, "max_members_dist": {"type": "string"}, "avg_members_dist": {"type": "s... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type":... | {"contract" : "0xb2816223fddc21aca553ba208c7b7a13b27c207c", "tool" : "maian", "start" : 1565238370.423045, "end" : 1565238671.7946424, "duration" : 301.37159752845764, "analysis" : {"is_lock_vulnerable" : false, "is_prodigal_vulnerable" : false, "is_suicidal_vulnerable" : false}} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "i... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "s": {"type": "array", "items": ... | {"t" : "satenooy", "h" : [{"d" : [{"f" : "\u505a\u7e54\u5e03\u6a5f\u3002", "s" : ["`satenoon~"], "r" : ["`misa~`tenooy~"]}]}], "stem" : "tenooy"} | json_instruct | {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "s": {"type": "array", "items": {"type": "string"}}, "r": {"type": "array", "items": {"type": "string"}}... |
Create an example JSON object that satisfies this schema:
{"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": {}}}}, "requi... | {"contract" : "0xbac7a1798350cdf2dbfe0c210c2c9861223f4b31", "tool" : "manticore", "start" : 1564585408.0633478, "end" : 1564587210.0406077, "duration" : 1801.9772598743439, "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... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "diagonal", "name" : "Diagonal"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"api_version": {"type": "string"}, "data": {"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"hostname": {"type": "string"}, "source": {"type": "object", "properties": {"... | {"api_version" : "1.0", "data" : {"items" : [{"hostname" : "test-01", "source" : {"source_type" : "image", "mode" : "pull", "fingerprint" : "", "alias" : "16.04", "remote" : {"server" : "https://cloud-images.ubuntu.com/releases", "protocol" : "simplestream", "auth_type" : "none", "certificate" : "random"}, "bootstrappe... | json_instruct | {"type": "object", "properties": {"api_version": {"type": "string"}, "data": {"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"hostname": {"type": "string"}, "source": {"type": "object", "properties": {"source_type": {"type": "string"}, "mode": {"type": "string"}, ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"kv10.1:0.1": {"type": "string"}, "kv10.1:0.2": {"type": "string"}, "kv10.1:0.3": {"type": "string"}, "kv10.1:0.4": {"type": "string"}, "kv10.1:1.1": {"type": "string"}, "kv10.1:1.2": {"type": "string"}, "kv10... | {"kv10.1:0.1" : "Kath\u0101vatthu", "kv10.1:0.2" : "Niy\u0101mapa\u1e47\u1e47\u0101saka", "kv10.1:0.3" : "Dasamavagga", "kv10.1:0.4" : "Nirodhakath\u0101", "kv10.1:1.1" : "Upapattesiye pa\u00f1cakkhandhe aniruddhe kiriy\u0101 pa\u00f1cakkhandh\u0101 uppajjant\u012bti?", "kv10.1:1.2" : "\u0100mant\u0101.", "kv10.1:1.3" ... | json_instruct | {"type": "object", "properties": {"kv10.1:0.1": {"type": "string"}, "kv10.1:0.2": {"type": "string"}, "kv10.1:0.3": {"type": "string"}, "kv10.1:0.4": {"type": "string"}, "kv10.1:1.1": {"type": "string"}, "kv10.1:1.2": {"type": "string"}, "kv10.1:1.3": {"type": "string"}, "kv10.1:1.4": {"type": "string"}, "kv10.1:1.5": ... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"koa": {"type": "string"}}, "required": ["koa"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dependencies" : {"koa" : "2.0"}} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"koa": {"type": "string"}}, "required": ["koa"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string... | {"issuer_ca_id" : 16418, "issuer_name" : "C=US, O=Let's Encrypt, CN=Let's Encrypt Authority X3", "name_value" : "jupyter.35.224.108.153.nip.io", "min_cert_id" : 1060376059, "min_entry_timestamp" : "2018-12-27T05:46:42.627", "not_before" : "2018-12-27T04:46:41", "not_after" : "2019-03-27T04:46:41"} | json_instruct | {"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string"}, "not_after": {"type": "string"}}, "required": ["issuer_ca_id", "iss... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"user_list": {"type": "array", "items": {}}, "extra": {"type": "object", "properties": {"now": {"type": "integer"}, "fatal_item_ids": {"type": "array", "items": {}}, "logid": {"type": "string"}}, "required": ["now"... | {"user_list" : [], "extra" : {"now" : 1630595716000, "fatal_item_ids" : [], "logid" : "202109022315160102121600333327D158"}, "log_pb" : {"impr_id" : "202109022315160102121600333327D158"}, "status_code" : 0} | json_instruct | {"type": "object", "properties": {"user_list": {"type": "array", "items": {}}, "extra": {"type": "object", "properties": {"now": {"type": "integer"}, "fatal_item_ids": {"type": "array", "items": {}}, "logid": {"type": "string"}}, "required": ["now", "fatal_item_ids", "logid"]}, "log_pb": {"type": "object", "properties"... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "st... | {"issuer_ca_id" : 16418, "issuer_name" : "C=US, O=Let's Encrypt, CN=Let's Encrypt Authority X3", "name_value" : "pgadmin.52.235.36.93.nip.io", "min_cert_id" : 1184907457, "min_entry_timestamp" : "2019-02-08T15:04:21.991", "not_before" : "2019-02-08T14:04:21", "not_after" : "2019-05-09T14:04:21"} | json_instruct | {"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string"}, "not_after": {"type": "string"}}, "required": ["issuer_ca_id", "iss... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"900038571": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900038572": {"type": "object", "properties": {"na... | {"900038571" : {"nama" : "TPS 1", "dapil" : [1202, 11209, 2121205]}, "900038572" : {"nama" : "TPS 2", "dapil" : [1202, 11209, 2121205]}, "900038573" : {"nama" : "TPS 3", "dapil" : [1202, 11209, 2121205]}} | json_instruct | {"type": "object", "properties": {"900038571": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900038572": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ... |
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" : "Saint-Agoulin", "dpt" : "Puy-de-D\u00f4me", "inscrits" : 257, "abs" : 44, "votants" : 213, "blancs" : 19, "nuls" : 11, "exp" : 183, "res" : [{"panneau" : "1", "voix" : 105}, {"panneau" : "2", "voix" : 78}]} | 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"... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"subscription_id": {"type": "string"}, "resource_group": {"type": "string"}, "workspace_name": {"type": "string"}}, "required": ["subscription_id", "resource_group", "workspace_name"], "$schema": "http://json-schema.org/draf... | {"subscription_id" : "<input-subscription-id-here>", "resource_group" : "<input-resource-group-here>", "workspace_name" : "pyconworkspace"} | json_instruct | {"type": "object", "properties": {"subscription_id": {"type": "string"}, "resource_group": {"type": "string"}, "workspace_name": {"type": "string"}}, "required": ["subscription_id", "resource_group", "workspace_name"], "$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"}, "code": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "division": {"type": "string"}, "department": {"type": "string"}, "prerequisites": {"type": ... | {"id" : "ASTC25H3S20201", "code" : "ASTC25H3S", "name" : "Astrophysics of Planetary Systems", "description" : "Overview of planetary astrophysics at a level appropriate for science students. Planets as a by-product of star formation: theory and observations. Protostellar/protoplanetary disks. Planetesimal and planet fo... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "division": {"type": "string"}, "department": {"type": "string"}, "prerequisites": {"type": "string"}, "exclusions": {"type": "string"}, "level": {"type": "integer"}, "c... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"python.pythonPath": {"type": "string"}}, "required": ["python.pythonPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"python.pythonPath" : "C:\\Users\\PeiranQ\\.virtualenvs\\internal_demo\\Scripts\\python.exe"} | json_instruct | {"type": "object", "properties": {"python.pythonPath": {"type": "string"}}, "required": ["python.pythonPath"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [2751.8748614148544, 2762.080368816457, 2789.2950552207303, 2799.500562622333] | json_instruct | {"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test... | {"name" : "hubot-facebook", "version" : "0.5.4", "description" : "Facebook chat adapter for hubot", "main" : "./index", "scripts" : {"test" : "mocha --compilers coffee:coffee-script/register --reporter spec"}, "author" : "blazeu <neversleepman@tfwno.gf>", "license" : "MIT", "repository" : {"type" : "git", "url" : "git:... | 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"}, "repos... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d657-40", "text" : "- iii -\nPage\nw\nWall Between, The. .\n... 13\nWatch What You Say \u2022\n... 16\nWhat1s The Why . . .\n. . o 12\nWhile Earth Endures.\n. . o 17\n\u2666Within Our Gates . .\n... 3\nWorst Boy In School,\nThe .\n... 17\nTELEVISION\n\u2666Television Chapel\n24\nRADIO RECORDINGS\nPage\nA\n\u26... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type"... | {"id" : 107037, "info" : {"name" : "printerest no modal registration - \u0431\u0435\u0437 \u0437\u0430\u0442\u0435\u043d\u0435\u043d\u0438\u044f", "description" : "no modal registration shadow and window - \u0431\u0435\u0437 \u0437\u0430\u0442\u0435\u043d\u0435\u043d\u0438\u044f \u0438 \u043e\u043a\u043d\u0430 \u043f\u... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"65+": {"type": "integer"}, "50-64": {"type": "integer"}, "36-49": {"type": "integer"}, "18-35": {"type": "integer"}, "05-17": {"type": "integer"}, "00-04": {"type": "integer"}}, "required": ["65+", "50-64", "36-49",... | {"65+" : 1620, "50-64" : 306, "36-49" : 62, "18-35" : 18, "05-17" : 1, "00-04" : 0} | json_instruct | {"type": "object", "properties": {"65+": {"type": "integer"}, "50-64": {"type": "integer"}, "36-49": {"type": "integer"}, "18-35": {"type": "integer"}, "05-17": {"type": "integer"}, "00-04": {"type": "integer"}}, "required": ["65+", "50-64", "36-49", "18-35", "05-17", "00-04"], "$schema": "http://json-schema.org/draft-... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract",... | {"contract" : "0xd1521a4c08a226d17e38e276052204ce69453e7a", "tool" : "solhint", "start" : 1563811518.929146, "end" : 1563811523.1051726, "duration" : 4.1760265827178955, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://... |
Using the following JSON schema, generate a compatible 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" : "3527030003", "district_id" : "3527030", "name" : "POLAGAN"} | 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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"relevantArticles": {"type": "array", "items": {"type": "object", "properties": {"articleTitle": {"type": "string"}, "articleAbstractText": {"type": "string"}, "articleStatus": {"type": "integer"}, "articlePermalink"... | {"relevantArticles" : [{"articleTitle" : "MySQL \u6162\u67e5\u8be2\u4f18\u5316", "articleAbstractText" : "\u5efa\u7acb\u7d22\u5f15\u7684\u4e94\u5927\u539f\u5219 \u6700\u5de6\u524d\u7f00\u5339\u914d\u539f\u5219\u3002 \u201c=\u201d \u548c \u201cin\u201d \u53ef\u4ee5\u4e71\u5e8f\u3002 \u5c3d\u91cf\u9009\u62e9\u533a\u5206\... | json_instruct | {"type": "object", "properties": {"relevantArticles": {"type": "array", "items": {"type": "object", "properties": {"articleTitle": {"type": "string"}, "articleAbstractText": {"type": "string"}, "articleStatus": {"type": "integer"}, "articlePermalink": {"type": "string"}, "articleImg1URL": {"type": "string"}}, "required... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"FinancialDetail": {"type": "array", "items": {"type": "string"}}, "Value": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["FinancialDetail", "Value"], "$schema": "http://... | {"FinancialDetail" : ["Paid Up Capital", "Reserves and Surplus", "Insurance Fund", "Catastrophic Reserve", "Total Equity", "Total Sources", "Long Term Investment and Loans", "Short Term Investment and Loans", "Total Investment and Loans", "Total Revenue", "Income From Investment Loans And Others", "Total Expenses And P... | json_instruct | {"type": "object", "properties": {"FinancialDetail": {"type": "array", "items": {"type": "string"}}, "Value": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["FinancialDetail", "Value"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"users": {"type": "integer"}, "id": {"type": "string"}}, "required": ["users", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"users" : 348, "id" : "BD-H"}, {"users" : 1408, "id" : "BD-G"}, {"users" : 579, "id" : "BD-F"}, {"users" : 1123, "id" : "BD-E"}, {"users" : 1227, "id" : "BD-D"}, {"users" : 31200, "id" : "BD-C"}, {"users" : 1918, "id" : "BD-B"}, {"users" : 149, "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#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "1... | {"1" : "Mucha", "2" : "Lucha", "3" : "Mondo", "4" : "Pobrecito", "5" : "Lucia", "6" : "Azul", "7" : "Siete", "8" : "No. Ocho", "9" : "Nueve", "10" : "Diez", "11" : "Once", "20" : "Flight ID Esp", "21" : "Hit Name Esp", "22" : "Status Esp"} | json_instruct | {"type": "object", "properties": {"1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "20": {"t... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "locationId": {"type": "integer"}, "type": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "status": {"type": "object", "properties": {"value": {"typ... | {"id" : 0, "locationId" : 0, "type" : {"value" : "default"}, "status" : {"value" : "Active"}, "identifier" : "[redacted]", "name" : "[redacted]", "description" : "[redacted]", "platform" : "iOS", "daysOfTheWeek" : ["1", "2"], "isTemplate" : false, "startTime" : "[redacted]", "endTime" : "[redacted]", "useHolidays" : fa... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "locationId": {"type": "integer"}, "type": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "status": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "identifier": {"type": "string... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"Kirovsk": {"type": "string"}, "Monchegorsk": {"type": "string"}, "Ozerko": {"type": "string"}, "Vitino": {"type": "string"}}, "required": ["Kirovsk", "Monchegorsk", "Ozerko", "Vitino"], "$schema": "http://json-schema.org/draft... | {"Kirovsk" : "KVS", "Monchegorsk" : "MCG", "Ozerko" : "OZK", "Vitino" : "VIT"} | json_instruct | {"type": "object", "properties": {"Kirovsk": {"type": "string"}, "Monchegorsk": {"type": "string"}, "Ozerko": {"type": "string"}, "Vitino": {"type": "string"}}, "required": ["Kirovsk", "Monchegorsk", "Ozerko", "Vitino"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"index": {"type": "integer"}, "lineNumber": {"type": "integer"}, "column": {"type": "integer"}, "message": {"type": "string"}, "description": {"type": "string"}}, "required": ["index", "lineNumber", "column", "message", "descri... | {"index" : 18, "lineNumber" : 1, "column" : 19, "message" : "Error: Line 1: Unexpected token ILLEGAL", "description" : "Unexpected token ILLEGAL"} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "lineNumber": {"type": "integer"}, "column": {"type": "integer"}, "message": {"type": "string"}, "description": {"type": "string"}}, "required": ["index", "lineNumber", "column", "message", "description"], "$schema": "http://json-schema.org/draft-07/schema... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", ... | {"name" : "dmstr/yii2-migrate-command", "description" : "Console Migration Command with multiple paths/aliases support", "type" : "yii2-extension", "keywords" : ["yii2", "extension", "migration", "command", "console"], "license" : "BSD-3-Clause", "authors" : [{"name" : "Tobias Munk", "email" : "tobias@diemeisterei.de"}... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "ema... |
Construct a JSON document that adheres to this schema specification:
{"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" : 404383623, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "5d9adb6d85a7a310aa5fd0abee0c911f", "wof:id" : 404383623, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [5.36056, 46.00556, 5.36056, 46.00556], "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": ["... |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/sc... | [{"year" : 1999, "sex" : "F", "n" : 11, "prop" : 5.65e-06}, {"year" : 2000, "sex" : "F", "n" : 9, "prop" : 4.51e-06}, {"year" : 2001, "sex" : "F", "n" : 8, "prop" : 4.04e-06}, {"year" : 2002, "sex" : "F", "n" : 12, "prop" : 6.08e-06}, {"year" : 2003, "sex" : "F", "n" : 14, "prop" : 6.98e-06}, {"year" : 2004, "sex" : "F... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": ... | {"author" : {"name" : "Tiago Bani", "email" : "tiago.bani@yahoo.com.br"}, "name" : "@tiagobani/cpfsituation", "version" : "2.0.8", "description" : "validate and verify situation of cpf", "main" : "index.js", "homepage" : "https://github.com/TiagoBani/cpfsituation/blob/master/README.md", "keywords" : ["cpf", "puppeteer"... | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "homepage": {"type": "string"}... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.