input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId",...
{"userId" : 42781, "cartId" : "ee9092b3-5127-4f8b-9c03-21806296f3b5", "preferredProducts" : [902, 4259, 4397], "productReviews" : []}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema....
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test...
{"name" : "raffler", "version" : "0.0.1", "description" : "The Raffler makes it easy to setup SMS raffles to give out prizes at your events!", "main" : "app.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "https://github.com/kwhinnery/raffler.git"}, "ke...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "s...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": ...
{"nom" : "Guargual\u00e9", "dpt" : "Corse-du-Sud", "inscrits" : 142, "abs" : 22, "votants" : 120, "blancs" : 47, "nuls" : 2, "exp" : 71, "res" : [{"panneau" : "1", "voix" : 41}, {"panneau" : "2", "voix" : 30}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object"...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@yggdrasilts/core": {"type": "string"}, "class-validator...
{"name" : "@yggdrasilts/data", "version" : "0.0.1-alpha.0", "author" : "David Lopez", "license" : "MIT", "dependencies" : {"@yggdrasilts/core" : "canary", "class-validator" : "^0.9.1", "express" : "^4.16.4", "mysql" : "^2.16.0", "sqlite3" : "^4.0.4", "typeorm" : "^0.2.9"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@yggdrasilts/core": {"type": "string"}, "class-validator": {"type": "string"}, "express": {"type": "string"}, "mysq...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "...
{"name" : "webpack-typescript", "version" : "0.5.6", "author" : "Denis Nedelyaev", "license" : "MIT", "description" : "Lightweight, cleanly designed TypeScript Loader for webpack.", "keywords" : ["typescript-loader", "ts-loader", "webpack-loader", "typescript", "loader", "webpack", "ts", "tsx", "jsx"], "homepage" : "ht...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "repository...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"version": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "shapes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "points": {"type": "array", "items"...
{"version" : "4.5.6", "flags" : {}, "shapes" : [{"label" : "null", "points" : [[630, 518], [781, 513], [815, 1152], [625, 1155]], "group_id" : 0, "shape_type" : "polygon", "flags" : {}}], "imagePath" : "img_2222.jpg", "imageData" : "null", "imageWidth" : 1024, "imageHeight" : 1365}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "shapes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "points": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "grou...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}, "...
{"name" : "discord-bot-rastreadorencomendassequoia", "version" : "0.1.0", "description" : "Um bot criado para rastrear encomendas da entregadora Sequoia", "main" : "index.js", "scripts" : {"start" : "node ./index.js", "dev" : "npx nodemon ./index.js", "test" : "echo \"Error: no test specified\" && exit 1"}, "repository...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "dev", "test...
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"}, "exports": {"type": "object", "properties": {".": {"type": "string"}, "./": {"type": "str...
{"name" : "javascript-canvas", "version" : "1.1.10", "description" : "\u0420\u0438\u0441\u043e\u0432\u0430\u043d\u0438\u0435 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e Canvas API @2d", "main" : "index.js", "exports" : {"." : "./index.js", "./" : "./library/"}, "type" : "module", "scripts" : {"test" : "echo \"Err...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "exports": {"type": "object", "properties": {".": {"type": "string"}, "./": {"type": "string"}}, "required": [".", "./"]}, "type": {"type": "string"}, "scripts": {"...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"ty...
{"title" : "Individual models of color differentiation to improve interpretability of information visualization.", "fields" : ["visualization", "interpretability", "information visualization", "color normalization", "color vision"], "abstract" : "Color is commonly used to represent categories and values in many compute...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"typ...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"timestamp": {"type": "integer"}, "object_list": {"type": "array", "items": {"type": "object", "properties": {"position": {"type": "array", "items": {"type": "number"}}, "id": {"type": "integer"}}, "required": ["position", "...
{"timestamp" : 931, "object_list" : [{"position" : [2.68911270569, 12.8857199061], "id" : 606}, {"position" : [3.37417663752, 12.5506415473], "id" : 607}, {"position" : [11.6808135842, 12.6489693848], "id" : 608}, {"position" : [4.28401730643, 10.2688152023], "id" : 613}, {"position" : [1.66898831933, 7.4996455462], "i...
json_instruct
{"type": "object", "properties": {"timestamp": {"type": "integer"}, "object_list": {"type": "array", "items": {"type": "object", "properties": {"position": {"type": "array", "items": {"type": "number"}}, "id": {"type": "integer"}}, "required": ["position", "id"]}}, "frame": {"type": "integer"}, "size": {"type": "intege...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"messageType": {"type": "string"}, "hexData": {"type": "string"}, "hexId": {"type": "string"}, "countryCode": {"type": "integer"}, "protocolType": {"type": "string"}, "aircraft24BitAddressHex": {"type": "string"}, "ai...
{"messageType" : "Standard Location (Long)", "hexData" : "96E3AAAAAA7FDFF8211F3583E0FAA8", "hexId" : "2DC7555554FFBFF", "countryCode" : 366, "protocolType" : "Aircraft Address", "aircraft24BitAddressHex" : "AAAAAA", "aircraft24BitAddressOctal" : "52525252", "errorCorrectingCode1" : "000001000010001111100", "encodedPosi...
json_instruct
{"type": "object", "properties": {"messageType": {"type": "string"}, "hexData": {"type": "string"}, "hexId": {"type": "string"}, "countryCode": {"type": "integer"}, "protocolType": {"type": "string"}, "aircraft24BitAddressHex": {"type": "string"}, "aircraft24BitAddressOctal": {"type": "string"}, "errorCorrectingCode1":...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"jquery.details.js": {"type": "string"}, "jquery.details.min.js": {"type": "string"}}, "required": ["jquery.details.js", "jquery.details.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"jquery.details.js" : "sha512-GoDPcEEWrWXyutD9wK1ld2SLa/xcLFymuehZ0yan/MZtCMkXbTMs95UG0/9Yt4GhqetjCmYbhX5sp+rmR3OZxg==", "jquery.details.min.js" : "sha512-pIgpH1UobYqt7AgeJUHu44Yy2OuQvpPelbatOFfeKmzd52Em/wWmrFrMjUqwQ7dzV61bCCp1UnlT9eoqoxuDmQ=="}
json_instruct
{"type": "object", "properties": {"jquery.details.js": {"type": "string"}, "jquery.details.min.js": {"type": "string"}}, "required": ["jquery.details.js", "jquery.details.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"url": {"type": "string"}, "sha1": {"type": "string"}}, "required": ["url", "sha1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"url" : "https://static.wikia.nocookie.net/griftlands_gamepedia_en/images/d/da/Regenerating_Thickness.png/revision/latest?cb=20210808160757", "sha1" : "529741a6b8e45aa58a101a01bba1de2cdebeb1da"}
json_instruct
{"type": "object", "properties": {"url": {"type": "string"}, "sha1": {"type": "string"}}, "required": ["url", "sha1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "bo...
{"track" : "csharp", "exercise" : "hangman", "id" : "39e8520b7f514c6eb59a78e0ac8efbb1", "url" : "https://exercism.org/tracks/csharp/exercises/hangman", "handle" : "ErikSchierboom", "is_requester" : true, "auto_approve" : false}
json_instruct
{"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_reques...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["q-test-test"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "passwordlesslogin": {"type": "string"}, "passwordlesslogin-desc": {"type": "string"}, "passwo...
{"@metadata" : {"authors" : ["Ykhwong"]}, "passwordlesslogin" : "\ube44\ubc00\ubc88\ud638 \uc5c6\ub294 \ub85c\uadf8\uc778", "passwordlesslogin-desc" : "\uc5f0\uacb0\ub41c \uc7a5\uce58\uc5d0\uc11c \ub85c\uadf8\uc778\uc744 \ud655\uc778\ud568\uc73c\ub85c\uc368 \ube44\ubc00\ubc88\ud638 \uc5c6\uc774 \ub85c\uadf8\uc778\ud558...
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "passwordlesslogin": {"type": "string"}, "passwordlesslogin-desc": {"type": "string"}, "passwordlesslogin-verify-request": {"type": "string"}, "passwordl...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"...
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Caganayan, Tineg, Abra, Cordillera Administrative Region (CAR), PH", "locale" : "ph.cordillera-administrative-region-car.abra.tineg.caganayan", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" :...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"all_tests": {"type": "array", "items": {}}, "git": {"type": "string"}, "timeStarted": {"type": "string"}, "timeStopped": {"type": "string"}, "platform": {"type": "string"}}, "required": ["all_tests", "git", "timeSt...
{"all_tests" : [], "git" : "ac605491897bd2e5e05f75319069d2ba3beca16f", "timeStarted" : "2022-02-16T07:37:41.501Z", "timeStopped" : "2022-02-16T07:40:06.905Z", "platform" : "iOS"}
json_instruct
{"type": "object", "properties": {"all_tests": {"type": "array", "items": {}}, "git": {"type": "string"}, "timeStarted": {"type": "string"}, "timeStopped": {"type": "string"}, "platform": {"type": "string"}}, "required": ["all_tests", "git", "timeStarted", "timeStopped", "platform"], "$schema": "http://json-schema.org/...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"data": {"type": "object", "properties": {"site": {"type": "object", "properties": {"siteMetadata": {"type": "object", "properties": {"author": {"type": "object", "properties": {"name": {"type": "string"}, "contacts": {"type": ...
{"data" : {"site" : {"siteMetadata" : {"author" : {"name" : "Hallgeir Gustavsen", "contacts" : {"twitter" : "#"}}, "disqusShortname" : "", "subtitle" : "Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu.", "title" : "Blog by Hallgeir Gustavsen", "url" : "https://lumen.netlify.com"}}, "markdow...
json_instruct
{"type": "object", "properties": {"data": {"type": "object", "properties": {"site": {"type": "object", "properties": {"siteMetadata": {"type": "object", "properties": {"author": {"type": "object", "properties": {"name": {"type": "string"}, "contacts": {"type": "object", "properties": {"twitter": {"type": "string"}}, "r...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"groups": {"type": "object", "properties": {"config": {"type": "object", "properties": {"dir": {"type": "string"}, "data": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "requir...
{"groups" : {"config" : {"dir" : "/src/config", "data" : {"type" : "object"}}, "commons" : {"dir" : "/src/common", "data" : {"type" : "object"}}, "express" : {"dir" : "/src/express", "data" : {"type" : "function"}}, "models" : {"dir" : "/src/model", "data" : {"type" : "function"}}, "services" : {"dir" : "/src/services"...
json_instruct
{"type": "object", "properties": {"groups": {"type": "object", "properties": {"config": {"type": "object", "properties": {"dir": {"type": "string"}, "data": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["dir", "data"]}, "commons": {"type": "object", "properties": {"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"ok": {"type": "boolean"}, "pass": {"type": "integer"}, "fail": {"type": "integer"}}, "required": ["ok", "pass", "fail"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ok" : false, "pass" : 5, "fail" : 5}
json_instruct
{"type": "object", "properties": {"ok": {"type": "boolean"}, "pass": {"type": "integer"}, "fail": {"type": "integer"}}, "required": ["ok", "pass", "fail"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "premiered": {"type": "string"}, "genres": {"type": "array", "items": {"type": "string"}}, "runtime": {"type": "string"}, "no_of_seasons": {"type": "integer"}, "imdb_rating": {"type": "nu...
{"name" : "Mr Robot", "premiered" : "24-06-2015", "genres" : ["Drama", "Crime", "Thriller"], "runtime" : "60min", "no_of_seasons" : 4, "imdb_rating" : 8.5, "imdb_link" : "tt4158110"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "premiered": {"type": "string"}, "genres": {"type": "array", "items": {"type": "string"}}, "runtime": {"type": "string"}, "no_of_seasons": {"type": "integer"}, "imdb_rating": {"type": "number"}, "imdb_link": {"type": "string"}}, "required": ["name", "premier...
Please provide a valid JSON object following this schema: {"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": {...
{"name" : "larva/laravel-baidu-push", "description" : "This is a baidu push.", "keywords" : ["laravel", "baidu", "larva"], "type" : "library", "license" : "MIT", "require" : {"ext-json" : "*", "guzzlehttp/guzzle" : "^6.5 || ^7.2", "illuminate/bus" : "^6.0 || ^7.0 || ^8.0", "illuminate/events" : "^6.0 || ^7.0 || ^8.0", ...
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": {"ext-json": {"type": "string"}, "guzzlehttp/guzzle": {"type...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"p": {"type": "string"}, "d": {"type": "integer"}}, "required": ["p", "d"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"p" : "d9017faf-3748-4c8b-8be5-660c782e3ed3", "d" : 371}, {"p" : "25c56fad-6844-4cf4-aea4-edb3a1214e24", "d" : 85}, {"p" : "70210ddc-b7eb-48a9-aed6-2180a1bc3009", "d" : 63}, {"p" : "bccefb7b-3488-406f-83ed-2a333430cf97", "d" : 48}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"p": {"type": "string"}, "d": {"type": "integer"}}, "required": ["p", "d"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"logdown.js": {"type": "string"}, "logdown.min.js": {"type": "string"}}, "required": ["logdown.js", "logdown.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"logdown.js" : "sha512-hbXYb4MDmE4Z25vgXj4XamLv/QbMnzg4SuaH6FLtt0JFWSbQVPdTaU+xxpp28cw5RNrA3uTk9AmYp5EQo+k5Nw==", "logdown.min.js" : "sha512-4wCMVdiwZVM/X8yIDFhEekXIhvwYoLBdvHhIUfXimKKpqJkd10WpHyPKakKpT++ZD7IuIyaUatQBxsi7w/kEag=="}
json_instruct
{"type": "object", "properties": {"logdown.js": {"type": "string"}, "logdown.min.js": {"type": "string"}}, "required": ["logdown.js", "logdown.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"baseUrl": {"type": "string"}, "paths": {"type": "object", "properties": {"@mpkit/*": {"type": "array", "items": {"type": "string"}}}, "required": ["@mpkit/*"...
{"compilerOptions" : {"baseUrl" : ".", "paths" : {"@mpkit/*" : ["packages/*"]}, "declaration" : true, "lib" : ["ES2015"]}, "include" : ["packages/**/*.ts", "global.d.ts"], "exclude" : ["node_modules", "dist", "*.d.ts"]}
json_instruct
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"baseUrl": {"type": "string"}, "paths": {"type": "object", "properties": {"@mpkit/*": {"type": "array", "items": {"type": "string"}}}, "required": ["@mpkit/*"]}, "declaration": {"type": "boolean"}, "lib": {"type": "array", "items": {...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "c...
{"code" : 3215050, "parent" : 3215, "name" : "CIKAMPEK", "latitude" : "-6.4163914490299", "longitude" : "107.43494500051", "postal" : [41373], "children" : [3215050001, 3215050002, 3215050006, 3215050007, 3215050008, 3215050009, 3215050011, 3215050012, 3215050013, 3215050014]}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"rating": {"type": "string"}, "uuid": {"type": "string"}, "review_date": {"type": "string"}, "helpful": {"type": "string"}, "reviewer_id": {"type": "string"}, "not_helpful": {"type": "string"}, "review_text": {"...
{"rating" : "5", "uuid" : "80", "review_date" : "2012-05-21", "helpful" : "0", "reviewer_id" : "A2B02BTRVVFVMX", "not_helpful" : "0", "review_text" : "I've always loved cake decorating, ever since I took my first Wilton class. Gum Paste and Fondant seemed beyond my capabilities but when I saw this book I decided to gi...
json_instruct
{"type": "object", "properties": {"rating": {"type": "string"}, "uuid": {"type": "string"}, "review_date": {"type": "string"}, "helpful": {"type": "string"}, "reviewer_id": {"type": "string"}, "not_helpful": {"type": "string"}, "review_text": {"type": "string"}, "summary": {"type": "string"}, "product_name": {"type": "...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["machinepack-gateway", "reactcrm"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"allThreadsRelatedToChannelId": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "channelId": {"type": "object", "pr...
{"type" : "object", "properties" : {"allThreadsRelatedToChannelId" : {"type" : "string"}, "channelId" : {"type" : "string"}, "id" : {"type" : "string"}, "maxResults" : {"type" : "integer", "minimum" : 1, "maximum" : 100, "default" : 20}, "moderationStatus" : {"type" : "string", "enum" : ["heldForReview", "likelySpam", ...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"allThreadsRelatedToChannelId": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "channelId": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["ty...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"completed_task": {"type": "object", "properties": {"total_completed_task": {"type": "integer"}, "completed_task_cloud": {"type": "integer"}, "completed_task_edge": {"type": "integer"}, "completed_task_mobile": {"typ...
{"completed_task" : {"total_completed_task" : 1968, "completed_task_cloud" : 785, "completed_task_edge" : 1183, "completed_task_mobile" : 0}, "service_time" : 62.377720493134426, "processing_delay" : {"processing_time" : 41.78095966313501, "processing_time_cloud_avg" : 0, "processing_time_edge_avg" : 41.78095966313501,...
json_instruct
{"type": "object", "properties": {"completed_task": {"type": "object", "properties": {"total_completed_task": {"type": "integer"}, "completed_task_cloud": {"type": "integer"}, "completed_task_edge": {"type": "integer"}, "completed_task_mobile": {"type": "integer"}}, "required": ["total_completed_task", "completed_task_...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"key": {"type": "string"}, "type": {"type": "string"}, "label": {"type": "string"}}, "required": ["key", "type", "label"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"key" : "luminous", "type" : "check", "label" : "Luminous (emitting light)"}
json_instruct
{"type": "object", "properties": {"key": {"type": "string"}, "type": {"type": "string"}, "label": {"type": "string"}}, "required": ["key", "type", "label"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"Terra.application.tabs.more": {"type": "string"}}, "required": ["Terra.application.tabs.more"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Terra.application.tabs.more" : "More"}
json_instruct
{"type": "object", "properties": {"Terra.application.tabs.more": {"type": "string"}}, "required": ["Terra.application.tabs.more"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", ...
{"id" : "2006", "provinceId" : "91", "regencyId" : "02", "districtId" : "56", "name" : "Okwa"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
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", "it...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-118.502671, 34.418503], [-118.502301, 34.420173], [-118.491168, 34.421578], [-118.48718, 34.421368], [-118.483322, 34.419909], [-118.480629, 34.41681], [-118.477357, 34.415721], [-118.475878, 34.413709], [-118.47306, 34....
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "numbe...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "...
{"id" : 101833899, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "1f6671ed8178fd3bac427dc9b79e904e", "wof:id" : 101833899, "wof:repo" : "whosonfirst-data-admin-ro"}, "bbox" : [25.53333, 47.68333, 25.53333, 47.68333], "geometry" : {"coordinate...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"Name": {"type": "string"}, "Guid": {"type": "string"}, "From": {"type": "string"}}, "required": ["Name", "Guid", "From"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "OracleCurseVampirism", "Guid" : "b7cf40d93bfa4f46b21d2ba4f2047cf7", "From" : "loc:OracleCurseVampirismHindranceFeature"}
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "Guid": {"type": "string"}, "From": {"type": "string"}}, "required": ["Name", "Guid", "From"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "homepage": {"type": "string"}, "engines": {"type": "object", "properties": {"electron": {"typ...
{"name" : "electron-bus", "version" : "0.1.0", "description" : "A message bus for Electron applications", "main" : "ElectronBus.js", "homepage" : "https://github.com/mikehall314/electron-bus", "engines" : {"electron" : "*"}, "files" : ["ElectronBus.js", "MessageEnvelope.js"], "scripts" : {"lint" : "./node_modules/.bin/...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "homepage": {"type": "string"}, "engines": {"type": "object", "properties": {"electron": {"type": "string"}}, "required": ["electron"]}, "files": {"type": "array", ...
Using the following JSON schema, generate a compatible 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" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-120.977316, 37.609271], [-120.957044, 37.609236], [-120.956896, 37.59475], [-120.960873, 37.594503], [-120.977316, 37.609271]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 9330}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "numbe...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "research": {"type": "string"}, "type": {"type": "string"}, "symbol": {"type": "string"}...
{"name" : "Binance-Peg Cardano Token", "website" : "https://cardano.org", "description" : "Binance-Peg Cardano Token (ADA BEP20) is a token issued by Binance on Smart Chain; its price is pegged to Cardano (ADA) at a ratio of 1:1.", "explorer" : "https://bscscan.com/token/0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47", "re...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "research": {"type": "string"}, "type": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "status": {"type": "string"}, "id": {...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"layout": {"type": "string"}, "category": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["layout", "category", "tags"], "$schema": "http://json-schema.org/draft-07/sche...
{"layout" : "layouts/article/article", "category" : "DIY", "tags" : ["diy"]}
json_instruct
{"type": "object", "properties": {"layout": {"type": "string"}, "category": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["layout", "category", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}}, "required": ["private", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"private" : true, "name" : "nuxt-graphql-client-playground"}
json_instruct
{"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}}, "required": ["private", "name"], "$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"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "st...
{"name" : "horidaisuke/cakephp-aws-s3bucket", "description" : "AWS S3Bucket plugin for CakePHP 4.x", "type" : "cakephp-plugin", "license" : "MIT", "authors" : [{"name" : "Hori, Daisuke", "email" : "hori.daisuke@polymorphics.jp"}], "minimum-stability" : "stable", "require" : {"php" : ">=7.2", "aws/aws-sdk-php" : "^3.133...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"answers": {"type": "array", "items": {"type": "string"}}, "centerLetter": {"type": "string"}, "letterString": {"type": "string"}, "outerLetters": {"type": "array", "items": {"type": "string"}}, "pangrams": {"type": "array", "i...
{"answers" : ["beezer", "benzene", "benzin", "benzine", "bezzie", "bezzy", "bize", "bizzy", "breeze", "breezier", "breezy", "brize", "ebenezer", "ezine", "neeze", "rizzer", "zebrine", "zebrinny", "zein", "zeze", "zine", "zineb", "zizz"], "centerLetter" : "z", "letterString" : "zbeinry", "outerLetters" : ["b", "e", "i",...
json_instruct
{"type": "object", "properties": {"answers": {"type": "array", "items": {"type": "string"}}, "centerLetter": {"type": "string"}, "letterString": {"type": "string"}, "outerLetters": {"type": "array", "items": {"type": "string"}}, "pangrams": {"type": "array", "items": {"type": "string"}}, "validLetters": {"type": "array...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2...
{"\uc774\ub984" : "\uae40\uc131\ud638", "\ud55c\ubb38\uba85" : "\u91d1\u8072\u6d69", "\uc0dd\ub144\uc6d4\uc77c" : "1899-09-05", "\uc815\ub2f9" : "\uc790\uc720\ub2f9", "\uc120\uac70\uad6c" : "\uc804\ub0a8 \uac15\uc9c4", "\ub2f9\uc120\ud69f\uc218" : "\ucd08\uc120", "\ub2f9\uc120\ub300\uc218" : "3"}
json_instruct
{"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2f9\uc120\ud69f\uc218": {"type": "string"}, "\ub2f9\uc120\ub300\uc218": {"type...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draf...
{"symbol" : "cyFRAX", "name" : "Yearn Frax", "decimals" : 8, "address" : "0x9925f2f869048934e62720120798e7cce7e777bb"}
json_instruct
{"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, ...
{"categories" : ["Manual", "Software", "Web Development"], "desc" : " Packed with more than one thousand pages of hands-on instruction and step-by-step tutorials, the bestseller returns with everything you need to know to harness the power of Dreamweaver CS4. This comprehensive resource guides you through the ins and o...
json_instruct
{"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"},...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": ...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-78.684165, 35.841384], [-78.681277, 35.843029], [-78.680151, 35.844742], [-78.68057, 35.859519], [-78.67681, 35.856704], [-78.670504, 35.856541], [-78.666787, 35.857804], [-78.66294, 35.856639], [-78.661533, 35.855346], ...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "numbe...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, ...
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Bubong, Kolambugan, Lanao del Norte, Northern Mindanao (Region X), PH", "locale" : "ph.northern-mindanao-region-x.lanao-del-norte.kolambugan.bubong", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {}, "required": []}, "inner_p...
{"address" : "1UDbADib99KE9d3qZ87NqJF2QLTHmMkoV", "cert_auth_type" : "web", "cert_sign" : "HLCV7qGmCPdTcJ4D0RLiqIDblB7n4caGW8/AXtDDcN3SctNeCPEkZnY+drOPTVmZxODQsNQIpwDbgm+FQtFCM8w=", "cert_user_id" : "krossx@zeroid.bit", "files" : {}, "inner_path" : "data/userdb/15zGz5RTJi8EChfGcTDa8pGnkW71927w5L/content.json", "modifie...
json_instruct
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {}, "required": []}, "inner_path": {"type": "string"}, "modified": {"type": "number"}, "signs": {"type": "...
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1920, 6], [1921, 6], [1932, 5], [1951, 48], [1952, 14], [1953, 13], [1954, 10], [1955, 8], [1956, 9], [1957, 7], [1959, 7], [1960, 5], [1961, 14], [1962, 6], [1965, 8], [1967, 6], [1970, 7], [1971, 6], [1972, 5], [1975, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {...
{"template" : {"small" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/1.0", "medium" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/2.0", "large" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/3.0"}, "channels" : {"nebsytv" : {"title" : "nebsytv", "channel_id" : 123837202, "link" : "http://tw...
json_instruct
{"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"nebsytv": {"type": "object", "properties": {"title": {"type":...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"processing.js": {"type": "string"}, "processing.min.js": {"type": "string"}}, "required": ["processing.js", "processing.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"processing.js" : "sha512-ggiuz+MyWXxp+qHY/X5jFawKnYKXUbn37I5Fk7T8flWXPHBdNcZI8LdRnsC/tRRjcyeQ7gHZx5KysNcfEuVY7w==", "processing.min.js" : "sha512-hRVmI93myvn6s448QrdHROd/Ya4RuIHyvTozkE/FOMbZ/Pw3Rs2J67/+rJ9Pensvxf4P4ztHAi0sVGyoe94U9Q=="}
json_instruct
{"type": "object", "properties": {"processing.js": {"type": "string"}, "processing.min.js": {"type": "string"}}, "required": ["processing.js", "processing.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"typ...
{"name" : "api-docker", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "./node_modules/.bin/mocha --reporter spec", "start" : "node --harmony index.js"}, "author" : "Phil Senger", "license" : "ISC", "dependencies" : {"mongoose" : "^4.13.7", "restify" : "^6.3.4"}, "devDependencies" :...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "author": {"type": "string"},...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "pr...
{"id" : "15044", "name" : {"en" : "Supuru De Jos"}, "country" : "RO", "region" : "SM", "identifiers" : {"wmo" : "15044", "usaf" : "150440"}, "location" : {"latitude" : 47.4667, "longitude" : 22.8, "elevation" : 162}, "timezone" : "Europe/Bucharest"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}, "usaf": {"type": "string"}}, "req...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "null"}, "geometry": {"type": "object", "properties": {"type": {"type": "stri...
{"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : null, "geometry" : {"type" : "Polygon", "coordinates" : [[[-89.1214798, 30.2253957], [-89.12099375, 30.225243895877554], [-89.1205, 30.224], [-89.1205, 30.226], [-89.1214798, 30.2253957]]]}}, {"type" : "Feature", "properties" : null, "geom...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "null"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": ...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"16-a-1": {"type": "array", "items": {"type": "object", "properties": {"metadata": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "goal": {"type": "string"}, "target": {"type": "string"},...
{"16-a-1" : [{"metadata" : [{"name" : "16.a.1 Existence of independent National Human Rights Institutions in compliance with the Paris Principles", "goal" : "Goal 16. Peace, justice and strong institutions", "target" : "16.a Strengthen relevant national institutions, including through international cooperation, for bui...
json_instruct
{"type": "object", "properties": {"16-a-1": {"type": "array", "items": {"type": "object", "properties": {"metadata": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "goal": {"type": "string"}, "target": {"type": "string"}, "definition": {"type": "string"}, "unit": {"type": "stri...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"dbmodel": {"type": "array", "items": {"type": "string"}}, "license": {"type": "array", "items": {"type": "string"}}}, "required": ["dbmodel", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"dbmodel" : ["Multivalue DBMS"], "license" : ["Open Source"]}
json_instruct
{"type": "object", "properties": {"dbmodel": {"type": "array", "items": {"type": "string"}}, "license": {"type": "array", "items": {"type": "string"}}}, "required": ["dbmodel", "license"], "$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"}, "name": {"type": "string"}, "img": {"type": "string"}, "email": {"type": "string"}, "links": {"type": "object", "properties": {"website": {"type": "string"}, "linkedin": {"type": "str...
{"id" : "63f89b96-cf9f-4289-b281-09f8c41eab97", "name" : "Rajnish Kr Singh", "img" : "https://media.licdn.com/dms/image/C5103AQFCTSzJ-qni8Q/profile-displayphoto-shrink_200_200/0?e=1577318400&v=beta&t=iAdUxzlVtGmSIHm9I9EzsIqIuup4kKiJdyNwuDEwCTk", "email" : "", "links" : {"website" : "https://rajnishkrsingh.github.io/my_...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "img": {"type": "string"}, "email": {"type": "string"}, "links": {"type": "object", "properties": {"website": {"type": "string"}, "linkedin": {"type": "string"}, "github": {"type": "string"}}, "required": ["website", "linkedin", "gi...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"smtp_server": {"type": "string"}, "smtp_port": {"type": "integer"}, "tracing_enabled": {"type": "integer"}, "show_message_details": {"type": "integer"}, "show_prog_warnings": {"type": "integer"}, "db_type": {"type":...
{"smtp_server" : "127.0.0.1", "smtp_port" : 25, "tracing_enabled" : 1, "show_message_details" : 1, "show_prog_warnings" : 1, "db_type" : "MySQL", "db_server" : "localhost", "db_name" : "framework_demo", "db_user" : "root", "db_password" : "", "db_prefix" : "V1"}
json_instruct
{"type": "object", "properties": {"smtp_server": {"type": "string"}, "smtp_port": {"type": "integer"}, "tracing_enabled": {"type": "integer"}, "show_message_details": {"type": "integer"}, "show_prog_warnings": {"type": "integer"}, "db_type": {"type": "string"}, "db_server": {"type": "string"}, "db_name": {"type": "stri...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"review": {"type": "string"}, "date": {"type": "string"}, "rating": {"type": "string"}, "author": {"type": "string"}, "review_id": {"type": "string"}, "movie_id": {"type": "string"}}, "re...
[{"review" : "\uc5b4\ub838\uc744\ub54c \ubd24\ub358 \uc601\ud654\uc778\ub370 \uc9c0\uae08\ub2e4\uc2dc \ubcf4\uae34 \uc880 \uadf8\ub807\uace0 \uac00\ub054 30\ubd84\ucbe4 \ub098\uc624\ub294 \ub178\ub798\ub9cc \ub4e3\ub294\ub370 \uc88b\uc74c", "date" : "14.07.22", "rating" : "9", "author" : "gras****", "review_id" : "8939...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"review": {"type": "string"}, "date": {"type": "string"}, "rating": {"type": "string"}, "author": {"type": "string"}, "review_id": {"type": "string"}, "movie_id": {"type": "string"}}, "required": ["review", "date", "rating", "author", "review_id", "movie_id"]...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provin...
[{"id" : "2001", "provinceId" : "62", "regencyId" : "03", "districtId" : "03", "name" : "Anjir Serapat Timur"}, {"id" : "2002", "provinceId" : "62", "regencyId" : "03", "districtId" : "03", "name" : "Anjir Serapat Tengah"}, {"id" : "2003", "provinceId" : "62", "regencyId" : "03", "districtId" : "03", "name" : "Anjir Se...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"]}, "$schema": "http://json-schema.or...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"parameters": {"type": "object", "properties": {"subscriptionId": {"type": "string"}, "api-version": {"type": "string"}, "location": {"type": "string"}}, "required": ["subscriptionId", "api-version", "location"]}, "responses": ...
{"parameters" : {"subscriptionId" : "{subscription-id}", "api-version" : "2021-06-01", "location" : "eastus"}, "responses" : {"200" : {"body" : {"hostsRemaining" : {"AV20" : 0, "AV36" : 999}, "quotaEnabled" : "Enabled"}}}}
json_instruct
{"type": "object", "properties": {"parameters": {"type": "object", "properties": {"subscriptionId": {"type": "string"}, "api-version": {"type": "string"}, "location": {"type": "string"}}, "required": ["subscriptionId", "api-version", "location"]}, "responses": {"type": "object", "properties": {"200": {"type": "object",...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"stat.flyOneCm": {"type": "integer"}, "stat.walkOneCm": {"type": "integer"}, "stat.jump": {"type": "integer"}, "stat.useItem.minecraft.writable_book": {"type": "integer"}, "stat.playOneMinute": {"type": "integer"}, "...
{"stat.flyOneCm" : 2120, "stat.walkOneCm" : 942, "stat.jump" : 11, "stat.useItem.minecraft.writable_book" : 4, "stat.playOneMinute" : 2507, "stat.timeSinceDeath" : 2507, "stat.useItem.minecraft.written_book" : 1, "stat.sprintOneCm" : 597}
json_instruct
{"type": "object", "properties": {"stat.flyOneCm": {"type": "integer"}, "stat.walkOneCm": {"type": "integer"}, "stat.jump": {"type": "integer"}, "stat.useItem.minecraft.writable_book": {"type": "integer"}, "stat.playOneMinute": {"type": "integer"}, "stat.timeSinceDeath": {"type": "integer"}, "stat.useItem.minecraft.wri...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"template": {"type": "string"}, "description": {"type": "string"}, "execution_order": {"type": "integer"}, "enabled": {"type": "boolean"}, "action": {"type": "string"}, "find": {"type": "string"}, "replace": {"type": ...
{"template" : "xfrm_resource_wrapper_macros", "description" : "Add tab in resource view", "execution_order" : 10, "enabled" : true, "action" : "str_replace", "find" : "<xf:if is=\"$resource.hasViewableDiscussion()\">", "replace" : "<xf:if is=\"$resource.canEdit()\">\n\t<a class=\"tabs-tab {{ $selected == 'buyers' ? 'is...
json_instruct
{"type": "object", "properties": {"template": {"type": "string"}, "description": {"type": "string"}, "execution_order": {"type": "integer"}, "enabled": {"type": "boolean"}, "action": {"type": "string"}, "find": {"type": "string"}, "replace": {"type": "string"}}, "required": ["template", "description", "execution_order"...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"sn3.21:1.1": {"type": "string"}, "sn3.21:2.1": {"type": "string"}, "sn3.21:3.1": {"type": "string"}, "sn3.21:4.1": {"type": "string"}, "sn3.21:5.1": {"type": "string"}, "sn3.21:6.1": {"type": "string"}, "sn3.21:7.1": {"type": ...
{"sn3.21:1.1" : "cck15.128, csp1ed12.94, csp2ed12.94, dr15.128, ms12S1_717, msdiv132, pts-vp-pli2ed1.210, sc1, sya15.136, vri23.112", "sn3.21:2.1" : "bj13.172, ms12S1_718, ndp12.93, pts-vp-pli1ed1.94, pts-vp-pli2ed1.211, sc2", "sn3.21:3.1" : "dr15.129, ms12S1_719, sc3, sya15.137", "sn3.21:4.1" : "cck15.129, csp1ed12.95...
json_instruct
{"type": "object", "properties": {"sn3.21:1.1": {"type": "string"}, "sn3.21:2.1": {"type": "string"}, "sn3.21:3.1": {"type": "string"}, "sn3.21:4.1": {"type": "string"}, "sn3.21:5.1": {"type": "string"}, "sn3.21:6.1": {"type": "string"}, "sn3.21:7.1": {"type": "string"}, "sn3.21:8.1": {"type": "string"}, "sn3.21:9.1": ...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "i...
{"appid" : 71113, "name" : "Sonic the Hedgehog", "windows" : true, "mac" : false, "linux" : false, "early_access" : false, "lookup_time" : 1490967021}
json_instruct
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"dataType": {"type": "string"}, "longName": {"type": "string"}, "hl7Table": {"type": "string"}}, "required": ["dataType", "longName", "hl7Table"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"dataType" : "IS", "longName" : "Transaction Type", "hl7Table" : "HL70017"}
json_instruct
{"type": "object", "properties": {"dataType": {"type": "string"}, "longName": {"type": "string"}, "hl7Table": {"type": "string"}}, "required": ["dataType", "longName", "hl7Table"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "prope...
{"id" : "b0d6530f-6503-43f0-ae79-b6e934a416ed", "playerTags" : ["c83a13f6-ee66-4b1c-9747-faa67395a6f1"], "teamTags" : [], "gameTags" : ["1a0e91ae-6028-4de9-b8ab-91675acce531"], "metadata" : {"mod" : "INHABITING", "play" : 180, "type" : 0, "parent" : "dec17a3d-f565-4396-8c5e-b855e4ecfa1b", "subPlay" : 0}, "created" : "2...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"mod": {"type": "string"}, "play": {"type": "int...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"pools": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"entryName": {"type": "string"}, "weight": {"type": "inte...
{"pools" : [{"name" : "main", "entries" : [{"entryName" : "twilightforest:charm_of_life_1", "weight" : 1, "quality" : 0, "type" : "item", "name" : "twilightforest:charm_of_life_1"}, {"entryName" : "ff", "weight" : 1, "quality" : 0, "type" : "item", "functions" : [{"enchantments" : {"minecraft:feather_falling" : 3}, "fu...
json_instruct
{"type": "object", "properties": {"pools": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"entryName": {"type": "string"}, "weight": {"type": "integer"}, "quality": {"type": "integer"}, "type": {"type": "st...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, ...
{"n_dim" : 8, "n_trials" : 50, "objective" : "rotated_hyper_ellipsoid_on_cube", "white" : "bayesopt_poi", "black" : "hyperopt_atpe", "traceback" : ["passing", "passing"], "best_val" : [109.3164420127518, 1066.698787791662], "best_x" : [[0.4390949783744464, 0.4187654039473436, 0.435162705623744, 0.4594553731163044, 0.42...
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"ty...
{"name" : "furkan-angular7-node12-npm6", "description" : "", "main" : "index.js", "authors" : ["Onur Furkan Unal"], "license" : "MIT", "keywords" : ["forum", "advertisement"], "homepage" : "https://github.com/OnurFurkanUnal/furkan-angular7-node12-npm6", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "ignore": {"t...
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema...
[{"year" : 1918, "sex" : "F", "n" : 7, "prop" : 5.82e-06}, {"year" : 1958, "sex" : "F", "n" : 5, "prop" : 2.42e-06}, {"year" : 1970, "sex" : "F", "n" : 5, "prop" : 2.73e-06}, {"year" : 1975, "sex" : "F", "n" : 5, "prop" : 3.2e-06}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.o...
{"id" : "http://data.doremus.org/performance/cf09c42c-b363-3a6c-8f5c-b6916b2c5607", "expression" : [{"id" : "http://data.doremus.org/expression/a0751226-9338-3c12-806e-868f370d942a"}, {"composer" : "http://data.doremus.org/artist/73fb2260-be2c-3859-9752-c557f7457d8c", "id" : "http://data.doremus.org/expression/c044e713...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"apify": {"type": "string"}, "apify-shared":...
{"name" : "actor-find-broken-links", "version" : "1.0.0", "description" : "Crawl a number of web pages using headless Chrome and Puppeteer", "main" : "main.js", "dependencies" : {"apify" : "^0.8.19", "apify-shared" : "^0.1.6", "puppeteer" : "^1.9.0", "underscore" : "^1.9.1"}, "devDependencies" : {}, "scripts" : {"start...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"apify": {"type": "string"}, "apify-shared": {"type": "string"}, "puppeteer": {"type": "string"}, "underscore": {"...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["650106014200", "\u4e1c\u5357\u6c9f\u6751\u59d4\u4f1a", "111", "0"], ["650106014201", "\u8428\u5c14\u8fbe\u5742\u6751\u59d4\u4f1a", "112", "0"], ["650106014202", "\u9a6c\u5bb6\u5e84\u5b50\u6751\u59d4\u4f1a", "112", "0"], ["650106014203", "\u5927\u6cc9\u6751\u59d4\u4f1a", "112", "0"], ["650106014204", "\u963f\u5408\u4...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "type": {"type": "string"}, "homeurl": {"type": "string"}, "frequency": {"type": "string"}, "issues": {"type": "string"...
{"name" : "adguard.spyware", "description" : "Comprehensive list of various online counters and web analytics tools", "category" : "Ads", "type" : "domain", "homeurl" : "https://github.com/AdguardTeam/AdguardFilters", "frequency" : "occasionally", "issues" : "https://github.com/AdguardTeam/AdguardFilters/issues", "url"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "type": {"type": "string"}, "homeurl": {"type": "string"}, "frequency": {"type": "string"}, "issues": {"type": "string"}, "url": {"type": "string"}, "license": {"type": "string"}, "numberofru...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scri...
{"name" : "Classy", "description" : "An object-oriented library for Javascript", "version" : "1.0.0", "homepage" : "https://github.com/mblinsitu/Classy", "main" : "classy.js", "files" : ["classy.js", "oo.js", "assets"], "scripts" : {"test" : ["mocha", "karma start"]}, "keywords" : ["object-oriented framework", "classes...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test": {"type": "array", "ite...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id_0506": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_0506"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id_0506" : {"publicdate" : "2007-01-26 09:32:41", "title" : "Book of Matthew"}}
json_instruct
{"type": "object", "properties": {"id_0506": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_0506"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": ...
{"n_dim" : 21, "n_trials" : 130, "objective" : "rosenbrock_on_cube", "white" : "platypus_evolutionary", "black" : "bobyqa_default", "traceback" : ["passing", "passing"], "best_val" : [136714641164.42241, 84779.89934436129], "best_x" : [[0.6902292090522321, 0.6567173568701146, 0.6261408547079198, 0.8236868131352056, 0.5...
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"pageTitle": {"type": "string"}, "joinUs": {"type": "string"}, "joinUsStatement": {"type": "string"}, "ourValues": {"type": "string"}, "values1": {"type": "string"}, "valuesMotto": {"type": "string"}, "values2": {"typ...
{"pageTitle" : "Celo Carreras: crear productos para la inclusi\u00f3n financiera", "joinUs" : "\u00danase a nosotros", "joinUsStatement" : "Vamos a crear un sistema monetario que genere las condiciones para la prosperidad de todos", "ourValues" : "Nuestros valores", "values1" : "Creemos que todas las personas tienen su...
json_instruct
{"type": "object", "properties": {"pageTitle": {"type": "string"}, "joinUs": {"type": "string"}, "joinUsStatement": {"type": "string"}, "ourValues": {"type": "string"}, "values1": {"type": "string"}, "valuesMotto": {"type": "string"}, "values2": {"type": "string"}, "valuesMotto2": {"type": "string"}, "values3": {"type"...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"yasgui.bundled.min.js": {"type": "string"}, "yasgui.min.css": {"type": "string"}, "yasgui.min.js": {"type": "string"}}, "required": ["yasgui.bundled.min.js", "yasgui.min.css", "yasgui.min.js"], "$schema": "http://json-schem...
{"yasgui.bundled.min.js" : "sha512-Xt6EZcVMsQ3s3M5VJn5fDAGKqQNrpddoqmi7xoCCZD327GuiHYF5V7MwhD3liSyQujGbv6NHM1xcom+ew1x5rw==", "yasgui.min.css" : "sha512-UO08D9m2FNLAQAzAc4MxXWtkQhi8oJpi9PoBF7lO8Fvkj9iTnFWKvggY0D7H8ZlKJO0IzEkZbA69hOnGM+ZYIg==", "yasgui.min.js" : "sha512-Xt6EZcVMsQ3s3M5VJn5fDAGKqQNrpddoqmi7xoCCZD327GuiHY...
json_instruct
{"type": "object", "properties": {"yasgui.bundled.min.js": {"type": "string"}, "yasgui.min.css": {"type": "string"}, "yasgui.min.js": {"type": "string"}}, "required": ["yasgui.bundled.min.js", "yasgui.min.css", "yasgui.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07...
[{"year" : 1984, "sex" : "F", "n" : 7, "prop" : 3.88e-06}, {"year" : 1986, "sex" : "F", "n" : 9, "prop" : 4.88e-06}, {"year" : 1987, "sex" : "F", "n" : 8, "prop" : 4.27e-06}, {"year" : 1988, "sex" : "F", "n" : 9, "prop" : 4.68e-06}, {"year" : 1989, "sex" : "F", "n" : 12, "prop" : 6.02e-06}, {"year" : 1990, "sex" : "F",...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required"...
{"track" : "typescript", "exercise" : "secret-handshake", "id" : "a5acba35f6eb4bd889ebf79f47c3bcbe", "url" : "https://exercism.io/my/solutions/a5acba35f6eb4bd889ebf79f47c3bcbe", "handle" : "rootulp", "is_requester" : true, "auto_approve" : false}
json_instruct
{"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_reques...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"output": {"type": "string"}, "input": {"type": "string"}, "level": {"type": "integer"}, "name": {"type": "string"}, "has_images": {"type": "boolean"}, "description": {"type": "string"}, "id": {"type": "string"}, "category": {"ty...
{"output" : "For each test case in the input, your program must print the integer represented by n or \"error\" if n is not a valid non-negative integer. Note: an empty string does not represent a valid integer.", "input" : "Each line of input is one test case and contains one string n. This n will contain between 0 an...
json_instruct
{"type": "object", "properties": {"output": {"type": "string"}, "input": {"type": "string"}, "level": {"type": "integer"}, "name": {"type": "string"}, "has_images": {"type": "boolean"}, "description": {"type": "string"}, "id": {"type": "string"}, "category": {"type": "string"}, "statistics": {"type": "object", "propert...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}...
{"name" : "yup-to-swagger", "version" : "0.0.5", "description" : "Convert your Yup schema to a Swagger schema", "main" : "src/main.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "tecfu <help@tecfu.com>", "license" : "MIT", "dependencies" : {"js-yaml" : "^3.13.1"}, "devDependencies...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "depen...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "e247d1cb63dd069ff766", "c" : {"app" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"final seeds": {"type": "string"}, "diameter_out": {"type": "string"}, "total_seeds": {"type": "integer"}, "archive_len": {"type": "string"}, "min_members_dist": {"type": "string"}, "radius_in": {"type": "string"}, "max_members...
{"final seeds" : "25", "diameter_out" : "12.662275", "total_seeds" : 100, "archive_len" : "40", "min_members_dist" : "0.751285", "radius_in" : "4.071603", "max_members_dist" : "11.690177", "avg_members_dist" : "4.5390334", "std_members_dist" : "2.6451013", "radius_out" : "5.1927004", "covered_seeds" : 25, "sparseness" ...
json_instruct
{"type": "object", "properties": {"final seeds": {"type": "string"}, "diameter_out": {"type": "string"}, "total_seeds": {"type": "integer"}, "archive_len": {"type": "string"}, "min_members_dist": {"type": "string"}, "radius_in": {"type": "string"}, "max_members_dist": {"type": "string"}, "avg_members_dist": {"type": "s...
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["PRP", "VBP", "DT", "NN", "."], ["DT", "JJ", "NN"], ["NN", "VBZ", "RB"], ["DT", "JJ", "NN", "NNS"], ["DT", "JJ", "NN"], ["RB", "RB", "JJ"], ["NN", "VBP", "NN"], ["JJ", "VBP", "NN"], ["PRP$", "NN"], ["PRP", "VBP", "PRP$", "NN"], ["WRB", "MD", "PRP", "VB", "."], ["WP", "VBZ", "RB", "."], ["IN", "DT", "NN"], ["IN", "DT"...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"react-bootstrap.js": {"type": "string"}, "react-bootstrap.min.js": {"type": "string"}}, "required": ["react-bootstrap.js", "react-bootstrap.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"react-bootstrap.js" : "sha512-WUVLXvJHYfdkVhRMmPGZetD7yqVeCKVeGFViHVqEB/eJNavyvbeNFLwN3gpA65Ovk5n6tVc8YUs4Ltg3oOZcxw==", "react-bootstrap.min.js" : "sha512-y5/IM1tf88WP0WvoejyHRRL46lvz03PXObo0uY02Da4VTLFZXOsgkekh3/7Z4MrwNPX37QM8XNlKGIGHhusNxA=="}
json_instruct
{"type": "object", "properties": {"react-bootstrap.js": {"type": "string"}, "react-bootstrap.min.js": {"type": "string"}}, "required": ["react-bootstrap.js", "react-bootstrap.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "propert...
{"name" : "soljs", "version" : "6.0.0", "description" : "SolJS Javascript implementation of solar radiation utilities for building science", "author" : "Rafael Villar Burke <pachi@rvburke.com> (http://www.rvburke.com)", "license" : "MIT", "main" : "lib/index.js", "repository" : {"type" : "git", "url" : "git+https://git...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}},...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"content": {"type": "string"}, "entities": {"type": "array", "items": {"type": "object", "properties": {"offset": {"type": "integer"}, "type": {"type": "string"}, "id": {"type": "integer"}, "entity": {"type": "s...
{"content" : "@ChrisLeslieMP wont commit to #NATO benchmark of 2% defence spend. I will fight for it. Govs 1st duty is the safety of its ppl. #GE2015", "entities" : [{"offset" : 123, "type" : "ne", "id" : 2, "entity" : "ppl"}, {"offset" : 0, "type" : "ne", "id" : 3, "entity" : "@ChrisLeslieMP"}, {"offset" : 31, "type" ...
json_instruct
{"type": "object", "properties": {"content": {"type": "string"}, "entities": {"type": "array", "items": {"type": "object", "properties": {"offset": {"type": "integer"}, "type": {"type": "string"}, "id": {"type": "integer"}, "entity": {"type": "string"}}, "required": ["offset", "type", "id", "entity"]}}, "topics": {"typ...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type":...
{"name" : "rrwebdebug.com", "version" : "1.0.0", "repository" : "https://github.com/rrweb-io/rrwebdebug.com.git", "author" : "Justin Halsall <Juice10@users.noreply.github.com>", "license" : "MIT", "scripts" : {"dev" : "vite", "build" : "tsc && vite build", "preview" : "vite preview"}, "devDependencies" : {"prettier" : ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "preview": {"type": "string"}},...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"description": {"type": "string"}, "source": {"type": "string"}, "data": {"type": "array", "items": {"type": "string"}}}, "required": ["description", "source", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "A list of common Spanish last names.", "source" : "https://github.com/olea/lemarios", "data" : ["Aguilar", "Alonso", "\u00c1lvarez", "Arias", "Ben\u00edtez", "Blanco", "Blesa", "Bravo", "Caballero", "Cabrera", "Calvo", "Cambil", "Campos", "Cano", "Carmona", "Carrasco", "Castillo", "Castro", "Cort\u00e...
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "source": {"type": "string"}, "data": {"type": "array", "items": {"type": "string"}}}, "required": ["description", "source", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "st...
{"id" : "0x0b430ffcb378752489b1902357b0d7a2d260eec134ae6a965386bf98b29e7560", "title" : "\u51b2\u8d77\u6765\uff0cxdm", "body" : "", "choices" : ["hold", "holder"], "start" : 1635940200, "end" : 1635998400, "snapshot" : "12331596", "state" : "closed", "author" : "0x177214A2ccf770D8C5DA9731E09aAe9c42681906", "space" : {"...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "strin...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}, "workbench.colorCustomizations": {"type": "object", "properties": {"activityBar.activeBackground": {"type": "string"}, "activityBar.activeBorder"...
{"cSpell.words" : ["academicons", "allflare", "anchorjs", "ASAS", "asassn", "ASPCAP", "Balmer", "CNAME", "darkmode", "disqus", "Dtwo", "flareprop", "fontawesome", "galpos", "genderq", "Gennady", "jemoji", "jquery", "katex", "Kowalski", "Lacertae", "lineheights", "lineratio", "linkedin", "LSST", "mansory", "mathjax", "n...
json_instruct
{"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}, "workbench.colorCustomizations": {"type": "object", "properties": {"activityBar.activeBackground": {"type": "string"}, "activityBar.activeBorder": {"type": "string"}, "activityBar.background": {"type": "string"}, "activity...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"preset": {"type": "object", "properties": {"name": {"type": "string"}, "statusBarQuery": {"type": "string"}, "statusBarAltQuery": {"type": "string"}}, "required": ["name", "statusBarQuery", "statusBarAltQuery"]}, "st...
{"preset" : {"name" : "custom", "statusBarQuery" : "", "statusBarAltQuery" : ""}, "statusBarQuery" : "{word_count} words {character_count} characters {words_today} Today ", "statusBarAltQuery" : "{file_count} files {total_word_count} words {total_sentence_count} Sentences", "countComments" : false, "collectStats" : tr...
json_instruct
{"type": "object", "properties": {"preset": {"type": "object", "properties": {"name": {"type": "string"}, "statusBarQuery": {"type": "string"}, "statusBarAltQuery": {"type": "string"}}, "required": ["name", "statusBarQuery", "statusBarAltQuery"]}, "statusBarQuery": {"type": "string"}, "statusBarAltQuery": {"type": "str...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, ...
{"directions" : ["Preheat oven to 425 degrees F (220 degrees C). Grease a baking sheet.", "Place carrots in a large bowl; add cornstarch and toss, using your hands, until evenly coated. Sprinkle coconut sugar, cayenne pepper, paprika, garlic powder, onion powder, black pepper, oregano, and thyme over carrots. Drizzle o...
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "r...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "dt": {"type": "integer"}, "ar": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "req...
[{"id" : 4444665, "name" : "Milk-A-*****", "dt" : 220440, "ar" : {"id" : 105882, "name" : "11/5"}, "al" : {"id" : 448472, "name" : "A-1 Yola", "picUrl" : "https://p2.music.126.net/mmJHMJ_T-gBIYFtnP5UtKg==/109951163787176433.jpg"}}, {"id" : 1348853154, "name" : "Upset", "dt" : 282000, "ar" : {"id" : 13898903, "name" : "...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "dt": {"type": "integer"}, "ar": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "al": {"type": "object", "properties": {"id": {"type...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool...
{"contract" : "0x974d9983c9d9a23cf3bf5665090f277abf5e0537", "tool" : "securify", "start" : 1563266000.089052, "end" : 1563266003.9476295, "duration" : 3.8585774898529053, "analysis" : null}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.or...