input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "laravel/framework": {"type": "string"}}, "required": ["php", "laravel/framework"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Coderello\\LaravelNovaLang\\": {"type": "string"}}, "required": ["Coderello\\LaravelNovaLang\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}}, "required": ["providers"]}}, "required": ["laravel"]}}, "required": ["name", "description", "keywords", "type", "license", "require", "autoload", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "coderello/laravel-nova-lang", "description" : "Language support for Laravel Nova.", "keywords" : ["laravel", "nova", "language", "lang", "support"], "type" : "library", "license" : "MIT", "require" : {"php" : ">=7.1", "laravel/framework" : "5.5.*|5.6.*|5.7.*|5.8.*"}, "autoload" : {"psr-4" : {"Coderello\\LaravelNovaLang\\" : "src/"}}, "extra" : {"laravel" : {"providers" : ["Coderello\\LaravelNovaLang\\Providers\\LaravelNovaLangServiceProvider"]}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "laravel/framework": {"type": "string"}}, "required": ["php", "laravel/framework"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Coderello\\LaravelNovaLang\\": {"type": "string"}}, "required": ["Coderello\\LaravelNovaLang\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}}, "required": ["providers"]}}, "required": ["laravel"]}}, "required": ["name", "description", "keywords", "type", "license", "require", "autoload", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "c3c487d7cd9c2c5f3c35b736ff1be52958131146"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$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", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x44f958d420f0543353a5e4f14e827d73f01b4261", "tool" : "osiris", "start" : 1564624594.8113434, "end" : 1564624597.5524004, "duration" : 2.7410569190979004, "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://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1992, 5], [1993, 9], [1994, 12], [1997, 5], [1999, 5], [2001, 5], [2005, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "publisher": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}}, "required": ["@types/node"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}}, "required": ["name", "displayName", "description", "version", "publisher", "author", "main", "license", "dependencies", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "typescript_template", "displayName" : "%text.display%", "description" : "%text.description%", "version" : "0.0.1", "publisher" : "Gene Lee", "author" : "Gene Lee", "main" : "./out/main.js", "license" : "MIT", "dependencies" : {}, "devDependencies" : {"@types/node" : "^11.13.2"}, "engines" : {"node" : ">= 6.0.0", "npm" : ">= 3.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "publisher": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}}, "required": ["@types/node"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}}, "required": ["name", "displayName", "description", "version", "publisher", "author", "main", "license", "dependencies", "devDependencies", "engines"], "$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": {"type": "object", "properties": {"errors": {"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "message": {"type": "string"}}, "required": ["line", "column", "message"]}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x3ac0d29eaf16eb423e07387274a05a1e16a8472b", "tool" : "osiris", "start" : 1564590700.252049, "end" : 1564590703.9224098, "duration" : 3.670360803604126, "analysis" : [{"errors" : [{"line" : 24, "column" : 8, "message" : "concurrency_bug"}], "file" : "/unique_chucks/31/0x3ac0d29eaf16eb423e07387274a05a1e16a8472b.sol", "name" : "LuckyNumber"}]}
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": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "message": {"type": "string"}}, "required": ["line", "column", "message"]}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "deploy": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "build", "deploy", "test"]}, "dependencies": {"type": "object", "properties": {"@google-cloud/common": {"type": "string"}, "@google-cloud/nodejs-repo-tools": {"type": "string"}, "@google-cloud/translate": {"type": "string"}, "@types/cors": {"type": "string"}, "api-ai-javascript": {"type": "string"}, "apiai": {"type": "string"}, "arrify": {"type": "string"}, "cors": {"type": "string"}, "extend": {"type": "string"}, "firebase-admin": {"type": "string"}, "firebase-functions": {"type": "string"}, "is": {"type": "string"}, "request": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["@google-cloud/common", "@google-cloud/nodejs-repo-tools", "@google-cloud/translate", "@types/cors", "api-ai-javascript", "apiai", "arrify", "cors", "extend", "firebase-admin", "firebase-functions", "is", "request", "yargs"]}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"@types/request": {"type": "string"}, "ava": {"type": "string"}, "chai": {"type": "string"}, "chai-as-promised": {"type": "string"}, "mocha": {"type": "string"}, "proxyquire": {"type": "string"}, "sinon": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-node-externals": {"type": "string"}}, "required": ["@types/request", "ava", "chai", "chai-as-promised", "mocha", "proxyquire", "sinon", "ts-loader", "typescript", "webpack", "webpack-node-externals"]}}, "required": ["name", "description", "scripts", "dependencies", "private", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "functions", "description" : "Cloud Functions for Firebase", "scripts" : {"start" : "", "build" : "webpack --watch", "deploy" : "firebase deploy --only functions", "test" : "./node_modules/.bin/mocha --reporter spec"}, "dependencies" : {"@google-cloud/common" : "^0.13.4", "@google-cloud/nodejs-repo-tools" : "^1.4.17", "@google-cloud/translate" : "^1.0.0", "@types/cors" : "^2.8.1", "api-ai-javascript" : "^2.0.0-beta.14", "apiai" : "^4.0.3", "arrify" : "^1.0.1", "cors" : "^2.8.4", "extend" : "^3.0.1", "firebase-admin" : "^4.1.2", "firebase-functions" : "^0.5", "is" : "^3.2.1", "request" : "^2.81.0", "yargs" : "^8.0.2"}, "private" : true, "devDependencies" : {"@types/request" : "^2.0.2", "ava" : "^0.22.0", "chai" : "^3.5.0", "chai-as-promised" : "^6.0.0", "mocha" : "^3.4.2", "proxyquire" : "^1.8.0", "sinon" : "^1.17.7", "ts-loader" : "^2.2.2", "typescript" : "^2.4.1", "webpack" : "^3.0.0", "webpack-node-externals" : "^1.6.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "deploy": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "build", "deploy", "test"]}, "dependencies": {"type": "object", "properties": {"@google-cloud/common": {"type": "string"}, "@google-cloud/nodejs-repo-tools": {"type": "string"}, "@google-cloud/translate": {"type": "string"}, "@types/cors": {"type": "string"}, "api-ai-javascript": {"type": "string"}, "apiai": {"type": "string"}, "arrify": {"type": "string"}, "cors": {"type": "string"}, "extend": {"type": "string"}, "firebase-admin": {"type": "string"}, "firebase-functions": {"type": "string"}, "is": {"type": "string"}, "request": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["@google-cloud/common", "@google-cloud/nodejs-repo-tools", "@google-cloud/translate", "@types/cors", "api-ai-javascript", "apiai", "arrify", "cors", "extend", "firebase-admin", "firebase-functions", "is", "request", "yargs"]}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"@types/request": {"type": "string"}, "ava": {"type": "string"}, "chai": {"type": "string"}, "chai-as-promised": {"type": "string"}, "mocha": {"type": "string"}, "proxyquire": {"type": "string"}, "sinon": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-node-externals": {"type": "string"}}, "required": ["@types/request", "ava", "chai", "chai-as-promised", "mocha", "proxyquire", "sinon", "ts-loader", "typescript", "webpack", "webpack-node-externals"]}}, "required": ["name", "description", "scripts", "dependencies", "private", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "subpleural", "definition" : "Situated under the pleural membrane."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"class_name": {"type": "string"}, "bbox": {"type": "string"}, "used": {"type": "boolean"}}, "required": ["class_name", "bbox", "used"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"class_name" : "contrast", "bbox" : "147 177 693 707", "used" : true}, {"class_name" : "specularity", "bbox" : "917 511 948 556", "used" : false}, {"class_name" : "specularity", "bbox" : "953 526 996 565", "used" : false}, {"class_name" : "specularity", "bbox" : "927 548 973 596", "used" : false}, {"class_name" : "specularity", "bbox" : "1068 606 1103 648", "used" : true}, {"class_name" : "specularity", "bbox" : "805 570 851 613", "used" : true}, {"class_name" : "specularity", "bbox" : "948 971 987 1034", "used" : false}, {"class_name" : "specularity", "bbox" : "1040 1030 1099 1062", "used" : true}, {"class_name" : "specularity", "bbox" : "898 384 953 423", "used" : false}, {"class_name" : "instrument", "bbox" : "132 707 558 1069", "used" : true}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"class_name": {"type": "string"}, "bbox": {"type": "string"}, "used": {"type": "boolean"}}, "required": ["class_name", "bbox", "used"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "plugin-id": {"type": "string"}, "sid": {"type": "integer"}, "instanceVariables": {"type": "array", "items": {}}, "behaviorTypes": {"type": "array", "items": {"type": "object", "properties": {"behaviorId": {"type": "string"}, "name": {"type": "string"}, "sid": {"type": "integer"}}, "required": ["behaviorId", "name", "sid"]}}, "effectTypes": {"type": "array", "items": {}}, "members": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "plugin-id", "sid", "instanceVariables", "behaviorTypes", "effectTypes", "members"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "PlatformEntity", "plugin-id" : "Sprite", "sid" : 351611496664961, "instanceVariables" : [], "behaviorTypes" : [{"behaviorId" : "Platform", "name" : "Platform", "sid" : 884118849069588}], "effectTypes" : [], "members" : ["Player"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "plugin-id": {"type": "string"}, "sid": {"type": "integer"}, "instanceVariables": {"type": "array", "items": {}}, "behaviorTypes": {"type": "array", "items": {"type": "object", "properties": {"behaviorId": {"type": "string"}, "name": {"type": "string"}, "sid": {"type": "integer"}}, "required": ["behaviorId", "name", "sid"]}}, "effectTypes": {"type": "array", "items": {}}, "members": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "plugin-id", "sid", "instanceVariables", "behaviorTypes", "effectTypes", "members"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"class": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"newConditionsSetsAreMet": {"type": "boolean"}}, "required": ["newConditionsSetsAreMet"]}, "links": {"type": "array", "items": {"type": "object", "properties": {"rel": {"type": "array", "items": {"type": "string"}}, "href": {"type": "string"}}, "required": ["rel", "href"]}}, "rel": {"type": "array", "items": {"type": "string"}}}, "required": ["class", "properties", "links", "rel"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"class" : ["condition-sets"], "properties" : {"newConditionsSetsAreMet" : false}, "links" : [{"rel" : ["self"], "href" : "data/new-released-content-2.json"}, {"rel" : ["next"], "href" : "data/new-released-content-3.json"}], "rel" : ["conditions-set-status"]}
json_instruct
{"type": "object", "properties": {"class": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"newConditionsSetsAreMet": {"type": "boolean"}}, "required": ["newConditionsSetsAreMet"]}, "links": {"type": "array", "items": {"type": "object", "properties": {"rel": {"type": "array", "items": {"type": "string"}}, "href": {"type": "string"}}, "required": ["rel", "href"]}}, "rel": {"type": "array", "items": {"type": "string"}}}, "required": ["class", "properties", "links", "rel"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"namaKab" : "KAMPAR", "originalFilename" : "HAFIS FOTO.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 20526, "noUrut" : 1, "nama" : "HAFIS TOHAR, SH", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KAMPAR", "originalFilename" : "FOTO RIDHO0002.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 25318, "noUrut" : 2, "nama" : "RIDHO RUSTAR MULYADI", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KAMPAR", "originalFilename" : "FOTO ELY.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 20551, "noUrut" : 3, "nama" : "ELY GUSTINA", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTA PEKANBARU", "originalFilename" : "FOTO HARIS.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 25373, "noUrut" : 4, "nama" : "Ir. M.HARIS", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KAMPAR", "originalFilename" : "PHOTO MHD ZAKIR.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 282648, "noUrut" : 5, "nama" : "MUHAMMAD ZAKIR", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KAMPAR", "originalFilename" : "FOTO HILDA.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 274073, "noUrut" : 6, "nama" : "HILDA AFTAFANI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KAMPAR", "originalFilename" : "FOTO KOLIS0002.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 275273, "noUrut" : 7, "nama" : "KHOLIS", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KAMPAR", "originalFilename" : "FOTO HENDRIZAL0002.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 281936, "noUrut" : 8, "nama" : "HENDRIZAL", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KAMPAR", "originalFilename" : "FOTO LUSI.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 289843, "noUrut" : 9, "nama" : "LUSI INDRIANA", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KAMPAR", "originalFilename" : "PHOTO ELVIA SARI.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 285488, "noUrut" : 10, "nama" : "ELVIA SARI", "stringJenisKelamin" : "Perempuan"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"vue-validator.js": {"type": "string"}, "vue-validator.min.js": {"type": "string"}}, "required": ["vue-validator.js", "vue-validator.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"vue-validator.js" : "sha256-ZX82iKO2Odq2MUFohOTb8nxIkuzpPC+mOvvtyHoCOgE=", "vue-validator.min.js" : "sha256-v+XYEW56uhbqu4f7HilQk33aT+HTICoewRD6qY9noTA="}
json_instruct
{"type": "object", "properties": {"vue-validator.js": {"type": "string"}, "vue-validator.min.js": {"type": "string"}}, "required": ["vue-validator.js", "vue-validator.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "devDependencies": {"type": "object", "properties": {"ava": {"type": "string"}, "standard": {"type": "string"}}, "required": ["ava", "standard"]}, "private": {"type": "boolean"}}, "required": ["name", "main", "scripts", "devDependencies", "private"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "aoc-2018-day06", "main" : "index.js", "scripts" : {"test" : "standard && ava"}, "devDependencies" : {"ava" : "^1.0.0-rc.2", "standard" : "^12.0.1"}, "private" : true}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "devDependencies": {"type": "object", "properties": {"ava": {"type": "string"}, "standard": {"type": "string"}}, "required": ["ava", "standard"]}, "private": {"type": "boolean"}}, "required": ["name", "main", "scripts", "devDependencies", "private"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"jsonrpc": {"type": "string"}, "id": {"type": "integer"}, "result": {"type": "object", "properties": {"settlements": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "timestamp": {"type": "integer"}, "session_profit_loss": {"type": "number"}, "profit_loss": {"type": "number"}, "position": {"type": "integer"}, "mark_price": {"type": "number"}, "instrument_name": {"type": "string"}, "index_price": {"type": "number"}}, "required": ["type", "timestamp", "session_profit_loss", "profit_loss", "position", "mark_price", "instrument_name", "index_price"]}}, "continuation": {"type": "string"}}, "required": ["settlements", "continuation"]}}, "required": ["jsonrpc", "id", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"jsonrpc" : "2.0", "id" : 2192, "result" : {"settlements" : [{"type" : "settlement", "timestamp" : 1550475692526, "session_profit_loss" : 0.038358299, "profit_loss" : -0.001783937, "position" : -66, "mark_price" : 121.67, "instrument_name" : "ETH-22FEB19", "index_price" : 119.8}], "continuation" : "xY7T6cusbMBNpH9SNmKb94jXSBxUPojJEdCPL4YociHBUgAhWQvEP"}}
json_instruct
{"type": "object", "properties": {"jsonrpc": {"type": "string"}, "id": {"type": "integer"}, "result": {"type": "object", "properties": {"settlements": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "timestamp": {"type": "integer"}, "session_profit_loss": {"type": "number"}, "profit_loss": {"type": "number"}, "position": {"type": "integer"}, "mark_price": {"type": "number"}, "instrument_name": {"type": "string"}, "index_price": {"type": "number"}}, "required": ["type", "timestamp", "session_profit_loss", "profit_loss", "position", "mark_price", "instrument_name", "index_price"]}}, "continuation": {"type": "string"}}, "required": ["settlements", "continuation"]}}, "required": ["jsonrpc", "id", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
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" : "3327070007", "district_id" : "3327070", "name" : "KARANGMONCOL"}
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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "value": {"type": "integer"}, "name": {"type": "string"}, "limit": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["id", "value", "name", "limit", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 44686, "value" : 20, "name" : "Banite armour set + 4", "limit" : 100, "name_pt" : "Conjunto de armadura da maldi\u00e7\u00e3o + 4", "price" : 2342484, "last" : 2342484}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "value": {"type": "integer"}, "name": {"type": "string"}, "limit": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["id", "value", "name", "limit", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"css/framework7.css": {"type": "string"}, "css/framework7.min.css": {"type": "string"}, "js/framework7.js": {"type": "string"}, "js/framework7.min.js": {"type": "string"}}, "required": ["css/framework7.css", "css/framework7.min.css", "js/framework7.js", "js/framework7.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"css/framework7.css" : "sha256-OaAkCNvmwsgLchwR7FgNsda3TeWv1gls0sWhP1iLffM=", "css/framework7.min.css" : "sha256-yEe4RMGXyvfYgg+3lpbdkVVHMfLlINHsbcTuKVPK7vg=", "js/framework7.js" : "sha256-N+N0SoEJymfV0Kwls76a+L3yxLTvwoPuk5wVaQWnBG0=", "js/framework7.min.js" : "sha256-k/B12Z+1sW3bLbUTupq5ezY3xVqooQSjCDHIQcKgCkc="}
json_instruct
{"type": "object", "properties": {"css/framework7.css": {"type": "string"}, "css/framework7.min.css": {"type": "string"}, "js/framework7.js": {"type": "string"}, "js/framework7.min.js": {"type": "string"}}, "required": ["css/framework7.css", "css/framework7.min.css", "js/framework7.js", "js/framework7.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"version": {"type": "string"}}, "required": ["version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "3.3.12"}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}}, "required": ["version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"bulma-calendar": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"date-and-time": {"type": "string"}, "date-fns": {"type": "string"}}, "required": ["date-and-time", "date-fns"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "date-and-time": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "date-fns": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["bulma-calendar", "date-and-time", "date-fns"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "slack-send-later", "version" : "0.0.3", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"bulma-calendar" : {"version" : "6.0.9", "resolved" : "https://registry.npmjs.org/bulma-calendar/-/bulma-calendar-6.0.9.tgz", "integrity" : "sha512-Z+zu1uVqKOKYV+I6LAkvhLM0uR+Qb8SixZ+Xv70a/A0mc2wU5mh+xr+BT02+Gj5U2KTE0m4xDk6hZKIEibqbCQ==", "requires" : {"date-and-time" : "^0.6.3", "date-fns" : "^1.29.0"}}, "date-and-time" : {"version" : "0.6.3", "resolved" : "https://registry.npmjs.org/date-and-time/-/date-and-time-0.6.3.tgz", "integrity" : "sha512-lcWy3AXDRJOD7MplwZMmNSRM//kZtJaLz4n6D1P5z9wEmZGBKhJRBIr1Xs9KNQJmdXPblvgffynYji4iylUTcA=="}, "date-fns" : {"version" : "1.30.1", "resolved" : "https://registry.npmjs.org/date-fns/-/date-fns-1.30.1.tgz", "integrity" : "sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw=="}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"bulma-calendar": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"date-and-time": {"type": "string"}, "date-fns": {"type": "string"}}, "required": ["date-and-time", "date-fns"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "date-and-time": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "date-fns": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["bulma-calendar", "date-and-time", "date-fns"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}, "description": {"type": "string"}, "defaultPage": {"type": "string"}, "services": {"type": "object", "properties": {}, "required": []}, "types": {"type": "object", "properties": {}, "required": []}, "variables": {"type": "object", "properties": {}, "required": []}}, "required": ["id", "description", "defaultPage", "services", "types", "variables"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "many-editable-rows", "description" : "Flow main", "defaultPage" : "many-editable-rows-start", "services" : {}, "types" : {}, "variables" : {}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "description": {"type": "string"}, "defaultPage": {"type": "string"}, "services": {"type": "object", "properties": {}, "required": []}, "types": {"type": "object", "properties": {}, "required": []}, "variables": {"type": "object", "properties": {}, "required": []}}, "required": ["id", "description", "defaultPage", "services", "types", "variables"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"jstreegrid.js": {"type": "string"}, "jstreegrid.min.js": {"type": "string"}}, "required": ["jstreegrid.js", "jstreegrid.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"jstreegrid.js" : "sha512-i8uX6X/RPvPG0oMYe+LMC0Uwn6BCcKCvKwxdUrAtzZGRFAbBPYIKyi5TaSH74aYsm3TTjHO22PQ6IODVTeycfg==", "jstreegrid.min.js" : "sha512-wBd/pjQ5R5f77acfW2BKy2hw3m1Ig04QEL7R/2gnNBmLWAi2ooOfyWv3M1kdfK3wohjg/R433jcGMHQ5RjuxHQ=="}
json_instruct
{"type": "object", "properties": {"jstreegrid.js": {"type": "string"}, "jstreegrid.min.js": {"type": "string"}}, "required": ["jstreegrid.js", "jstreegrid.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "connect-mongo": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-session": {"type": "string"}, "firebase-tools": {"type": "string"}, "mongoose": {"type": "string"}, "passport": {"type": "string"}, "passport-facebook": {"type": "string"}, "passport-twitter": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["body-parser", "connect-mongo", "ejs", "express", "express-session", "firebase-tools", "mongoose", "passport", "passport-facebook", "passport-twitter", "socket.io"]}}, "required": ["name", "version", "description", "scripts", "author", "license", "engines", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "chatapp", "version" : "1.0.0", "description" : "A chat App", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "node server.js"}, "author" : "", "license" : "ISC", "engines" : {"node" : "4.2.2"}, "dependencies" : {"body-parser" : "^1.19.0", "connect-mongo" : "1.1.0", "ejs" : "2.3.4", "express" : "4.13.3", "express-session" : "1.12.1", "firebase-tools" : "^8.4.1", "mongoose" : "^5.9.15", "passport" : "0.3.2", "passport-facebook" : "2.0.0", "passport-twitter" : "1.0.3", "socket.io" : "1.4.5"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "connect-mongo": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-session": {"type": "string"}, "firebase-tools": {"type": "string"}, "mongoose": {"type": "string"}, "passport": {"type": "string"}, "passport-facebook": {"type": "string"}, "passport-twitter": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["body-parser", "connect-mongo", "ejs", "express", "express-session", "firebase-tools", "mongoose", "passport", "passport-facebook", "passport-twitter", "socket.io"]}}, "required": ["name", "version", "description", "scripts", "author", "license", "engines", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"recommendations": {"type": "array", "items": {"type": "string"}}}, "required": ["recommendations"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"recommendations" : ["dbaeumer.vscode-eslint", "mrmlnc.vscode-scss", "shinnn.stylelint", "wayou.vscode-todo-highlight", "octref.vetur", "dariofuzinato.vue-peek", "redhat.vscode-yaml"]}
json_instruct
{"type": "object", "properties": {"recommendations": {"type": "array", "items": {"type": "string"}}}, "required": ["recommendations"], "$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"}, "dependencies": {"type": "object", "properties": {"allure-commandline": {"type": "string"}, "appium": {"type": "string"}, "chai": {"type": "string"}, "cucumber": {"type": "string"}, "fs-extra": {"type": "string"}, "imagemin": {"type": "string"}, "imagemin-pngquant": {"type": "string"}, "lodash": {"type": "string"}, "moment": {"type": "string"}, "request": {"type": "string"}, "stackframe": {"type": "string"}, "wdio-allure-reporter": {"type": "string"}, "wdio-cucumber2-framework": {"type": "string"}, "webdriverio": {"type": "string"}}, "required": ["allure-commandline", "appium", "chai", "cucumber", "fs-extra", "imagemin", "imagemin-pngquant", "lodash", "moment", "request", "stackframe", "wdio-allure-reporter", "wdio-cucumber2-framework", "webdriverio"]}, "devDependencies": {"type": "object", "properties": {"wdio-appium-service": {"type": "string"}}, "required": ["wdio-appium-service"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "calendar_android_tests", "version" : "1.0.0", "description" : "", "main" : "wdio.cucumber.conf", "dependencies" : {"allure-commandline" : "^2.1.1", "appium" : "^1.6.5", "chai" : "^4.1.0", "cucumber" : "^2.3.1", "fs-extra" : "^3.0.1", "imagemin" : "^5.3.1", "imagemin-pngquant" : "^5.0.1", "lodash" : "^4.17.4", "moment" : "^2.18.1", "request" : "^2.81.0", "stackframe" : "^1.0.3", "wdio-allure-reporter" : "^0.1.2", "wdio-cucumber2-framework" : "0.0.4", "webdriverio" : "^4.8.0"}, "devDependencies" : {"wdio-appium-service" : "^0.2.3"}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "", "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"allure-commandline": {"type": "string"}, "appium": {"type": "string"}, "chai": {"type": "string"}, "cucumber": {"type": "string"}, "fs-extra": {"type": "string"}, "imagemin": {"type": "string"}, "imagemin-pngquant": {"type": "string"}, "lodash": {"type": "string"}, "moment": {"type": "string"}, "request": {"type": "string"}, "stackframe": {"type": "string"}, "wdio-allure-reporter": {"type": "string"}, "wdio-cucumber2-framework": {"type": "string"}, "webdriverio": {"type": "string"}}, "required": ["allure-commandline", "appium", "chai", "cucumber", "fs-extra", "imagemin", "imagemin-pngquant", "lodash", "moment", "request", "stackframe", "wdio-allure-reporter", "wdio-cucumber2-framework", "webdriverio"]}, "devDependencies": {"type": "object", "properties": {"wdio-appium-service": {"type": "string"}}, "required": ["wdio-appium-service"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"author": {"type": "array", "items": {"type": "string"}}, "install_msg": {"type": "string"}, "short": {"type": "string"}, "description": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "requirements": {"type": "array", "items": {"type": "string"}}, "end_user_data_statement": {"type": "string"}}, "required": ["author", "install_msg", "short", "description", "tags", "requirements", "end_user_data_statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : ["Fixator10", "DiNitride"], "install_msg" : "Thanks for install.", "short" : "Some (maybe) useful utils.", "description" : "Some (maybe) useful utils.", "tags" : ["utils", "time", "someone", "color"], "requirements" : ["tabulate"], "end_user_data_statement" : "This cog does not persistently store data or metadata about users."}
json_instruct
{"type": "object", "properties": {"author": {"type": "array", "items": {"type": "string"}}, "install_msg": {"type": "string"}, "short": {"type": "string"}, "description": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "requirements": {"type": "array", "items": {"type": "string"}}, "end_user_data_statement": {"type": "string"}}, "required": ["author", "install_msg", "short", "description", "tags", "requirements", "end_user_data_statement"], "$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"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@luma.gl/core": {"type": "string"}, "antd": {"type": "string"}, "d3-scale": {"type": "string"}, "d3-scale-chromatic": {"type": "string"}, "deck.gl": {"type": "string"}, "protobufjs": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-map-gl": {"type": "string"}, "react-scripts": {"type": "string"}, "recharts": {"type": "string"}, "source-map-explorer": {"type": "string"}}, "required": ["@luma.gl/core", "antd", "d3-scale", "d3-scale-chromatic", "deck.gl", "protobufjs", "react", "react-dom", "react-map-gl", "react-scripts", "recharts", "source-map-explorer"]}, "scripts": {"type": "object", "properties": {"analyze": {"type": "string"}, "start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "eject": {"type": "string"}}, "required": ["analyze", "start", "build", "test", "eject"]}, "eslintConfig": {"type": "object", "properties": {"extends": {"type": "string"}}, "required": ["extends"]}, "browserslist": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"simplify-geojson": {"type": "string"}}, "required": ["simplify-geojson"]}}, "required": ["name", "version", "private", "dependencies", "scripts", "eslintConfig", "browserslist", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "frontend", "version" : "0.1.0", "private" : true, "dependencies" : {"@luma.gl/core" : "^8.2.0", "antd" : "^4.7.0", "d3-scale" : "^3.2.2", "d3-scale-chromatic" : "^2.0.0", "deck.gl" : "^8.2.7", "protobufjs" : "^6.10.2", "react" : "^16.6.0", "react-dom" : "^16.6.0", "react-map-gl" : "^5.2.10", "react-scripts" : "^4.0.0", "recharts" : "^1.8.5", "source-map-explorer" : "^2.5.0"}, "scripts" : {"analyze" : "source-map-explorer 'build/static/js/*.js'", "start" : "react-scripts start", "build" : "react-scripts build", "test" : "react-scripts test", "eject" : "react-scripts eject"}, "eslintConfig" : {"extends" : "react-app"}, "browserslist" : [">0.2%", "not dead", "not ie <= 11", "not op_mini all"], "devDependencies" : {"simplify-geojson" : "^1.0.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@luma.gl/core": {"type": "string"}, "antd": {"type": "string"}, "d3-scale": {"type": "string"}, "d3-scale-chromatic": {"type": "string"}, "deck.gl": {"type": "string"}, "protobufjs": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-map-gl": {"type": "string"}, "react-scripts": {"type": "string"}, "recharts": {"type": "string"}, "source-map-explorer": {"type": "string"}}, "required": ["@luma.gl/core", "antd", "d3-scale", "d3-scale-chromatic", "deck.gl", "protobufjs", "react", "react-dom", "react-map-gl", "react-scripts", "recharts", "source-map-explorer"]}, "scripts": {"type": "object", "properties": {"analyze": {"type": "string"}, "start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "eject": {"type": "string"}}, "required": ["analyze", "start", "build", "test", "eject"]}, "eslintConfig": {"type": "object", "properties": {"extends": {"type": "string"}}, "required": ["extends"]}, "browserslist": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"simplify-geojson": {"type": "string"}}, "required": ["simplify-geojson"]}}, "required": ["name", "version", "private", "dependencies", "scripts", "eslintConfig", "browserslist", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 24446, "cartId" : "e2197ffe-4e8d-4290-9769-dd4025430de3", "preferredProducts" : [], "productReviews" : [{"productId" : 2669, "reviewText" : "This Chief works quite well. It romantically improves my golf by a lot.", "reviewDate" : "2018-03-24T16:50:44.1314022+02:00"}, {"productId" : 1443, "reviewText" : "It only works when I'm Guernsey.", "reviewDate" : "2017-06-24T04:56:48.4336397+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "string"}, "image_type": {"type": "string"}, "features": {"type": "array", "items": {}}, "url": {"type": "string"}, "md5": {"type": "string"}, "md5_file": {"type": "string"}, "sha1": {"type": "string"}, "sha1_file": {"type": "string"}, "sha256": {"type": "string"}, "sha256_file": {"type": "string"}, "sha512": {"type": "string"}, "sha512_file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["vendor", "filename", "release_type", "version", "java_version", "jvm_impl", "os", "architecture", "file_type", "image_type", "features", "url", "md5", "md5_file", "sha1", "sha1_file", "sha256", "sha256_file", "sha512", "sha512_file", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"vendor" : "sapmachine", "filename" : "sapmachine-jre-17-eabeta.2_linux-aarch64_bin.tar.gz", "release_type" : "ea", "version" : "17-eabeta.2", "java_version" : "17-eabeta.2", "jvm_impl" : "hotspot", "os" : "linux", "architecture" : "aarch64", "file_type" : "tar.gz", "image_type" : "jre", "features" : [], "url" : "https://github.com/SAP/SapMachine/releases/download/sapmachine-17+2/sapmachine-jre-17-eabeta.2_linux-aarch64_bin.tar.gz", "md5" : "e93b249ddc4f2f62025d9c800eba9150", "md5_file" : "sapmachine-jre-17-eabeta.2_linux-aarch64_bin.tar.gz.md5", "sha1" : "8fbb416ef738dd3899fa9edcff901eaa3952dfb9", "sha1_file" : "sapmachine-jre-17-eabeta.2_linux-aarch64_bin.tar.gz.sha1", "sha256" : "e288efdceea5496c11145de2848d3746d496e6f7b7f4fada8d508637bb40f008", "sha256_file" : "sapmachine-jre-17-eabeta.2_linux-aarch64_bin.tar.gz.sha256", "sha512" : "2cc8bcff08b3ed6c3e15213432c70c6ee7488ca9084a4d0ceef8efd0d6b581190ad3cf1663d203ae6c95eae8264e4afdec2fc20b9e8d38ac9e86113d94fef2f5", "sha512_file" : "sapmachine-jre-17-eabeta.2_linux-aarch64_bin.tar.gz.sha512", "size" : 48666068}
json_instruct
{"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "string"}, "image_type": {"type": "string"}, "features": {"type": "array", "items": {}}, "url": {"type": "string"}, "md5": {"type": "string"}, "md5_file": {"type": "string"}, "sha1": {"type": "string"}, "sha1_file": {"type": "string"}, "sha256": {"type": "string"}, "sha256_file": {"type": "string"}, "sha512": {"type": "string"}, "sha512_file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["vendor", "filename", "release_type", "version", "java_version", "jvm_impl", "os", "architecture", "file_type", "image_type", "features", "url", "md5", "md5_file", "sha1", "sha1_file", "sha256", "sha256_file", "sha512", "sha512_file", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"http": {"type": "object", "properties": {"address": {"type": "string"}, "workers": {"type": "object", "properties": {"command": {"type": "string"}, "pool": {"type": "object", "properties": {"numWorkers": {"type": "integer"}}, "required": ["numWorkers"]}}, "required": ["command", "pool"]}}, "required": ["address", "workers"]}}, "required": ["http"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"http" : {"address" : "0.0.0.0:8080", "workers" : {"command" : "php cakephp-worker.php", "pool" : {"numWorkers" : 8}}}}
json_instruct
{"type": "object", "properties": {"http": {"type": "object", "properties": {"address": {"type": "string"}, "workers": {"type": "object", "properties": {"command": {"type": "string"}, "pool": {"type": "object", "properties": {"numWorkers": {"type": "integer"}}, "required": ["numWorkers"]}}, "required": ["command", "pool"]}}, "required": ["address", "workers"]}}, "required": ["http"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required": ["Default", "Microsoft", "Microsoft.Hosting.Lifetime"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}, "ConnectionStrings": {"type": "object", "properties": {"OldConnectionString": {"type": "string"}, "NewConnectionString": {"type": "string"}}, "required": ["OldConnectionString", "NewConnectionString"]}}, "required": ["Logging", "AllowedHosts", "ConnectionStrings"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Logging" : {"LogLevel" : {"Default" : "Information", "Microsoft" : "Warning", "Microsoft.Hosting.Lifetime" : "Information"}}, "AllowedHosts" : "*", "ConnectionStrings" : {"OldConnectionString" : "Server=tcp:biplabhomesqldbs.database.windows.net,1433;Initial Catalog=RationCard;Persist Security Info=False;User ID=biplabhomeSql;Password=Nakshal!01051987;MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;", "NewConnectionString" : "Server=ARINDAMGONOKJAN\\SQL2019;Database=RationcardRegister;User Id=sa;Password=Nakshal!01051987;"}}
json_instruct
{"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required": ["Default", "Microsoft", "Microsoft.Hosting.Lifetime"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}, "ConnectionStrings": {"type": "object", "properties": {"OldConnectionString": {"type": "string"}, "NewConnectionString": {"type": "string"}}, "required": ["OldConnectionString", "NewConnectionString"]}}, "required": ["Logging", "AllowedHosts", "ConnectionStrings"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "3310040003", "district_id" : "3310040", "name" : "JARUM"}
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "7318020042", "district_id" : "7318020", "name" : "LEMBANG BUNTU DATU"}
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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_closed": {"type": "boolean"}, "description": {"type": "string"}, "shortname": {"type": "string"}, "discr": {"type": "string"}, "type": {"type": "string"}, "_links": {"type": "object", "properties": {"self": {"type": "object", "properties": {"href": {"type": "string"}}, "required": ["href"]}, "homepage": {"type": "object", "properties": {"href": {"type": "string"}}, "required": ["href"]}, "users": {"type": "object", "properties": {"href": {"type": "string"}}, "required": ["href"]}, "services": {"type": "object", "properties": {"href": {"type": "string"}}, "required": ["href"]}, "chairs": {"type": "object", "properties": {"href": {"type": "string"}}, "required": ["href"]}, "join": {"type": "object", "properties": {"href": {"type": "string"}}, "required": ["href"]}, "participations": {"type": "object", "properties": {"href": {"type": "string"}}, "required": ["href"]}}, "required": ["self", "homepage", "users", "services", "chairs", "join", "participations"]}, "identifier": {"type": "string"}}, "required": ["id", "name", "is_closed", "description", "shortname", "discr", "type", "_links", "identifier"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 111355, "name" : "ARIA and Assistive Technologies Community Group", "is_closed" : false, "description" : "How WAI-ARIA is supported by assistive technologies, such as screen readers, is highly variable. This variation in WAI-ARIA rendering adds unnecessary complexity to the development of high-quality web experiences for users of assistive technologies and places significant limitations on the types of web widgets that can be made widely accessible.\r\n\r\nThis community group is dedicated to:\r\n\r\n1. helping assistive technology developers converge on a set of clear norms for baseline support of WAI-ARIA.\r\n2. Helping web developers understand the current state of support for WAI-ARIA by assistive technologies.\r\n\r\nWAI-ARIA is as important to assistive technology presentation as CSS is to visual presentation. Join us to help make WAI-ARIA as reliable as CSS.\r\n\r\nThis group will not publish Specifications.", "shortname" : "aria-at", "discr" : "w3cgroup", "type" : "community group", "_links" : {"self" : {"href" : "https://api.w3.org/groups/cg/aria-at"}, "homepage" : {"href" : "https://www.w3.org/community/aria-at/"}, "users" : {"href" : "https://api.w3.org/groups/cg/aria-at/users"}, "services" : {"href" : "https://api.w3.org/groups/cg/aria-at/services"}, "chairs" : {"href" : "https://api.w3.org/groups/cg/aria-at/chairs"}, "join" : {"href" : "https://www.w3.org/community/aria-at/join"}, "participations" : {"href" : "https://api.w3.org/groups/cg/aria-at/participations"}}, "identifier" : "cg/aria-at"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_closed": {"type": "boolean"}, "description": {"type": "string"}, "shortname": {"type": "string"}, "discr": {"type": "string"}, "type": {"type": "string"}, "_links": {"type": "object", "properties": {"self": {"type": "object", "properties": {"href": {"type": "string"}}, "required": ["href"]}, "homepage": {"type": "object", "properties": {"href": {"type": "string"}}, "required": ["href"]}, "users": {"type": "object", "properties": {"href": {"type": "string"}}, "required": ["href"]}, "services": {"type": "object", "properties": {"href": {"type": "string"}}, "required": ["href"]}, "chairs": {"type": "object", "properties": {"href": {"type": "string"}}, "required": ["href"]}, "join": {"type": "object", "properties": {"href": {"type": "string"}}, "required": ["href"]}, "participations": {"type": "object", "properties": {"href": {"type": "string"}}, "required": ["href"]}}, "required": ["self", "homepage", "users", "services", "chairs", "join", "participations"]}, "identifier": {"type": "string"}}, "required": ["id", "name", "is_closed", "description", "shortname", "discr", "type", "_links", "identifier"], "$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"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@zeit/next-sass": {"type": "string"}, "next": {"type": "string"}, "next-compose-plugins": {"type": "string"}, "next-images": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["@zeit/next-sass", "next", "next-compose-plugins", "next-images", "react", "react-dom"]}}, "required": ["name", "version", "description", "private", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "fixture", "version" : "1.0.0", "description" : "Fixture to test against Next.js 5", "private" : true, "main" : "index.js", "scripts" : {"build" : "next build"}, "author" : "", "license" : "ISC", "dependencies" : {"@zeit/next-sass" : "^0.2.0", "next" : "^5.1.0", "next-compose-plugins" : "^2.1.1", "next-images" : "^0.10.2", "react" : "^16.3.2", "react-dom" : "^16.3.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@zeit/next-sass": {"type": "string"}, "next": {"type": "string"}, "next-compose-plugins": {"type": "string"}, "next-images": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["@zeit/next-sass", "next", "next-compose-plugins", "next-images", "react", "react-dom"]}}, "required": ["name", "version", "description", "private", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "author": {"type": "string"}, "offline_enabled": {"type": "boolean"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "chrome_url_overrides": {"type": "object", "properties": {"newtab": {"type": "string"}}, "required": ["newtab"]}, "icons": {"type": "object", "properties": {"96": {"type": "string"}}, "required": ["96"]}, "applications": {"type": "object", "properties": {"gecko": {"type": "object", "properties": {"strict_min_version": {"type": "string"}}, "required": ["strict_min_version"]}}, "required": ["gecko"]}}, "required": ["manifest_version", "author", "offline_enabled", "name", "description", "version", "chrome_url_overrides", "icons", "applications"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"manifest_version" : 2, "author" : "Sarath Sadasivan Pillai", "offline_enabled" : true, "name" : "Countdown Timer", "description" : "Set new tab to show a count down timer to an event", "version" : "0.2", "chrome_url_overrides" : {"newtab" : "sites.html"}, "icons" : {"96" : "icons/countdown-96.png"}, "applications" : {"gecko" : {"strict_min_version" : "54.0a1"}}}
json_instruct
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "author": {"type": "string"}, "offline_enabled": {"type": "boolean"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "chrome_url_overrides": {"type": "object", "properties": {"newtab": {"type": "string"}}, "required": ["newtab"]}, "icons": {"type": "object", "properties": {"96": {"type": "string"}}, "required": ["96"]}, "applications": {"type": "object", "properties": {"gecko": {"type": "object", "properties": {"strict_min_version": {"type": "string"}}, "required": ["strict_min_version"]}}, "required": ["gecko"]}}, "required": ["manifest_version", "author", "offline_enabled", "name", "description", "version", "chrome_url_overrides", "icons", "applications"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 84748, "cartId" : "a13e37e7-d662-4757-b8b8-2e68a61c37ca", "preferredProducts" : [2911], "productReviews" : [{"productId" : 1738, "reviewText" : "The box this comes in is 4 mile by 5 inch and weights 19 megaton!", "reviewDate" : "2016-12-01T10:50:37.3500749+02:00"}, {"productId" : 2083, "reviewText" : "I tried to maul it but got onion all over it.", "reviewDate" : "2020-04-11T23:05:22.3323503+03:00"}, {"productId" : 2471, "reviewText" : "heard about this on new jersey hip hop radio, decided to give it a try.", "reviewDate" : "2018-03-19T06:51:39.0511883+02:00"}, {"productId" : 1482, "reviewText" : "I tried to nab it but got biscuit all over it.", "reviewDate" : "2016-08-19T21:21:02.357094+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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"}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "grunt": {"type": "string"}, "jasmine-node": {"type": "string"}, "mocha": {"type": "string"}, "node-fixtures": {"type": "string"}}, "required": ["chai", "grunt", "jasmine-node", "mocha", "node-fixtures"]}, "dependencies": {"type": "object", "properties": {"browserify": {"type": "string"}, "lodash": {"type": "string"}, "watchify": {"type": "string"}, "webworkify": {"type": "string"}}, "required": ["browserify", "lodash", "watchify", "webworkify"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Chess.ai.js", "version" : "0.0.1", "description" : "Artificial intelligence for chess", "main" : "index.js", "scripts" : {"test" : "./node_modules/.bin/jasmine-node test"}, "author" : "Krzysztof Kaczor", "license" : "MIT", "devDependencies" : {"chai" : "^3.0.0", "grunt" : "^0.4.5", "jasmine-node" : "^1.14.5", "mocha" : "^2.2.4", "node-fixtures" : "0.0.1"}, "dependencies" : {"browserify" : "^10.1.3", "lodash" : "^3.8.0", "watchify" : "^3.2.1", "webworkify" : "^1.0.2"}}
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"}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "grunt": {"type": "string"}, "jasmine-node": {"type": "string"}, "mocha": {"type": "string"}, "node-fixtures": {"type": "string"}}, "required": ["chai", "grunt", "jasmine-node", "mocha", "node-fixtures"]}, "dependencies": {"type": "object", "properties": {"browserify": {"type": "string"}, "lodash": {"type": "string"}, "watchify": {"type": "string"}, "webworkify": {"type": "string"}}, "required": ["browserify", "lodash", "watchify", "webworkify"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}}, "required": ["bootstrap"]}}, "required": ["name", "version", "homepage", "authors", "description", "main", "license", "private", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "weathergen-api", "version" : "1.0.0", "homepage" : "https://github.com/tbadams45/weathergen-api#readme", "authors" : ["Jeff Walker <walker.jeff.d@gmail.com>", "Timothy Adams <tbadams45@gmail.com>"], "description" : "A stand-alone API for the R weathergen package", "main" : "app.js", "license" : "MIT", "private" : true, "ignore" : ["**/.", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"bootstrap" : "~3.3.7"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}}, "required": ["bootstrap"]}}, "required": ["name", "version", "homepage", "authors", "description", "main", "license", "private", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "thumbnail": {"type": "string"}, "data": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["id", "title", "type", "thumbnail", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "ANDROID_MAGNETIC_GADGET", "title" : "ANDROID_MAGNETIC_GADGET", "type" : "gadget", "thumbnail" : "gadget/ANDROID_MAGNETIC_GADGET/thumbnail.png", "data" : {"url" : "gadget/ANDROID_MAGNETIC_GADGET/gadget.xml"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "thumbnail": {"type": "string"}, "data": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["id", "title", "type", "thumbnail", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "sourceName": {"type": "string"}, "sourcePath": {"type": "string"}, "targetInstanceVariable": {"type": "string"}}, "required": ["id", "sourceName", "sourcePath", "targetInstanceVariable"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "f8267e1c-4978-4bfd-bd03-fb6e6f5e5268", "sourceName" : "festenummer", "sourcePath" : "/folkeregisterperson/oppholdsadresse/matrikkeladresse/matrikkelnummer/", "targetInstanceVariable" : "/InstanceVariable/81852eba-c86e-49e1-830b-81bcb9698d75"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "sourceName": {"type": "string"}, "sourcePath": {"type": "string"}, "targetInstanceVariable": {"type": "string"}}, "required": ["id", "sourceName", "sourcePath", "targetInstanceVariable"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "optionalDependencies": {"type": "object", "properties": {}, "required": []}, "dependencies": {"type": "object", "properties": {"vantage": {"type": "string"}}, "required": ["vantage"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "iojs": {"type": "string"}}, "required": ["node", "iojs"]}, "files": {"type": "array", "items": {"type": "string"}}, "eslintConfig": {"type": "object", "properties": {"env": {"type": "object", "properties": {"node": {"type": "boolean"}, "browser": {"type": "boolean"}}, "required": ["node", "browser"]}, "rules": {"type": "object", "properties": {"no-underscore-dangle": {"type": "integer"}, "no-process-exit": {"type": "integer"}}, "required": ["no-underscore-dangle", "no-process-exit"]}}, "required": ["env", "rules"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "optionalDependencies", "dependencies", "engines", "files", "eslintConfig"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "vantage-command-proxy", "version" : "1.0.0", "description" : "Info Proxy for vantage.js commands", "main" : "./lib/command-proxy.js", "scripts" : {}, "repository" : {"type" : "git", "url" : "git+https://github.com/BananaAcid/vantage-command-proxy.git"}, "keywords" : ["api", "cli", "vantage", "vantagejs", "proxy"], "author" : {"name" : "BananaAcid"}, "license" : "MIT", "bugs" : {"url" : "https://github.com/BananaAcid/vantage-command-proxy/issues"}, "homepage" : "https://github.com/BananaAcid/vantage-command-proxy#readme", "devDependencies" : {}, "optionalDependencies" : {}, "dependencies" : {"vantage" : ">=1.5.1"}, "engines" : {"node" : ">= 4.2.1", "iojs" : ">= 1.0.0"}, "files" : ["lib"], "eslintConfig" : {"env" : {"node" : true, "browser" : false}, "rules" : {"no-underscore-dangle" : 0, "no-process-exit" : 0}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "optionalDependencies": {"type": "object", "properties": {}, "required": []}, "dependencies": {"type": "object", "properties": {"vantage": {"type": "string"}}, "required": ["vantage"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "iojs": {"type": "string"}}, "required": ["node", "iojs"]}, "files": {"type": "array", "items": {"type": "string"}}, "eslintConfig": {"type": "object", "properties": {"env": {"type": "object", "properties": {"node": {"type": "boolean"}, "browser": {"type": "boolean"}}, "required": ["node", "browser"]}, "rules": {"type": "object", "properties": {"no-underscore-dangle": {"type": "integer"}, "no-process-exit": {"type": "integer"}}, "required": ["no-underscore-dangle", "no-process-exit"]}}, "required": ["env", "rules"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "optionalDependencies", "dependencies", "engines", "files", "eslintConfig"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"item.ruby_mod.ruby": {"type": "string"}, "item.ruby_mod.ruby_sword": {"type": "string"}, "item.ruby_mod.ruby_axe": {"type": "string"}, "item.ruby_mod.ruby_shovel": {"type": "string"}, "item.ruby_mod.ruby_pickaxe": {"type": "string"}, "item.ruby_mod.ruby_hoe": {"type": "string"}, "item.ruby_mod.ruby_helmet": {"type": "string"}, "item.ruby_mod.ruby_chestplate": {"type": "string"}, "item.ruby_mod.ruby_leggings": {"type": "string"}, "item.ruby_mod.ruby_boots": {"type": "string"}, "item.ruby_mod.ruby_horse_armor": {"type": "string"}, "block.ruby_mod.ruby_block": {"type": "string"}, "block.ruby_mod.ruby_ore": {"type": "string"}}, "required": ["item.ruby_mod.ruby", "item.ruby_mod.ruby_sword", "item.ruby_mod.ruby_axe", "item.ruby_mod.ruby_shovel", "item.ruby_mod.ruby_pickaxe", "item.ruby_mod.ruby_hoe", "item.ruby_mod.ruby_helmet", "item.ruby_mod.ruby_chestplate", "item.ruby_mod.ruby_leggings", "item.ruby_mod.ruby_boots", "item.ruby_mod.ruby_horse_armor", "block.ruby_mod.ruby_block", "block.ruby_mod.ruby_ore"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"item.ruby_mod.ruby" : "Rubin", "item.ruby_mod.ruby_sword" : "Rubinschwert", "item.ruby_mod.ruby_axe" : "Rubinaxt", "item.ruby_mod.ruby_shovel" : "Rubinschaufel", "item.ruby_mod.ruby_pickaxe" : "Rubinspitzhacke", "item.ruby_mod.ruby_hoe" : "Rubinhacke", "item.ruby_mod.ruby_helmet" : "Rubinhelm", "item.ruby_mod.ruby_chestplate" : "Rubinbrustpanzer", "item.ruby_mod.ruby_leggings" : "Rubinhose", "item.ruby_mod.ruby_boots" : "Rubinstiefel", "item.ruby_mod.ruby_horse_armor" : "Rubin-Pferder\u00fcstung", "block.ruby_mod.ruby_block" : "Rubinblock", "block.ruby_mod.ruby_ore" : "Rubinerz"}
json_instruct
{"type": "object", "properties": {"item.ruby_mod.ruby": {"type": "string"}, "item.ruby_mod.ruby_sword": {"type": "string"}, "item.ruby_mod.ruby_axe": {"type": "string"}, "item.ruby_mod.ruby_shovel": {"type": "string"}, "item.ruby_mod.ruby_pickaxe": {"type": "string"}, "item.ruby_mod.ruby_hoe": {"type": "string"}, "item.ruby_mod.ruby_helmet": {"type": "string"}, "item.ruby_mod.ruby_chestplate": {"type": "string"}, "item.ruby_mod.ruby_leggings": {"type": "string"}, "item.ruby_mod.ruby_boots": {"type": "string"}, "item.ruby_mod.ruby_horse_armor": {"type": "string"}, "block.ruby_mod.ruby_block": {"type": "string"}, "block.ruby_mod.ruby_ore": {"type": "string"}}, "required": ["item.ruby_mod.ruby", "item.ruby_mod.ruby_sword", "item.ruby_mod.ruby_axe", "item.ruby_mod.ruby_shovel", "item.ruby_mod.ruby_pickaxe", "item.ruby_mod.ruby_hoe", "item.ruby_mod.ruby_helmet", "item.ruby_mod.ruby_chestplate", "item.ruby_mod.ruby_leggings", "item.ruby_mod.ruby_boots", "item.ruby_mod.ruby_horse_armor", "block.ruby_mod.ruby_block", "block.ruby_mod.ruby_ore"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"snapshot": {"type": "object", "properties": {"objects": {"type": "object", "properties": {"_noMatch": {"type": "boolean"}, "liquibase.structure.core.PrimaryKey": {"type": "array", "items": {"type": "object", "properties": {"primaryKey": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["primaryKey"]}}}, "required": ["_noMatch", "liquibase.structure.core.PrimaryKey"]}}, "required": ["objects"]}}, "required": ["snapshot"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"snapshot" : {"objects" : {"_noMatch" : true, "liquibase.structure.core.PrimaryKey" : [{"primaryKey" : {"name" : "pk_posts"}}]}}}
json_instruct
{"type": "object", "properties": {"snapshot": {"type": "object", "properties": {"objects": {"type": "object", "properties": {"_noMatch": {"type": "boolean"}, "liquibase.structure.core.PrimaryKey": {"type": "array", "items": {"type": "object", "properties": {"primaryKey": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["primaryKey"]}}}, "required": ["_noMatch", "liquibase.structure.core.PrimaryKey"]}}, "required": ["objects"]}}, "required": ["snapshot"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"profile": {"type": "array", "items": {"type": "string"}}}, "required": ["profile"]}, "text": {"type": "object", "properties": {"status": {"type": "string"}, "div": {"type": "string"}}, "required": ["status", "div"]}, "status": {"type": "string"}, "category": {"type": "array", "items": {"type": "object", "properties": {"coding": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}, "display": {"type": "string"}}, "required": ["system", "code", "display"]}}, "text": {"type": "string"}}, "required": ["coding", "text"]}}, "code": {"type": "object", "properties": {"coding": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}}, "required": ["system", "code"]}}, "text": {"type": "string"}}, "required": ["coding", "text"]}, "subject": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}, "effectiveDateTime": {"type": "string"}, "performer": {"type": "array", "items": {"type": "object", "properties": {"reference": {"type": "string"}, "display": {"type": "string"}}, "required": ["reference", "display"]}}}, "required": ["resourceType", "id", "meta", "text", "status", "category", "code", "subject", "effectiveDateTime", "performer"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"resourceType" : "Observation", "id" : "observation2", "meta" : {"profile" : ["https://www.ehealth.fgov.be/standards/fhir/StructureDefinition/be-observation"]}, "text" : {"status" : "generated", "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\">Patient hard of hearing, left ear.</div>"}, "status" : "final", "category" : [{"coding" : [{"system" : "http://terminology.hl7.org/CodeSystem/observation-category", "code" : "exam", "display" : "Exam"}], "text" : "Examination"}], "code" : {"coding" : [{"system" : "http://snomed.info/sct", "code" : "15188001:{363698007=89644007}"}], "text" : "Hard of hearing left ear"}, "subject" : {"reference" : "Patient/example"}, "effectiveDateTime" : "1999-07-02", "performer" : [{"reference" : "Practitioner/564654654", "display" : "K. Pulaski"}]}
json_instruct
{"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"profile": {"type": "array", "items": {"type": "string"}}}, "required": ["profile"]}, "text": {"type": "object", "properties": {"status": {"type": "string"}, "div": {"type": "string"}}, "required": ["status", "div"]}, "status": {"type": "string"}, "category": {"type": "array", "items": {"type": "object", "properties": {"coding": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}, "display": {"type": "string"}}, "required": ["system", "code", "display"]}}, "text": {"type": "string"}}, "required": ["coding", "text"]}}, "code": {"type": "object", "properties": {"coding": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}}, "required": ["system", "code"]}}, "text": {"type": "string"}}, "required": ["coding", "text"]}, "subject": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}, "effectiveDateTime": {"type": "string"}, "performer": {"type": "array", "items": {"type": "object", "properties": {"reference": {"type": "string"}, "display": {"type": "string"}}, "required": ["reference", "display"]}}}, "required": ["resourceType", "id", "meta", "text", "status", "category", "code", "subject", "effectiveDateTime", "performer"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "", "user" : "brietzke", "url" : "https://api.github.com/repos/spack/spack/issues/12511", "updated_at" : "2019-08-21 19:13:56", "created_at" : "2019-08-21 19:12:56", "closed_at" : "2019-08-21 19:13:56", "state" : "closed", "title" : "fix: eccodes: apply cmake-patch onle when@:2.10", "number" : 12511, "milestone" : null, "labels" : [], "id" : 483603165, "html_url" : "https://github.com/spack/spack/pull/12511", "assignees" : [], "comments" : 0}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"editor.codeActionsOnSave": {"type": "object", "properties": {"source.organizeImports": {"type": "boolean"}}, "required": ["source.organizeImports"]}, "editor.detectIndentation": {"type": "boolean"}, "editor.emptySelectionClipboard": {"type": "boolean"}, "editor.fontLigatures": {"type": "boolean"}, "editor.formatOnSave": {"type": "boolean"}, "editor.minimap.enabled": {"type": "boolean"}, "editor.minimap.maxColumn": {"type": "integer"}, "editor.minimap.renderCharacters": {"type": "boolean"}, "editor.renderIndentGuides": {"type": "boolean"}, "editor.renderLineHighlight": {"type": "string"}, "editor.renderWhitespace": {"type": "string"}, "editor.rulers": {"type": "array", "items": {"type": "integer"}}, "editor.snippetSuggestions": {"type": "string"}, "editor.wordWrap": {"type": "string"}, "editor.wordWrapColumn": {"type": "integer"}, "files.eol": {"type": "string"}, "files.insertFinalNewline": {"type": "boolean"}, "files.trimTrailingWhitespace": {"type": "boolean"}, "javascript.updateImportsOnFileMove.enabled": {"type": "string"}}, "required": ["editor.codeActionsOnSave", "editor.detectIndentation", "editor.emptySelectionClipboard", "editor.fontLigatures", "editor.formatOnSave", "editor.minimap.enabled", "editor.minimap.maxColumn", "editor.minimap.renderCharacters", "editor.renderIndentGuides", "editor.renderLineHighlight", "editor.renderWhitespace", "editor.rulers", "editor.snippetSuggestions", "editor.wordWrap", "editor.wordWrapColumn", "files.eol", "files.insertFinalNewline", "files.trimTrailingWhitespace", "javascript.updateImportsOnFileMove.enabled"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"editor.codeActionsOnSave" : {"source.organizeImports" : true}, "editor.detectIndentation" : true, "editor.emptySelectionClipboard" : false, "editor.fontLigatures" : true, "editor.formatOnSave" : true, "editor.minimap.enabled" : true, "editor.minimap.maxColumn" : 80, "editor.minimap.renderCharacters" : false, "editor.renderIndentGuides" : false, "editor.renderLineHighlight" : "all", "editor.renderWhitespace" : "boundary", "editor.rulers" : [80], "editor.snippetSuggestions" : "top", "editor.wordWrap" : "on", "editor.wordWrapColumn" : 80, "files.eol" : "\n", "files.insertFinalNewline" : true, "files.trimTrailingWhitespace" : true, "javascript.updateImportsOnFileMove.enabled" : "always"}
json_instruct
{"type": "object", "properties": {"editor.codeActionsOnSave": {"type": "object", "properties": {"source.organizeImports": {"type": "boolean"}}, "required": ["source.organizeImports"]}, "editor.detectIndentation": {"type": "boolean"}, "editor.emptySelectionClipboard": {"type": "boolean"}, "editor.fontLigatures": {"type": "boolean"}, "editor.formatOnSave": {"type": "boolean"}, "editor.minimap.enabled": {"type": "boolean"}, "editor.minimap.maxColumn": {"type": "integer"}, "editor.minimap.renderCharacters": {"type": "boolean"}, "editor.renderIndentGuides": {"type": "boolean"}, "editor.renderLineHighlight": {"type": "string"}, "editor.renderWhitespace": {"type": "string"}, "editor.rulers": {"type": "array", "items": {"type": "integer"}}, "editor.snippetSuggestions": {"type": "string"}, "editor.wordWrap": {"type": "string"}, "editor.wordWrapColumn": {"type": "integer"}, "files.eol": {"type": "string"}, "files.insertFinalNewline": {"type": "boolean"}, "files.trimTrailingWhitespace": {"type": "boolean"}, "javascript.updateImportsOnFileMove.enabled": {"type": "string"}}, "required": ["editor.codeActionsOnSave", "editor.detectIndentation", "editor.emptySelectionClipboard", "editor.fontLigatures", "editor.formatOnSave", "editor.minimap.enabled", "editor.minimap.maxColumn", "editor.minimap.renderCharacters", "editor.renderIndentGuides", "editor.renderLineHighlight", "editor.renderWhitespace", "editor.rulers", "editor.snippetSuggestions", "editor.wordWrap", "editor.wordWrapColumn", "files.eol", "files.insertFinalNewline", "files.trimTrailingWhitespace", "javascript.updateImportsOnFileMove.enabled"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-80.150024, 26.033523], [-80.134911, 26.033832], [-80.134997, 26.028479], [-80.136029, 26.028262], [-80.13612, 26.022789], [-80.135203, 26.022791], [-80.135284, 26.020048], [-80.134298, 26.019159], [-80.149527, 26.018802], [-80.150024, 26.033523]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 16057}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m_new", "HITS@3m_new", "HITS@10m_new"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"MRRm_new" : 0.12265243358000007, "MRm_new" : 3661.6313111065388, "HITS@1m_new" : 0.07791739929364994, "HITS@3m_new" : 0.1287086667762138, "HITS@10m_new" : 0.21266187703874895}
json_instruct
{"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m_new", "HITS@3m_new", "HITS@10m_new"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/css/2.85f7760d.chunk.css": {"type": "string"}, "static/js/2.95743eb8.chunk.js": {"type": "string"}, "static/js/2.95743eb8.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "static/css/2.85f7760d.chunk.css.map": {"type": "string"}, "static/css/main.e85c7fa3.chunk.css.map": {"type": "string"}, "static/js/2.95743eb8.chunk.js.LICENSE.txt": {"type": "string"}, "static/media/semantic.min.css": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/css/2.85f7760d.chunk.css", "static/js/2.95743eb8.chunk.js", "static/js/2.95743eb8.chunk.js.map", "index.html", "static/css/2.85f7760d.chunk.css.map", "static/css/main.e85c7fa3.chunk.css.map", "static/js/2.95743eb8.chunk.js.LICENSE.txt", "static/media/semantic.min.css"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"files" : {"main.css" : "/static/css/main.e85c7fa3.chunk.css", "main.js" : "/static/js/main.4571c178.chunk.js", "main.js.map" : "/static/js/main.4571c178.chunk.js.map", "runtime-main.js" : "/static/js/runtime-main.d20eab67.js", "runtime-main.js.map" : "/static/js/runtime-main.d20eab67.js.map", "static/css/2.85f7760d.chunk.css" : "/static/css/2.85f7760d.chunk.css", "static/js/2.95743eb8.chunk.js" : "/static/js/2.95743eb8.chunk.js", "static/js/2.95743eb8.chunk.js.map" : "/static/js/2.95743eb8.chunk.js.map", "index.html" : "/index.html", "static/css/2.85f7760d.chunk.css.map" : "/static/css/2.85f7760d.chunk.css.map", "static/css/main.e85c7fa3.chunk.css.map" : "/static/css/main.e85c7fa3.chunk.css.map", "static/js/2.95743eb8.chunk.js.LICENSE.txt" : "/static/js/2.95743eb8.chunk.js.LICENSE.txt", "static/media/semantic.min.css" : "/static/media/outline-icons.ddae9b1b.woff"}, "entrypoints" : ["static/js/runtime-main.d20eab67.js", "static/css/2.85f7760d.chunk.css", "static/js/2.95743eb8.chunk.js", "static/css/main.e85c7fa3.chunk.css", "static/js/main.4571c178.chunk.js"]}
json_instruct
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/css/2.85f7760d.chunk.css": {"type": "string"}, "static/js/2.95743eb8.chunk.js": {"type": "string"}, "static/js/2.95743eb8.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "static/css/2.85f7760d.chunk.css.map": {"type": "string"}, "static/css/main.e85c7fa3.chunk.css.map": {"type": "string"}, "static/js/2.95743eb8.chunk.js.LICENSE.txt": {"type": "string"}, "static/media/semantic.min.css": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/css/2.85f7760d.chunk.css", "static/js/2.95743eb8.chunk.js", "static/js/2.95743eb8.chunk.js.map", "index.html", "static/css/2.85f7760d.chunk.css.map", "static/css/main.e85c7fa3.chunk.css.map", "static/js/2.95743eb8.chunk.js.LICENSE.txt", "static/media/semantic.min.css"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-3539-rp84-xw2w", "modified" : "2022-05-02T03:13:38Z", "published" : "2022-05-02T03:13:38Z", "aliases" : ["CVE-2009-0215"], "details" : "Stack-based buffer overflow in the GetXMLValue method in the IBM Access Support ActiveX control in IbmEgath.dll, as distributed on IBM and Lenovo computers, allows remote attackers to execute arbitrary code via unspecified vectors.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2009-0215"}, {"type" : "WEB", "url" : "https://exchange.xforce.ibmcloud.com/vulnerabilities/49409"}, {"type" : "WEB", "url" : "http://osvdb.org/52958"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/34470"}, {"type" : "WEB", "url" : "http://www.kb.cert.org/vuls/id/340420"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/34228"}, {"type" : "WEB", "url" : "http://www.vupen.com/english/advisories/2009/0824"}], "database_specific" : {"cwe_ids" : ["CWE-119"], "severity" : "HIGH", "github_reviewed" : false}}
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {}, "required": []}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}, "name": {"type": "string"}}, "required": ["type", "features", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {}, "geometry" : {"type" : "Polygon", "coordinates" : [[[-0.229530124609, 53.2272123039, 0.0], [-0.214999288829, 53.229647654, 0.0], [-0.212159245361, 53.227277595, 0.0], [-0.191551211239, 53.2199689509, 0.0], [-0.198798871234, 53.2102330166, 0.0], [-0.19880473423, 53.209947385, 0.0], [-0.198902518316, 53.2098680719, 0.0], [-0.201958606803, 53.2019216964, 0.0], [-0.201845329219, 53.1963895222, 0.0], [-0.20170251929, 53.1951689499, 0.0], [-0.198533996678, 53.1922264015, 0.0], [-0.20232614335, 53.1876283366, 0.0], [-0.216055096909, 53.1838042543, 0.0], [-0.220477857236, 53.174787837, 0.0], [-0.221350695695, 53.174639554, 0.0], [-0.224506113381, 53.1742681396, 0.0], [-0.234025411636, 53.1613394433, 0.0], [-0.235441609089, 53.1608218778, 0.0], [-0.235683996189, 53.1602471916, 0.0], [-0.239243163538, 53.1573098354, 0.0], [-0.240691988872, 53.1562519473, 0.0], [-0.253564627732, 53.1520818888, 0.0], [-0.253731812969, 53.1520344706, 0.0], [-0.262399096876, 53.156290928, 0.0], [-0.258000046035, 53.1655037084, 0.0], [-0.267458649547, 53.1708708765, 0.0], [-0.286550088258, 53.1714569816, 0.0], [-0.28762672195, 53.173195781, 0.0], [-0.284464107691, 53.1787064891, 0.0], [-0.279927448297, 53.1849007266, 0.0], [-0.284183016559, 53.1907064588, 0.0], [-0.285261215361, 53.1929477984, 0.0], [-0.259791630075, 53.1993128224, 0.0], [-0.261048851314, 53.2015670762, 0.0], [-0.265319721885, 53.2077173794, 0.0], [-0.279415883942, 53.2103936875, 0.0], [-0.280178975428, 53.2111027453, 0.0], [-0.270716929509, 53.2245212045, 0.0], [-0.271197221151, 53.2323045091, 0.0], [-0.240223927905, 53.2275340925, 0.0], [-0.236676713234, 53.2283394933, 0.0], [-0.229530124609, 53.2272123039, 0.0]]]}}], "name" : "LN10 5"}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {}, "required": []}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}, "name": {"type": "string"}}, "required": ["type", "features", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "require": {"type": "object", "properties": {"magento-hackathon/magento-composer-installer": {"type": "string"}}, "required": ["magento-hackathon/magento-composer-installer"]}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["name", "type", "description", "license", "authors", "require", "repositories"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "handy/ceneoreviews", "type" : "magento-module", "description" : "Magento 1.x module for Ceneo reviews", "license" : "MIT", "authors" : [{"name" : "Agata Maksymiuk"}], "require" : {"magento-hackathon/magento-composer-installer" : "*"}, "repositories" : [{"type" : "composer", "url" : "http://packages.firegento.com"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "require": {"type": "object", "properties": {"magento-hackathon/magento-composer-installer": {"type": "string"}}, "required": ["magento-hackathon/magento-composer-installer"]}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["name", "type", "description", "license", "authors", "require", "repositories"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "interchapter", "definition" : "An intervening or inserted chapter."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"editor.fontFamily": {"type": "string"}, "editor.fontLigatures": {"type": "boolean"}, "editor.fontSize": {"type": "integer"}, "editor.wordWrap": {"type": "string"}, "editor.lineHeight": {"type": "integer"}}, "required": ["editor.fontFamily", "editor.fontLigatures", "editor.fontSize", "editor.wordWrap", "editor.lineHeight"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"editor.fontFamily" : "iA Writer Duospace, monospace", "editor.fontLigatures" : true, "editor.fontSize" : 14, "editor.wordWrap" : "on", "editor.lineHeight" : 25}
json_instruct
{"type": "object", "properties": {"editor.fontFamily": {"type": "string"}, "editor.fontLigatures": {"type": "boolean"}, "editor.fontSize": {"type": "integer"}, "editor.wordWrap": {"type": "string"}, "editor.lineHeight": {"type": "integer"}}, "required": ["editor.fontFamily", "editor.fontLigatures", "editor.fontSize", "editor.wordWrap", "editor.lineHeight"], "$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"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "jade": {"type": "string"}, "node-phantom": {"type": "string"}, "underscore": {"type": "string"}, "banquo": {"type": "string"}, "aws-sdk": {"type": "string"}, "request": {"type": "string"}}, "required": ["express", "jade", "node-phantom", "underscore", "banquo", "aws-sdk", "request"]}}, "required": ["name", "version", "private", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "banquo-server", "version" : "0.2.0", "private" : true, "scripts" : {"start" : "node app.js"}, "dependencies" : {"express" : "3.4.3", "jade" : "*", "node-phantom" : "~0.2.5", "underscore" : "~1.5.2", "banquo" : ">=0.1.4", "aws-sdk" : ">=1.10.0", "request" : ">=2.27.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "jade": {"type": "string"}, "node-phantom": {"type": "string"}, "underscore": {"type": "string"}, "banquo": {"type": "string"}, "aws-sdk": {"type": "string"}, "request": {"type": "string"}}, "required": ["express", "jade", "node-phantom", "underscore", "banquo", "aws-sdk", "request"]}}, "required": ["name", "version", "private", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"lastUpdated" : 1655019279666, "username" : "Romanes62", "scores" : [{"xp" : 29967, "rank" : 316, "cardId" : 433}, {"xp" : 60790, "rank" : 408, "cardId" : 401}, {"xp" : 27548, "rank" : 56, "cardId" : 400}, {"xp" : 44155, "rank" : 67, "cardId" : 412}, {"xp" : 49118, "rank" : 249, "cardId" : 164}, {"xp" : 44657, "rank" : 48, "cardId" : 137}, {"xp" : 66730, "rank" : 134, "cardId" : 402}, {"xp" : 77775, "rank" : 130, "cardId" : 105}, {"xp" : 40157, "rank" : 255, "cardId" : 113}, {"xp" : 10144, "rank" : 462, "cardId" : 275}, {"xp" : 66931, "rank" : 42, "cardId" : 294}, {"xp" : 72669, "rank" : 75, "cardId" : 186}, {"xp" : 10669, "rank" : 323, "cardId" : 656}, {"xp" : 4867, "rank" : 400, "cardId" : 245}, {"xp" : 24738, "rank" : 220, "cardId" : 195}, {"xp" : 62021, "rank" : 336, "cardId" : 246}, {"xp" : 73239, "rank" : 282, "cardId" : 427}, {"xp" : 23943, "rank" : 413, "cardId" : 503}, {"xp" : 45266, "rank" : 144, "cardId" : 239}, {"xp" : 24701, "rank" : 221, "cardId" : 405}, {"xp" : 1919, "rank" : 268, "cardId" : 657}, {"xp" : 23521, "rank" : 270, "cardId" : 524}, {"xp" : 3098, "rank" : 303, "cardId" : 707}, {"xp" : 3681, "rank" : 477, "cardId" : 276}, {"xp" : 66181, "rank" : 195, "cardId" : 403}, {"xp" : 65381, "rank" : 252, "cardId" : 108}, {"xp" : 26541, "rank" : 117, "cardId" : 290}, {"xp" : 65017, "rank" : 52, "cardId" : 240}, {"xp" : 329, "rank" : 478, "cardId" : 661}, {"xp" : 85234, "rank" : 380, "cardId" : 219}, {"xp" : 52347, "rank" : 209, "cardId" : 518}]}
json_instruct
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"instance": {"type": "object", "properties": {"testRemoveC": {"type": "string"}, "testAddF": {"type": "string"}, "testAddC": {"type": "string"}, "testMergeB": {"type": "string"}, "testCopyTo": {"type": "string"}, "projectClass": {"type": "string"}, "testRemoveB": {"type": "string"}, "testAddE": {"type": "string"}, "testMergeA": {"type": "string"}, "testAddB": {"type": "string"}, "testRemoveD": {"type": "string"}, "testMergeC": {"type": "string"}, "testRemoveA": {"type": "string"}, "testAddA": {"type": "string"}}, "required": ["testRemoveC", "testAddF", "testAddC", "testMergeB", "testCopyTo", "projectClass", "testRemoveB", "testAddE", "testMergeA", "testAddB", "testRemoveD", "testMergeC", "testRemoveA", "testAddA"]}, "class": {"type": "object", "properties": {}, "required": []}}, "required": ["instance", "class"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"instance" : {"testRemoveC" : " 9/30/2017 13:31:35", "testAddF" : " 9/30/2017 13:31:35", "testAddC" : " 9/30/2017 13:31:35", "testMergeB" : " 9/30/2017 13:31:35", "testCopyTo" : " 9/30/2017 13:31:35", "projectClass" : " 9/30/2017 13:31:35", "testRemoveB" : " 9/30/2017 13:31:35", "testAddE" : " 9/30/2017 13:31:35", "testMergeA" : " 9/30/2017 13:31:35", "testAddB" : " 9/30/2017 13:31:35", "testRemoveD" : " 9/30/2017 13:31:35", "testMergeC" : " 9/30/2017 13:31:35", "testRemoveA" : " 9/30/2017 13:31:35", "testAddA" : " 9/30/2017 13:31:35"}, "class" : {}}
json_instruct
{"type": "object", "properties": {"instance": {"type": "object", "properties": {"testRemoveC": {"type": "string"}, "testAddF": {"type": "string"}, "testAddC": {"type": "string"}, "testMergeB": {"type": "string"}, "testCopyTo": {"type": "string"}, "projectClass": {"type": "string"}, "testRemoveB": {"type": "string"}, "testAddE": {"type": "string"}, "testMergeA": {"type": "string"}, "testAddB": {"type": "string"}, "testRemoveD": {"type": "string"}, "testMergeC": {"type": "string"}, "testRemoveA": {"type": "string"}, "testAddA": {"type": "string"}}, "required": ["testRemoveC", "testAddF", "testAddC", "testMergeB", "testCopyTo", "projectClass", "testRemoveB", "testAddE", "testMergeA", "testAddB", "testRemoveD", "testMergeC", "testRemoveA", "testAddA"]}, "class": {"type": "object", "properties": {}, "required": []}}, "required": ["instance", "class"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"t" : "ci'arosaysayay", "h" : [{"d" : [{"f" : "\u6234\u5973\u5f0f\u62ab\u80a9\u7684\u3002"}, {"f" : "\u6307\u6234\u62ab\u80a9\u7684\u5973\u6027\u3002", "e" : ["\ufff9`Ci'arosaysay~`ay~ `a~ `makero~ `ko~ `fafahiyan~.\ufffa\ufffb\u5973\u751f\u6234\u5973\u5f0f\u62ab\u80a9\u8df3\u821e\u3002"]}]}], "stem" : "'arosaysay"}
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"}}, "required": ["f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Le Mesnil-Th\u00e9ribus", "dpt" : "Oise", "inscrits" : 576, "abs" : 140, "votants" : 436, "blancs" : 30, "nuls" : 14, "exp" : 392, "res" : [{"panneau" : "2", "voix" : 222}, {"panneau" : "1", "voix" : 170}]}
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", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"description": {"type": "string"}, "paths": {"type": "object", "properties": {"/ writable dirs": {"type": "object", "properties": {"path": {"type": "string"}, "only": {"type": "array", "items": {"type": "string"}}, "skip": {"type": "array", "items": {"type": "string"}}, "filters": {"type": "array", "items": {"type": "string"}}}, "required": ["path", "only", "skip", "filters"]}}, "required": ["/ writable dirs"]}, "-examples": {"type": "array", "items": {"type": "object", "properties": {"/some/dir/": {"type": "object", "properties": {}, "required": []}}, "required": ["/some/dir/"]}}}, "required": ["description", "paths", "-examples"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "count / stat some files", "paths" : {"/ writable dirs" : {"path" : "/", "only" : ["bin", "boot", "dev", "etc", "home", "lib", "usr"], "skip" : ["tmp"], "filters" : ["directory", "world_writable"]}}, "-examples" : [{"/some/dir/" : {}}, {"/some/dir/" : {"match" : "^\\..*\\.swp$"}, "1+/some/dir" : {"path" : "/some/dir", "glob" : ".*.swp"}}]}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "paths": {"type": "object", "properties": {"/ writable dirs": {"type": "object", "properties": {"path": {"type": "string"}, "only": {"type": "array", "items": {"type": "string"}}, "skip": {"type": "array", "items": {"type": "string"}}, "filters": {"type": "array", "items": {"type": "string"}}}, "required": ["path", "only", "skip", "filters"]}}, "required": ["/ writable dirs"]}, "-examples": {"type": "array", "items": {"type": "object", "properties": {"/some/dir/": {"type": "object", "properties": {}, "required": []}}, "required": ["/some/dir/"]}}}, "required": ["description", "paths", "-examples"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "ContactTelephone1": {"type": "string"}, "AccessComments": {"type": "string"}, "RelatedURL": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "ContactTelephone1", "AccessComments", "RelatedURL", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "number"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IsRecentlyVerified" : false, "ID" : 65169, "UUID" : "05F97C24-9FB3-45A0-BF84-88A4B5E98E8F", "DataProviderID" : 1, "OperatorID" : 45, "UsageTypeID" : 1, "AddressInfo" : {"ID" : 65515, "Title" : "Louis Gigastore", "AddressLine1" : "Holzhauser Stra\u00dfe 150", "Town" : "Berlin", "StateOrProvince" : "Berlin", "Postcode" : "13509", "CountryID" : 87, "Latitude" : 52.58506631450805, "Longitude" : 13.313039449459904, "ContactTelephone1" : "+49 30 41109600", "AccessComments" : "Kostenloses Laden auf 2 Pl\u00e4tzen 24/7 m\u00f6glich ohne Ladekarte. Louis verkauft Motorradzubeh\u00f6r und Kleidung.", "RelatedURL" : "http://www.louis.de/service/filialen/louis-gigastore-berlin-reinickendorf/2", "DistanceUnit" : 0}, "Connections" : [{"ID" : 89715, "ConnectionTypeID" : 16, "StatusTypeID" : 50, "LevelID" : 2, "Amps" : 16, "Voltage" : 230, "PowerKW" : 3.7, "CurrentTypeID" : 10, "Quantity" : 2}, {"ID" : 89716, "ConnectionTypeID" : 28, "StatusTypeID" : 50, "LevelID" : 2, "Amps" : 16, "Voltage" : 230, "PowerKW" : 3.7, "CurrentTypeID" : 10, "Quantity" : 2}], "NumberOfPoints" : 2, "StatusTypeID" : 50, "DateLastStatusUpdate" : "2016-04-17T18:52:00Z", "DataQualityLevel" : 1, "DateCreated" : "2016-04-17T18:52:00Z", "SubmissionStatusTypeID" : 200}
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "ContactTelephone1": {"type": "string"}, "AccessComments": {"type": "string"}, "RelatedURL": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "ContactTelephone1", "AccessComments", "RelatedURL", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "number"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ast" : null, "code" : "import { isPoint } from './is-point.js';\n\nvar isPoint3D = function (point) {\n return isPoint(point) && point.hasOwnProperty('z');\n};\n\nexport { isPoint3D };", "map" : {"version" : 3, "sources" : ["C:/Users/ctenn/OneDrive/Desktop/Designo/Designo/client/node_modules/popmotion/dist/es/utils/is-point-3d.js"], "names" : ["isPoint", "isPoint3D", "point", "hasOwnProperty"], "mappings" : "AAAA,SAASA,OAAT,QAAwB,eAAxB;;AAEA,IAAIC,SAAS,GAAG,UAAUC,KAAV,EAAiB;AAC7B,SAAOF,OAAO,CAACE,KAAD,CAAP,IAAkBA,KAAK,CAACC,cAAN,CAAqB,GAArB,CAAzB;AACH,CAFD;;AAIA,SAASF,SAAT", "sourcesContent" : ["import { isPoint } from './is-point.js';\n\nvar isPoint3D = function (point) {\n return isPoint(point) && point.hasOwnProperty('z');\n};\n\nexport { isPoint3D };\n"]}, "metadata" : {}, "sourceType" : "module"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"versionNum" : 111, "commit" : "a75843e69b7f2137efdcb92d0f0815fade4ebe67", "date" : "2021-03-06T11:01:38.827Z"}
json_instruct
{"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d418b08d4093d6fffe63a87e4474f7073166b244"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "dockerComposeFile": {"type": "string"}, "service": {"type": "string"}, "runServices": {"type": "array", "items": {"type": "string"}}, "workspaceFolder": {"type": "string"}, "extensions": {"type": "array", "items": {"type": "string"}}, "settings": {"type": "object", "properties": {"terminal.integrated.shell.linux": {"type": "string"}}, "required": ["terminal.integrated.shell.linux"]}, "remoteUser": {"type": "string"}}, "required": ["name", "dockerComposeFile", "service", "runServices", "workspaceFolder", "extensions", "settings", "remoteUser"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "schsrch docker-compose", "dockerComposeFile" : "../docker-compose-example.yml", "service" : "vscode-dev", "runServices" : ["vscode-dev"], "workspaceFolder" : "/usr/src/app", "extensions" : ["eamodio.gitlens", "visualstudioexptteam.vscodeintellicode"], "settings" : {"terminal.integrated.shell.linux" : "/bin/bash"}, "remoteUser" : "1000:1000"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "dockerComposeFile": {"type": "string"}, "service": {"type": "string"}, "runServices": {"type": "array", "items": {"type": "string"}}, "workspaceFolder": {"type": "string"}, "extensions": {"type": "array", "items": {"type": "string"}}, "settings": {"type": "object", "properties": {"terminal.integrated.shell.linux": {"type": "string"}}, "required": ["terminal.integrated.shell.linux"]}, "remoteUser": {"type": "string"}}, "required": ["name", "dockerComposeFile", "service", "runServices", "workspaceFolder", "extensions", "settings", "remoteUser"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"abort-controller": {"type": "string"}, "autoprefixer": {"type": "string"}, "css-property-parser": {"type": "string"}, "cssnano": {"type": "string"}, "fs-extra": {"type": "string"}, "husky": {"type": "string"}, "node-fetch": {"type": "string"}, "node-sass": {"type": "string"}, "postcss": {"type": "string"}, "prettier": {"type": "string"}, "whatwg-url": {"type": "string"}}, "required": ["abort-controller", "autoprefixer", "css-property-parser", "cssnano", "fs-extra", "husky", "node-fetch", "node-sass", "postcss", "prettier", "whatwg-url"]}, "husky": {"type": "object", "properties": {"hooks": {"type": "object", "properties": {"pre-commit": {"type": "string"}}, "required": ["pre-commit"]}}, "required": ["hooks"]}, "browserslist": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "private", "devDependencies", "husky", "browserslist"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "sane-tachyons", "version" : "4.1.0", "description" : "Pragmatic functional CSS", "main" : "index.js", "repository" : "https://github.com/hatchedlabs/sane-tachyons.git", "author" : "Sheldon \ud83d\udc26", "license" : "MIT", "private" : false, "devDependencies" : {"abort-controller" : "^2.0.2", "autoprefixer" : "^9.4.3", "css-property-parser" : "^1.0.6", "cssnano" : "^4.1.7", "fs-extra" : "^7.0.1", "husky" : "^1.3.0", "node-fetch" : "^2.3.0", "node-sass" : "^4.11.0", "postcss" : "^7.0.7", "prettier" : "^1.16.0", "whatwg-url" : "^7.0.0"}, "husky" : {"hooks" : {"pre-commit" : "node build.js && git add --all"}}, "browserslist" : [">0.5% in US", "not dead", "not ie < 11", "not op_mini all"]}
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"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"abort-controller": {"type": "string"}, "autoprefixer": {"type": "string"}, "css-property-parser": {"type": "string"}, "cssnano": {"type": "string"}, "fs-extra": {"type": "string"}, "husky": {"type": "string"}, "node-fetch": {"type": "string"}, "node-sass": {"type": "string"}, "postcss": {"type": "string"}, "prettier": {"type": "string"}, "whatwg-url": {"type": "string"}}, "required": ["abort-controller", "autoprefixer", "css-property-parser", "cssnano", "fs-extra", "husky", "node-fetch", "node-sass", "postcss", "prettier", "whatwg-url"]}, "husky": {"type": "object", "properties": {"hooks": {"type": "object", "properties": {"pre-commit": {"type": "string"}}, "required": ["pre-commit"]}}, "required": ["hooks"]}, "browserslist": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "private", "devDependencies", "husky", "browserslist"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"info": {"type": "object", "properties": {"project": {"type": "string"}, "developers": {"type": "integer"}, "edges": {"type": "integer"}, "vertices": {"type": "integer"}, "commits": {"type": "integer"}, "id": {"type": "integer"}, "agedays": {"type": "integer"}, "refactorings": {"type": "integer"}, "group": {"type": "string"}, "language": {"type": "string"}, "level": {"type": "string"}, "summary": {"type": "string"}}, "required": ["project", "developers", "edges", "vertices", "commits", "id", "agedays", "refactorings", "group", "language", "level", "summary"]}, "commits_list": {"type": "array", "items": {"type": "string"}}, "edges": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "before": {"type": "string"}, "lineB": {"type": "null"}, "after": {"type": "string"}, "lineA": {"type": "null"}, "ref": {"type": "string"}, "sha1": {"type": "string"}}, "required": ["id", "before", "lineB", "after", "lineA", "ref", "sha1"]}}}, "required": ["info", "commits_list", "edges"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"info" : {"project" : "spring-projects/spring-framework", "developers" : 1, "edges" : 3, "vertices" : 3, "commits" : 2, "id" : 2644, "agedays" : 6, "refactorings" : 2, "group" : "Overtime", "language" : "Java", "level" : "Method", "summary" : ""}, "commits_list" : ["93abbd0ef7", "5165465821"], "edges" : [{"id" : 3867, "before" : "org.springframework.transaction.src.main.org.springframework.transaction.support.AbstractPlatformTransactionManager#instantiateTransactionStatus(TransactionDefinition,Object,boolean,boolean,boolean,Object)", "lineB" : null, "after" : "org.springframework.transaction.src.main.org.springframework.transaction.support.AbstractPlatformTransactionManager#newTransactionStatus(TransactionDefinition,Object,boolean,boolean,boolean,Object)", "lineA" : null, "ref" : "INLINE", "sha1" : "93abbd0ef7"}, {"id" : 3869, "before" : "org.springframework.transaction.src.main.org.springframework.transaction.support.AbstractPlatformTransactionManager#newTransactionStatus(TransactionDefinition,Object,boolean,boolean,boolean,Object)", "lineB" : null, "after" : "org.springframework.transaction.src.main.org.springframework.transaction.support.AbstractPlatformTransactionManager#instantiateTransactionStatus(TransactionDefinition,Object,boolean,boolean,boolean,Object)", "lineA" : null, "ref" : "EXTRACT", "sha1" : "5165465821"}, {"id" : 3868, "before" : "org.springframework.transaction.src.main.org.springframework.transaction.support.AbstractPlatformTransactionManager#newTransactionStatus(TransactionDefinition,Object,boolean,boolean,boolean,Object)", "lineB" : null, "after" : "org.springframework.transaction.src.main.org.springframework.transaction.support.AbstractPlatformTransactionManager#prepareSynchronization(DefaultTransactionStatus,TransactionDefinition)", "lineA" : null, "ref" : "EXTRACT", "sha1" : "5165465821"}]}
json_instruct
{"type": "object", "properties": {"info": {"type": "object", "properties": {"project": {"type": "string"}, "developers": {"type": "integer"}, "edges": {"type": "integer"}, "vertices": {"type": "integer"}, "commits": {"type": "integer"}, "id": {"type": "integer"}, "agedays": {"type": "integer"}, "refactorings": {"type": "integer"}, "group": {"type": "string"}, "language": {"type": "string"}, "level": {"type": "string"}, "summary": {"type": "string"}}, "required": ["project", "developers", "edges", "vertices", "commits", "id", "agedays", "refactorings", "group", "language", "level", "summary"]}, "commits_list": {"type": "array", "items": {"type": "string"}}, "edges": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "before": {"type": "string"}, "lineB": {"type": "null"}, "after": {"type": "string"}, "lineA": {"type": "null"}, "ref": {"type": "string"}, "sha1": {"type": "string"}}, "required": ["id", "before", "lineB", "after", "lineA", "ref", "sha1"]}}}, "required": ["info", "commits_list", "edges"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "definition": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "phrase": {"type": "string"}, "remarks": {"type": "string"}}, "required": ["citations", "definition", "language", "lookupTerms", "metaLanguage", "phrase", "remarks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"citations" : [{"textCitation" : "[See cof on Metamath](http://us.metamath.org/mpegif/cof.html)"}], "definition" : "class oF R", "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cof", "#T_cR"], "metaLanguage" : "METAMATH", "phrase" : "oF", "remarks" : " Extend class notation to include mapping of an operation to a function operation. \n\n---\n\nThis syntax is primitive. The first axiom using it is #P_df-of.\n\n---"}
json_instruct
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "definition": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "phrase": {"type": "string"}, "remarks": {"type": "string"}}, "required": ["citations", "definition", "language", "lookupTerms", "metaLanguage", "phrase", "remarks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"merged" : "/home/zemoso/AndroidStudioProjects/dialogflow-android-client/ailib/build/intermediates/res/merged/androidTest/debug/color/mic_colors.xml", "source" : "/home/zemoso/AndroidStudioProjects/dialogflow-android-client/ailib/build/intermediates/bundles/debug/res/color/mic_colors.xml"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}, "now-build": {"type": "string"}}, "required": ["build", "dev", "now-build"]}, "dependencies": {"type": "object", "properties": {"next": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["next", "react", "react-dom"]}}, "required": ["scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"scripts" : {"build" : "next build", "dev" : "next", "now-build" : "next build"}, "dependencies" : {"next" : "^8.0.0", "react" : "^16.7.0", "react-dom" : "^16.7.0"}}
json_instruct
{"type": "object", "properties": {"scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}, "now-build": {"type": "string"}}, "required": ["build", "dev", "now-build"]}, "dependencies": {"type": "object", "properties": {"next": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["next", "react", "react-dom"]}}, "required": ["scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"url": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "productVersion": {"type": "string"}, "hash": {"type": "string"}, "timestamp": {"type": "string"}, "sha256hash": {"type": "string"}}, "required": ["url", "name", "version", "productVersion", "hash", "timestamp", "sha256hash"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"url" : "https://github.com/VSCodium/vscodium/releases/download/1.57.1/VSCodiumSetup-x64-1.57.1.exe", "name" : "1.57.1", "version" : "507ce72a4466fbb27b715c3722558bb15afa9f48", "productVersion" : "1.57.1", "hash" : "23cf51dad2b38838bb68dff86ee957908a13ebf2", "timestamp" : "1625677886563", "sha256hash" : "3e404de3c0519cc7913b8f0fd9d06476bae5869420ac6ffdd5ab13b1efa22307"}
json_instruct
{"type": "object", "properties": {"url": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "productVersion": {"type": "string"}, "hash": {"type": "string"}, "timestamp": {"type": "string"}, "sha256hash": {"type": "string"}}, "required": ["url", "name", "version", "productVersion", "hash", "timestamp", "sha256hash"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"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/schema#"}
{"ast" : null, "code" : "\"use strict\";\n\nvar _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _react = _interopRequireDefault(require(\"react\"));\n\nvar _createSvgIcon = _interopRequireDefault(require(\"./utils/createSvgIcon\"));\n\nvar _default = (0, _createSvgIcon.default)(_react.default.createElement(_react.default.Fragment, null, _react.default.createElement(\"path\", {\n fill: \"none\",\n d: \"M0 0h24v24H0V0z\"\n}), _react.default.createElement(\"path\", {\n d: \"M14.94 4.66h-4.72l2.36-2.36 2.36 2.36zm-4.69 14.71h4.66l-2.33 2.33-2.33-2.33zM6.1 6.27L1.6 17.73h1.84l.92-2.45h5.11l.92 2.45h1.84L7.74 6.27H6.1zm-1.13 7.37l1.94-5.18 1.94 5.18H4.97zm10.76 2.5h6.12v1.59h-8.53v-1.29l5.92-8.56h-5.88v-1.6h8.3v1.26l-5.93 8.6z\"\n})), 'SortByAlphaSharp');\n\nexports.default = _default;", "map" : null, "metadata" : {}, "sourceType" : "script"}
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/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"py/object": {"type": "string"}, "footer": {"type": "string"}, "header": {"type": "string"}, "id": {"type": "null"}, "name": {"type": "string"}}, "required": ["py/object", "footer", "header", "id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"py/object" : "model.group.Group", "footer" : "", "header" : "", "id" : null, "name" : ""}, {"py/object" : "model.group.Group", "footer" : "footer1uj", "header" : "headerfkucg30XjsU1fDAAl30", "id" : null, "name" : "name"}, {"py/object" : "model.group.Group", "footer" : "footerVcp", "header" : "headerOVHZPjweKsugP", "id" : null, "name" : "namexU429bB4p"}, {"py/object" : "model.group.Group", "footer" : "footer0aBV", "header" : "headerIlguJwgSvukvDUt", "id" : null, "name" : "nameP"}, {"py/object" : "model.group.Group", "footer" : "footerPohRf", "header" : "headern9w94wCSU", "id" : null, "name" : "nameBg3NUfImr"}, {"py/object" : "model.group.Group", "footer" : "footerxCLrVNccsJBOH", "header" : "headerb80uJF2c", "id" : null, "name" : "name"}, {"py/object" : "model.group.Group", "footer" : "footerFeRjOIUw", "header" : "headerLjxtfYgRvDpBi", "id" : null, "name" : "nameycIi4WxR"}, {"py/object" : "model.group.Group", "footer" : "footerzB", "header" : "headerx6iszk2J9YnR", "id" : null, "name" : "nameSA"}, {"py/object" : "model.group.Group", "footer" : "footerXT", "header" : "headerVFIi", "id" : null, "name" : "namejoyj59r7O"}, {"py/object" : "model.group.Group", "footer" : "footer9M", "header" : "headervRtMfvKRt9K", "id" : null, "name" : "namesk"}, {"py/object" : "model.group.Group", "footer" : "footertpbvnZ", "header" : "header08uN", "id" : null, "name" : "nameQ1mHe"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"py/object": {"type": "string"}, "footer": {"type": "string"}, "header": {"type": "string"}, "id": {"type": "null"}, "name": {"type": "string"}}, "required": ["py/object", "footer", "header", "id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "acutifoliate", "definition" : "Having sharp-pointed leaves."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id_1109": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_1109"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id_1109" : {"publicdate" : "2007-07-30 17:34:39", "title" : "Afterward"}}
json_instruct
{"type": "object", "properties": {"id_1109": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_1109"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "attachments": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"attachments": {"type": "null"}}, "required": ["attachments"]}, "tabcat": {"type": "object", "properties": {"batteries": {"type": "object", "properties": {"memory": {"type": "object", "properties": {"description": {"type": "string"}, "tasks": {"type": "array", "items": {"type": "string"}}}, "required": ["description", "tasks"]}}, "required": ["memory"]}, "tasks": {"type": "object", "properties": {"learning": {"type": "object", "properties": {"description": {"type": "string"}, "icon": {"type": "string"}, "start": {"type": "string"}, "forms": {"type": "object", "properties": {"A": {"type": "string"}, "B": {"type": "string"}, "C": {"type": "string"}, "D": {"type": "string"}}, "required": ["A", "B", "C", "D"]}}, "required": ["description", "icon", "start", "forms"]}, "delay": {"type": "object", "properties": {"description": {"type": "string"}, "icon": {"type": "string"}, "start": {"type": "string"}, "forms": {"type": "object", "properties": {"A": {"type": "string"}, "B": {"type": "string"}, "C": {"type": "string"}, "D": {"type": "string"}}, "required": ["A", "B", "C", "D"]}}, "required": ["description", "icon", "start", "forms"]}}, "required": ["learning", "delay"]}}, "required": ["batteries", "tasks"]}}, "required": ["name", "version", "description", "attachments", "dependencies", "tabcat"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "memory", "version" : "0.9.1", "description" : "Memory", "attachments" : ["css/memory.css", "img/learning.png", "img/delay.png", "js/task.js", "learning.html", "delay.html", "img/man-example.jpg", "img/man1.jpg", "img/man2.jpg", "img/man3.jpg", "img/man4.jpg", "img/man5.jpg", "img/man6.jpg", "img/man7.jpg", "img/man8.jpg", "img/man9.jpg", "img/man10.jpg", "img/man11.jpg", "img/right-arrow.png", "img/left-arrow.png", "img/woman1.jpg", "img/woman2.jpg", "img/woman3.jpg", "img/woman4.jpg", "img/woman5.jpg", "img/woman6.jpg", "img/woman7.jpg", "img/woman8.jpg", "img/woman9.jpeg", "img/woman-example.jpg"], "dependencies" : {"attachments" : null}, "tabcat" : {"batteries" : {"memory" : {"description" : "Memory Tasks", "tasks" : ["learning", "delay"]}}, "tasks" : {"learning" : {"description" : "Favorites Learning", "icon" : "img/learning.png", "start" : "learning.html", "forms" : {"A" : "one", "B" : "two", "C" : "three", "D" : "four"}}, "delay" : {"description" : "Favorites Delay", "icon" : "img/delay.png", "start" : "delay.html", "forms" : {"A" : "one", "B" : "two", "C" : "three", "D" : "four"}}}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "attachments": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"attachments": {"type": "null"}}, "required": ["attachments"]}, "tabcat": {"type": "object", "properties": {"batteries": {"type": "object", "properties": {"memory": {"type": "object", "properties": {"description": {"type": "string"}, "tasks": {"type": "array", "items": {"type": "string"}}}, "required": ["description", "tasks"]}}, "required": ["memory"]}, "tasks": {"type": "object", "properties": {"learning": {"type": "object", "properties": {"description": {"type": "string"}, "icon": {"type": "string"}, "start": {"type": "string"}, "forms": {"type": "object", "properties": {"A": {"type": "string"}, "B": {"type": "string"}, "C": {"type": "string"}, "D": {"type": "string"}}, "required": ["A", "B", "C", "D"]}}, "required": ["description", "icon", "start", "forms"]}, "delay": {"type": "object", "properties": {"description": {"type": "string"}, "icon": {"type": "string"}, "start": {"type": "string"}, "forms": {"type": "object", "properties": {"A": {"type": "string"}, "B": {"type": "string"}, "C": {"type": "string"}, "D": {"type": "string"}}, "required": ["A", "B", "C", "D"]}}, "required": ["description", "icon", "start", "forms"]}}, "required": ["learning", "delay"]}}, "required": ["batteries", "tasks"]}}, "required": ["name", "version", "description", "attachments", "dependencies", "tabcat"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"stackHeaders": {"type": "object", "properties": {"api_key": {"type": "string"}, "authorization": {"type": "string"}}, "required": ["api_key", "authorization"]}, "urlPath": {"type": "string"}, "uid": {"type": "string"}, "content_type": {"type": "string"}, "file_size": {"type": "string"}, "tags": {"type": "array", "items": {}}, "filename": {"type": "string"}, "url": {"type": "string"}, "ACL": {"type": "object", "properties": {}, "required": []}, "is_dir": {"type": "boolean"}, "_version": {"type": "integer"}, "title": {"type": "string"}, "publish_details": {"type": "array", "items": {"type": "object", "properties": {"environment": {"type": "string"}, "locale": {"type": "string"}, "time": {"type": "string"}, "user": {"type": "string"}, "version": {"type": "integer"}}, "required": ["environment", "locale", "time", "user", "version"]}}}, "required": ["stackHeaders", "urlPath", "uid", "content_type", "file_size", "tags", "filename", "url", "ACL", "is_dir", "_version", "title", "publish_details"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"stackHeaders" : {"api_key" : "blt82e328367e7c33d7", "authorization" : "cs1d64558fab7cbd80f7ccc648"}, "urlPath" : "/assets/blt5d47539d33226652", "uid" : "blt5d47539d33226652", "content_type" : "image/jpeg", "file_size" : "200547", "tags" : [], "filename" : "variation_3.jpeg", "url" : "https://images.contentstack.io/v3/assets/blt82e328367e7c33d7/blt5d47539d33226652/5f92d8bf73c2ae7b2fbfd2bd/variation_3.jpeg", "ACL" : {}, "is_dir" : false, "_version" : 1, "title" : "variation_3.jpeg", "publish_details" : [{"environment" : "blt407c2cba9865efdd", "locale" : "en-us", "time" : "2020-10-23T13:21:05.883Z", "user" : "bltcb7d0fc15e80d347", "version" : 1}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"stackHeaders": {"type": "object", "properties": {"api_key": {"type": "string"}, "authorization": {"type": "string"}}, "required": ["api_key", "authorization"]}, "urlPath": {"type": "string"}, "uid": {"type": "string"}, "content_type": {"type": "string"}, "file_size": {"type": "string"}, "tags": {"type": "array", "items": {}}, "filename": {"type": "string"}, "url": {"type": "string"}, "ACL": {"type": "object", "properties": {}, "required": []}, "is_dir": {"type": "boolean"}, "_version": {"type": "integer"}, "title": {"type": "string"}, "publish_details": {"type": "array", "items": {"type": "object", "properties": {"environment": {"type": "string"}, "locale": {"type": "string"}, "time": {"type": "string"}, "user": {"type": "string"}, "version": {"type": "integer"}}, "required": ["environment", "locale", "time", "user", "version"]}}}, "required": ["stackHeaders", "urlPath", "uid", "content_type", "file_size", "tags", "filename", "url", "ACL", "is_dir", "_version", "title", "publish_details"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "subtext": {"type": "string"}, "icon": {"type": "string"}, "description": {"type": "string"}, "powerCost": {"type": "string"}, "castTime": {"type": "string"}}, "required": ["id", "name", "subtext", "icon", "description", "powerCost", "castTime"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 9433, "name" : "Arcane Explosion", "subtext" : "Rank 4", "icon" : "spell_nature_wispsplode", "description" : "Sends out a blast wave of magic, inflicting 6,630 Arcane damage to nearby enemies.", "powerCost" : "330 Mana", "castTime" : "Instant"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "subtext": {"type": "string"}, "icon": {"type": "string"}, "description": {"type": "string"}, "powerCost": {"type": "string"}, "castTime": {"type": "string"}}, "required": ["id", "name", "subtext", "icon", "description", "powerCost", "castTime"], "$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"}, "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", "properties": {"name": {"type": "string"}, "flavor_id": {"type": "string"}, "millipercent": {"type": "integer"}, "vendor": {"type": "string"}}, "required": ["name", "flavor_id", "millipercent", "vendor"]}}, "author": {"type": "string"}, "views": {"type": "string"}, "created_at": {"type": "string"}, "slug": {"type": "string"}, "archive_image_url": {"type": "string"}, "total_flavoring": {"type": "string"}, "steep_days": {"type": "string"}, "best_vg": {"type": "string"}, "temperature": {"type": "string"}}, "required": ["name", "description", "id", "image_url", "updated_at", "deleted_at", "recipe_type", "recipe_flavors", "author", "views", "created_at", "slug", "archive_image_url", "total_flavoring", "steep_days", "best_vg", "temperature"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Zulu Zebra", "description" : "Zebra Stripe gum plain and simple. Very authentic profile aside from the fact it doesn't lose flavor in around 20 seconds like the gum.", "id" : 28767, "image_url" : "https://storage.googleapis.com/dev-images.alltheflavors.com/uploads/recipe/imageUrl/28767/IMG_1703.JPG", "updated_at" : "2020-12-10T14:51:49.000-05:00", "deleted_at" : null, "recipe_type" : 1, "recipe_flavors" : [{"name" : "Rainbow Line Gum", "flavor_id" : "1389", "millipercent" : 12000, "vendor" : "FW"}, {"name" : "Lemonade", "flavor_id" : "1336", "millipercent" : 150, "vendor" : "FW"}, {"name" : "Blood Orange", "flavor_id" : "1197", "millipercent" : 400, "vendor" : "FW"}, {"name" : "Meringue", "flavor_id" : "530", "millipercent" : 300, "vendor" : "FA"}, {"name" : "Cream Fresh", "flavor_id" : "540", "millipercent" : 500, "vendor" : "FA"}], "author" : "FlavorH0", "views" : "1322", "created_at" : "2017-01-25", "slug" : "zulu_zebra", "archive_image_url" : "https://allthearchives.com/images/28767.JPG", "total_flavoring" : "13.35%", "steep_days" : "3", "best_vg" : "0%", "temperature" : "0"}
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", "properties": {"name": {"type": "string"}, "flavor_id": {"type": "string"}, "millipercent": {"type": "integer"}, "vendor": {"type": "string"}}, "required": ["name", "flavor_id", "millipercent", "vendor"]}}, "author": {"type": "string"}, "views": {"type": "string"}, "created_at": {"type": "string"}, "slug": {"type": "string"}, "archive_image_url": {"type": "string"}, "total_flavoring": {"type": "string"}, "steep_days": {"type": "string"}, "best_vg": {"type": "string"}, "temperature": {"type": "string"}}, "required": ["name", "description", "id", "image_url", "updated_at", "deleted_at", "recipe_type", "recipe_flavors", "author", "views", "created_at", "slug", "archive_image_url", "total_flavoring", "steep_days", "best_vg", "temperature"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"compatibility.js": {"type": "string"}, "compatibility.min.js": {"type": "string"}, "pdf_viewer.css": {"type": "string"}, "pdf_viewer.js": {"type": "string"}, "pdf_viewer.min.css": {"type": "string"}, "pdf_viewer.min.js": {"type": "string"}, "pdf.combined.js": {"type": "string"}, "pdf.combined.min.js": {"type": "string"}, "pdf.js": {"type": "string"}, "pdf.min.js": {"type": "string"}, "pdf.worker.entry.js": {"type": "string"}, "pdf.worker.entry.min.js": {"type": "string"}, "pdf.worker.js": {"type": "string"}, "pdf.worker.min.js": {"type": "string"}}, "required": ["compatibility.js", "compatibility.min.js", "pdf_viewer.css", "pdf_viewer.js", "pdf_viewer.min.css", "pdf_viewer.min.js", "pdf.combined.js", "pdf.combined.min.js", "pdf.js", "pdf.min.js", "pdf.worker.entry.js", "pdf.worker.entry.min.js", "pdf.worker.js", "pdf.worker.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"compatibility.js" : "sha256-DBfCuJGVQu/FQQLq2TTqmBpKJL1qForxYXBk5ZMMVUY=", "compatibility.min.js" : "sha256-aXbctUfgDLXnL+d7T6sM2/1qWq2z2/GZpRS94qO7O8o=", "pdf_viewer.css" : "sha256-O6MBgZ4cCIu4QAkTMkWW5mwXdsgo2KQQdNT1NYbhDww=", "pdf_viewer.js" : "sha256-VNX+PjP2Ww/lFbRTSAX7ARRqdXKGKJH8jpCDGsAy2w8=", "pdf_viewer.min.css" : "sha256-RR8P12+RLwozI7EA3Niw6jbZm2cEN5bdG2BF5qTjYko=", "pdf_viewer.min.js" : "sha256-oFkjj0KCjg2MZ7QoHxXbYXedEDqjGZjh2mqXRqp+UC4=", "pdf.combined.js" : "sha256-Dt9s8efZl0M3U6gSuvU1ru9tYss5fidS/HBiyOF5KlE=", "pdf.combined.min.js" : "sha256-MjtNEGn4C1oaInIeWzEMrifUjjnE098osOm/2vjabDo=", "pdf.js" : "sha256-L1bsVPBVk/oE0X1lrIFH1MOpo72g/NW6eTn6xx9/j5A=", "pdf.min.js" : "sha256-JtapP9n/5g19/FrbRk1KauxcIId0NOAlYWy4JoopcV4=", "pdf.worker.entry.js" : "sha256-4V2nQMPK3MbLnxzAq57GK74pW70TMP8/E4yPE1a6Aks=", "pdf.worker.entry.min.js" : "sha256-KHbjB+ecL+W921mJIgQy28hAjKh1+ZA1cHnoLZ3ASoQ=", "pdf.worker.js" : "sha256-Q+NA996gIVHl3bIy3DS3NtQfE7JKHIt8bbtKw0G2E6w=", "pdf.worker.min.js" : "sha256-CTwHjtvq5a0+PzVkNDw9hG7FVKJysnr7irIOS07x23A="}
json_instruct
{"type": "object", "properties": {"compatibility.js": {"type": "string"}, "compatibility.min.js": {"type": "string"}, "pdf_viewer.css": {"type": "string"}, "pdf_viewer.js": {"type": "string"}, "pdf_viewer.min.css": {"type": "string"}, "pdf_viewer.min.js": {"type": "string"}, "pdf.combined.js": {"type": "string"}, "pdf.combined.min.js": {"type": "string"}, "pdf.js": {"type": "string"}, "pdf.min.js": {"type": "string"}, "pdf.worker.entry.js": {"type": "string"}, "pdf.worker.entry.min.js": {"type": "string"}, "pdf.worker.js": {"type": "string"}, "pdf.worker.min.js": {"type": "string"}}, "required": ["compatibility.js", "compatibility.min.js", "pdf_viewer.css", "pdf_viewer.js", "pdf_viewer.min.css", "pdf_viewer.min.js", "pdf.combined.js", "pdf.combined.min.js", "pdf.js", "pdf.min.js", "pdf.worker.entry.js", "pdf.worker.entry.min.js", "pdf.worker.js", "pdf.worker.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"parse_error": {"type": "string"}}, "required": ["parse_error"]}}, "required": ["abort"]}}, "required": ["config"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"config" : {"abort" : {"parse_error" : "\u30d7\u30ea\u30f3\u30bf\u30fc\u304b\u3089\u306e\u5fdc\u7b54\u306e\u89e3\u6790\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002"}}}
json_instruct
{"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"parse_error": {"type": "string"}}, "required": ["parse_error"]}}, "required": ["abort"]}}, "required": ["config"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"station" : [{"pref_cd" : 28, "line_cd" : 99645, "line_name" : "\u795e\u6238\u5e02\u55b6\u5730\u4e0b\u9244\u897f\u795e\u7dda", "station_cd" : 9964509, "station_g_cd" : 9964509, "station_name" : "\u897f\u795e\u4e2d\u592e", "lon" : 135.017367, "lat" : 34.719538}]}
json_instruct
{"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"\u6731\u76f8\u537f": {"type": "string"}}, "required": ["\u6731\u76f8\u537f"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "resources": {"type": "array", "items": {"type": "string"}}, "vendored_frameworks": {"type": "string"}, "platforms": {"type": "object", "properties": {"osx": {"type": "null"}, "ios": {"type": "null"}, "tvos": {"type": "null"}, "watchos": {"type": "null"}}, "required": ["osx", "ios", "tvos", "watchos"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "resources", "vendored_frameworks", "platforms"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "BaiduFace", "version" : "1.0.0", "summary" : "BaiduFace cocoapods.", "description" : "\u767e\u5ea6face sdk \u7ba1\u7406", "homepage" : "http://code.bld365.com/cmcc_smrz/baidu_face_cocoapods", "license" : "MIT", "authors" : {"\u6731\u76f8\u537f" : "zhuxiangqing666@gmail.com"}, "source" : {"git" : "http://code.bld365.com/cmcc_smrz/baidu_face_cocoapods.git", "tag" : "1.0.0"}, "resources" : ["com.baidu.idl.face.model.bundle", "com.baidu.idl.face.faceSDK.bundle", "aip.license", "idl-license.face-ios"], "vendored_frameworks" : "IDLFaceSDK.framework", "platforms" : {"osx" : null, "ios" : null, "tvos" : null, "watchos" : null}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"\u6731\u76f8\u537f": {"type": "string"}}, "required": ["\u6731\u76f8\u537f"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "resources": {"type": "array", "items": {"type": "string"}}, "vendored_frameworks": {"type": "string"}, "platforms": {"type": "object", "properties": {"osx": {"type": "null"}, "ios": {"type": "null"}, "tvos": {"type": "null"}, "watchos": {"type": "null"}}, "required": ["osx", "ios", "tvos", "watchos"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "resources", "vendored_frameworks", "platforms"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "script": {"type": "string"}, "exec_mode": {"type": "string"}, "instances": {"type": "integer"}}, "required": ["name", "script", "exec_mode", "instances"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "teambition-tool-mock", "script" : "../source/src/mock.js", "exec_mode" : "cluster_mode", "instances" : 1}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "script": {"type": "string"}, "exec_mode": {"type": "string"}, "instances": {"type": "integer"}}, "required": ["name", "script", "exec_mode", "instances"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 48990, "cartId" : "f9076988-f223-45a3-8283-1834c72300a2", "preferredProducts" : [538, 3416, 1676, 3246, 4180, 1260, 4790, 696], "productReviews" : [{"productId" : 3911, "reviewText" : "My terrier loves to play with it.", "reviewDate" : "2019-02-21T04:33:05.6120628+02:00"}, {"productId" : 994, "reviewText" : "I saw one of these in Finland and I bought one.", "reviewDate" : "2020-02-19T20:10:06.3422755+02:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"__STACK_SIZE": {"type": "integer"}, "__HEAP_SIZE": {"type": "integer"}, "DEBUG_ISR_STACK_USAGE": {"type": "integer"}}, "required": ["__STACK_SIZE", "__HEAP_SIZE", "DEBUG_ISR_STACK_USAGE"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"__STACK_SIZE" : 2560, "__HEAP_SIZE" : 2928, "DEBUG_ISR_STACK_USAGE" : 0}
json_instruct
{"type": "object", "properties": {"__STACK_SIZE": {"type": "integer"}, "__HEAP_SIZE": {"type": "integer"}, "DEBUG_ISR_STACK_USAGE": {"type": "integer"}}, "required": ["__STACK_SIZE", "__HEAP_SIZE", "DEBUG_ISR_STACK_USAGE"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "short_name": {"type": "string"}, "description": {"type": "string"}, "orientation": {"type": "string"}, "start_url": {"type": "string"}, "display": {"type": "string"}, "background_color": {"type": "string"}, "theme_color": {"type": "string"}}, "required": ["name", "short_name", "description", "orientation", "start_url", "display", "background_color", "theme_color"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Jo\u00e3o Augusto", "short_name" : "joaobarros.blog", "description" : "Hi, I'm Jo\u00e3o! Join my Blog to see my tutorials and my stories", "orientation" : "portrait-primary", "start_url" : "../../index.html", "display" : "standalone", "background_color" : "#1C2A34", "theme_color" : "#1C2A34"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "short_name": {"type": "string"}, "description": {"type": "string"}, "orientation": {"type": "string"}, "start_url": {"type": "string"}, "display": {"type": "string"}, "background_color": {"type": "string"}, "theme_color": {"type": "string"}}, "required": ["name", "short_name", "description", "orientation", "start_url", "display", "background_color", "theme_color"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "4": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "5": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "6": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "7": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "8": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "9": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "10": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "11": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "12": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2", "3", "4", "5"]}}, "required": ["3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]}}, "required": ["source", "word", "infinitivo", "participio", "gerundio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"source" : "http://lema.rae.es/drae/srv/search?val=reportar", "word" : "reportar", "infinitivo" : "reportar", "participio" : ["reportado"], "gerundio" : ["reportando"], "tenses" : {"3" : [["reporto"], ["reportas", "report\u00e1s"], ["reporta"], ["reportamos"], ["report\u00e1is", "reportan"], ["reportan"]], "4" : [["report\u00e9"], ["reportaste"], ["report\u00f3"], ["reportamos"], ["reportasteis", "reportaron"], ["reportaron"]], "5" : [["reportaba"], ["reportabas"], ["reportaba"], ["report\u00e1bamos"], ["reportabais", "reportaban"], ["reportaban"]], "6" : [["reportar\u00eda"], ["reportar\u00edas"], ["reportar\u00eda"], ["reportar\u00edamos"], ["reportar\u00edais", "reportar\u00edan"], ["reportar\u00edan"]], "7" : [["reportar\u00e9"], ["reportar\u00e1s"], ["reportar\u00e1"], ["reportaremos"], ["reportar\u00e9is", "reportar\u00e1n"], ["reportar\u00e1n"]], "8" : [["reporte"], ["reportes"], ["reporte"], ["reportemos"], ["report\u00e9is", "reporten"], ["reporten"]], "9" : [["reportara"], ["reportaras"], ["reportara"], ["report\u00e1ramos"], ["reportarais", "reportaran"], ["reportaran"]], "10" : [["reportase"], ["reportases"], ["reportase"], ["report\u00e1semos"], ["reportaseis", "reportasen"], ["reportasen"]], "11" : [["reportare"], ["reportares"], ["reportare"], ["report\u00e1remos"], ["reportareis", "reportaren"], ["reportaren"]], "12" : {"1" : ["reporta"], "2" : ["reporte"], "3" : ["reportemos"], "4" : ["reportad"], "5" : ["reporten"]}}}
json_instruct
{"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "4": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "5": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "6": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "7": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "8": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "9": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "10": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "11": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "12": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2", "3", "4", "5"]}}, "required": ["3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]}}, "required": ["source", "word", "infinitivo", "participio", "gerundio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"smooth-scrollbar.css": {"type": "string"}, "smooth-scrollbar.js": {"type": "string"}}, "required": ["smooth-scrollbar.css", "smooth-scrollbar.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"smooth-scrollbar.css" : "sha512-NZBBRa+xeAlggp1Xlu86nD/14vwvhQA4GKbX5djdufyYiSuFqYyrr4vCe7iqVcSgD9VRPVXSg6K+Y29vC4ubMQ==", "smooth-scrollbar.js" : "sha512-AjRfPOw2LiMuFy/AWYJOerEo6bLxzHoNAZ/5mfDLL4UoSZoXj0Sc5Y774usZR9f3gwL4oJApxB09f7kxOlAH/Q=="}
json_instruct
{"type": "object", "properties": {"smooth-scrollbar.css": {"type": "string"}, "smooth-scrollbar.js": {"type": "string"}}, "required": ["smooth-scrollbar.css", "smooth-scrollbar.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ReactNativeBooster", "displayName" : "ReactNativeBooster"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-angular-templates": {"type": "string"}, "grunt-browser-sync": {"type": "string"}, "grunt-contrib-clean": {"type": "string"}, "grunt-contrib-concat": {"type": "string"}, "grunt-contrib-copy": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-sass": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "grunt-include-source": {"type": "string"}, "grunt-wiredep": {"type": "string"}, "jit-grunt": {"type": "string"}}, "required": ["grunt", "grunt-angular-templates", "grunt-browser-sync", "grunt-contrib-clean", "grunt-contrib-concat", "grunt-contrib-copy", "grunt-contrib-jshint", "grunt-contrib-sass", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-include-source", "grunt-wiredep", "jit-grunt"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "todo-application", "version" : "1.0.0", "description" : "Todo application", "main" : "index.js", "scripts" : {"start" : "npm install && bower install && grunt start"}, "author" : "Lindon Camaj", "license" : "ISC", "dependencies" : {"grunt" : "^1.0.1", "grunt-angular-templates" : "^1.1.0", "grunt-browser-sync" : "^2.2.0", "grunt-contrib-clean" : "^1.0.0", "grunt-contrib-concat" : "^1.0.1", "grunt-contrib-copy" : "^1.0.0", "grunt-contrib-jshint" : "^1.0.0", "grunt-contrib-sass" : "^1.0.0", "grunt-contrib-uglify" : "^2.0.0", "grunt-contrib-watch" : "^1.0.0", "grunt-include-source" : "^1.0.0", "grunt-wiredep" : "^3.0.1", "jit-grunt" : "^0.10.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-angular-templates": {"type": "string"}, "grunt-browser-sync": {"type": "string"}, "grunt-contrib-clean": {"type": "string"}, "grunt-contrib-concat": {"type": "string"}, "grunt-contrib-copy": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-sass": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "grunt-include-source": {"type": "string"}, "grunt-wiredep": {"type": "string"}, "jit-grunt": {"type": "string"}}, "required": ["grunt", "grunt-angular-templates", "grunt-browser-sync", "grunt-contrib-clean", "grunt-contrib-concat", "grunt-contrib-copy", "grunt-contrib-jshint", "grunt-contrib-sass", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-include-source", "grunt-wiredep", "jit-grunt"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "user/angle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["cam/image_array", "user/throttle", "user/angle", "user/mode"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cam/image_array" : "3074_cam-image_array_.jpg", "user/throttle" : 0.0, "user/angle" : 0.023429254069924355, "user/mode" : "user"}
json_instruct
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "user/angle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["cam/image_array", "user/throttle", "user/angle", "user/mode"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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.org/draft-07/schema#"}
{"id" : 7777, "children" : [{"id" : 26033, "name" : "state -- and Christian symbolism"}, {"id" : 26038, "name" : "state -- and New Deal"}, {"id" : 26034, "name" : "state -- citizens"}, {"id" : 26037, "name" : "state -- during late Middle Ages"}, {"id" : 26036, "name" : "state -- emerging legal systems in late Middle Ages"}, {"id" : 26032, "name" : "state -- in America"}, {"id" : 26035, "name" : "state -- in Constitution"}, {"id" : 25938, "name" : "state -- modern secular state"}, {"id" : 26039, "name" : "state -- premodern political community"}, {"id" : 26040, "name" : "state -- rulers protecting Jews from mobs"}, {"id" : 26041, "name" : "state -- sovereignty"}], "name" : "state, the"}
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.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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" : "3514070020", "district_id" : "3514070", "name" : "KLINTER"}
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#"}
Create an example JSON object that satisfies this schema: {"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"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"yiisoft/yii2": {"type": "string"}}, "required": ["yiisoft/yii2"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"meysampg\\gmap\\": {"type": "string"}}, "required": ["meysampg\\gmap\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "keywords", "license", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "meysampg/yii2-gmapmarker", "description" : "A simple google map marker widget for Yii2", "type" : "yii2-extension", "keywords" : ["yii2", "extension", "google", "google-map"], "license" : "MIT", "authors" : [{"name" : "Meysam P.G.", "email" : "p.g.meysam@gmail.com"}], "require" : {"yiisoft/yii2" : "*"}, "autoload" : {"psr-4" : {"meysampg\\gmap\\" : ""}}}
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"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"yiisoft/yii2": {"type": "string"}}, "required": ["yiisoft/yii2"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"meysampg\\gmap\\": {"type": "string"}}, "required": ["meysampg\\gmap\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "keywords", "license", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-5cw4-xh6q-297m", "modified" : "2022-05-01T06:41:22Z", "published" : "2022-05-01T06:41:22Z", "aliases" : ["CVE-2006-0614"], "details" : "Unspecified vulnerability in Sun Java JDK and JRE 5.0 Update 3 and earlier, SDK and JRE 1.3.x through 1.3.1_16 and 1.4.x through 1.4.2_08 allows remote attackers to bypass Java sandbox security and obtain privileges via unspecified vectors involving the reflection APIs, aka the \"first issue.\"", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2006-0614"}, {"type" : "WEB", "url" : "https://exchange.xforce.ibmcloud.com/vulnerabilities/24561"}, {"type" : "WEB", "url" : "http://docs.info.apple.com/article.html?artnum=303658"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/18760"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/18884"}, {"type" : "WEB", "url" : "http://securitytracker.com/id?1015596"}, {"type" : "WEB", "url" : "http://sunsolve.sun.com/search/document.do?assetkey=1-26-102171-1"}, {"type" : "WEB", "url" : "http://www.gentoo.org/security/en/glsa/glsa-200602-07.xml"}, {"type" : "WEB", "url" : "http://www.kb.cert.org/vuls/id/759996"}, {"type" : "WEB", "url" : "http://www.vupen.com/english/advisories/2006/0467"}, {"type" : "WEB", "url" : "http://www.vupen.com/english/advisories/2006/0828"}, {"type" : "WEB", "url" : "http://www.vupen.com/english/advisories/2006/1398"}], "database_specific" : {"cwe_ids" : [], "severity" : "MODERATE", "github_reviewed" : false}}
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"author": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "web": {"type": "string"}}, "required": ["name", "web"]}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "license": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"vows": {"type": "string"}}, "required": ["vows"]}}, "required": ["author", "name", "description", "version", "keywords", "homepage", "contributors", "repository", "bugs", "directories", "license", "main", "scripts", "engines", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : "Jerry Sievert <code@legitimatesounding.com> (http://legitimatesounding.com/blog/index.html)", "name" : "cromag", "description" : "Date and Time Without the Monkeys", "version" : "0.1.3", "keywords" : ["date", "time", "utils"], "homepage" : "https://github.com/JerrySievert/cromagjs", "contributors" : [{"name" : "Jerry Sievert", "web" : "http://legitimatesounding.com"}], "repository" : {"type" : "git", "url" : "git://github.com/JerrySievert/cromagjs.git"}, "bugs" : {"url" : "http://github.com/JerrySievert/cromagjs/issues"}, "directories" : {"test" : "./test"}, "license" : "MIT", "main" : "cromag.js", "scripts" : {"test" : "vows --spec"}, "engines" : {"node" : ">=0.4.0"}, "dependencies" : {}, "devDependencies" : {"vows" : ">=0.4.0"}}
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "web": {"type": "string"}}, "required": ["name", "web"]}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "license": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"vows": {"type": "string"}}, "required": ["vows"]}}, "required": ["author", "name", "description", "version", "keywords", "homepage", "contributors", "repository", "bugs", "directories", "license", "main", "scripts", "engines", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"gender": {"type": "string"}, "name": {"type": "object", "properties": {"title": {"type": "string"}, "first": {"type": "string"}, "last": {"type": "string"}}, "required": ["title", "first", "last"]}, "email": {"type": "string"}, "login": {"type": "object", "properties": {"username": {"type": "string"}, "uuid": {"type": "string"}, "isloggedin": {"type": "boolean"}}, "required": ["username", "uuid", "isloggedin"]}, "picture": {"type": "object", "properties": {"large": {"type": "string"}, "medium": {"type": "string"}, "thumbnail": {"type": "string"}}, "required": ["large", "medium", "thumbnail"]}, "location": {"type": "object", "properties": {"street": {"type": "object", "properties": {"number": {"type": "integer"}, "name": {"type": "string"}}, "required": ["number", "name"]}, "city": {"type": "string"}, "state": {"type": "string"}, "country": {"type": "string"}, "postcode": {"type": "string"}, "coordinates": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}, "timezone": {"type": "object", "properties": {"offset": {"type": "string"}, "description": {"type": "string"}}, "required": ["offset", "description"]}}, "required": ["street", "city", "state", "country", "postcode", "coordinates", "timezone"]}, "isactive": {"type": "boolean"}}, "required": ["gender", "name", "email", "login", "picture", "location", "isactive"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"gender" : "female", "name" : {"title" : "Mrs", "first" : "Rose", "last" : "Mackay"}, "email" : "rose.mackay@example.com", "login" : {"username" : "whitemeercat247", "uuid" : "Vc2MY4+9RUuD+Ftc2Jz9NQ==", "isloggedin" : true}, "picture" : {"large" : "https://randomuser.me/api/portraits/women/54.jpg", "medium" : "https://randomuser.me/api/portraits/med/women/54.jpg", "thumbnail" : "https://randomuser.me/api/portraits/thumb/women/54.jpg"}, "location" : {"street" : {"number" : 6230, "name" : "Park Rd"}, "city" : "Charlottetown", "state" : "Nunavut", "country" : "Canada", "postcode" : "J8M 2Y2", "coordinates" : {"latitude" : 17.7614, "longitude" : -81.1371}, "timezone" : {"offset" : "+4:30", "description" : "Kabul"}}, "isactive" : false}
json_instruct
{"type": "object", "properties": {"gender": {"type": "string"}, "name": {"type": "object", "properties": {"title": {"type": "string"}, "first": {"type": "string"}, "last": {"type": "string"}}, "required": ["title", "first", "last"]}, "email": {"type": "string"}, "login": {"type": "object", "properties": {"username": {"type": "string"}, "uuid": {"type": "string"}, "isloggedin": {"type": "boolean"}}, "required": ["username", "uuid", "isloggedin"]}, "picture": {"type": "object", "properties": {"large": {"type": "string"}, "medium": {"type": "string"}, "thumbnail": {"type": "string"}}, "required": ["large", "medium", "thumbnail"]}, "location": {"type": "object", "properties": {"street": {"type": "object", "properties": {"number": {"type": "integer"}, "name": {"type": "string"}}, "required": ["number", "name"]}, "city": {"type": "string"}, "state": {"type": "string"}, "country": {"type": "string"}, "postcode": {"type": "string"}, "coordinates": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}, "timezone": {"type": "object", "properties": {"offset": {"type": "string"}, "description": {"type": "string"}}, "required": ["offset", "description"]}}, "required": ["street", "city", "state", "country", "postcode", "coordinates", "timezone"]}, "isactive": {"type": "boolean"}}, "required": ["gender", "name", "email", "login", "picture", "location", "isactive"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "MARIUS", "frequency" : 15047, "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#"}