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"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "lint": {"type": "string"}, "pr...
{"name" : "simplest-grid", "version" : "1.0.1", "description" : "A (very) simple grid utility written with CSS Grid Layout.", "main" : "./css/index.css", "scripts" : {"build" : "sass scss:css", "lint" : "prettier --config ./.prettierrc --write ./scss/**/*", "prepare" : "npm run build", "prepublishOnly" : "npm run lint"...
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"}, "prepare": {"type": "string"}, "prepublishOnly": {"type": "str...
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" : 101873377, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "dd60b8e840ac52259b9278588773ae88", "wof:id" : 101873377, "wof:repo" : "whosonfirst-data-admin-gb"}, "bbox" : [-1.503753, 53.654609, -1.503753, 53.654609], "geometry" : {"coordi...
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 sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"I": {"type": "object", "properties": {"ore": {"type": "string"}, "type": {"type"...
{"type" : "forge:ore_shaped", "pattern" : ["III", "GFG", "SLS"], "key" : {"I" : {"ore" : "ingotIron", "type" : "forge:ore_dict"}, "G" : {"ore" : "ingotGold", "type" : "forge:ore_dict"}, "L" : {"item" : "minecraft:lava_bucket"}, "F" : {"item" : "minecraft:furnace"}, "S" : {"item" : "minecraft:magma_cream"}}, "result" : ...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"I": {"type": "object", "properties": {"ore": {"type": "string"}, "type": {"type": "string"}}, "required": ["ore", "type"]}, "G": {"type": "object", "properti...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"URL": {"type": "string"}, "heading": {"type": "string"}, "subheading": {"type": "string"}, "author": {"type": "string"}, "category": {"type": "string"}, "type": {"type": "string"}, "timestamp": {"type": "string...
{"URL" : "https://www.wired.com/1999/05/microsoft-exploring-open-source", "heading" : "microsoft exploring open source", "subheading" : "president steve ballmer says that redmond has learned from the success of the linux open-source software model. and microsoft may loosen its notoriously tight grip on windows source c...
json_instruct
{"type": "object", "properties": {"URL": {"type": "string"}, "heading": {"type": "string"}, "subheading": {"type": "string"}, "author": {"type": "string"}, "category": {"type": "string"}, "type": {"type": "string"}, "timestamp": {"type": "string"}, "text": {"type": "string"}}, "required": ["URL", "heading", "subheading...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"Name": {"type": "string"}}, "required": ["Name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "Obrez"}
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}}, "required": ["Name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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" : "On-stack replacement, distilled.", "fields" : ["implementation", "adaptive optimization", "constructive", "debugging", "breakpoint"], "abstract" : "On-stack replacement (OSR) is essential technology for adaptive optimization, allowing changes to code actively executing in a managed runtime. The engineering ...
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 a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "price": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "price", "description"]}, "$schema": "http://json-schema.org/draft-07/schema...
[{"name" : "Pineapple Ponchcake", "price" : "5,000", "description" : "The ponchcake earns its name from the fact that the total weight of the dry ingredients (before pineapples) equals the weight of a single poncho"}, {"name" : "Ponchocolate", "price" : "1,000", "description" : "A luscious bonbon made from dark chocola...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "price": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "price", "description"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "serve": {"type": "string"}}...
{"name" : "restaurant-page", "version" : "1.0.0", "description" : "Restaurante page project from The Odin Project's curriculum", "main" : "index.js", "scripts" : {"build" : "webpack", "serve" : "webpack --watch"}, "author" : "jvfe", "license" : "BSD-3-Clause", "devDependencies" : {"webpack" : "^5.23.0", "webpack-cli" :...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "serve": {"type": "string"}}, "required": ["build", "serve"]}, "author": {"type": "string"...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address"...
{"name" : "Bento Swap", "symbol" : "Bento", "address" : "0x17e4f86d42d116A3a00c4BA4c96aFd344FB168C2", "decimals" : 18, "dharmaVerificationStatus" : "UNVERIFIED"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.o...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"author": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "st...
{"author" : "Andrey Tarantsov <andreyvit@me.com>", "name" : "dreamopt", "description" : "Command-line parser with readable syntax from your sweetest dreams", "version" : "0.8.0", "homepage" : "https://github.com/andreyvit/dreamopt.js", "repository" : {"type" : "git", "url" : "git://github.com/andreyvit/dreamopt.js.git"...
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "name": {"type": "string"}}, "required": ...
{"id" : 19736, "children" : [{"id" : 19737, "name" : "Admiralty jurisdiction -- Advisory opinions"}, {"id" : 19738, "name" : "Admiralty jurisdiction -- and Oliver Ellsworth"}], "name" : "Admiralty jurisdiction"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "name": {"type": "string"}}, "required": ["id", "children", "name"], "$schema": "http://json-schema....
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "proper...
{"hash" : "0x72f1f330f4da4bbb3eb6c93cc2b291e6f92acab4641a81d6d23da99a9ab7ba20", "parentHash" : "0xf75be00022de18045c175d1724a03b6051ef0738d78d374322e430377c49dfb8", "number" : 106286, "timestamp" : 1439901728, "nonce" : "0x653db7ee62978f22", "difficulty" : 4461918150894, "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"]...
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "message": {"type": "string"}, "start": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "character": {"type": ...
[{"code" : "unexpected-property", "message" : "Unexpected property 'doSomething' (did you mean to include it in 'methods'?)", "start" : {"line" : 5, "column" : 2, "character" : 42}, "end" : {"line" : 7, "column" : 3, "character" : 81}, "pos" : 42}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "message": {"type": "string"}, "start": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "character": {"type": "integer"}}, "required": ["line", "column", "character"]}, "end": {"type": ...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"prisonerNumbers": {"type": "array", "items": {"type": "string"}}}, "required": ["prisonerNumbers"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"prisonerNumbers" : ["A12345"]}
json_instruct
{"type": "object", "properties": {"prisonerNumbers": {"type": "array", "items": {"type": "string"}}}, "required": ["prisonerNumbers"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"workshop": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "theme": {"type": "string"}, "labs": {"type": "array", "items": {"type": "object", "properties": {"nu...
{"workshop" : {"title" : "Digital Workshop", "description" : "Hands-on Digital Modernization", "theme" : "default", "labs" : [{"number" : "00", "filename" : "home.md", "title" : "Welcome", "description" : "Read me first"}, {"number" : "01", "filename" : "Lab1.md", "title" : "OIC Process Lab 1", "description" : "OIC Pro...
json_instruct
{"type": "object", "properties": {"workshop": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "theme": {"type": "string"}, "labs": {"type": "array", "items": {"type": "object", "properties": {"number": {"type": "string"}, "filename": {"type": "string"}, "title": {"type"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$...
{"id" : "2003", "provinceId" : "75", "regencyId" : "04", "districtId" : "08", "name" : "Karangetan"}
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#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["511112102001", "\u6768\u67f3\u6e7e\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["511112102201", "\u6768\u67f3\u6751\u59d4\u4f1a", "220", "0"], ["511112102202", "\u7ffb\u8eab\u6751\u59d4\u4f1a", "220", "0"], ["511112102203", "\u74e6\u7a91\u6751\u59d4\u4f1a", "220", "0"], ["511112102204", "\u9752\u9f99\u6751\u59d4\u4...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"isRegexp": {"type": "boolean"}, "isEnum": {"type": "boolean"}, "allowFuzzyExtraction": {"type": "boolean"}, "name": {"type": "string"}, "automatedExpansion": {"type": "boolean"}, "entries": {"type": "array", "items": {"type...
{"isRegexp" : true, "isEnum" : false, "allowFuzzyExtraction" : false, "name" : "ID", "automatedExpansion" : false, "entries" : [{"value" : "[a-f0-9]{13}", "synonyms" : ["[a-f0-9]{13}"]}], "id" : "8976f63d-82b8-4e8d-bb4a-95e1fd15fe59", "isOverridable" : false}
json_instruct
{"type": "object", "properties": {"isRegexp": {"type": "boolean"}, "isEnum": {"type": "boolean"}, "allowFuzzyExtraction": {"type": "boolean"}, "name": {"type": "string"}, "automatedExpansion": {"type": "boolean"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "string"}, "syno...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"schema-version": {"type": "string"}, "changes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "category": {"type": "string"}, "description": {"type": "string"}}, "required...
{"schema-version" : "1.0", "changes" : [{"type" : "feature", "category" : "blueprints", "description" : "Mark blueprints as an accepted API (#1250)"}, {"type" : "feature", "category" : "package", "description" : "Add ability to generate and merge yaml CloudFormation templates (#1425)"}, {"type" : "enhancement", "catego...
json_instruct
{"type": "object", "properties": {"schema-version": {"type": "string"}, "changes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "category": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "category", "description"]}}}, "required": ["schema-version...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "unity": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "st...
{"name" : "com.fredericrp.singleton", "version" : "1.3.2", "displayName" : "FRP GenericSingleton", "description" : "A generic singleton: a singleton is a development pattern that prevents having multiple instances of the same component in a scene. It allows also any script to access this one wihout requiring a manual l...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "unity": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string...
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["ampersand-view", "autocrat-link-advisor", "edita", "reactionary-form-advisor", "reactionary-form-view", "reactionary-view", "swiper-fullscreen"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$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"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": [...
{"name" : "maximum-join", "version" : "0.0.7", "description" : "Maximum join number.", "repository" : {"type" : "git", "url" : "git@github.com:sugarshin/maximum-join.git"}, "main" : "index.js", "files" : ["lib", "index.js", "test", "package.json", "README.md"], "keywords" : ["util", "number", "join"], "scripts" : {"lin...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "files": {"type": "array", "it...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"static": {"type": "array", "items": {"type": "integer"}}, "specified": {"type": "array", "items": {"type": "integer"}}, "swapped": {"type": "array", "items": {"type": "integer"}}, "subtraction": {"type": "array", "items": {"ty...
{"static" : [262145, 786433, 917505, 1048577, 1376257, 1441793, 1572865, 2031617, 2162689, 2228225, 2293761, 2621441], "specified" : [589825], "swapped" : [196609], "subtraction" : [2162689, 2359297, 3080193], "scalar" : [262145, 393218, 917505, 3014657, 3080193], "site" : [1769473], "size" : [2621442], "subtracts" : [...
json_instruct
{"type": "object", "properties": {"static": {"type": "array", "items": {"type": "integer"}}, "specified": {"type": "array", "items": {"type": "integer"}}, "swapped": {"type": "array", "items": {"type": "integer"}}, "subtraction": {"type": "array", "items": {"type": "integer"}}, "scalar": {"type": "array", "items": {"ty...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"block.agriculture.tomato": {"type": "string"}, "block.agriculture.corn_crop": {"type": "string"}}, "required": ["block.agriculture.tomato", "block.agriculture.corn_crop"], "$schema": "http://json-schema.org/draft-0...
{"block.agriculture.tomato" : "Tomato", "block.agriculture.corn_crop" : "Corn"}
json_instruct
{"type": "object", "properties": {"block.agriculture.tomato": {"type": "string"}, "block.agriculture.corn_crop": {"type": "string"}}, "required": ["block.agriculture.tomato", "block.agriculture.corn_crop"], "$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"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["typ...
{"name" : "@nathanfriend/fortune-flash-briefings", "version" : "2.0.2", "description" : "Small utilities that power the Fortune Cookie and Oddly Specific Fortunes Alexa flash briefings", "repository" : {"type" : "git", "url" : "git+https://gitlab.com/nfriend/fortune-flash-briefings.git"}, "author" : "Nathan Friend", "l...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"AUTHOR": {"type": "string"}, "TITLE": {"type": "string"}, "PDF_URL": {"type": "string"}, "LOCAL_PDF_FILE": {"type": "string"}, "DATE": {"type": "string"}, "TEXT": {"type": "string"}, "PDF_TEXT": {"type": "arr...
{"AUTHOR" : "AndreasDombret", "TITLE" : "Globale Reformen und marktwirtschaftliche Ordnung", "PDF_URL" : "https://www.bundesbank.de/resource/blob/689086/d1d18cd62a2c2a879bff11c27a149d26/mL/2011-09-06-dombret-globale-reformen-marktwirtschaftliche-ordnung-download.pdf", "LOCAL_PDF_FILE" : "2011-09-06-dombret-globale-refo...
json_instruct
{"type": "object", "properties": {"AUTHOR": {"type": "string"}, "TITLE": {"type": "string"}, "PDF_URL": {"type": "string"}, "LOCAL_PDF_FILE": {"type": "string"}, "DATE": {"type": "string"}, "TEXT": {"type": "string"}, "PDF_TEXT": {"type": "array", "items": {"type": "string"}}, "SECTION": {"type": "string"}, "RECORD_ID"...
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": "string"}, "email": {"type": "s...
{"name" : "St\u00e4dt. Realschule Schlo\u00df Neuhaus", "id" : "NRW-162530", "address" : "Residenzstra\u00dfe 2, 33104 Paderborn", "school_type" : "Realschule", "fax" : "05254 80190", "phone" : "05254 80183", "website" : " http://rsn.lspb.de", "email" : " 162530@schule.nrw.de ", "state" : "NRW", "programs" : {"progra...
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": "string"}, "email": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": ...
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "...
[{"manufacturer" : "Wiko", "market_name" : "View2 Plus", "codename" : "W-P210", "model" : "View2 Plus"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "content": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "img": {"type": "string"}}, "required": ["_id", "name", "content", "...
{"_id" : "nHhvyUE4TIfZoffm", "name" : "Darkvision", "content" : "<p>CRB pg. 262</p>\n<p>Darkvision is the ability to see with no light source at all, out to a range specified in the creature\u2019s description. Darkvision is black and white only (colors cannot be discerned). It does not allow characters to see anything...
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "content": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "img": {"type": "string"}}, "required": ["_id", "name", "content", "flags", "img"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "short_description": {"type": "string"}, "explorer": {"type": "string"}}, "required": ["name", "website", "short_description", "explorer"], "$schema": "http:...
{"name" : "CREED", "website" : "https://creed.finance", "short_description" : "Every time you stake and unstake LP tokens, the contract will automatically harvest CREED rewards for you", "explorer" : "https://etherscan.io/token/0x675e7d927af7e6d0082e0153dc3485b687a6f0ad?a=0x81aff3701a2a6ad7ce2782b61b27967141a8e2ba"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "short_description": {"type": "string"}, "explorer": {"type": "string"}}, "required": ["name", "website", "short_description", "explorer"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type...
{"ast" : null, "code" : "export default function cart() {\n console.log('test');\n return [];\n}", "map" : {"version" : 3, "sources" : ["/Users/danielsimoes/workspace/coffe/src/store/modules/cart/reducer.js"], "names" : ["cart", "console", "log"], "mappings" : "AAAA,eAAe,SAASA,IAAT,GAAgB;AAC7BC,EAAAA,OAAO,CAACC,GAAR,...
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...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"slug": {"type": "string"}, "relevant-countries": {"type": "array", "items": {"type": "string"}}, "categories": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "address": {"type": "string...
{"slug" : "dirtlej-gmbh", "relevant-countries" : ["de"], "categories" : ["commerce"], "name" : "dirtlej GmbH", "address" : "Am Kesselhaus 5\n79576 Weil am Rhein\nDeutschland", "phone" : "+49 7621 6868950", "email" : "info@dirtlej.de", "web" : "https://www.dirtlej.de", "sources" : ["https://www.dirtlej.de/privacy", "htt...
json_instruct
{"type": "object", "properties": {"slug": {"type": "string"}, "relevant-countries": {"type": "array", "items": {"type": "string"}}, "categories": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}, "email": {"type": "string"}, "web": {"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Target": {"type": "string"}, "MediaType": {"type": "string"}, "Data": {"type": "object", "properties": {"Integrity": {"type": "string"}}, "required": ["Integrity"]}}, "required": ["Target", "MediaType", "Data"], "$schema": "ht...
{"Target" : "scss/style.min.28ed68bab5b43905afa2a8a9d1080deda21d38a754d0a40ec23a42cf60e1011a.css", "MediaType" : "text/css", "Data" : {"Integrity" : "sha256-KO1ourW0OQWvoqip0QgN7aIdOKdU0KQOwjpCz2DhARo="}}
json_instruct
{"type": "object", "properties": {"Target": {"type": "string"}, "MediaType": {"type": "string"}, "Data": {"type": "object", "properties": {"Integrity": {"type": "string"}}, "required": ["Integrity"]}}, "required": ["Target", "MediaType", "Data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "ThreadId": {"type": "string"}, "Html": {"type": "string"}, "PostedDate": {"type": "string"}, "UserRole": {"type": "null"}, "MarkedAsAnswerDate": {"type": "null"}}, "required...
[{"Id" : "1058937", "ThreadId" : "447620", "Html" : "I have a moderndialog with my own button in my moderndialog for example \r<br />\n<br />\nUser Control in <strong>/Content/ContentDialog.xaml</strong> like this <br />\n<pre><code>&lt;UserControl .....&gt;\n ...\n &lt;Button Content=&quot;Navigate&quot; OnClic...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "ThreadId": {"type": "string"}, "Html": {"type": "string"}, "PostedDate": {"type": "string"}, "UserRole": {"type": "null"}, "MarkedAsAnswerDate": {"type": "null"}}, "required": ["Id", "ThreadId", "Html", "PostedDate", "UserRole", "Ma...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"keV": {"type": "array", "items": {"type": "number"}}, "intensity": {"type": "array", "items": {"type": "number"}}, "halfLife": {"type": "array", "items": {"type": "string"}}}, "required": ["keV", "intensity", "halfLife"], "$sc...
{"keV" : [2.84, 21.02, 21.177, 23.791, 23.819, 24.299, 89.3, 511.0, 539.0, 580.8, 597.5, 605.1, 621.9, 675.7, 720.0, 763.1, 802.1, 1014.7, 1021.7, 1219.6, 1226.2, 1254.1, 1261.8, 1351.1, 1384.0, 1471.7, 1686.0, 1800.6, 2024.9, 2570.8, 2940.2], "intensity" : [0.055, 0.223, 0.42, 0.036, 0.069, 0.0167, 0.34, 173.0, 2.91, ...
json_instruct
{"type": "object", "properties": {"keV": {"type": "array", "items": {"type": "number"}}, "intensity": {"type": "array", "items": {"type": "number"}}, "halfLife": {"type": "array", "items": {"type": "string"}}}, "required": ["keV", "intensity", "halfLife"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end",...
{"contract" : "0xe861ad00aed0f04b41c675ec1c1493d2ebcbe776", "tool" : "securify", "start" : 1563582043.3560746, "end" : 1563582046.8943, "duration" : 3.5382254123687744, "analysis" : null}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.or...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"attackers": {"type": "array", "items": {"type": "object", "properties": {"alliance_id": {"type": "integer"}, "character_id": {"type": "integer"}, "corporation_id": {"type": "integer"}, "damage_done": {"type": "int...
{"attackers" : [{"alliance_id" : 99007988, "character_id" : 92198919, "corporation_id" : 98474028, "damage_done" : 469, "final_blow" : true, "security_status" : 2.9, "weapon_type_id" : 27371}], "killmail_id" : 71244573, "killmail_time" : "2018-07-14T10:58:17-07:00", "solar_system_id" : 30000672, "victim" : {"alliance_i...
json_instruct
{"type": "object", "properties": {"attackers": {"type": "array", "items": {"type": "object", "properties": {"alliance_id": {"type": "integer"}, "character_id": {"type": "integer"}, "corporation_id": {"type": "integer"}, "damage_done": {"type": "integer"}, "final_blow": {"type": "boolean"}, "security_status": {"type": "...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"alias": {"type": "string"}, "category": {"type": "string"}, "copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "id": {"type": "integer"}, "language": {"typ...
{"alias" : "video/3651/how-to-build-a-python-web-application-with-flask", "category" : "PyCon SE 2015", "copyright_text" : "", "description" : "", "duration" : 1970, "id" : 3651, "language" : "eng", "quality_notes" : "", "recorded" : "2015-05-25", "slug" : "how-to-build-a-python-web-application-with-flask", "speakers" ...
json_instruct
{"type": "object", "properties": {"alias": {"type": "string"}, "category": {"type": "string"}, "copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "id": {"type": "integer"}, "language": {"type": "string"}, "quality_notes": {"type": "string"}, "recorded": {"type": "s...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d1367-2", "text" : "SURVEY OF EDUCATIONAL RADIO PROGRAM DEVICES\nTabulation of Ranking of Devices Most Frequently Used\n\u00a3 i\n\"bQ\nci !j\n. c\nCO J| r\nCO bfl\n^ <D CO CO\n\u201e O\ns 5\u00ae 3\nV-t e+\u2014i\nO G O\n3 OXJ\n\u00ab Og\np2f o OJ G"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"main": {"type": "boolean"}}, "required": ["main"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "12efd2b45d6ce8783c1e", "c" : {"main" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"main": {"type": "boolean"}}, "required": ["main"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "scanUrl": {"type": "string"}}, "required": ["title", "text", "scanUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "They Came From Mordor (13U181)", "text" : "Set:\tBloodlines\nKind:\tShadow\nCulture:\tWraith\nTwilight:\t0\nCard Type:\tCondition \u2022 Support Area\nGame Text:\tWhen you play this, you may add a [Wraith] token here for each [Wraith] card in your support area. Shadow: Discard this from play or remove 2 tok...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "scanUrl": {"type": "string"}}, "required": ["title", "text", "scanUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"xdsl_modem_wifi_status_enabled": {"type": "string"}, "xdsl_modem_detault_wifi_status_enabled": {"type": "string"}, "xdsl_modem_wifi_status_disabled": {"type": "string"}, "xdsl_modem_default_wifi_status_disabled": {"...
{"xdsl_modem_wifi_status_enabled" : "Wi-Fi activ\u00e9", "xdsl_modem_detault_wifi_status_enabled" : "Wi-Fi activ\u00e9 par d\u00e9faut", "xdsl_modem_wifi_status_disabled" : "Wi-Fi d\u00e9sactiv\u00e9", "xdsl_modem_default_wifi_status_disabled" : "Wi-Fi d\u00e9sactiv\u00e9 par d\u00e9faut", "xdsl_modem_wifi_description"...
json_instruct
{"type": "object", "properties": {"xdsl_modem_wifi_status_enabled": {"type": "string"}, "xdsl_modem_detault_wifi_status_enabled": {"type": "string"}, "xdsl_modem_wifi_status_disabled": {"type": "string"}, "xdsl_modem_default_wifi_status_disabled": {"type": "string"}, "xdsl_modem_wifi_description": {"type": "string"}, "...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "id": {"type": "integer"}, "image_url": {"type": "string"}, "updated_at": {"type": "string"}, "deleted_at": {"type": "null"}, "recipe_type": {"type": "integer"},...
{"name" : "Atreides Tea", "description" : "In the world of Dune, he who controls the spice Melange controls the universe. House Atreides rules Arrakis, the home world of the spice Melange. The spice Melange gives you longer life and expands your consciousness but beware...it's highly addictive and once you start you ca...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "id": {"type": "integer"}, "image_url": {"type": "string"}, "updated_at": {"type": "string"}, "deleted_at": {"type": "null"}, "recipe_type": {"type": "integer"}, "recipe_flavors": {"type": "array", "items": {"type": "object...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}}, "required": ["already_configured"]}, "error": {"type": "object", "properties": ...
{"config" : {"abort" : {"already_configured" : "El dispositivo ya est\u00e1 configurado"}, "error" : {"invalid_url" : "URL no v\u00e1lida", "syncthru_not_supported" : "El dispositivo no es compatible con SyncThru", "unknown_state" : "Estado de la impresora desconocido, verifica la URL y la conectividad de la red"}, "fl...
json_instruct
{"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}}, "required": ["already_configured"]}, "error": {"type": "object", "properties": {"invalid_url": {"type": "string"}, "syncthru_not_supported": {"type": "strin...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"data_catalog_api": {"type": "string"}, "ensemble_manager_api": {"type": "string"}, "execution_engine": {"type": "string"}, "localex": {"type": "object", "properties": {"codedir": {"type": "string"}, "datadir": {"type...
{"data_catalog_api" : "https://data-catalog.mint.isi.edu/", "ensemble_manager_api" : "https://ensemble.mint.isi.edu/v1", "execution_engine" : "localex", "localex" : {"codedir" : "/data/storage/mint/local-execution/code", "datadir" : "/data/storage/mint/data-catalog/production/local-execution", "dataurl" : "https://data...
json_instruct
{"type": "object", "properties": {"data_catalog_api": {"type": "string"}, "ensemble_manager_api": {"type": "string"}, "execution_engine": {"type": "string"}, "localex": {"type": "object", "properties": {"codedir": {"type": "string"}, "datadir": {"type": "string"}, "dataurl": {"type": "string"}, "logdir": {"type": "stri...
Construct a JSON document that adheres to this schema specification: {"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"}...
{"modules" : [{"tagged" : ["GEH"], "code" : "GEH1005", "title" : "Crime Fiction in English and Chinese", "credits" : "4"}, {"tagged" : ["GEH"], "code" : "GEH1006", "title" : "Chinese Music, Language And Literature (In English)", "credits" : "4"}, {"tagged" : ["GEH"], "code" : "GEH1049", "title" : "Public Health In Acti...
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": ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"selenium": {"type": "string"}, "browsers": {"type": "array", "items": {"type": "object", "properties": {"browserName": {"type": "string"}, "version": {"type": "string"}, "platform": {"type": "string"}, "browserstack....
{"selenium" : "http://hub.browserstack.com:80/wd/hub", "browsers" : [{"browserName" : "chrome", "version" : "35", "platform" : "WINDOWS", "browserstack.user" : "parsahuram", "browserstack.key" : "", "browserstack.debug" : "true"}]}
json_instruct
{"type": "object", "properties": {"selenium": {"type": "string"}, "browsers": {"type": "array", "items": {"type": "object", "properties": {"browserName": {"type": "string"}, "version": {"type": "string"}, "platform": {"type": "string"}, "browserstack.user": {"type": "string"}, "browserstack.key": {"type": "string"}, "b...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"contributors": {"type": "array", "items": {}}, "creator": {"type": "object", "properties": {"login": {"type": "string"}, "name": {"type": "string"}}, "required": ["login", "name"]}, "decisions": {"type": "array", "i...
{"contributors" : [], "creator" : {"login" : "jimallman", "name" : "Jim Allman"}, "decisions" : [], "description" : "test of new collection in profile page", "name" : "new test", "queries" : []}
json_instruct
{"type": "object", "properties": {"contributors": {"type": "array", "items": {}}, "creator": {"type": "object", "properties": {"login": {"type": "string"}, "name": {"type": "string"}}, "required": ["login", "name"]}, "decisions": {"type": "array", "items": {}}, "description": {"type": "string"}, "name": {"type": "strin...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"},...
{"text" : "A will, testament, or codicil is not valid for any purpose unless the person making it is at least 18 years of age and, at the time of executing or acknowledging it as provided by this chapter, of sound and disposing mind and capable of executing a valid deed or contract.", "historical" : "Prior Codification...
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "ti...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"resourceType": {"type": "string"}, "contained": {"type": "array", "items": {"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "array", "items": {"...
{"resourceType" : "Condition", "contained" : [{"resourceType" : "Practitioner", "id" : "p1", "name" : [{"family" : "Person", "given" : ["Patricia"]}], "_birthDate" : {"extension" : [{"url" : "http://hl7.org/fhir/StructureDefinition/data-absent-reason", "valueCode" : "unknown"}]}}], "asserter" : {"reference" : "#p1"}}
json_instruct
{"type": "object", "properties": {"resourceType": {"type": "string"}, "contained": {"type": "array", "items": {"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "array", "items": {"type": "object", "properties": {"family": {"type": "string"}, "given": {"type...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items...
{"name" : "XSOL Token", "symbol" : "XSOL", "logoURI" : "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/ABxCiDz4jjKt1t7Syu5Tb37o8Wew9ADpwngZh6kpLbLX/logo.png", "decimals" : 8, "address" : "ABxCiDz4jjKt1t7Syu5Tb37o8Wew9ADpwngZh6kpLbLX", "chainId" : 101, "tags" : ["utility-token"], "extension...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "extensions": {"type": "object", "properties"...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"sklize": {"type": "string"}}, "required": ["sklize"]}...
{"name" : "sklize", "version" : "0.1.0", "description" : "turn sketch file to skl tree", "main" : "js/index.js", "bin" : {"sklize" : "./js/bin/sklize.js"}, "directories" : {"lib" : "js/lib"}, "files" : ["js/bin/", "js/bin/*.js", "js/index.js", "js/src/**/*"], "author" : "Giang 'Yakiro' Nguyen <yakiro.nvg@gmail.com>", "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"sklize": {"type": "string"}}, "required": ["sklize"]}, "directories": {"type": "object", "properties": {"lib": {"type": "s...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draf...
{"symbol" : "MTCN", "name" : "Multicoin", "decimals" : 18, "address" : "0xf6117cc92d7247f605f11d4c942f0feda3399cb5"}
json_instruct
{"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "occultism:block/silver_ore"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "item...
{"title" : "Replacing a Random Oracle: Full Domain Hash from Indistinguishability Obfuscation.", "fields" : ["random oracle", "obfuscation", "distributed computing", "full domain hash", "hash buster", "hash chain", "mdc 2", "rolling hash", "swifft"], "abstract" : "Our main result gives a way to instantiate the random o...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"typ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"examine": {"type": "string"}, "bonuses": {"type": "array", "items": {"type": "integer"}}, "realPrice": {"type": "integer"}}, "required": ["examine", "bonuses", "realPrice"], "$schema": "http://json-schema.org/draft-...
{"examine" : "It looks like it'll help my aim.", "bonuses" : [0, 0, 0, 0, 3, -5, -5, -5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], "realPrice" : 178414}
json_instruct
{"type": "object", "properties": {"examine": {"type": "string"}, "bonuses": {"type": "array", "items": {"type": "integer"}}, "realPrice": {"type": "integer"}}, "required": ["examine", "bonuses", "realPrice"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"Name": {"type": "string"}, "Version": {"type": "string"}, "Author": {"type": "string"}, "Number of Nodes": {"type": "integer"}, "Number of Namespaces": {"type": "integer"}, "Number of Edges": {"type": "intege...
{"Name" : "Interplay of pathogenic forms of human tau with different autophagic pathways", "Version" : "1.0.1", "Author" : "Sandra Spalek", "Number of Nodes" : 59, "Number of Namespaces" : 7, "Number of Edges" : 141, "Number of Annotations" : 3, "Number of Citations" : 1, "Number of Authors" : 9, "Network Density" : "4...
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "Version": {"type": "string"}, "Author": {"type": "string"}, "Number of Nodes": {"type": "integer"}, "Number of Namespaces": {"type": "integer"}, "Number of Edges": {"type": "integer"}, "Number of Annotations": {"type": "integer"}, "Number of Citations": {"t...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"nutrition-information": {"type": "string"}, "prep-time": {"type": "string"}, "cook-time": {"type": "string"}, "categories": {"type": "string"}, "latest-recipes": {"type": "string"}, "powered-by": {"type": "st...
{"nutrition-information" : "Informaci\u00f3n nutricional", "prep-time" : "Preparaci\u00f3n", "cook-time" : "Cocinar", "categories" : "Categor\u00edas", "latest-recipes" : "\u00daltimas Recetas", "powered-by" : "Construida sobre", "subscribe" : "Suscribir", "deliciousness-inbox" : "Delicias a tu bandeja de entrada", "yo...
json_instruct
{"type": "object", "properties": {"nutrition-information": {"type": "string"}, "prep-time": {"type": "string"}, "cook-time": {"type": "string"}, "categories": {"type": "string"}, "latest-recipes": {"type": "string"}, "powered-by": {"type": "string"}, "subscribe": {"type": "string"}, "deliciousness-inbox": {"type": "str...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type": "null...
{"id" : "18651119", "tms:id" : "200499", "accession_number" : "1995-37-10-a,b", "title" : "Cigarette Card Case With Lid, 1901\u201350", "url" : "http://collection.cooperhewitt.org/objects/18651119/", "department_id" : "35347497", "period_id" : null, "media_id" : "35431595", "type_id" : "35295323", "date" : "1901\u20135...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type": "null"}, "media_id": {"type": "string"}, "type_id": {"type": "string"}, "da...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "string"}, "url": {"type": "string"}}, "requir...
{"name" : "ebooklib", "description" : "Python E-book library for handling books in EPUB2/EPUB3 and Kindle format - ", "license" : {"key" : "agpl-3.0", "name" : "GNU Affero General Public License v3.0", "spdx_id" : "AGPL-3.0", "url" : "https://api.github.com/licenses/agpl-3.0"}, "starNum" : 344, "folkNum" : 77, "watchNu...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"typ...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}}, "required": ["name", "version", "description", "repository"], "$schema": "http://json-schema.org/d...
{"name" : "xquery-tools", "version" : "1.0.0", "description" : "Handy utilities for dealing with Indexes.", "repository" : "https://github.com/masyukun/xquery-tools"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}}, "required": ["name", "version", "description", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"companyLogo": {"type": "string"}, "companyName": {"type": "string"}, "cnpj": {"type": "string"}, "cardNumber": {"type": "string"}, "isAutomaticDebit": {"type": "boolean"}, "automaticDebitBankName": {"type": "string"}...
{"companyLogo" : "https://cdn2.downdetector.com/static/uploads/logo/Nubank_logo.png", "companyName" : "Nu Pagamentos S.A.", "cnpj" : "18.236.120/0001-58", "cardNumber" : "5162 **** **** 9090", "isAutomaticDebit" : true, "automaticDebitBankName" : "Banco Ita\u00fa", "isFromIuPay" : true, "isUserAdded" : false, "authoriz...
json_instruct
{"type": "object", "properties": {"companyLogo": {"type": "string"}, "companyName": {"type": "string"}, "cnpj": {"type": "string"}, "cardNumber": {"type": "string"}, "isAutomaticDebit": {"type": "boolean"}, "automaticDebitBankName": {"type": "string"}, "isFromIuPay": {"type": "boolean"}, "isUserAdded": {"type": "boolea...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"MutualMasquerade": {"type": "array", "items": {"type": "string"}}}, "required": ["MutualMasquerade"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"MutualMasquerade" : ["TheMasquerade", "JustifiedTrope", "Muggles", "LimitedSocialCircle", "BrokenMasquerade", "FantasyKitchenSink", "Crossover", "RightHandVersusLeftHand", "FlockOfWolves", "TheMasquerade", "GenderBender", "GoldenAge", "GenreSavvy", "LaserGuidedAmnesia", "DependingOnTheWriter", "BelligerentSexualTensi...
json_instruct
{"type": "object", "properties": {"MutualMasquerade": {"type": "array", "items": {"type": "string"}}}, "required": ["MutualMasquerade"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/s...
[{"package" : "bioconductor-flowsorted.cordbloodnorway.450k", "downloads" : 3500, "count" : 3138}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"properties": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "type", "description"]}}}, "required": ...
{"properties" : [{"name" : "app.cors.origins", "type" : "java.lang.String", "description" : "A description for 'app.cors.origins'"}]}
json_instruct
{"type": "object", "properties": {"properties": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "type", "description"]}}}, "required": ["properties"], "$schema": "http://json-schema.org/draft-07...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"enums": {"type": "array", "items": {"type": "string"}}}, "required": ["enums"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"enums" : ["WGS", "Target-Capture", "Depletion", "Unknown"]}
json_instruct
{"type": "object", "properties": {"enums": {"type": "array", "items": {"type": "string"}}}, "required": ["enums"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"files.associations": {"type": "object", "properties": {"SConstruct": {"type": "string"}, "SConscript": {"type": "string"}, "*.S": {"type": "string"}, "usbd_cdc_if_template.h": {"type": "string"}, "usb_device.h": {"t...
{"files.associations" : {"SConstruct" : "python", "SConscript" : "python", "*.S" : "avr", "usbd_cdc_if_template.h" : "c", "usb_device.h" : "c"}}
json_instruct
{"type": "object", "properties": {"files.associations": {"type": "object", "properties": {"SConstruct": {"type": "string"}, "SConscript": {"type": "string"}, "*.S": {"type": "string"}, "usbd_cdc_if_template.h": {"type": "string"}, "usb_device.h": {"type": "string"}}, "required": ["SConstruct", "SConscript", "*.S", "usb...
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" : "0x6870b5cb805c704741783beef1619a98ccc43c09", "tool" : "osiris", "start" : 1564589305.8001814, "end" : 1564589362.5055747, "duration" : 56.70539331436157, "analysis" : [{"errors" : [], "file" : "/unique_chucks/9/0x6870b5cb805c704741783beef1619a98ccc43c09.sol", "name" : "Ninja"}, {"errors" : [], "file" : "...
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 a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "9416019", "regency_id" : "9416", "name" : "SILIMO"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "deep_trenches:block/opalite_block"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"votes": {"type": "object", "properties": {"diff": {"type": "integer"}, "dem": {"type": "integer"}, "tot": {"type": "integer"}, "gop": {"type": "integer"}}, "required": ["diff", "dem", "tot", "gop"]}, "for": {"type": "string"}, "...
{"votes" : {"diff" : 6037, "dem" : 11875, "tot" : 31471, "gop" : 17912}, "for" : "WI/Chippewa County/55017", "pct" : {"dem" : 37.73, "per_point_diff" : 19.18, "gop" : 56.92}}
json_instruct
{"type": "object", "properties": {"votes": {"type": "object", "properties": {"diff": {"type": "integer"}, "dem": {"type": "integer"}, "tot": {"type": "integer"}, "gop": {"type": "integer"}}, "required": ["diff", "dem", "tot", "gop"]}, "for": {"type": "string"}, "pct": {"type": "object", "properties": {"dem": {"type": "...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "fesm2015": {"type": "string"}, "esm2015": {"type": "string"}, "typings": {"type": "string"}, "module": {"type": "string"}, "es2015": {"type": "string"}}, "required": ["na...
{"name" : "@angular/localize/init", "main" : "../bundles/localize-init.umd.js", "fesm2015" : "../fesm2015/init.js", "esm2015" : "../esm2015/init/index.js", "typings" : "./index.d.ts", "module" : "../fesm2015/init.js", "es2015" : "../fesm2015/init.js"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "fesm2015": {"type": "string"}, "esm2015": {"type": "string"}, "typings": {"type": "string"}, "module": {"type": "string"}, "es2015": {"type": "string"}}, "required": ["name", "main", "fesm2015", "esm2015", "typings", "module", "e...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"title": {"type": "string"}, "accountServiceRoot": {"type": "string"}, "profileServiceRoot": {"type": "string"}, "apiRoot": {"type": "string"}, "cacheRoot": {"type": "string"}, "imageRoot": {"type": "string"}, "region": {"type": ...
{"title" : "Office Map", "accountServiceRoot" : "http://localhost/accounts/api", "profileServiceRoot" : "http://localhost/profiles/api", "apiRoot" : "http://localhost/api", "cacheRoot" : "http://localhost/cache", "imageRoot" : "http://localhost/images", "region" : "", "s3Bucket" : ""}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "accountServiceRoot": {"type": "string"}, "profileServiceRoot": {"type": "string"}, "apiRoot": {"type": "string"}, "cacheRoot": {"type": "string"}, "imageRoot": {"type": "string"}, "region": {"type": "string"}, "s3Bucket": {"type": "string"}}, "required": [...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"random_seed": {"type": "object", "properties": {"type": {"type": "string"}, "func": {"type": "string"}, "args": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}}, "required": ["a", "b"]}}, "re...
{"random_seed" : {"type" : "random", "func" : "randint", "args" : {"a" : 1, "b" : 13337}}, "pytorch_seed" : {"type" : "random", "func" : "randint", "args" : {"a" : 10, "b" : 1337}}, "numpy_seed" : {"type" : "random", "func" : "randint", "args" : {"a" : 100, "b" : 4242}}, "train_data_path" : "data/OpenBookQA-V1-Sep2018/...
json_instruct
{"type": "object", "properties": {"random_seed": {"type": "object", "properties": {"type": {"type": "string"}, "func": {"type": "string"}, "args": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}}, "required": ["a", "b"]}}, "required": ["type", "func", "args"]}, "pytorch_seed": {"typ...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "spawners": {"type": "array", "items": {"type": "object", "properties": {"level": {"type": "array", "items": {"type": "integer"}}, "potentials": {"type": "array", "items": {"type": "object", "propert...
{"name" : "spawners:evil_humanoids", "spawners" : [{"level" : [0, 1, 2, 3, 4], "potentials" : [{"name" : "minecraft:evocation_illager"}]}, {"level" : [0, 1, 2, 3, 4], "potentials" : [{"name" : "minecraft:witch"}]}, {"level" : [0, 1, 2, 3, 4], "potentials" : [{"name" : "minecraft:vex"}]}, {"level" : [0, 1, 2, 3, 4], "po...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "spawners": {"type": "array", "items": {"type": "object", "properties": {"level": {"type": "array", "items": {"type": "integer"}}, "potentials": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "thecomfortzone:block/black_oak_stool"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", ...
{"courseCode" : "PP5150", "courseCredit" : "4", "description" : "How is social welfare organised in East Asia? What are the unique strengths and vulnerabilities? This course examines the origins, structure, and performance of social welfare systems in Hong Kong, Singapore, Taiwan, and Korea, and analyses their distinct...
json_instruct
{"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "title"], "$schema": "http://json-schema.org/draft-...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "name": {"type": "string"}}, "required": ["...
{"id" : 27109, "children" : [{"id" : 27110, "name" : "Secondary sector jobs -- and African Americans"}], "name" : "Secondary sector jobs"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "name": {"type": "string"}}, "required": ["id", "children", "name"], "$schema": "http://json-schema....
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["descript...
{"latest_version" : ["0.1.4"], "meta" : {"description" : "PySide view for menues", "homepage" : "https://github.com/storax/qmenuview", "license" : "BSD"}, "versions" : {"0.1.0" : {"sha256" : "95c0a420ac4155f5b697a2abe135182ee0979f2006c10229c154ce6d7a1cb28f", "url" : "https://files.pythonhosted.org/packages/5f/13/819b3e...
json_instruct
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "obje...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "14ea10dc3983780952b7", "c" : {"0" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"version": {"type": "integer"}, "platform-name": {"type": "string"}}, "required": ["version", "platform-name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1, "platform-name" : "DCP"}
json_instruct
{"type": "object", "properties": {"version": {"type": "integer"}, "platform-name": {"type": "string"}}, "required": ["version", "platform-name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"techniques": {"type": "array", "items": {"type": "string"}}, "tool_techniques": {"type": "array", "items": {"type": "string"}}}, "required": ["techniques", "tool_techniques"], "$schema": "http://json-schema.org/draf...
{"techniques" : ["T1007", "T1016", "T1036.005", "T1049", "T1059.003", "T1069.001", "T1082", "T1083", "T1087.001", "T1203", "T1204.002", "T1566.001"], "tool_techniques" : ["T1007", "T1016", "T1018", "T1021.002", "T1049", "T1069.001", "T1069.002", "T1070.005", "T1082", "T1087.001", "T1087.002", "T1124", "T1135", "T1136.0...
json_instruct
{"type": "object", "properties": {"techniques": {"type": "array", "items": {"type": "string"}}, "tool_techniques": {"type": "array", "items": {"type": "string"}}}, "required": ["techniques", "tool_techniques"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "m...
{"ast" : null, "code" : "import isPrefixedValue from 'css-in-js-utils/lib/isPrefixedValue'; // http://caniuse.com/#feat=css-image-set\n\nvar prefixes = ['-webkit-', ''];\nexport default function imageSet(property, value) {\n if (typeof value === 'string' && !isPrefixedValue(value) && value.indexOf('image-set(') > -1) ...
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...
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "terrain": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "id", "name", "terrain"]}, "$schema":...
[{"type" : "start_location", "id" : "sloc_scavenger_bunker", "name" : "Scavenger Bunker", "terrain" : ["s_bunker_shop_g"]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "terrain": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "id", "name", "terrain"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "st...
{"contract" : "0xc06fa497387f2bb6a067bc193266919c94e874b4", "tool" : "osiris", "start" : 1564593471.6763208, "end" : 1564593474.6156566, "duration" : 2.939335823059082, "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": {"": {"type": "array", "items": {"type": "string"}}, "workspaceFolder": {"type": "string"}, "workspaceFolderBasename": {"type": "string"}, "relativeFile": {"type": "string"}, "file": {"type": "string"}, "cwd": {"type": "strin...
{"" : ["--------------------------------------------------------------------------------------------", "Copyright (c) Microsoft Corporation. All rights reserved.", "Licensed under the Source EULA. See License.txt in the project root for license information.", "-----------------------------------------------------------...
json_instruct
{"type": "object", "properties": {"": {"type": "array", "items": {"type": "string"}}, "workspaceFolder": {"type": "string"}, "workspaceFolderBasename": {"type": "string"}, "relativeFile": {"type": "string"}, "file": {"type": "string"}, "cwd": {"type": "string"}, "lineNumber": {"type": "string"}, "selectedText": {"type"...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "conquest:block/apple_wood_beam_bark"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ReactNativeLinkPreviewExample", "displayName" : "ReactNativeLinkPreview Example"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "array", "items": {"type": "boolean"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[true, true, false, false, false, true, true], [true, false, true, false, true, false, true], [false, false, true, false, true, false, false], [false, true, true, false, true, true, false]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "boolean"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
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#"}
[["420113001001", "\u7eff\u82d1\u8def\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["420113001002", "\u6731\u5bb6\u5c71\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["420113001003", "\u8587\u6e56\u8def\u793e\u533a\u5c45\u59d4\u4f1a", "112", "0"], ["420113001004", "\u6ee8\u6c5f\u8def\u793e\u533a\u5c45\u59d4\u4f1a", "112...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"corporate_authors": {"type": "array", "items": {"type": "string"}}, "agency_code": {"type": "string"}, "acquisition_source": {"type": "object", "properties": {"datetime": {"type": "string"}}, "required": ["datetime"...
{"corporate_authors" : ["Principal Metals"], "agency_code" : "SzGeCERN", "acquisition_source" : {"datetime" : "2000-12-25"}, "languages" : ["en"], "titles" : [{"subtitle" : "property data", "title" : "Principal metals online"}], "recid" : 524898, "_access" : {"read" : []}, "keywords" : [{"source" : "CERN", "name" : "me...
json_instruct
{"type": "object", "properties": {"corporate_authors": {"type": "array", "items": {"type": "string"}}, "agency_code": {"type": "string"}, "acquisition_source": {"type": "object", "properties": {"datetime": {"type": "string"}}, "required": ["datetime"]}, "languages": {"type": "array", "items": {"type": "string"}}, "titl...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "st...
{"name" : "zelkova", "version" : "0.0.5", "description" : "Elm-inspired FRP for TypeScript and JavaScript", "main" : "dist/zelkova.js", "repository" : {"type" : "git", "url" : "https://github.com/thisismN/zelkova.git"}, "author" : {"name" : "Gary Burgess", "email" : "gary.burgess@gmail.com"}, "license" : "MIT", "bugs" ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "object", "...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"gccgo630": {"type": "boolean"}, "gccgo494": {"type": "boolean"}, "6g141": {"type": "boolean"}}, "required": ["gccgo630", "gccgo494", "6g141"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"gccgo630" : true, "gccgo494" : true, "6g141" : true}
json_instruct
{"type": "object", "properties": {"gccgo630": {"type": "boolean"}, "gccgo494": {"type": "boolean"}, "6g141": {"type": "boolean"}}, "required": ["gccgo630", "gccgo494", "6g141"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"inventory": {"type": "string"}}, "required": ["inventory"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"...
{"parent" : "ctdmythos:blocks/crystal_fire_ore", "textures" : {"inventory" : "ctdmythos:blocks/crystal_fire_ore"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"inventory": {"type": "string"}}, "required": ["inventory"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "wayto": {"ty...
{"id" : 18567, "title" : ["[Grawood Farmstead, Field]"], "description" : ["Three slender trees grow up beside the artichoke field, their limbs graced with only a handful of pale green leaves. Their willowy builds bend slightly with passing breezes, unlike the artichoke stalks, which seem to have hardened themselves ag...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "wayto": {"type": "object", "properties": {"18561": {"type": "string"}, "18566": {...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"DONE_DESCRIPTION": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required": ["message", "description"]}, "DONE_TITLE": {"type": "object", "properties": {"message": {"type...
{"DONE_DESCRIPTION" : {"message" : "Your calendar has been downloaded and is ready to import. <p>Please leave me a feedback if you find this extension helpful.<br/> You can also treat me with a cup of coffee :o)</p>", "description" : "Description when extraction process successfully finished"}, "DONE_TITLE" : {"message...
json_instruct
{"type": "object", "properties": {"DONE_DESCRIPTION": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required": ["message", "description"]}, "DONE_TITLE": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"bu...
{"name" : "@xutl/events", "version" : "1.0.1", "description" : "Async Event Emitter", "main" : "dist/events.js", "files" : ["dist/events.js", "dist/events.js.map", "dist/events.d.ts"], "scripts" : {"build" : "tsc", "test" : "npm run build && node dist/events.t.js"}, "keywords" : ["Async", "Promise", "Events"], "author"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "req...
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" : 101879565, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "95520b0594cc5cb8b5b4ee66d86d020c", "wof:id" : 101879565, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [-1.52738886724927, 48.50551649795784, -1.51667255520761, 48.513313500130...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-0...
{"variants" : {"" : {"model" : "goo:block/crystal_goo_debris"}}}
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#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type...
{"id" : 1125293191, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "9119201ac4fad0b5f4d5e21b6d268cd9", "wof:id" : 1125293191, "wof:repo" : "whosonfirst-data-admin-pl"}, "bbox" : [16.52704, 52.01339, 16.52704, 52.01339], "geometry" : {"coordinates" : [16.52704, 52.0...
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": ["...