input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"thresholdKey": {"type": "object", "properties": {"threshold": {"type": "integer"}, "keyList": {"type": "array", "items": {"type": "object", "properties": {"Ed25519": {"type": "string"}}, "required": ["Ed25519...
{"thresholdKey" : {"threshold" : 10, "keyList" : [{"Ed25519" : "985359feb9ab23eef8ccc71b87345976141c429a98c2f99d71bee4e726ce9665"}, {"Ed25519" : "29e8c736cd22409b6d57ccbc9557bb3ecc0fe3c426bc6c9e75f0b9c9f62720ba"}, {"Ed25519" : "eaceee8e46adaf94d81bc907db83e261a0b9ceab68738e054d93dd85f9f963ec"}, {"Ed25519" : "5b2c8d4f40...
json_instruct
{"type": "object", "properties": {"thresholdKey": {"type": "object", "properties": {"threshold": {"type": "integer"}, "keyList": {"type": "array", "items": {"type": "object", "properties": {"Ed25519": {"type": "string"}}, "required": ["Ed25519"]}}}, "required": ["threshold", "keyList"]}}, "required": ["thresholdKey"], ...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"versions": {"type": "array", "items": {"type": "object", "properties": {"git-tree": {"type": "string"}, "version-string": {"type": "string"}, "port-version": {"type": "integer"}}, "required": ["git-tree", "version-string", "po...
{"versions" : [{"git-tree" : "0279d4ae637ef0b7380ad1193282a5f76b4d27f3", "version-string" : "1.16", "port-version" : 2}, {"git-tree" : "9a7b8c44bcd4ee8396edbb03495d998169d4f292", "version-string" : "1.16", "port-version" : 1}, {"git-tree" : "c012da22fcf945d11b7257267dc4f3bac624559b", "version-string" : "1.16", "port-ve...
json_instruct
{"type": "object", "properties": {"versions": {"type": "array", "items": {"type": "object", "properties": {"git-tree": {"type": "string"}, "version-string": {"type": "string"}, "port-version": {"type": "integer"}}, "required": ["git-tree", "version-string", "port-version"]}}}, "required": ["versions"], "$schema": "http...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"t...
{"edges" : [[5, 8], [5, 14], [30, 5], [5, 19], [23, 5], [5, 21], [39, 5], [5, 14], [3, 5], [5, 8], [31, 5], [34, 5], [5, 35], [30, 5], [7, 33], [22, 5], [0, 17], [18, 5], [4, 5], [13, 11], [19, 11], [5, 16], [37, 5], [5, 40], [5, 8], [5, 3], [32, 5], [5, 30], [24, 5], [31, 11], [5, 30], [5, 1], [5, 10], [38, 5], [6, 2]...
json_instruct
{"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6":...
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"}, "preferGlobal": {"type": "boolean"}, "bin": {"type": "object", "properties": {"literatu...
{"name" : "literature", "version" : "0.0.3", "description" : "Write literate code in Markdown, then use Literature to extract code blocks that you can pass to any compiler.", "main" : "dist/literature.js", "preferGlobal" : true, "bin" : {"literature" : "./dist/literature-cli.js"}, "scripts" : {"test" : "mocha --compile...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "preferGlobal": {"type": "boolean"}, "bin": {"type": "object", "properties": {"literature": {"type": "string"}}, "required": ["literature"]}, "scripts": {"type": "o...
Create an example JSON object that satisfies this schema: {"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"}}, "requi...
{"content" : "I live in Chicago, where the cost of living is drastically lower than London. I worked minimum wage. One cheque didn't pay my rent .#bbcqt", "entities" : [{"offset" : 70, "type" : "ne", "id" : 2, "entity" : "london"}, {"offset" : 10, "type" : "ne", "id" : 3, "entity" : "chicago"}, {"entity" : "minimum wag...
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...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": ...
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-1.255835, 51.402007]}, "properties" : {"site-address" : "Turnfields land rear of Regent, The Moors, Thatcham, RG19 4PR", "name" : "BR/2017/36", "planning-permission-type" : "reserved matters approval", "notes" : "Approval of reserved matters from pe...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site-address": {"type": "string"}...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}, "license": {"ty...
{"name" : "gesturizer", "version" : "1.1.1", "author" : "Michael Duve", "email" : "mduve@designmail.net", "homepage" : "https://github.com/dazlious", "url" : "https://github.com/dazlious/gesturizer", "description" : "An extensive tiny library for gestures and user interactions", "license" : {"type" : "MIT", "url" : "ht...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"expireTime" : 9007200864348788000, "key" : "637b3403ea38aafe5394ed30e5c5175f{}", "val" : "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='250'%20height='217'%20viewBox='0%200%20250%20217'%20preserveAspectRatio='none'%3e%3cpath%20d='M22%20113v96h26v-3c-5-18-5-35%201-46%202-4%203-5%2010-5%2010%2...
json_instruct
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"description": {"type": "string"}, "usage": {"type": "string"}, "usageHelp": {"type": "string"}, "onlyBotsAndServers": {"type": "string"}, "botAlreadyAdded": {"type": "string"}, "botAdded": {"type": "string"}, "...
{"description" : "Adds a bot or server to the partner system", "usage" : "{emotes.use} | Use {prefix}setpartner <server id/bot id> <server invite/bot invite> <short description>", "usageHelp" : "setpartner <server id/bot id> <server invite/bot invite> <short description>", "onlyBotsAndServers" : "{emotes.error} | Only ...
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "usage": {"type": "string"}, "usageHelp": {"type": "string"}, "onlyBotsAndServers": {"type": "string"}, "botAlreadyAdded": {"type": "string"}, "botAdded": {"type": "string"}, "botAddedAnnounce": {"type": "string"}, "guildAlreadyAdded": {"type": "strin...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["add-npm-script", "arana", "config-yml", "dpl", "ductile", "env2", "express-ko", "exprexo", "hapi-email", "hapi-error", "hapi-login-example-postgres", "hapi-postgres-connection", "hapi-redis-connection", "hapi-riot", "hapi-socketio-redis-chat-example", "hits", "hot-config", "knex-generic-errors", "knex-ping", "lambda-...
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "array", "items": {"type": "integer"}}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "99cf0708746b3778ed4a", "c" : [0]}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "array", "items": {"type": "integer"}}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"url": {"type": "string"}, "email": {"type": "string"}, "name": {"type": "string"}}, "required": ["url", "...
{"name" : "github-card", "version" : "1.0.3", "author" : {"url" : "https://reddec.net", "email" : "owner@reddec.net", "name" : "Baryshnikov Aleksandr (reddec)"}, "repository" : "https://github.com/reddec/github-card", "scripts" : {"build" : "rollup -c", "dev" : "rollup -c -w", "start" : "sirv public"}, "devDependencies...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"url": {"type": "string"}, "email": {"type": "string"}, "name": {"type": "string"}}, "required": ["url", "email", "name"]}, "repository": {"type": "string"}, "scripts": {"type": "obje...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"aws-sdk.js": {"type": "string"}, "aws-sdk.min.js": {"type": "string"}}, "required": ["aws-sdk.js", "aws-sdk.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"aws-sdk.js" : "sha512-MRRWQYAqX3/QZOLWX4EGFJWQtysf3KWN1cu8I3nf4onlemLG2lxfy12bRc2vYyORu9tcOg/y6BIYoClUHDDwTQ==", "aws-sdk.min.js" : "sha512-WvaIV+pn0qoDB/m0z+ThSbVRacN2rHBzX2/GJmpTRwlmwUhMrKM/5fkSfoeKgok9TqE/2AqWHOvIJG13yqAl9w=="}
json_instruct
{"type": "object", "properties": {"aws-sdk.js": {"type": "string"}, "aws-sdk.min.js": {"type": "string"}}, "required": ["aws-sdk.js", "aws-sdk.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "integer"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value":...
{"nft" : {"id" : 7334, "image" : "ipfs://QmNN8uoh5D8inydeSF3GhdoLmMbskvAEnuxyCgETyVsB7z", "attributes" : [{"trait_type" : "Background", "value" : "Gray"}, {"trait_type" : "Mouth", "value" : "Grin Gold Grill"}, {"trait_type" : "Clothes", "value" : "Admirals Coat"}, {"trait_type" : "Fur", "value" : "Black"}, {"trait_type...
json_instruct
{"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "integer"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "arr...
{"rustc" : 9289672224281493355, "features" : "[]", "target" : 17902753892849126463, "profile" : 6269190295429226618, "path" : 283362662676461159, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : "wasm32-unknown-unknown/release/.fingerprint/yansi-71831c1c0975f569/dep-lib-yansi"}}], "rustflags" : [], "metadata" : ...
json_instruct
{"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"biuser": {"type": "string"}, "bipwd": {"type": "string"}, "wsdl": {"type": "string"}}, "required": ["biuser", "bipwd", "wsdl"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"biuser" : "PBCS_INTEG_USR", "bipwd" : "Oracle03", "wsdl" : "https://eims-dev1.fa.us2.oraclecloud.com/xmlpserver/services/ExternalReportWSSService?wsdl"}
json_instruct
{"type": "object", "properties": {"biuser": {"type": "string"}, "bipwd": {"type": "string"}, "wsdl": {"type": "string"}}, "required": ["biuser", "bipwd", "wsdl"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"default": {"type": "object", "properties": {"bold": {"type": "string"}, "italic": {"type": "string"}, "underline": {"type": "string"}, "strikethrough": {"type": "string"}, "black": {"type": "string"}, "red": {"typ...
{"default" : {"bold" : "font-weight: bold;", "italic" : "font-style: italic;", "underline" : "text-decoration: underline;", "strikethrough" : "text-decoration: line-through;", "black" : "color: black;", "red" : "color: red;", "green" : "color: green;", "yellow" : "color: yellow;", "blue" : "color: blue;", "magenta" : "...
json_instruct
{"type": "object", "properties": {"default": {"type": "object", "properties": {"bold": {"type": "string"}, "italic": {"type": "string"}, "underline": {"type": "string"}, "strikethrough": {"type": "string"}, "black": {"type": "string"}, "red": {"type": "string"}, "green": {"type": "string"}, "yellow": {"type": "string"}...
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"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "repository": {"t...
{"name" : "telehash-telesocket", "version" : "0.0.3", "description" : "Adding telesocket support to telehash-js", "main" : "index.js", "dependencies" : {}, "repository" : {"type" : "git", "url" : "https://github.com/quartzjer/telesocket.git"}, "keywords" : ["telehash"], "author" : {"name" : "Jeremie Miller", "email" : ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "s...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties...
{"name" : "serverless-deployment-group-plugin", "description" : "Serverless plugin for deploy functions filtering by group.", "version" : "1.0.4", "main" : "index.js", "author" : "f.tormo+dev@gmail.com", "license" : "MIT", "repository" : {"type" : "git", "url" : "https://github.com/ftormo/serverless-deployment-group-pl...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}},...
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"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required...
{"name" : "mutrait", "version" : "1.1.0-pre.0", "description" : "A simple, powerful trait applier for ES6+ classes", "main" : "index.js", "directories" : {"test" : "test"}, "dependencies" : {}, "devDependencies" : {"chai" : "4.2.0", "mocha" : "5.2.0", "standard" : "12.0.1"}, "scripts" : {"test-only" : "mocha -u tdd tes...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "dependencies": {"type": "object", "properties": {}, "required"...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "perit:block/cracked_light_grey_terracotta_briquettes_slab"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"status_code": {"type": "string"}, "status_msg": {"type": "string"}, "meta": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"timestamp": {"type": "number"}, "model": {"type": "string"}, "...
{"status_code" : "OK", "status_msg" : "All images in request have completed successfully. ", "meta" : {"tag" : {"timestamp" : 1442733817.875015, "model" : "default", "config" : "0b2b7436987dd912e077ff576731f8b7"}}, "results" : [{"docid" : 111064525411824426764136568218183127605, "status_code" : "OK", "status_msg" : "OK...
json_instruct
{"type": "object", "properties": {"status_code": {"type": "string"}, "status_msg": {"type": "string"}, "meta": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"timestamp": {"type": "number"}, "model": {"type": "string"}, "config": {"type": "string"}}, "required": ["timestamp", "model", "confi...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"best_r": {"type": "number"}, "best_x": {"type": "array", "items": {"type": "number"}}, "best_val": {"type": "number"}, "elapsed": {"type": "number"}, "n": {"type": "integer"}, "n_trials": {"type": "integer"}}, "requ...
{"best_r" : 0.6145919799940586, "best_x" : [0.8407823038532255, 0.42809883428849316, 0.3319766341122694], "best_val" : 0.04097955473760309, "elapsed" : 28.170319318771362, "n" : 150, "n_trials" : 15}
json_instruct
{"type": "object", "properties": {"best_r": {"type": "number"}, "best_x": {"type": "array", "items": {"type": "number"}}, "best_val": {"type": "number"}, "elapsed": {"type": "number"}, "n": {"type": "integer"}, "n_trials": {"type": "integer"}}, "required": ["best_r", "best_x", "best_val", "elapsed", "n", "n_trials"], "...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"planks": {"type": "string"}, "log": {"type": "string"}}, "required": ["planks", "log"]}}, "required": ["parent", "textures"], "$schema": "http://json-...
{"parent" : "adorn:item/templates/table", "textures" : {"planks" : "byg:block/embur_planks", "log" : "byg:block/embur_pedu"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"planks": {"type": "string"}, "log": {"type": "string"}}, "required": ["planks", "log"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "prope...
{"id" : "87763", "name" : {"en" : "Bariloche / Villa Mascardi"}, "country" : "AR", "region" : "R", "identifiers" : {"wmo" : "87763"}, "location" : {"latitude" : -41.25, "longitude" : -71.6167, "elevation" : 1955}, "timezone" : "America/Argentina/Mendoza"}
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"}}, "required": ["wmo"]}, "location"...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"configurations": {"type": "array", "items": {"type": "object", "properties": {"title_cleanup_regex": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "content_selectors": {"type": "array", "item...
{"configurations" : [{"title_cleanup_regex" : "^(.*?)\\s+\u2013", "ignore" : ["a.headerlink", "ul.breadcrumb"], "content_selectors" : ["section.document"], "skip_docs" : ["sitemap", "search"], "sources" : [{"path" : "hosted", "section" : "hosted"}, {"path" : "on-premise", "section" : "on-premise"}]}]}
json_instruct
{"type": "object", "properties": {"configurations": {"type": "array", "items": {"type": "object", "properties": {"title_cleanup_regex": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "content_selectors": {"type": "array", "items": {"type": "string"}}, "skip_docs": {"type": "array", "items...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"compile": {"type": "string"}, "test": {"type": "string"}, "...
{"name" : "last-hit-extensions", "version" : "0.10.1", "description" : "extensions for last-hit", "main" : "dist/index.js", "scripts" : {"compile" : "gulp", "test" : "npm run compile && node dist/test/test-one.test.js", "deploy" : "npm run compile && npm publish --access public", "deploy:dev" : "npm run compile && npm ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"compile": {"type": "string"}, "test": {"type": "string"}, "deploy": {"type": "string"}, "deploy:dev": {"type": "string...
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": {"lint": {"type": "string"}, "build": {"type": "string"}, ...
{"name" : "sourcery-template", "version" : "1.0.1", "description" : "Sourcery plugin for inserting emojis.", "main" : "src/index.js", "scripts" : {"lint" : "eslint src", "build" : "node ./src/buildKeywordIndex.js", "postinstall" : "npm run build", "bump" : "npm version patch -m 'v%s'", "postversion" : "git push && git ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "build": {"type": "string"}, "postinstall": {"type": "string"}, "bump": {"type": "string"},...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"code": {"type": "string"}, "label": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "label": {"type": "string"}, "description": {"type": "str...
{"code" : "example", "label" : "example", "attributes" : [{"type" : "date", "label" : "Valid from", "description" : "Date with format dd.MM.yyyy", "code" : "validFrom", "required" : true, "noAllowed" : "2014-01-01", "constraints" : {"datePattern" : "dd.MM.yyyy"}}], "type_property" : "ext_type"}
json_instruct
{"type": "object", "properties": {"code": {"type": "string"}, "label": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "label": {"type": "string"}, "description": {"type": "string"}, "code": {"type": "string"}, "required": {"type": "boolean"}, "...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number...
{"id" : "23982094", "name" : "Wenlock Grove", "nodes" : [{"type" : "node", "id" : 28405558, "lat" : 52.6052056, "lon" : -0.2535242}, {"type" : "node", "id" : 260019386, "lat" : 52.6057594, "lon" : -0.2533954}, {"type" : "node", "id" : 260019708, "lat" : 52.6054141, "lon" : -0.2534115}], "volunteer_postcode" : "PE8 6QF"...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunte...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "n...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[152.625, 31.0], [152.625, 31.083333333333332], [152.75, 31.083333333333332], [152.75, 31.0], [152.625, 31.0]]]}, "properties" : {"code" : 465245, "url" : "http://madefor.github.io/0410/api/v1/465245.geojson", "view" : "https://github.com/madefor/...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"GemFormatVersion": {"type": "integer"}, "Uuid": {"type": "string"}, "Name": {"type": "string"}, "DisplayName": {"type": "string"}, "Version": {"type": "string"}, "LinkType": {"type": "string"}, "Summary": {"type": "s...
{"GemFormatVersion" : 3, "Uuid" : "92fe57eae7d3402a90761973678c079a", "Name" : "InAppPurchases", "DisplayName" : "In-App Purchases", "Version" : "0.1.0", "LinkType" : "Dynamic", "Summary" : "Provides the in-app purchasing API for iOS and Android", "Tags" : ["InAppPurchases", "iOS", "Android"], "IconPath" : "preview.png...
json_instruct
{"type": "object", "properties": {"GemFormatVersion": {"type": "integer"}, "Uuid": {"type": "string"}, "Name": {"type": "string"}, "DisplayName": {"type": "string"}, "Version": {"type": "string"}, "LinkType": {"type": "string"}, "Summary": {"type": "string"}, "Tags": {"type": "array", "items": {"type": "string"}}, "Ico...
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"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "re...
{"name" : "random-curse-words", "version" : "0.0.2", "description" : "Generate one or more common curse English words", "main" : "index.js", "repository" : {"type" : "git", "url" : "git@github.com:reimertz/random-curse-words.git"}, "scripts" : {"test" : "mocha tests/test.js"}, "keywords" : ["random", "words", "words", ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", ...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", ...
{"id" : "CXQT0", "name" : {"en" : "Thunder Bay"}, "country" : "CA", "region" : "ON", "identifiers" : {"national" : null, "wmo" : null, "ghcn" : null, "wban" : null, "usaf" : null, "mosmix" : null, "icao" : "CXQT", "iata" : null}, "location" : {"latitude" : 48.4333, "longitude" : -89.2167, "elevation" : 190}, "timezone"...
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": {"national": {"type": "null"}, "wmo": {"type": "null"}, "ghcn...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "watch": {"type": "string"}}, "r...
{"name" : "livestreamer-ui", "version" : "1.0.0", "description" : "", "main" : "index.html", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "watch" : "jsx --watch src/ build/"}, "author" : "Julian Hollmann <julian.hollmann@gmail.com>", "license" : "ISC", "dependencies" : {}, "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"}, "watch": {"type": "string"}}, "required": ["test", "watch"]}, "author": {"type": "string"},...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"asset": {"type": "object", "properties": {"format": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "path": {"type": "string"}, "size": {"type": "object", "properties": {"width": {"type":...
{"asset" : {"format" : "jpg", "id" : "329ed9914540f1d26a843cb69563f656", "name" : "pitting-tube.jpg", "path" : "file:C:/Users/caile/Documents/GitHub/TrainYourOwnYOLO/Data/Source_Images/Training_Images/Corrosion/pitting-tube.jpg", "size" : {"width" : 400, "height" : 267}, "state" : 2, "type" : 1}, "regions" : [{"id" : "...
json_instruct
{"type": "object", "properties": {"asset": {"type": "object", "properties": {"format": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "path": {"type": "string"}, "size": {"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}}, "required": ["width", "heig...
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "context": {"type": "string"}}, "required": ["name", "context"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "VAT (MTD) end-to-end service guide", "context" : "/guides/vat-mtd-end-to-end-service-guide"}, {"name" : "Income Tax (MTD) end-to-end service guide", "context" : "/guides/income-tax-mtd-end-to-end-service-guide/"}, {"name" : "Self Assessment end-to-end service guide", "context" : "/guides/self-assessment-end...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "context": {"type": "string"}}, "required": ["name", "context"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"open": {"type": "string"}, "high": {"type": "string"}, "low": {"type": "string"}, "volume": {"type": "string"}, "last": {"type": "string"}, "volume_30day": {"type": "string"}}, "required": ["open", "high", "low...
{"open" : "11.59", "high" : "11.81", "low" : "11.1", "volume" : "2666.066", "last" : "11.81", "volume_30day" : "137073.35"}
json_instruct
{"type": "object", "properties": {"open": {"type": "string"}, "high": {"type": "string"}, "low": {"type": "string"}, "volume": {"type": "string"}, "last": {"type": "string"}, "volume_30day": {"type": "string"}}, "required": ["open", "high", "low", "volume", "last", "volume_30day"], "$schema": "http://json-schema.org/dr...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"prod...
{"userId" : 77790, "cartId" : "a5ae7ee6-85b8-4ce8-a039-b54d507b89c7", "preferredProducts" : [1108, 4644], "productReviews" : [{"productId" : 4930, "reviewText" : "My tiger loves to play with it.", "reviewDate" : "2018-08-02T19:23:07.8923763+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"html": {"type": "string"}, "css": {"type": "string"}, "authors": {"type": "string"}, "roll20userid": {"type": "string"}, "preview": {"type": "string"}, "instructions": {"type": "string"}}, "required": ["html", "css...
{"html" : "OWBSheet.html", "css" : "OWBSheet.css", "authors" : "Sharp, Chris", "roll20userid" : "5060412", "preview" : "OWBSheet.png", "instructions" : "Character sheet for [WWII Operation WhiteBox](https://www.drivethrurpg.com/product/196284/OWB001-WWII-Operation-WhiteBox), in english. See the [Readme](https://github....
json_instruct
{"type": "object", "properties": {"html": {"type": "string"}, "css": {"type": "string"}, "authors": {"type": "string"}, "roll20userid": {"type": "string"}, "preview": {"type": "string"}, "instructions": {"type": "string"}}, "required": ["html", "css", "authors", "roll20userid", "preview", "instructions"], "$schema": "h...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"save": {"type": "string"}, "search-magazines": {"type": "string"}, "alfabetic-magazines": {"type": "string"}, "all-magazines": {"type": "string"}, "search-required": {"type": "string"}, "no-magazines": {"type": "s...
{"save" : "GUARDAR", "search-magazines" : "BUSCAR PERI\u00d3DICOS", "alfabetic-magazines" : "LISTA ALFAB\u00c9TICA DE LOS PERI\u00d3DICO", "all-magazines" : "TODOS", "search-required" : "Por favor complete el campo de b\u00fasqueda.", "no-magazines" : "No hay peri\u00f3dicos", "select-one-magazine" : "Por favor, selecc...
json_instruct
{"type": "object", "properties": {"save": {"type": "string"}, "search-magazines": {"type": "string"}, "alfabetic-magazines": {"type": "string"}, "all-magazines": {"type": "string"}, "search-required": {"type": "string"}, "no-magazines": {"type": "string"}, "select-one-magazine": {"type": "string"}, "confirm-changes": {...
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"}, "types": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "...
{"name" : "gurram-swap", "version" : "0.1.5", "description" : "Typescript library for reading from uniswap subgraphs", "main" : "dist/index.js", "types" : "dist/index.d.ts", "files" : ["dist"], "scripts" : {"test" : "jest", "build" : "tsc", "prepublishOnly" : "tsc", "lint" : "eslint src/**/*.ts", "lint-fix" : "eslint s...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "buil...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$sche...
{"width" : 0.16360664, "rotation" : 1.1366594, "xCenter" : 0.41111726, "yCenter" : 0.8052242, "height" : 0.29085627}
json_instruct
{"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"CUSTOM_ORDER": {"type": "object", "properties": {"SEARCH": {"type": "object", "properties": {"IS_PRE_ORDER": {"type": "string"}, "IS_VIP_ORDER": {"type": "string"}, "CUSTOMER_ZIP_CODE": {"type": "string"}, "DRAFT_ORDER": {"typ...
{"CUSTOM_ORDER" : {"SEARCH" : {"IS_PRE_ORDER" : "Is Pre order?", "IS_VIP_ORDER" : "Is VIP order?", "CUSTOMER_ZIP_CODE" : "Customer zip code", "DRAFT_ORDER" : "Draft order", "PAYMENT_TYPE" : "Payment type", "PAYMENT_BILL_TO" : "Payment bill to", "IMPORT_LICENSE_EXPIRE_DATE" : "Import license expire date", "KIT_CODE" : "...
json_instruct
{"type": "object", "properties": {"CUSTOM_ORDER": {"type": "object", "properties": {"SEARCH": {"type": "object", "properties": {"IS_PRE_ORDER": {"type": "string"}, "IS_VIP_ORDER": {"type": "string"}, "CUSTOMER_ZIP_CODE": {"type": "string"}, "DRAFT_ORDER": {"type": "string"}, "PAYMENT_TYPE": {"type": "string"}, "PAYMENT...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"average_occupancy" : [2.6866669287658658, 2.800563567354167, 2.8119623215436853, 2.722297734342417, 2.755277677360336, 2.6710197939140405, 2.719705422825112, 2.921212839693186, 2.8845707692502005, 2.822490955081328, 2.7481907881171357, 2.720635667996592, 2.736220909788385, 2.8165314382636417, 2.891203703562903, 3.032...
json_instruct
{"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "string"}}}, "required": ["baseObjects", "retur...
{"baseObjects" : ["[\"(\",\"u#N2\",\"<H\",\"UE@\",\"6\",\"MI\",\"D%<\",\"z\"]", "[\"(\",\"u#N2\",\"<H\",\"UE@\",\"6\",\"MI\",\"D%<\",\"z\"]", "[\"(\",\"u#N2\",\"<H\",\"UE@\",403,\"MI\",\"D%<\",\"z\"]", "1.7247140043256688e+308"], "returnObjects" : ["\"Error\"", "[\"(0(,u#N2,<H,UE@,6,MI,D%<,z\",\"u#N21(,u#N2,<H,UE@,6,MI...
json_instruct
{"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "string"}}}, "required": ["baseObjects", "returnObjects", "callbackArgs"], "$schema": "http://json-schema....
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"value" : "1980-05-22T13:12:08"}
json_instruct
{"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/farmables/eggs/poptopegg/poptopegg.object": {"type": "array", "items": {"type": "string"}}}, "re...
[{"DeniedAlternatives" : [], "Files" : {"objects/farmables/eggs/poptopegg/poptopegg.object" : ["/description"]}, "Texts" : {"Eng" : "Hatches into a adorable floofy carnivore."}}, {"DeniedAlternatives" : [], "Files" : {"objects/farmables/eggs/poptopegg/poptopegg.object" : ["/shortdescription"]}, "Texts" : {"Eng" : "Popt...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/farmables/eggs/poptopegg/poptopegg.object": {"type": "array", "items": {"type": "string"}}}, "required": ["objects/farmables/eggs/poptopegg/poptopegg.obj...
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" : ["ajee", "gaijin", "ganja", "jaga", "jagaing", "jagg", "jagging", "jaggy", "jane", "jann", "janney", "janneying", "janny", "jannying", "jaygee", "jean", "jeeing", "jenny", "jigajig", "jigajigging", "jigging", "jigjig", "jinn", "jinne", "jinnee", "jinni", "jnana", "ninja"], "centerLetter" : "j", "letterStri...
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...
The schema below describes a JSON structure. Generate a valid example: {"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" : "6403020003", "district_id" : "6403020", "name" : "MUARA JAWA TENGAH"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["620422114001", "\u6587\u661f\u793e\u533a", "121", "0"], ["620422114200", "\u8001\u541b\u5761\u6751\u59d4\u4f1a", "220", "0"], ["620422114201", "\u96f7\u4fdd\u5c94\u6751\u59d4\u4f1a", "220", "0"], ["620422114202", "\u9ad8\u77f3\u5d16\u6751\u59d4\u4f1a", "220", "0"], ["620422114203", "\u6587\u5bb6\u5c94\u6751\u59d4\u4...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "sloc": {"type": "integer"}, "lloc": {"type": "integer"}, "functions": {"type": "integer"}, "deliveredBugs": {"type": "number"}, "maintainability": {"type": "nu...
[{"date" : "Sat, 24 Aug 2019 22:20:02 GMT", "sloc" : 4554, "lloc" : 4638, "functions" : 450, "deliveredBugs" : 102.605, "maintainability" : 59.435, "lintErrors" : 5873, "difficulty" : 273.061}, {"date" : "Sat, 24 Aug 2019 22:26:31 GMT", "sloc" : 4554, "lloc" : 4638, "functions" : 450, "deliveredBugs" : 102.605, "mainta...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "sloc": {"type": "integer"}, "lloc": {"type": "integer"}, "functions": {"type": "integer"}, "deliveredBugs": {"type": "number"}, "maintainability": {"type": "number"}, "lintErrors": {"type": "integer"}, "difficulty": {"type": "numb...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type"...
{"id" : 38952, "info" : {"name" : "ContentsOnly: Tedious Days More, More and More", "description" : "Just contents only for print.", "additionalInfo" : null, "format" : "uso", "category" : "livedoor", "createdAt" : "2010-10-24T17:34:15.000Z", "updatedAt" : "2010-10-24T17:34:15.000Z", "license" : "NO-REDISTRIBUTION", "a...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"947248554256": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fNa...
{"947248554256" : {"type" : "book open", "bookName" : "Epic%20Quest", "subjectName" : "school", "fName" : "users/NC0vYW5kcm9pZF9hc3NldC93d3cvc2Nob29sL0VwaWMlMjBRdWVzdC92YXJpYWJsZS1FUV9NYXBfdmlkZW9zLUVRX01hcF92aWRfcGVhY29jay5odG1sLWFuYWx5dGljcy05NDcyNDg1NTQyMjU=.json"}, "947248554559" : {"type" : "st"}, "947248554560" :...
json_instruct
{"type": "object", "properties": {"947248554256": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}, "947248554559": {"type": "object", "properties": {"t...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"900379795": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900379796": {"type": "object", "properties": {"...
{"900379795" : {"nama" : "TPS 1", "dapil" : [3303, 13305, 2331603]}, "900379796" : {"nama" : "TPS 2", "dapil" : [3303, 13305, 2331603]}, "900379797" : {"nama" : "TPS 3", "dapil" : [3303, 13305, 2331603]}, "900379798" : {"nama" : "TPS 4", "dapil" : [3303, 13305, 2331603]}, "900379799" : {"nama" : "TPS 5", "dapil" : [330...
json_instruct
{"type": "object", "properties": {"900379795": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900379796": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"probe_id": {"type": "integer"}, "resolvers": {"type": "array", "items": {"type": "object", "properties": {"ipv6_tcp": {"type": "boolean"}, "resolver_asn": {"type": "integer"}, "resolver_net": {"type": "string...
{"probe_id" : 14675, "resolvers" : [{"ipv6_tcp" : true, "resolver_asn" : 15943, "resolver_net" : "84.46.0.0/17", "ipv4_tcp" : true, "internal" : "fd00::c225:6ff:fe82:537a", "ipv6_cap" : true}, {"ipv6_tcp" : true, "resolver_asn" : 15943, "resolver_net" : "84.46.0.0/17", "ipv4_tcp" : true, "internal" : "192.168.179.1", "...
json_instruct
{"type": "object", "properties": {"probe_id": {"type": "integer"}, "resolvers": {"type": "array", "items": {"type": "object", "properties": {"ipv6_tcp": {"type": "boolean"}, "resolver_asn": {"type": "integer"}, "resolver_net": {"type": "string"}, "ipv4_tcp": {"type": "boolean"}, "internal": {"type": "string"}, "ipv6_ca...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"dependencyVerification": {"type": "object", "properties": {"veteranInformation": {"type": "object", "properties": {"fullName": {"type": "object", "properties": {"first": {"type": "string"}, "middle": {"type": "strin...
{"dependencyVerification" : {"veteranInformation" : {"fullName" : {"first" : "AdamAdamAdamAdam", "middle" : "B", "last" : "HuberwsHuberwsHuberws", "suffix" : "Jr."}, "ssn" : "796-10-4437", "VAFileNumber" : "796104437", "dateOfBirth" : "1950-10-04", "email" : "vets.gov.user+228@gmail.comvets.gov.user+228@gmail.com"}, "u...
json_instruct
{"type": "object", "properties": {"dependencyVerification": {"type": "object", "properties": {"veteranInformation": {"type": "object", "properties": {"fullName": {"type": "object", "properties": {"first": {"type": "string"}, "middle": {"type": "string"}, "last": {"type": "string"}, "suffix": {"type": "string"}}, "requi...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Sources": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "ra": {"type": "number"}, "dec": {"type": "number"}, "epoch": {"type": "null"}, "equinox": {"type": "null"}, "shortname": {"t...
{"Sources" : [{"source" : "2MASS J23310161-0406193", "ra" : 352.75671, "dec" : -4.1053611, "epoch" : null, "equinox" : null, "shortname" : "2331-0406", "reference" : "Gizi00", "comments" : null}], "Names" : [{"other_name" : "2MASS J23310161-0406193"}, {"other_name" : "2MASSI J2331016-040619"}], "ProperMotions" : [{"mu_...
json_instruct
{"type": "object", "properties": {"Sources": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "ra": {"type": "number"}, "dec": {"type": "number"}, "epoch": {"type": "null"}, "equinox": {"type": "null"}, "shortname": {"type": "string"}, "reference": {"type": "string"}, "comments...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"count": {"type": "integer"}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "999920": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"...
{"count" : 20, "N.A.//" : {"count" : 12}, "999920" : {"count" : 2}, "533030" : {"count" : 2}, "373010" : {"count" : 1}, "472061" : {"count" : 3}}
json_instruct
{"type": "object", "properties": {"count": {"type": "integer"}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "999920": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "533030": {"type": "object", "properties": {"count": {"typ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"data": {"type": "null"}, "list": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "sum": {"type": "integer"}, "type": {"type": "string"}}, "required": ["id", "sum", "type"]}}}, ...
{"data" : null, "list" : [{"id" : 1001, "sum" : 50, "type" : "\u5fae\u4fe1\u5185\u7f6e\u6d4f\u89c8\u5668"}, {"id" : 1002, "sum" : 13, "type" : "UC\u6d4f\u89c8\u5668"}, {"id" : 1003, "sum" : 88, "type" : "IE\u6d4f\u89c8\u5668"}, {"id" : 1004, "sum" : 200, "type" : "\u8c37\u6b4cChrome"}, {"id" : 1005, "sum" : 77, "type" ...
json_instruct
{"type": "object", "properties": {"data": {"type": "null"}, "list": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "sum": {"type": "integer"}, "type": {"type": "string"}}, "required": ["id", "sum", "type"]}}}, "required": ["data", "list"], "$schema": "http://json-schema.org/draf...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {"IDType": {"type": "object", "properties": {"__symbolic": {"type": "string"...
[{"__symbolic" : "module", "version" : 3, "metadata" : {"IDType" : {"__symbolic" : "interface"}, "IDTypeDictionary" : {"__symbolic" : "interface"}, "TreeNode" : {"__symbolic" : "interface"}, "IAllowDropFn" : {"__symbolic" : "interface"}, "INodeHeightFn" : {"__symbolic" : "interface"}, "IAllowDragFn" : {"__symbolic" : "...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {"IDType": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}, "IDTypeDictionary": {"type": "object", ...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"_schema-version": {"type": "string"}, "ID": {"type": "string"}, "version": {"type": "string"}, "modules": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "r...
{"_schema-version" : "3.1.0", "ID" : "com.sap.mta.test", "version" : "1.0.0", "modules" : [{"name" : "anatz", "type" : "java.tomcat"}]}
json_instruct
{"type": "object", "properties": {"_schema-version": {"type": "string"}, "ID": {"type": "string"}, "version": {"type": "string"}, "modules": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}}, "required": ["_schema-versio...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"umd/bundle.js": {"type": "string"}, "umd/bundle.min.js": {"type": "string"}, "umd/concurrent.js": {"type": "string"}, "umd/concurrent.min.js": {"type": "string"}, "umd/index.js": {"type": "string"}, "umd/index.min.j...
{"umd/bundle.js" : "sha512-vpdP9Z0m3/qmDFkwmbvYeGg6H1izw4WIIJ8iE9UixiUdFhVY5Uddk4YJS7Uttjp6cNY6XLfKG0w8oWLp7FIOtQ==", "umd/bundle.min.js" : "sha512-uy93Ukl7u/MiQWmW/xl3AO4vTqS3F0x5vYWCk10s+sRV3/K+jXdDi382D/f9ICTyjHUZrWbmKgmYaUFmIY1Hdw==", "umd/concurrent.js" : "sha512-KiJi0wW9wKfW7fKthgFxVuVNwbsoGpvG9JRZ3vAxUlLD2KAElwl...
json_instruct
{"type": "object", "properties": {"umd/bundle.js": {"type": "string"}, "umd/bundle.min.js": {"type": "string"}, "umd/concurrent.js": {"type": "string"}, "umd/concurrent.min.js": {"type": "string"}, "umd/index.js": {"type": "string"}, "umd/index.min.js": {"type": "string"}, "umd/internals.js": {"type": "string"}, "umd/i...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"MTND2": {"type": "string"}, "NADH2": {"type": "string"}, "ND2": {"type": "string"}, "NADH dehydrogenase subunit 2": {"type": "string"}, "Q2TQ19": {"type": "string"}, "NU2M_SYLLU": {"type": "string"}, "NADH-ubiquinone oxidoredu...
{"MTND2" : "Q2TQ19", "NADH2" : "Q2TQ19", "ND2" : "Q2TQ19", "NADH dehydrogenase subunit 2" : "Q2TQ19", "Q2TQ19" : "Q2TQ19", "NU2M_SYLLU" : "Q2TQ19", "NADH-ubiquinone oxidoreductase chain 2" : "Q2TQ19", "MT-ND2" : "Q2TQ19"}
json_instruct
{"type": "object", "properties": {"MTND2": {"type": "string"}, "NADH2": {"type": "string"}, "ND2": {"type": "string"}, "NADH dehydrogenase subunit 2": {"type": "string"}, "Q2TQ19": {"type": "string"}, "NU2M_SYLLU": {"type": "string"}, "NADH-ubiquinone oxidoreductase chain 2": {"type": "string"}, "MT-ND2": {"type": "str...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"liveId": {"type": "string"}, "title": {"type": "string"}, "subTitle": {"type": "string"}, "picPath": {"type": "string"}, "startTime": {"type": "integer"}, "memberId": {"type": "inte...
[{"liveId" : "5b768b420cf2f04fd1e12661", "title" : "\u674e\u827a\u5f64\u7684\u7535\u53f0", "subTitle" : "\u968f\u4fbf\u804a\u804a", "picPath" : "/mediasource/live/1521206081786ea1kE1KBVz.jpg,/mediasource/live/1534495552661QTexz4eifZ.jpg,/mediasource/live/1534495553124g6Bz6hGsZJ.jpg,/mediasource/live/15344955534144SKNr7...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"liveId": {"type": "string"}, "title": {"type": "string"}, "subTitle": {"type": "string"}, "picPath": {"type": "string"}, "startTime": {"type": "integer"}, "memberId": {"type": "integer"}, "liveType": {"type": "integer"}, "picLoopTime": {"type": "integer"}, "...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/schem...
[{"Similarity" : "1", "Title" : "The role of modality congruence in the presentation and recognition of task-irrelevant stimuli in dual task paradigms", "Year" : 2014}, {"Similarity" : "0.998", "Title" : "Learning induced illusions Statistical learning creates false memories", "Year" : 2017}, {"Similarity" : "0.996", "...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "...
{"stationId" : 1172004, "stationGroupId" : 1172004, "name" : "\u795e\u8fba", "lineId" : 11720, "zipCode" : "720-2124", "pref" : "\u5e83\u5cf6\u770c", "city" : "\u798f\u5c71\u5e02", "town" : "\u795e\u8fba\u753a\u5ddd\u5357", "longitude" : 133.378747, "latitude" : 34.537131, "status" : 0}
json_instruct
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latit...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"godot_tools.editor_path": {"type": "string"}}, "required": ["godot_tools.editor_path"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"godot_tools.editor_path" : "/Applications/Godot.app/Contents/MacOS/Godot"}
json_instruct
{"type": "object", "properties": {"godot_tools.editor_path": {"type": "string"}}, "required": ["godot_tools.editor_path"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}, "logo": {"type": "object", "properties": {"light": {"type": "string"}, "dark": {"type": "string"}}, "required": ["light", "dark"]}, "github": {"type": "string"}, "twitter"...
{"title" : "Spook", "url" : "spook.github.io", "logo" : {"light" : "/logo-light.svg", "dark" : "/logo-dark.svg"}, "github" : "pablo-moreno/spook", "twitter" : "_spookydev_"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}, "logo": {"type": "object", "properties": {"light": {"type": "string"}, "dark": {"type": "string"}}, "required": ["light", "dark"]}, "github": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["title", "url", "logo",...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "survivalist:block/jungle_chopping_block"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["minirocket"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$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"}, "description": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "...
{"name" : "afrz.github.io", "description" : "AFRZ web site", "author" : "Alexis FR", "version" : "1.0.0", "repository" : {"type" : "git", "url" : "https://github.com/afrz/afrz.github.io.git"}, "scripts" : {"build" : "brunch build --production", "clean" : "cd .. & del *.map"}, "devDependencies" : {"auto-reload-brunch" :...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"singleRateLimitWindowPerClientIPv4Address": {"type": "object", "properties": {"windowSizeInMs": {"type": "integer"}, "limit": {"type": "integer"}}, "required": ["windowSizeInMs", "limit"]}, "httpRequestEventSizeLimi...
{"singleRateLimitWindowPerClientIPv4Address" : {"windowSizeInMs" : 60000, "limit" : 20}, "httpRequestEventSizeLimit" : 750000, "disabled____________________letsEncryptOptions" : {"Domains" : ["editor.elm-fullstack.org", "elm-editor.com"], "Email" : "viir@viir.de", "CertificateSigningRequest" : {"CountryName" : "Germany...
json_instruct
{"type": "object", "properties": {"singleRateLimitWindowPerClientIPv4Address": {"type": "object", "properties": {"windowSizeInMs": {"type": "integer"}, "limit": {"type": "integer"}}, "required": ["windowSizeInMs", "limit"]}, "httpRequestEventSizeLimit": {"type": "integer"}, "disabled____________________letsEncryptOptio...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"#": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "F": ...
{"type" : "minecraft:crafting_shaped", "pattern" : ["###", "FFF", "HHH"], "key" : {"#" : {"item" : "minecraft:phantom_membrane"}, "F" : {"item" : "alchemistinfusion:pile_of_feathers"}, "H" : {"item" : "minecraft:hay_block"}}, "result" : {"item" : "alchemistinfusion:fall_breaker", "count" : 1}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"#": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "F": {"type": "object", "properties": {"item": {"type": "string"}},...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"...
{"geometry" : {"type" : "Point", "coordinates" : [-83.9, 45.3]}, "type" : "Feature", "id" : "49743", "properties" : {"other_cities" : "", "city" : "Hawks", "state" : "MI", "county" : "Presque Isle County"}}
json_instruct
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_c...
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"scope": {"type": "string"}, "method": {"type": "string"}, "path": {"type": "string"}, "body": {"type": "string"}, "status": {"type": "integer"}, "response": {"type": "object", "proper...
[{"scope" : "https://siastats.info:443", "method" : "GET", "path" : "/dbs/network_status.json", "body" : "", "status" : 200, "response" : {"block_height" : 271475, "block_timestamp" : 1596489377, "hashrate" : 9272091315889540, "difficulty" : 5403771920335198000, "coin_supply" : 44594302992, "coin_price_USD" : 0.00316, ...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"scope": {"type": "string"}, "method": {"type": "string"}, "path": {"type": "string"}, "body": {"type": "string"}, "status": {"type": "integer"}, "response": {"type": "object", "properties": {"block_height": {"type": "integer"}, "block_timestamp": {"type": "i...
Construct a JSON document that adheres to this schema specification: {"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" : "3306030022", "district_id" : "3306030", "name" : "GUYANGAN"}
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 a JSON structure that matches this schema definition: {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town...
{"stationId" : 1130807, "stationGroupId" : 1130807, "name" : "\u4fdd\u571f\u30b1\u8c37", "lineId" : 11308, "zipCode" : "240-0023", "pref" : "\u795e\u5948\u5ddd\u770c", "city" : "\u6a2a\u6d5c\u5e02\u4fdd\u571f\u30b1\u8c37\u533a", "town" : "\u5ca9\u4e95\u753a", "longitude" : 139.599671, "latitude" : 35.446746, "status" :...
json_instruct
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latit...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"typ...
{"cam/image_array" : "4928_cam-image_array_.jpg", "user/angle" : -0.002, "user/throttle" : 0.794, "user/mode" : "user", "pos/pos_x" : 74.26555, "pos/pos_y" : 0.5551852, "pos/pos_z" : 70.03064, "pos/speed" : 9.36393, "pos/cte" : -5.155106, "milliseconds" : 262868}
json_instruct
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": ...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "verifiableDataRegistry": {"type": "string"}, "contactName": {"type": "string"}, "contactEmail": {"type": "string"}, "contactWebsite": {"type": "string"}...
{"name" : "sov", "status" : "registered", "verifiableDataRegistry" : "Sovrin", "contactName" : "Mike Lodder", "contactEmail" : "", "contactWebsite" : "", "specification" : "https://sovrin-foundation.github.io/sovrin/spec/did-method-spec-template.html"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "verifiableDataRegistry": {"type": "string"}, "contactName": {"type": "string"}, "contactEmail": {"type": "string"}, "contactWebsite": {"type": "string"}, "specification": {"type": "string"}}, "required": ["name", "status", "ver...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"asset": {"type": "object", "properties": {"format": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "path": {"type": "string"}, "size": {"type": "object", "properties": {"width": {"type": "i...
{"asset" : {"format" : "jpg", "id" : "108ed6942503e2549f7fb5ec2bacd23a", "name" : "images%20(8).jpg", "path" : "file:G:/WORK/Other/Kaleena%20SLIIT/yolo-animal-detection/Data/Source_Images/Training_Images/images%20(8).jpg", "size" : {"width" : 300, "height" : 168}, "state" : 2, "type" : 1}, "regions" : [{"id" : "2N01xU8...
json_instruct
{"type": "object", "properties": {"asset": {"type": "object", "properties": {"format": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "path": {"type": "string"}, "size": {"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}}, "required": ["width", "heig...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"t...
{"user" : "leny", "repos" : 2, "login" : "leny", "id" : 692824, "avatar_url" : "https://avatars1.githubusercontent.com/u/692824?v=3", "url" : "https://api.github.com/users/leny", "html_url" : "https://github.com/leny", "followers_url" : "https://api.github.com/users/leny/followers", "following_url" : "https://api.githu...
json_instruct
{"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gist...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "main": {"type": "stri...
{"name" : "node-avatars", "version" : "1.0.2", "description" : "Generate avatar images of various types with zero dependencies", "author" : "Thomas Krcmar (tomkrcmar@gmail.com)", "license" : "ISC", "repository" : "github:TomKrcmar/node-avatars", "main" : "./src/index.js", "scripts" : {"dev" : "rollup --config --environ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata"...
{"ast" : null, "code" : "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.LightShadow = void 0;\n\nconst OptionsColor_1 = require(\"../../OptionsColor\");\n\nclass LightShadow {\n constructor() {\n this.color = new OptionsColor_1.OptionsColor();\n this.color.value ...
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/s...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"/js/app.js" : "/js/app.js?id=2e93b0775d47785dc841", "/css/app.css" : "/css/app.css?id=db6ffb5865bcb816ec96"}
json_instruct
{"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"maktaba": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type...
{"name" : "helloworld", "description" : "Time-honored greeting", "author" : "Google", "dependencies" : {"maktaba" : {"type" : "git", "url" : "git://github.com/google/maktaba"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"maktaba": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required":...
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" : "Carulay, Echague, Isabela, Cagayan Valley (Region II), PH", "locale" : "ph.cagayan-valley-region-ii.isabela.echague.carulay", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "3", "region_refe...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "id": {"type": "string"}, "decimals": {"type": "integer"}, "coingecko_url": {"type": "string"}, "market_cap_usd": {"type": "integer"}, "market_cap_rank": {"type": "integ...
{"name" : "Decentralized Accessible Content Chain", "symbol" : "DACC", "id" : "0xF8C595D070d104377f58715ce2E6C93E49a87f3c", "decimals" : 6, "coingecko_url" : "https://www.coingecko.com/en/coins/dacc", "market_cap_usd" : 254205, "market_cap_rank" : 2916, "24_hr_volume_usd" : 705.3, "logoURI" : "https://raw.githubusercon...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "id": {"type": "string"}, "decimals": {"type": "integer"}, "coingecko_url": {"type": "string"}, "market_cap_usd": {"type": "integer"}, "market_cap_rank": {"type": "integer"}, "24_hr_volume_usd": {"type": "number"}, "logoURI": {"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"properties": {"type": "object", "properties": {"company_name": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "description": {"type": "object", "properties": {"type": {"type": "string"}},...
{"properties" : {"company_name" : {"type" : "text"}, "description" : {"type" : "text"}, "status" : {"type" : "text"}, "innovation_type" : {"type" : "text"}, "country" : {"type" : "text"}, "contact" : {"type" : "text"}, "year_founded" : {"type" : "integer"}, "industry" : {"type" : "keyword"}, "num_people" : {"type" : "i...
json_instruct
{"type": "object", "properties": {"properties": {"type": "object", "properties": {"company_name": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "description": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "status": {"type": "object", "prope...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "strin...
{"name" : "jumper423/embria2", "description" : "", "keywords" : ["embria"], "homepage" : "https://github.com/jumper423/embria2", "type" : "library", "license" : "Apache License 2.0", "support" : {"issues" : "https://github.com/jumper423/embria2/issues?state=open", "source" : "https://github.com/jumper423/embria2"}, "au...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "support": {"type": "object", "properties": {"issues": {"type": "string"...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties...
{"contract" : "0x8302d610f9c6b94560befb9a7118b4aa7f414ec3", "tool" : "honeybadger", "start" : 1565843164.79017, "end" : 1565843182.8265507, "duration" : 18.036380767822266, "analysis" : [{"errors" : [], "file" : "/unique_chucks/18/0x8302d610f9c6b94560befb9a7118b4aa7f414ec3.sol", "name" : "GasFaucet"}, {"errors" : [], "...
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "strin...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "te...
{"name" : "oka-ytcp-server", "version" : "0.0.0", "description" : "OKa Youtube Cached Player - Server", "main" : "index.js", "scripts" : {"start" : "nodemon --watch src -e js --exec babel-node ./src/index.js", "test" : "mocha --compilers js:babel-core/register --timeout 3600000 -c tests/**/*.test.js", "test:watch" : "m...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "test:watch": {"type": "string"}}, "required": ["start", "test...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"project_info": {"type": "object", "properties": {"project_number": {"type": "string"}, "firebase_url": {"type": "string"}, "project_id": {"type": "string"}, "storage_bucket": {"type": "string"}}, "required": ["pro...
{"project_info" : {"project_number" : "210935099747", "firebase_url" : "https://kotlinmobileapps.firebaseio.com", "project_id" : "kotlinmobileapps", "storage_bucket" : "kotlinmobileapps.appspot.com"}, "client" : [{"client_info" : {"mobilesdk_app_id" : "1:210935099747:android:7a98bc31dc2362ce262356", "android_client_inf...
json_instruct
{"type": "object", "properties": {"project_info": {"type": "object", "properties": {"project_number": {"type": "string"}, "firebase_url": {"type": "string"}, "project_id": {"type": "string"}, "storage_bucket": {"type": "string"}}, "required": ["project_number", "firebase_url", "project_id", "storage_bucket"]}, "client"...
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"}, "start": {"type": "...
{"name" : "zeitcrawler", "version" : "1.0.0", "description" : "Crawl all posts on a newssite called \"Zeit\"", "main" : "index.js", "scripts" : {"test" : "node index.js", "start" : "node index.js", "archive" : "node index.js --mode=archive", "extract" : "node index.js --mode=extract", "export" : "node index.js --mode=e...
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"}, "archive": {"type": "string"}, "extract": {"type": "string"}, ...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_...
{"generated_at" : "2017-01-27T09:37:39.464698", "required_by" : ["python-opensesame"], "requires" : ["python-datamatrix"], "package" : "python-qdatamatrix"}
json_instruct
{"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-sch...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type":...
{"author" : {"id" : "t2_zlxt8", "name" : "this_chucklehead"}, "date" : {"day" : 1580860800, "full" : 1580895278, "month" : 1580515200, "week" : 1580601600}, "id" : "t3_ez72vv", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 99161, "fullUrl" : "https://preview.redd.it/8d15x0gmr2f41.jpg?auto=webp&s=6dec5c0071...
json_instruct
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}},...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", ...
{"h" : [{"d" : [{"e" : ["\ufff9`Serseren~ `ho~ `ko~ `pipaloma'an~.\ufffa\ufffb\u628a\u5b85\u5730\u52a0\u56fa\u4e00\u4e0b\u3002"], "f" : "\u628a\u2026\u978f\u56fa\u3001\u52a0\u56fa\u3002"}]}], "stem" : "serser", "t" : "serseren"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"},...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"layout": {"type": "object", "properties": {"name": {"type": "string"}, "hex": {"type": "string"}, "path": {"type": "string"}}, "required": ["name", "hex", "path"]}, "action": {"type": "object", "properties": {"package": {"t...
{"layout" : {"name" : "ble60", "hex" : "nrf52_kbd.hex", "path" : "/usr/local/src/nrf52-keyboard/keyboard/template"}, "action" : {"package" : "make package", "default" : "make default"}}
json_instruct
{"type": "object", "properties": {"layout": {"type": "object", "properties": {"name": {"type": "string"}, "hex": {"type": "string"}, "path": {"type": "string"}}, "required": ["name", "hex", "path"]}, "action": {"type": "object", "properties": {"package": {"type": "string"}, "default": {"type": "string"}}, "required": [...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "values": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}, "description": {"type": "string"}...
{"id" : "886144eb-13dd-47d8-81d8-eb7097840a47", "name" : "aws-ci1", "values" : [{"key" : "domain", "value" : "api.ci1.<%= baseDomain %>", "description" : "", "enabled" : true}, {"key" : "basePath", "value" : "<%= uriStem %>", "description" : "", "enabled" : true}, {"key" : "protocol", "value" : "https", "description" :...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "values": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}, "description": {"type": "string"}, "enabled": {"type": "boolean"}}, "required": ["key", "value", "descrip...
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": {"produc...
{"userId" : 25543, "cartId" : "ba816a18-485f-4a0f-a197-1c1420785fb6", "preferredProducts" : [4739, 3929, 2252, 4015, 75, 1908, 2764], "productReviews" : [{"productId" : 3164, "reviewText" : "i use it barely when i'm in my store.", "reviewDate" : "2016-09-27T21:29:32.504253+03:00"}, {"productId" : 605, "reviewText" : "h...
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD...