input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "bin": {"type": "object", "properties": {"wildlife": {"type": "string"}}, "required": ["wildlife"]}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "reset": {"type": "string"}, "format": {"type": "string"}, "lint": {"type": "string"}, "build": {"type": "string"}, "watch": {"type": "string"}, "cdk": {"type": "string"}}, "required": ["clean", "reset", "format", "lint", "build", "watch", "cdk"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "aws-cdk": {"type": "string"}, "prettier": {"type": "string"}, "shx": {"type": "string"}, "tslint": {"type": "string"}, "tslint-config-prettier": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "aws-cdk", "prettier", "shx", "tslint", "tslint-config-prettier", "typescript"]}, "dependencies": {"type": "object", "properties": {"@aws-cdk/cdk": {"type": "string"}, "@aws-cdk/cx-api": {"type": "string"}}, "required": ["@aws-cdk/cdk", "@aws-cdk/cx-api"]}}, "required": ["name", "version", "license", "author", "bin", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "wildlife", "version" : "0.1.0", "license" : "MIT", "author" : {"name" : "Louis Quinnell", "email" : "zioroboco@gmail.com"}, "bin" : {"wildlife" : "bin/wildlife.js"}, "scripts" : {"clean" : "shx rm -rf '{bin,lib}/**/*.{js,d.ts}'", "reset" : "yarn clean && rm -rf node_modules && yarn", "format" : "prettier --list-different **/*", "lint" : "tslint --project .", "build" : "tsc", "watch" : "tsc -w", "cdk" : "cdk"}, "devDependencies" : {"@types/node" : "^8.9.4", "aws-cdk" : "^0.19.0", "prettier" : "^1.15.3", "shx" : "^0.3.2", "tslint" : "^5.12.0", "tslint-config-prettier" : "^1.17.0", "typescript" : "^3.1.2"}, "dependencies" : {"@aws-cdk/cdk" : "^0.19.0", "@aws-cdk/cx-api" : "^0.19.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "bin": {"type": "object", "properties": {"wildlife": {"type": "string"}}, "required": ["wildlife"]}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "reset": {"type": "string"}, "format": {"type": "string"}, "lint": {"type": "string"}, "build": {"type": "string"}, "watch": {"type": "string"}, "cdk": {"type": "string"}}, "required": ["clean", "reset", "format", "lint", "build", "watch", "cdk"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "aws-cdk": {"type": "string"}, "prettier": {"type": "string"}, "shx": {"type": "string"}, "tslint": {"type": "string"}, "tslint-config-prettier": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "aws-cdk", "prettier", "shx", "tslint", "tslint-config-prettier", "typescript"]}, "dependencies": {"type": "object", "properties": {"@aws-cdk/cdk": {"type": "string"}, "@aws-cdk/cx-api": {"type": "string"}}, "required": ["@aws-cdk/cdk", "@aws-cdk/cx-api"]}}, "required": ["name", "version", "license", "author", "bin", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "guedes-crypt", "version" : "1.0.2", "description" : "Library for string encryption in nodejs", "main" : "guedesCrypt.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/JoaoGuedes01/guedesCrypt.git"}, "keywords" : ["encryption", "guedes", "nodejs"], "author" : "Joao Guedes", "license" : "ISC", "bugs" : {"url" : "https://github.com/JoaoGuedes01/guedesCrypt/issues"}, "homepage" : "https://github.com/JoaoGuedes01/guedesCrypt#readme"} | 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": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "null"}, "license": {"type": "string"}, "url": {"type": "string"}, "citation": {"type": "string"}}, "required": ["id", "title", "description", "license", "url", "citation"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "medialengua", "title" : "Media Lengua dictionary", "description" : null, "license" : "CC-BY-4.0", "url" : "https://dictionaria.clld.org/contributions/medialengua", "citation" : "Visser, Eline. 2020. Kalamang dictionary. Dictionaria 13. 1-2737 (Available online at http://dictionaria.clld.org/contributions/kalamang)"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "null"}, "license": {"type": "string"}, "url": {"type": "string"}, "citation": {"type": "string"}}, "required": ["id", "title", "description", "license", "url", "citation"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "bin": {"type": "object", "properties": {"balance-ui": {"type": "string"}}, "required": ["balance-ui"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"blessed": {"type": "string"}, "blessed-contrib": {"type": "string"}, "deep-extend": {"type": "string"}, "expand-tilde": {"type": "string"}, "grpc": {"type": "string"}, "minimist": {"type": "string"}, "require-all": {"type": "string"}, "winston": {"type": "string"}}, "required": ["blessed", "blessed-contrib", "deep-extend", "expand-tilde", "grpc", "minimist", "require-all", "winston"]}}, "required": ["name", "version", "description", "author", "main", "scripts", "bin", "repository", "license", "engines", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "balance-ui", "version" : "0.1.3", "description" : "a command line frontend for stock trading", "author" : "https://github.com/echoma/", "main" : "main.js", "scripts" : {"test" : "node ./ --test -l ./layout/example.layout"}, "bin" : {"balance-ui" : "main.js"}, "repository" : {"type" : "git", "url" : "https://github.com/echoma/balance.git"}, "license" : "Apache License 2.0", "engines" : {"node" : ">=6"}, "dependencies" : {"blessed" : "^0.1.81", "blessed-contrib" : "^4.8.5", "deep-extend" : "^0.5.0", "expand-tilde" : "^2.0.2", "grpc" : "^1.6.0", "minimist" : "^1.2.0", "require-all" : "^2.2.0", "winston" : "^2.3.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "bin": {"type": "object", "properties": {"balance-ui": {"type": "string"}}, "required": ["balance-ui"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"blessed": {"type": "string"}, "blessed-contrib": {"type": "string"}, "deep-extend": {"type": "string"}, "expand-tilde": {"type": "string"}, "grpc": {"type": "string"}, "minimist": {"type": "string"}, "require-all": {"type": "string"}, "winston": {"type": "string"}}, "required": ["blessed", "blessed-contrib", "deep-extend", "expand-tilde", "grpc", "minimist", "require-all", "winston"]}}, "required": ["name", "version", "description", "author", "main", "scripts", "bin", "repository", "license", "engines", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cam/image_array" : "10223_cam-image_array_.jpg", "user/angle" : 0.01, "user/throttle" : 0.688, "user/mode" : "user", "pos/pos_x" : 42.76355, "pos/pos_y" : 0.5563513, "pos/pos_z" : 19.24035, "pos/speed" : 11.3984, "pos/cte" : -6.847935, "milliseconds" : 542551} | 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": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : 1.2, "people" : [{"pose_keypoints_2d" : [507.327, 133.137, 1, 512.578, 156.662, 1, 502.423, 157.024, 1, 495.074, 170.865, 1, 513.681, 187.506, 1, 532.511, 151.374, 1, 542.738, 171.279, 1, 526.989, 185.528, 1, 508.583, 200.945, 1, 491.548, 236.513, 1, 485.578, 268.996, 1, 531.7, 199.909, 1, 541.507, 241.332, 1, 551.611, 279.765, 1, 504.146, 131.409, 1, 514.23, 129.594, 1, 498.455, 135.483, 1, 520.502, 135.152, 1], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]} | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"uuid": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"uuid" : "f783f9f3-a71b-4882-b758-1222cf5a56b2", "befores" : [{"name" : "many_glasses", "status" : "passed", "start" : 1635703663879, "stop" : 1635703663882}], "start" : 1635703663879, "stop" : 1635703663954} | json_instruct | {"type": "object", "properties": {"uuid": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"ConnectionStrings": {"type": "object", "properties": {"defaultConnection": {"type": "string"}, "defaultExternalResources": {"type": "string"}, "defaultConnectionProduction": {"type": "string"}, "defaultExternalResourcesProduction": {"type": "string"}}, "required": ["defaultConnection", "defaultExternalResources", "defaultConnectionProduction", "defaultExternalResourcesProduction"]}, "Logging": {"type": "object", "properties": {"IncludeScopes": {"type": "boolean"}, "Debug": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}}, "required": ["Default"]}}, "required": ["LogLevel"]}, "Console": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}}, "required": ["Default"]}}, "required": ["LogLevel"]}}, "required": ["IncludeScopes", "Debug", "Console"]}}, "required": ["ConnectionStrings", "Logging"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ConnectionStrings" : {"defaultConnection" : "Server=192.168.201.31;Database=mifostenant-default;Port=3306;User=root;Password=rootTOOR159*", "defaultExternalResources" : "https://192.168.201.31/fineract-provider", "defaultConnectionProduction" : "Server=192.168.201.31;Database=mifostenant-default;Port=3306;User=root;Password=rootTOOR159*", "defaultExternalResourcesProduction" : "https://192.168.201.31/fineract-provider"}, "Logging" : {"IncludeScopes" : false, "Debug" : {"LogLevel" : {"Default" : "Warning"}}, "Console" : {"LogLevel" : {"Default" : "Warning"}}}} | json_instruct | {"type": "object", "properties": {"ConnectionStrings": {"type": "object", "properties": {"defaultConnection": {"type": "string"}, "defaultExternalResources": {"type": "string"}, "defaultConnectionProduction": {"type": "string"}, "defaultExternalResourcesProduction": {"type": "string"}}, "required": ["defaultConnection", "defaultExternalResources", "defaultConnectionProduction", "defaultExternalResourcesProduction"]}, "Logging": {"type": "object", "properties": {"IncludeScopes": {"type": "boolean"}, "Debug": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}}, "required": ["Default"]}}, "required": ["LogLevel"]}, "Console": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}}, "required": ["Default"]}}, "required": ["LogLevel"]}}, "required": ["IncludeScopes", "Debug", "Console"]}}, "required": ["ConnectionStrings", "Logging"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "string"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "string"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 104234, "name" : "Fantasy Miko! ~ Amor Doce", "description" : "Escolhi fazer algo diferente, e saiu isto. \u00c9 um tema de fantasia com poderes m\u00e1gicos de Mikos. Nota: Mikos eram sacerdotisas dos santu\u00e1rios do Jap\u00e3o, acreditando-se que possuiam poderes m\u00e1gicos. Qualquer pedido ou sugest\u00e3o, me envie MP, em http://www.amordoce.com/profil/Pocki .", "user" : {"id" : 269759, "name" : "Pocki", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : "ccbyncnd"}, "updated" : "2014-08-09T23:11:18.000Z", "weekly_install_count" : 0, "total_install_count" : 201, "rating" : null, "after_screenshot_name" : "https://userstyles.org/style_screenshots/104234_after.jpeg?r=1590048392", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : "ccbyncnd", "created" : "2014-08-09T23:02:47.000Z", "category" : "site", "raw_subcategory" : "amordoce", "subcategory" : "amordoce", "additional_info" : null, "style_tags" : [], "css" : "@-moz-document domain(\"amordoce.com\") {\r\n#container{\r\nbackground-image : url(http://cs425028.vk.me/v425028152/1746/M4NDRJVjJdk.jpg) !important ;\r\n}\r\n#container.connected #header { background-image : url(http://oi62.tinypic.com/zjfbmh.jpg) !important ;\r\n}\r\n.idcard-member { background : url(http://oi57.tinypic.com/ok1qw2.jpg) no-repeat !important ;\r\n}\r\n}\r\n\r\n@-moz-document regexp(\"http://www.amordoce.com/profil/Pocki\") {\r\n.idcard-member { background : url(http://oi57.tinypic.com/ok1qw2.jpg) no-repeat !important ;\r\n}\r\n}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/104234/fantasy-miko-amor-doce.user.js", "style_settings" : []} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "string"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "string"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"sn56.88:0.1": {"type": "string"}, "sn56.88:0.2": {"type": "string"}, "sn56.88:0.3": {"type": "string"}, "sn56.88:1.1": {"type": "string"}, "sn56.88:1.2": {"type": "string"}}, "required": ["sn56.88:0.1", "sn56.88:0.2", "sn56.88:0.3", "sn56.88:1.1", "sn56.88:1.2"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sn56.88:0.1" : "Sa\u1e41yutta Nik\u0101ya 56 ", "sn56.88:0.2" : "9. Tatiya\u0101makadha\u00f1\u00f1apeyy\u0101lavagga ", "sn56.88:0.3" : "88. Aje\u1e37akasutta ", "sn56.88:1.1" : "\u2026 \u201cEvameva kho, bhikkhave, appak\u0101 te satt\u0101 ye aje\u1e37akapa\u1e6diggaha\u1e47\u0101 pa\u1e6divirat\u0101; atha kho eteva bahutar\u0101 satt\u0101 ye aje\u1e37akapa\u1e6diggaha\u1e47\u0101 appa\u1e6divirat\u0101 \u2026pe\u2026. ", "sn56.88:1.2" : "A\u1e6d\u1e6dhama\u1e41. "} | json_instruct | {"type": "object", "properties": {"sn56.88:0.1": {"type": "string"}, "sn56.88:0.2": {"type": "string"}, "sn56.88:0.3": {"type": "string"}, "sn56.88:1.1": {"type": "string"}, "sn56.88:1.2": {"type": "string"}}, "required": ["sn56.88:0.1", "sn56.88:0.2", "sn56.88:0.3", "sn56.88:1.1", "sn56.88:1.2"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"embedding": {"type": "string"}, "model": {"type": "string"}, "extra_features": {"type": "array", "items": {"type": "string"}}, "seed": {"type": "integer"}, "results": {"type": "object", "properties": {"precision": {"type": "number"}, "recall": {"type": "number"}, "F1": {"type": "number"}, "PR AUC": {"type": "number"}, "ROC AUC": {"type": "number"}}, "required": ["precision", "recall", "F1", "PR AUC", "ROC AUC"]}, "test samples": {"type": "integer"}}, "required": ["embedding", "model", "extra_features", "seed", "results", "test samples"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"embedding" : "TFIDF", "model" : "LogisticRegression", "extra_features" : ["exclamation", "question", "quotes", "dotes"], "seed" : 8, "results" : {"precision" : 0.7353560571321819, "recall" : 0.6716069489685125, "F1" : 0.702037275741583, "PR AUC" : 0.7935957584753937, "ROC AUC" : 0.7743527535187217}, "test samples" : 248721} | json_instruct | {"type": "object", "properties": {"embedding": {"type": "string"}, "model": {"type": "string"}, "extra_features": {"type": "array", "items": {"type": "string"}}, "seed": {"type": "integer"}, "results": {"type": "object", "properties": {"precision": {"type": "number"}, "recall": {"type": "number"}, "F1": {"type": "number"}, "PR AUC": {"type": "number"}, "ROC AUC": {"type": "number"}}, "required": ["precision", "recall", "F1", "PR AUC", "ROC AUC"]}, "test samples": {"type": "integer"}}, "required": ["embedding", "model", "extra_features", "seed", "results", "test samples"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[179, -201, 1974, 215, 20, 3701, -85, 498, -63, -4720, -334, -188, -295, 12, 125, 14518, -276, -6401, -734, -245, -11557, -1703, 0, -7633, 215, -12567, -3291, 46, -13827, 10947, 133, -212], [9850, 9934, 5880, 10189, 10103, 765, 9878, 10057, 10055, 5508, 10044, 9902, 9951, 10044, 10043, 5335, 10041, 944, 9536, 10001, 2508, 1301, 10039, 5069, 10080, 3007, 7168, 9956, 1160, 1233, 10075, 10053]] | 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": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\u5de5\u5ee0\u540d\u7a31" : "\u4ed5\u8fb2\u5de5\u5546\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99689712", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "07810000185542", "\u5de5\u5ee0\u5730\u5740" : "\u65b0\u5317\u5e02\u571f\u57ce\u5340\u52dd\u5229\u8857\u4e00\uff10\u5df7\u56db\u865f\u4e09\u6a13", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u65b0\u5317\u5e02\u571f\u57ce\u5340", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u5289\u6587\u6d1b", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "04699561", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "0780501", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "0791213", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["25\u91d1\u5c6c\u88fd\u54c1\u88fd\u9020\u696d", "28\u96fb\u529b\u8a2d\u5099\u88fd\u9020\u696d", "29\u6a5f\u68b0\u8a2d\u5099\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["251\u91d1\u5c6c\u624b\u5de5\u5177\u53ca\u6a21\u5177", "285\u5bb6\u7528\u96fb\u5668", "292\u5176\u4ed6\u5c08\u7528\u6a5f\u68b0\u8a2d\u5099", "293\u901a\u7528\u6a5f\u68b0\u8a2d\u5099"]} | json_instruct | {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "incomplete": {"type": "boolean"}, "members": {"type": "boolean"}, "tradeable": {"type": "boolean"}, "tradeable_on_ge": {"type": "boolean"}, "stackable": {"type": "boolean"}, "stacked": {"type": "null"}, "noted": {"type": "boolean"}, "noteable": {"type": "boolean"}, "linked_id_item": {"type": "integer"}, "linked_id_noted": {"type": "null"}, "linked_id_placeholder": {"type": "null"}, "placeholder": {"type": "boolean"}, "equipable": {"type": "boolean"}, "equipable_by_player": {"type": "boolean"}, "equipable_weapon": {"type": "boolean"}, "cost": {"type": "integer"}, "lowalch": {"type": "null"}, "highalch": {"type": "null"}, "weight": {"type": "number"}, "buy_limit": {"type": "null"}, "quest_item": {"type": "boolean"}, "release_date": {"type": "string"}, "duplicate": {"type": "boolean"}, "examine": {"type": "string"}, "icon": {"type": "string"}, "wiki_name": {"type": "string"}, "wiki_url": {"type": "string"}, "wiki_exchange": {"type": "null"}, "equipment": {"type": "null"}, "weapon": {"type": "null"}}, "required": ["id", "name", "incomplete", "members", "tradeable", "tradeable_on_ge", "stackable", "stacked", "noted", "noteable", "linked_id_item", "linked_id_noted", "linked_id_placeholder", "placeholder", "equipable", "equipable_by_player", "equipable_weapon", "cost", "lowalch", "highalch", "weight", "buy_limit", "quest_item", "release_date", "duplicate", "examine", "icon", "wiki_name", "wiki_url", "wiki_exchange", "equipment", "weapon"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 17351, "name" : "Earth rune", "incomplete" : false, "members" : false, "tradeable" : false, "tradeable_on_ge" : false, "stackable" : false, "stacked" : null, "noted" : false, "noteable" : false, "linked_id_item" : 9695, "linked_id_noted" : null, "linked_id_placeholder" : null, "placeholder" : true, "equipable" : false, "equipable_by_player" : false, "equipable_weapon" : false, "cost" : 1, "lowalch" : null, "highalch" : null, "weight" : 0.01, "buy_limit" : null, "quest_item" : true, "release_date" : "2006-09-20", "duplicate" : true, "examine" : "An earth rune.", "icon" : "iVBORw0KGgoAAAANSUhEUgAAACQAAAAgCAYAAAB6kdqOAAADF0lEQVR4XtWXUUtUURSF5z726EMggSASEhIyhCFJkiSJSYZJamiGmRmmqZmZaWZmmmammJopppEEUdBP3PHtYc8cT2OOc+8IHViPer5Za+19ZmKx//cEcnTl7ATyoKND2ltapLmhQa7V1Miligo5H4/LudJS1dmSEtWZ4uKkcgiVArpZX58EulherrpQVqYC0ATc6aKiXEHtB6qtrlZdqaqSy5WVSQFpoLiGS4UFBVFDBfJsoF/u32mXtqYmBbpRVyfXr9aqUyYf0nUpYqj9QLcaG1V0CTgDdCEBIkJzCahT+flRQaWA7t1uk7utrRodSgcIGC4Rm7lk0UUEFcjTR30KZALMZIAGBxjRuS65BY8XFqr8WzI8gbwZG5PBnh4tNfLB0gGZcAooH8i/5QgnkMmREenv7paHnZ0qF8wH8iM0ARSJO8uzszIxPCx9XV0qgzIwH8oHs/hcIP+WDE8gSzMzCvT88aA6hJorTqSVQblgBsReisSdj3NzCsWE0SEfIhOxBpi00O7gzPr7BVl4PSVPentV/mWZiFKHjCsR1dq7edXU6KiOvAtEdNYp5EMg4mInEZc9slkDAbK5tKQuMWFEBpSBEZ91CiC33FZqusOCZDmGHPdANj4sytbysjo1PjSkQMh34V/CHfrDDrJ3LGsgYICiPwAxZf6Fhwl3eNMotD0XWQPtrK5qbG9fTigQ8i88TPb682yczMsLD8TI82SwFO0S65BtbR8C2YtvX0OYsNBA1h8mDCCLzS21bW0K7W5q99UHjCkLPfbbKysaGR0itpkX4zpt2cK5o+/fluFJxMZiZPRxC7j5V5Ma41HhcIvxD+ESJ5Cva2u6jwDDMXtKFqen1TUizRTOdlIIlziJ31a4RYy2DgwQ9yxSH86WqbtI6VRIl2KxxB/7P/4C+bmzI3ufNxQUQOI8CA4oXKJTrIOQLiWOfXVIfYUI5Nfurnzf2lQHiZZIrWvAAeUC2YdJ/Y/ITyC/9/bkx5dt+fZpPemWGyVQALkgOYKxk/jUrlv0jOLj1DG48vc5qGfH6Er64/csW5A/4iWK+nfUCS8AAAAASUVORK5CYII=", "wiki_name" : "Earth rune (The Slug Menace)", "wiki_url" : "https://oldschool.runescape.wiki/w/Earth_rune_(The_Slug_Menace)", "wiki_exchange" : null, "equipment" : null, "weapon" : null} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "incomplete": {"type": "boolean"}, "members": {"type": "boolean"}, "tradeable": {"type": "boolean"}, "tradeable_on_ge": {"type": "boolean"}, "stackable": {"type": "boolean"}, "stacked": {"type": "null"}, "noted": {"type": "boolean"}, "noteable": {"type": "boolean"}, "linked_id_item": {"type": "integer"}, "linked_id_noted": {"type": "null"}, "linked_id_placeholder": {"type": "null"}, "placeholder": {"type": "boolean"}, "equipable": {"type": "boolean"}, "equipable_by_player": {"type": "boolean"}, "equipable_weapon": {"type": "boolean"}, "cost": {"type": "integer"}, "lowalch": {"type": "null"}, "highalch": {"type": "null"}, "weight": {"type": "number"}, "buy_limit": {"type": "null"}, "quest_item": {"type": "boolean"}, "release_date": {"type": "string"}, "duplicate": {"type": "boolean"}, "examine": {"type": "string"}, "icon": {"type": "string"}, "wiki_name": {"type": "string"}, "wiki_url": {"type": "string"}, "wiki_exchange": {"type": "null"}, "equipment": {"type": "null"}, "weapon": {"type": "null"}}, "required": ["id", "name", "incomplete", "members", "tradeable", "tradeable_on_ge", "stackable", "stacked", "noted", "noteable", "linked_id_item", "linked_id_noted", "linked_id_placeholder", "placeholder", "equipable", "equipable_by_player", "equipable_weapon", "cost", "lowalch", "highalch", "weight", "buy_limit", "quest_item", "release_date", "duplicate", "examine", "icon", "wiki_name", "wiki_url", "wiki_exchange", "equipment", "weapon"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x238e2854ded65f30c9c7765cf26cc882949323d7", "tool" : "solhint", "start" : 1563494156.466024, "end" : 1563494160.0174952, "duration" : 3.55147123336792, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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": "string"}}, "required": ["\uc774\ub984", "\ud55c\ubb38\uba85", "\uc0dd\ub144\uc6d4\uc77c", "\uc815\ub2f9", "\uc120\uac70\uad6c", "\ub2f9\uc120\ud69f\uc218", "\ub2f9\uc120\ub300\uc218"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\uc774\ub984" : "\uc870\uc6a9\uc9c1", "\ud55c\ubb38\uba85" : "\u8d99\u5bb9\u76f4", "\uc0dd\ub144\uc6d4\uc77c" : "1940-12-11", "\uc815\ub2f9" : "\ubbfc\uc8fc\uc790\uc720\ub2f9", "\uc120\uac70\uad6c" : "null", "\ub2f9\uc120\ud69f\uc218" : "\uc7ac\uc120", "\ub2f9\uc120\ub300\uc218" : "12, 14"} | 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": "string"}}, "required": ["\uc774\ub984", "\ud55c\ubb38\uba85", "\uc0dd\ub144\uc6d4\uc77c", "\uc815\ub2f9", "\uc120\uac70\uad6c", "\ub2f9\uc120\ud69f\uc218", "\ub2f9\uc120\ub300\uc218"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"python.pythonPath": {"type": "string"}}, "required": ["python.pythonPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"python.pythonPath" : "/anaconda3/envs/molssi_best_practices/bin/python"} | json_instruct | {"type": "object", "properties": {"python.pythonPath": {"type": "string"}}, "required": ["python.pythonPath"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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#"}
| {"id" : "1002", "provinceId" : "62", "regencyId" : "05", "districtId" : "01", "name" : "Montallat II"} | 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": "array", "items": {"type": "object", "properties": {"meeting_cd": {"type": "string"}, "committee": {"type": "string"}, "dttm": {"type": "string"}, "session": {"type": "string"}, "bill_name": {"type": "string"}, "bill_cd": {"type": "string"}, "position": {"type": "string"}, "rbnt": {"type": "boolean"}, "self": {"type": "boolean"}, "fullWitnessName": {"type": "string"}, "given_name": {"type": "string"}, "sur_name": {"type": "string"}, "organization": {"type": "string"}, "error": {"type": "boolean"}}, "required": ["meeting_cd", "committee", "dttm", "session", "bill_name", "bill_cd", "position", "rbnt", "self", "fullWitnessName", "given_name", "sur_name", "organization", "error"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"meeting_cd" : "C0322004042708001", "committee" : "Appropriations-S/C on Education Committee", "dttm" : "April 27, 2004-8:00A", "session" : "", "bill_name" : "", "bill_cd" : "", "position" : "", "rbnt" : false, "self" : false, "fullWitnessName" : "Interim Charge #2 On: Featherston, Pattie (Teacher Retirement System)\r", "given_name" : "Pattie", "sur_name" : "Interim Charge #2 On: Featherston", "organization" : "Teacher Retirement System", "error" : false}, {"meeting_cd" : "C0322004042708001", "committee" : "Appropriations-S/C on Education Committee", "dttm" : "April 27, 2004-8:00A", "session" : "", "bill_name" : "", "bill_cd" : "", "position" : "", "rbnt" : false, "self" : false, "fullWitnessName" : "Jung, Ronnie (Teacher Retirement System)", "given_name" : "Ronnie", "sur_name" : "Jung", "organization" : "Teacher Retirement System", "error" : false}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"meeting_cd": {"type": "string"}, "committee": {"type": "string"}, "dttm": {"type": "string"}, "session": {"type": "string"}, "bill_name": {"type": "string"}, "bill_cd": {"type": "string"}, "position": {"type": "string"}, "rbnt": {"type": "boolean"}, "self": {"type": "boolean"}, "fullWitnessName": {"type": "string"}, "given_name": {"type": "string"}, "sur_name": {"type": "string"}, "organization": {"type": "string"}, "error": {"type": "boolean"}}, "required": ["meeting_cd", "committee", "dttm", "session", "bill_name", "bill_cd", "position", "rbnt", "self", "fullWitnessName", "given_name", "sur_name", "organization", "error"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Saint-L\u00e9ger-de-Balson", "dpt" : "Gironde", "inscrits" : 251, "abs" : 41, "votants" : 210, "blancs" : 6, "nuls" : 2, "exp" : 202, "res" : [{"panneau" : "9", "voix" : 64}, {"panneau" : "2", "voix" : 59}, {"panneau" : "3", "voix" : 24}, {"panneau" : "11", "voix" : 22}, {"panneau" : "4", "voix" : 14}, {"panneau" : "6", "voix" : 6}, {"panneau" : "8", "voix" : 6}, {"panneau" : "5", "voix" : 4}, {"panneau" : "1", "voix" : 2}, {"panneau" : "10", "voix" : 1}, {"panneau" : "7", "voix" : 0}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"cmd-m": {"type": "string"}, "cmd-shift-3": {"type": "string"}, "cmd-shift-`": {"type": "string"}}, "required": ["cmd-m", "cmd-shift-3", "cmd-shift-`"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cmd-m" : "Minimize window to dock", "cmd-shift-3" : "Screenshot of entire desktop", "cmd-shift-`" : "Cycle through windows of active application"} | json_instruct | {"type": "object", "properties": {"cmd-m": {"type": "string"}, "cmd-shift-3": {"type": "string"}, "cmd-shift-`": {"type": "string"}}, "required": ["cmd-m", "cmd-shift-3", "cmd-shift-`"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"parent": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}}, "required": ["parent", "name", "flags"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "questDisableableNodeDefinition", "name" : "questDebugShowMessageNodeDefinition", "flags" : 2} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}}, "required": ["parent", "name", "flags"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "FRANCISCO ASIS", "frequency" : 4549, "gender" : "male"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible 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.org/draft-07/schema#"}
| [{"year" : 1914, "sex" : "M", "n" : 6, "prop" : 8.78e-06}, {"year" : 1917, "sex" : "M", "n" : 6, "prop" : 6.25e-06}, {"year" : 1922, "sex" : "M", "n" : 5, "prop" : 4.44e-06}, {"year" : 1925, "sex" : "M", "n" : 5, "prop" : 4.34e-06}, {"year" : 1926, "sex" : "M", "n" : 7, "prop" : 6.11e-06}, {"year" : 1935, "sex" : "M", "n" : 5, "prop" : 4.68e-06}, {"year" : 1951, "sex" : "M", "n" : 5, "prop" : 2.62e-06}, {"year" : 1954, "sex" : "M", "n" : 5, "prop" : 2.42e-06}, {"year" : 1970, "sex" : "M", "n" : 5, "prop" : 2.62e-06}, {"year" : 1977, "sex" : "M", "n" : 5, "prop" : 2.92e-06}, {"year" : 1986, "sex" : "M", "n" : 5, "prop" : 2.6e-06}, {"year" : 1988, "sex" : "M", "n" : 6, "prop" : 3e-06}, {"year" : 1995, "sex" : "M", "n" : 5, "prop" : 2.49e-06}, {"year" : 2005, "sex" : "M", "n" : 5, "prop" : 2.35e-06}, {"year" : 2012, "sex" : "M", "n" : 6, "prop" : 2.96e-06}, {"year" : 2013, "sex" : "M", "n" : 7, "prop" : 3.47e-06}, {"year" : 2017, "sex" : "M", "n" : 7, "prop" : 3.57e-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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "9b64dd7d5addfae7a5a23e7845620e5c0ecdc600"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"iid": {"type": "integer"}, "key": {"type": "string"}, "kind": {"type": "string"}, "site": {"type": "string"}, "user": {"type": "string"}}, "required": ["iid", "key", "kind", "site", "user"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"iid" : 4610173538664448, "key" : "cjol", "kind" : "assignment", "site" : "prog1", "user" : "jose.arthur.brito@ccc.ufcg.edu.br"} | json_instruct | {"type": "object", "properties": {"iid": {"type": "integer"}, "key": {"type": "string"}, "kind": {"type": "string"}, "site": {"type": "string"}, "user": {"type": "string"}}, "required": ["iid", "key", "kind", "site", "user"], "$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"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"request": {"type": "string"}}, "required": ["request"]}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}, "express": {"type": "string"}}, "required": ["mocha", "express"]}, "author": {"type": "string"}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["name", "version", "description", "scripts", "repository", "bugs", "main", "keywords", "dependencies", "devDependencies", "author", "licenses"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "jsonraver", "version" : "0.6.0", "description" : "An easy-to-use Node.js utility module for performing multiple async GET requests to third party JSON web services simultaneously through a simple API with batch-request functionality.", "scripts" : {"test" : "./node_modules/.bin/mocha test"}, "repository" : {"type" : "git", "url" : "https://github.com/deeleman/jsonraver.git"}, "bugs" : {"url" : "https://github.com/deeleman/jsonraver/issues"}, "main" : "./lib/main", "keywords" : ["json", "request", "get", "batch", "async"], "dependencies" : {"request" : "2.61.0"}, "devDependencies" : {"mocha" : "1.6.x", "express" : "3.0.x"}, "author" : "Pablo Deeleman <deeleman@gmail.com>", "licenses" : [{"type" : "BSD", "url" : "https://github.com/deeleman/jsonraver/raw/master/LICENSE"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"request": {"type": "string"}}, "required": ["request"]}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}, "express": {"type": "string"}}, "required": ["mocha", "express"]}, "author": {"type": "string"}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["name", "version", "description", "scripts", "repository", "bugs", "main", "keywords", "dependencies", "devDependencies", "author", "licenses"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "\"use strict\";\n\nexports.__esModule = true;\nexports.HeadManagerContext = void 0;\n\nvar _react = _interopRequireDefault(require(\"react\"));\n\nfunction _interopRequireDefault(obj) {\n return obj && obj.__esModule ? obj : {\n default: obj\n };\n}\n\nvar HeadManagerContext = /*#__PURE__*/_react.default.createContext({});\n\nexports.HeadManagerContext = HeadManagerContext;\n\nif (process.env.NODE_ENV !== 'production') {\n HeadManagerContext.displayName = 'HeadManagerContext';\n}", "map" : null, "metadata" : {}, "sourceType" : "script"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : " Adding two polynomials with multiple terms\n\n[imath]\\left(3 x^{3}+2 x^{2}-x+3\\right)+\\left(5 x^{3}-6 x^{2}-4 x-1\\right)[/imath]\n\n\n", "url" : "https://www.youtube.com/watch?v=n1lnyw61V5s"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "prettier": {"type": "object", "properties": {"tabWidth": {"type": "integer"}, "semi": {"type": "boolean"}, "singleQuote": {"type": "boolean"}}, "required": ["tabWidth", "semi", "singleQuote"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "prettier"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "neat-dev", "version" : "1.0.0", "description" : "A neat theme for hexo blog.", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/tatwd/hexo-theme-neat.git"}, "keywords" : ["hexo", "theme"], "author" : "_king (@tatwd)", "license" : "MIT", "bugs" : {"url" : "https://github.com/tatwd/hexo-theme-neat/issues"}, "homepage" : "https://github.com/tatwd/hexo-theme-neat#readme", "prettier" : {"tabWidth" : 2, "semi" : true, "singleQuote" : true}} | 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": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "prettier": {"type": "object", "properties": {"tabWidth": {"type": "integer"}, "semi": {"type": "boolean"}, "singleQuote": {"type": "boolean"}}, "required": ["tabWidth", "semi", "singleQuote"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "prettier"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"github-username": {"type": "string"}, "favourite-emoji": {"type": "string"}, "favourite-music": {"type": "string"}, "favourite-color": {"type": "string"}}, "required": ["github-username", "favourite-emoji", "favourite-music", "favourite-color"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"github-username" : "JOKUE2002", "favourite-emoji" : "\ud83d\ude05", "favourite-music" : "https://soundcloud.com/briantyler/now-you-see-me-1", "favourite-color" : "#0030ff"} | json_instruct | {"type": "object", "properties": {"github-username": {"type": "string"}, "favourite-emoji": {"type": "string"}, "favourite-music": {"type": "string"}, "favourite-color": {"type": "string"}}, "required": ["github-username", "favourite-emoji", "favourite-music", "favourite-color"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"cancelRequest.text": {"type": "string"}}, "required": ["cancelRequest.text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cancelRequest.text" : "\u8bf7\u6c42\u88ab\u60a8\u7ec8\u6b62"} | json_instruct | {"type": "object", "properties": {"cancelRequest.text": {"type": "string"}}, "required": ["cancelRequest.text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}}, "required": ["text", "created", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : "Today's <a href=\"https://www.axios.com/las-vegas-shooting-kills-at-least-20-injures-more-than-100-2491911641.html\">gun tragedy</a> is different because the victims were probably mostly white and they were probably well-distributed from all over the country. This one more than most is an <i>American</i> tragedy. ", "created" : "Mon, 02 Oct 2017 20:22:15 GMT", "type" : "outline"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}}, "required": ["text", "created", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"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#"}
| [{"id" : "1001", "provinceId" : "74", "regencyId" : "71", "districtId" : "08", "name" : "Kadia"}, {"id" : "1002", "provinceId" : "74", "regencyId" : "71", "districtId" : "08", "name" : "Bende"}, {"id" : "1003", "provinceId" : "74", "regencyId" : "71", "districtId" : "08", "name" : "Pondambea"}, {"id" : "1004", "provinceId" : "74", "regencyId" : "71", "districtId" : "08", "name" : "Wowawanggu"}, {"id" : "1005", "provinceId" : "74", "regencyId" : "71", "districtId" : "08", "name" : "Anaiwoi"}] | 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.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["In a large bowl, or a large zip-top bag, combine the chicken, onion, mushrooms, yellow pepper, red pepper, garlic, and potatoes. Pour in the olive oil and lemon juice, then mix well.", "Evenly divide the mixture between 4 large sheets of aluminum foil. Top each with another sheet of foil, and roll up the edges tightly. Wrap each packet again, securely in another sheet of foil to double wrap.", "Cook in the hot coals of a campfire until the chicken is opaque and the potatoes are tender, around 40 minutes."], "ingredients" : ["1 pound skinless, boneless chicken breast meat - cubed", "2 onions, diced", "1 (8 ounce) package sliced fresh mushrooms", "1 yellow bell pepper, seeded and sliced into strips", "1 red bell pepper, seeded and sliced into strips", "4 cloves garlic, sliced", "4 small potatoes, cubed", "1/4 cup olive oil", "1 lemon, juiced"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Campfire Foil Packs", "url" : "http://allrecipes.com/recipe/106584/campfire-foil-packs/"} | 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"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"sn45.175:0.1": {"type": "string"}, "sn45.175:0.2": {"type": "string"}, "sn45.175:0.3": {"type": "string"}, "sn45.175:1.1": {"type": "string"}, "sn45.175:1.2": {"type": "string"}, "sn45.175:1.3": {"type": "string"}, "sn45.175:1.4": {"type": "string"}, "sn45.175:1.5": {"type": "string"}, "sn45.175:1.6": {"type": "string"}}, "required": ["sn45.175:0.1", "sn45.175:0.2", "sn45.175:0.3", "sn45.175:1.1", "sn45.175:1.2", "sn45.175:1.3", "sn45.175:1.4", "sn45.175:1.5", "sn45.175:1.6"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sn45.175:0.1" : "Sa\u1e41yutta Nik\u0101ya 45 ", "sn45.175:0.2" : "14. Oghavagga ", "sn45.175:0.3" : "175. Anusayasutta ", "sn45.175:1.1" : "\u201cSattime, bhikkhave, anusay\u0101. ", "sn45.175:1.2" : "Katame satta? ", "sn45.175:1.3" : "K\u0101mar\u0101g\u0101nusayo, pa\u1e6digh\u0101nusayo, di\u1e6d\u1e6dh\u0101nusayo, vicikicch\u0101nusayo, m\u0101n\u0101nusayo, bhavar\u0101g\u0101nusayo, avijj\u0101nusayo\u2014", "sn45.175:1.4" : "ime kho, bhikkhave, satt\u0101nusay\u0101. ", "sn45.175:1.5" : "Imesa\u1e41 kho, bhikkhave, sattanna\u1e41 anusay\u0101na\u1e41 abhi\u00f1\u00f1\u0101ya pari\u00f1\u00f1\u0101ya parikkhay\u0101ya pah\u0101n\u0101ya \u2026pe\u2026 aya\u1e41 ariyo a\u1e6d\u1e6dha\u1e45giko maggo bh\u0101vetabbo\u201dti. ", "sn45.175:1.6" : "Pa\u00f1cama\u1e41. "} | json_instruct | {"type": "object", "properties": {"sn45.175:0.1": {"type": "string"}, "sn45.175:0.2": {"type": "string"}, "sn45.175:0.3": {"type": "string"}, "sn45.175:1.1": {"type": "string"}, "sn45.175:1.2": {"type": "string"}, "sn45.175:1.3": {"type": "string"}, "sn45.175:1.4": {"type": "string"}, "sn45.175:1.5": {"type": "string"}, "sn45.175:1.6": {"type": "string"}}, "required": ["sn45.175:0.1", "sn45.175:0.2", "sn45.175:0.3", "sn45.175:1.1", "sn45.175:1.2", "sn45.175:1.3", "sn45.175:1.4", "sn45.175:1.5", "sn45.175:1.6"], "$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": {"type": "string"}}, "gameTags": {"type": "array", "items": {}}, "metadata": {"type": "object", "properties": {"type": {"type": "integer"}, "after": {"type": "number"}, "before": {"type": "number"}, "parent": {"type": "string"}}, "required": ["type", "after", "before", "parent"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "7853b2f3-3caf-4032-97e2-90a42961fd62", "playerTags" : ["e4034192-4dc6-4901-bb30-07fe3cf77b5e"], "teamTags" : ["979aee4a-6d80-4863-bf1c-ee1a78e06024"], "gameTags" : [], "metadata" : {"type" : 0, "after" : 0.7752664545964963, "before" : 0.7460402928902901, "parent" : "77737781-2296-478f-b823-5e8c4ce802f5"}, "created" : "2021-04-11T18:16:46.732Z", "season" : 14, "tournament" : -1, "type" : 117, "day" : 113, "phase" : 13, "category" : 1, "description" : "Baldwin Breadwinner's hitting was boosted.", "nuts" : 2} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {}}, "metadata": {"type": "object", "properties": {"type": {"type": "integer"}, "after": {"type": "number"}, "before": {"type": "number"}, "parent": {"type": "string"}}, "required": ["type", "after", "before", "parent"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "require": {"type": "object", "properties": {"pfinal/database": {"type": "string"}}, "required": ["pfinal/database"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"PFinal\\Idempotent\\": {"type": "string"}}, "required": ["PFinal\\Idempotent\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "license", "homepage", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "pfinal/idempotent", "description" : "\u5e42\u7b49", "license" : "MIT", "homepage" : "http://www.pfinal.cn", "authors" : [{"name" : "Zou Yiliang"}], "require" : {"pfinal/database" : "*"}, "autoload" : {"psr-4" : {"PFinal\\Idempotent\\" : "src/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "require": {"type": "object", "properties": {"pfinal/database": {"type": "string"}}, "required": ["pfinal/database"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"PFinal\\Idempotent\\": {"type": "string"}}, "required": ["PFinal\\Idempotent\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "license", "homepage", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 39106, "cartId" : "4a12b261-165f-4006-8fbd-c69b338ad13f", "preferredProducts" : [3344, 1344, 572, 3772, 988], "productReviews" : [{"productId" : 76, "reviewText" : "i use it daily when i'm in my courthouse.", "reviewDate" : "2018-12-01T11:00:24.3249963+02:00"}, {"productId" : 1979, "reviewText" : "The box this comes in is 3 light-year by 5 meter and weights 10 ounce!", "reviewDate" : "2019-04-23T17:42:17.4181632+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"file_name": {"type": "string"}, "guid": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}, "exports": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "class": {"type": "object", "properties": {"package": {"type": "string"}, "name": {"type": "string"}}, "required": ["package", "name"]}, "super": {"type": "null"}, "template": {"type": "object", "properties": {"package": {"type": "string"}, "name": {"type": "string"}}, "required": ["package", "name"]}, "outer": {"type": "null"}, "properties": {"type": "object", "properties": {"CompressionSettings": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "ImportedSize": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}, "required": ["type", "value"]}, "LODBias": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "integer"}}, "required": ["type", "value"]}, "LightingGuid": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}}, "required": ["type", "value"]}, "SRGB": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "boolean"}}, "required": ["type", "value"]}}, "required": ["CompressionSettings", "ImportedSize", "LODBias", "LightingGuid", "SRGB"]}}, "required": ["name", "class", "super", "template", "outer", "properties"]}}}, "required": ["file_name", "guid", "exports"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"file_name" : "FactoryGame/Content/FactoryGame/World/Environment/Caves/Textures/T_RootsMesh_ORM.uasset", "guid" : {"a" : 3905260154, "b" : 1267301265, "c" : 138300560, "d" : 2707305147}, "exports" : [{"name" : "T_RootsMesh_ORM", "class" : {"package" : "/Script/Engine", "name" : "Texture2D"}, "super" : null, "template" : {"package" : "/Script/Engine", "name" : "Default__Texture2D"}, "outer" : null, "properties" : {"CompressionSettings" : {"type" : "ByteProperty", "value" : "TC_Masks"}, "ImportedSize" : {"type" : "IntPoint", "value" : {"x" : 2048, "y" : 2048}}, "LODBias" : {"type" : "IntProperty", "value" : 2}, "LightingGuid" : {"type" : "Guid", "value" : {"a" : 130776613, "b" : 1189196369, "c" : 3052195737, "d" : 1948253681}}, "SRGB" : {"type" : "BoolProperty", "value" : false}}}]} | json_instruct | {"type": "object", "properties": {"file_name": {"type": "string"}, "guid": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}, "exports": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "class": {"type": "object", "properties": {"package": {"type": "string"}, "name": {"type": "string"}}, "required": ["package", "name"]}, "super": {"type": "null"}, "template": {"type": "object", "properties": {"package": {"type": "string"}, "name": {"type": "string"}}, "required": ["package", "name"]}, "outer": {"type": "null"}, "properties": {"type": "object", "properties": {"CompressionSettings": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "ImportedSize": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}, "required": ["type", "value"]}, "LODBias": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "integer"}}, "required": ["type", "value"]}, "LightingGuid": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}}, "required": ["type", "value"]}, "SRGB": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "boolean"}}, "required": ["type", "value"]}}, "required": ["CompressionSettings", "ImportedSize", "LODBias", "LightingGuid", "SRGB"]}}, "required": ["name", "class", "super", "template", "outer", "properties"]}}}, "required": ["file_name", "guid", "exports"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"status": {"type": "integer"}, "startTimes": {"type": "array", "items": {"type": "integer"}}, "objectiveValue": {"type": "number"}, "solverRuntimeInMilliseconds": {"type": "integer"}, "optional": {"type": "object", "properties": {}, "required": []}}, "required": ["status", "startTimes", "objectiveValue", "solverRuntimeInMilliseconds", "optional"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status" : 3, "startTimes" : [7, 18, 28, 60, 37, 120, 45, 133, 157, 74, 105, 144, 172, 95, 85], "objectiveValue" : 538.0, "solverRuntimeInMilliseconds" : 245, "optional" : {}} | json_instruct | {"type": "object", "properties": {"status": {"type": "integer"}, "startTimes": {"type": "array", "items": {"type": "integer"}}, "objectiveValue": {"type": "number"}, "solverRuntimeInMilliseconds": {"type": "integer"}, "optional": {"type": "object", "properties": {}, "required": []}}, "required": ["status", "startTimes", "objectiveValue", "solverRuntimeInMilliseconds", "optional"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"compile-hero.disable-compile-files-on-did-save-code": {"type": "boolean"}, "files.associations": {"type": "object", "properties": {"*.yaml": {"type": "string"}}, "required": ["*.yaml"]}, "python.pythonPath": {"type": "string"}, "python.linting.pylintEnabled": {"type": "boolean"}}, "required": ["compile-hero.disable-compile-files-on-did-save-code", "files.associations", "python.pythonPath", "python.linting.pylintEnabled"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"compile-hero.disable-compile-files-on-did-save-code" : false, "files.associations" : {"*.yaml" : "home-assistant"}, "python.pythonPath" : "/home/carsten/dev/python/rtcg/venv/bin/python3.8", "python.linting.pylintEnabled" : true} | json_instruct | {"type": "object", "properties": {"compile-hero.disable-compile-files-on-did-save-code": {"type": "boolean"}, "files.associations": {"type": "object", "properties": {"*.yaml": {"type": "string"}}, "required": ["*.yaml"]}, "python.pythonPath": {"type": "string"}, "python.linting.pylintEnabled": {"type": "boolean"}}, "required": ["compile-hero.disable-compile-files-on-did-save-code", "files.associations", "python.pythonPath", "python.linting.pylintEnabled"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "azygous", "definition" : "Odd; having no fellow; not one of a pair; single; as, the azygous muscle of the uvula."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "wildnature:block/diorite_wall_bricks_small_inventory"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"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": "integer"}}, "required": ["timestamp", "object_list", "frame", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"timestamp" : 214, "object_list" : [{"position" : [13.2372030699, 4.04647690414], "id" : 32}, {"position" : [12.9461298233, 4.81066558282], "id" : 33}, {"position" : [6.42339514577, 6.30610788783], "id" : 34}, {"position" : [6.38382770516, 5.35528724577], "id" : 35}, {"position" : [8.20477183364, 4.07034288411], "id" : 36}, {"position" : [11.0864601146, 5.81184344262], "id" : 37}], "frame" : 214, "size" : 6} | 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": "integer"}}, "required": ["timestamp", "object_list", "frame", "size"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"latest_version" : ["0.1"], "meta" : {"description" : "sibyl forecaster", "homepage" : "http://github.com/fengyu05/sibyl", "license" : "MIT"}, "versions" : {"0.1" : {"sha256" : "1ec45dd307ec3e69f8154fc9d0024f83eaa5e89075620419cf0284ba8e628df8", "url" : "https://files.pythonhosted.org/packages/5f/b1/e6a177b131b7797bbdacd7ebcebdd5f29e1b6793b6bfe732cee4f928413e/sibyl-0.1.tar.gz"}}} | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "contents": {"type": "string"}}, "required": ["title", "contents"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "aa (new)", "contents" : "aa (new)"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "contents": {"type": "string"}}, "required": ["title", "contents"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "credit": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "credit", "explanation", "date", "hdurl", "service_version", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Lutetia: The Largest Asteroid Yet Visited", "credit" : "ESA, NASA, JAXA, RAS, JHUAPL, UMD, OSIRIS; Montage: Emily Lakdawalla (Planetary Society) & Ted Stryk", "explanation" : "As humans explore the universe, the record for largest asteroid visited by a spacecraft has increased yet again. Earlier this month, ESA's robotic Rosetta spacecraft zipped past the asteroid 21 Lutetia taking data and snapping images in an effort to better determine the history of the asteroid and the origin of its unusual colors. Although of unknown composition, Lutetia is not massive enough for gravity to pull it into a sphere. Pictured above on the upper right, the 100-kilometer across Lutetia is shown in comparison with the other nine asteroids and four comets that have been visited, so far, by human-launched spacecraft. Orbiting in the main asteroid belt, Lutetia shows itself to be a heavily cratered remnant of the early Solar System. The Rosetta spacecraft is now continuing onto comet Churyumov-Gerasimenko where a landing is planned for 2014.", "date" : "2010-07-26", "hdurl" : "https://apod.nasa.gov/apod/image/1007/asteroidscomets_lakdawalla_big.jpg", "service_version" : "v1", "media_type" : "image", "url" : "https://apod.nasa.gov/apod/image/1007/asteroidscomets_lakdawalla.jpg"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "credit": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "credit", "explanation", "date", "hdurl", "service_version", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"Bx": {"type": "object", "properties": {"value": {"type": "integer"}, "units": {"type": "string"}, "type": {"type": "string"}}, "required": ["value", "units", "type"]}, "By": {"type": "object", "properties": {"value": {"type": "integer"}, "units": {"type": "string"}, "type": {"type": "string"}}, "required": ["value", "units", "type"]}, "Bz": {"type": "object", "properties": {"value": {"type": "integer"}, "units": {"type": "string"}, "type": {"type": "string"}}, "required": ["value", "units", "type"]}}, "required": ["Bx", "By", "Bz"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Bx" : {"value" : 0, "units" : "T", "type" : "Field"}, "By" : {"value" : 0, "units" : "T", "type" : "Field"}, "Bz" : {"value" : 0, "units" : "T", "type" : "Field"}} | json_instruct | {"type": "object", "properties": {"Bx": {"type": "object", "properties": {"value": {"type": "integer"}, "units": {"type": "string"}, "type": {"type": "string"}}, "required": ["value", "units", "type"]}, "By": {"type": "object", "properties": {"value": {"type": "integer"}, "units": {"type": "string"}, "type": {"type": "string"}}, "required": ["value", "units", "type"]}, "Bz": {"type": "object", "properties": {"value": {"type": "integer"}, "units": {"type": "string"}, "type": {"type": "string"}}, "required": ["value", "units", "type"]}}, "required": ["Bx", "By", "Bz"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "torpedo stern", "definition" : "A broad stern without overhang, flattened on the bottom, used in some torpedo and fast power boats. It prevents settling in the water at high speed."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1968, 8], [1969, 8], [1970, 8], [1971, 8], [1972, 6]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "\"use strict\";\n/**\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * @format\n * \n * @emails oncall+draft_js\n */\n\nvar ReactDOMComet = require(\"react-dom\");\n\nvar flushControlled = ReactDOMComet.unstable_flushControlled;\nmodule.exports = flushControlled;", "map" : {"version" : 3, "sources" : ["/home/cmsgdiav/Desktop/React Projects/aws-transcription-assistant-05/packages/frontend/node_modules/draft-js/lib/DraftEditorFlushControlled.js"], "names" : ["ReactDOMComet", "require", "flushControlled", "unstable_flushControlled", "module", "exports"], "mappings" : "AAAA;AAEA;;;;;;;;;;;AAUA,IAAIA,aAAa,GAAGC,OAAO,CAAC,WAAD,CAA3B;;AAEA,IAAIC,eAAe,GAAGF,aAAa,CAACG,wBAApC;AACAC,MAAM,CAACC,OAAP,GAAiBH,eAAjB", "sourcesContent" : ["\"use strict\";\n\n/**\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * @format\n * \n * @emails oncall+draft_js\n */\nvar ReactDOMComet = require(\"react-dom\");\n\nvar flushControlled = ReactDOMComet.unstable_flushControlled;\nmodule.exports = flushControlled;"]}, "metadata" : {}, "sourceType" : "script"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "watch": {"type": "string"}}, "required": ["build", "watch"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "css-loader": {"type": "string"}, "extract-text-webpack-plugin": {"type": "string"}, "file-loader": {"type": "string"}, "sass-loader": {"type": "string"}, "style-loader": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["babel-core", "babel-loader", "babel-preset-es2015", "css-loader", "extract-text-webpack-plugin", "file-loader", "sass-loader", "style-loader", "webpack"]}, "dependencies": {"type": "object", "properties": {"bootstrap-sass": {"type": "string"}, "node-sass": {"type": "string"}}, "required": ["bootstrap-sass", "node-sass"]}}, "required": ["name", "version", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "webpack-bootstrap-sample", "version" : "0.0.1", "main" : "index.js", "scripts" : {"build" : "webpack --progress --profile --colors", "watch" : "webpack --progress --profile --colors --watch"}, "author" : "", "license" : "BSD-3-Clause", "devDependencies" : {"babel-core" : "^6.14.0", "babel-loader" : "^6.2.5", "babel-preset-es2015" : "^6.14.0", "css-loader" : "^0.25.0", "extract-text-webpack-plugin" : "^1.0.1", "file-loader" : "^0.9.0", "sass-loader" : "^4.0.1", "style-loader" : "^0.13.1", "webpack" : "^1.13.2"}, "dependencies" : {"bootstrap-sass" : "^3.3.7", "node-sass" : "^3.9.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "watch": {"type": "string"}}, "required": ["build", "watch"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "css-loader": {"type": "string"}, "extract-text-webpack-plugin": {"type": "string"}, "file-loader": {"type": "string"}, "sass-loader": {"type": "string"}, "style-loader": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["babel-core", "babel-loader", "babel-preset-es2015", "css-loader", "extract-text-webpack-plugin", "file-loader", "sass-loader", "style-loader", "webpack"]}, "dependencies": {"type": "object", "properties": {"bootstrap-sass": {"type": "string"}, "node-sass": {"type": "string"}}, "required": ["bootstrap-sass", "node-sass"]}}, "required": ["name", "version", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"arXiv": {"type": "null"}, "title": {"type": "string"}, "pdf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "s2id": {"type": "string"}, "posterSession": {"type": "string"}}, "required": ["arXiv", "title", "pdf", "authors", "abstract", "s2id", "posterSession"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"arXiv" : null, "title" : "Bottom-Up Shift and Reasoning for Referring Image Segmentation", "pdf" : "https://openaccess.thecvf.com/content/CVPR2021/papers/Yang_Bottom-Up_Shift_and_Reasoning_for_Referring_Image_Segmentation_CVPR_2021_paper.pdf", "authors" : ["Sibei Yang", "Meng Xia", "Guanbin Li", "Hong-Yu Zhou", "Yizhou Yu"], "abstract" : "Referring image segmentation aims to segment the referent that is the corresponding object or stuff referred by a natural language expression in an image. Its main challenge lies in how to effectively and efficiently differentiate between the referent and other objects of the same category as the referent. In this paper, we tackle the challenge by jointly performing compositional visual reasoning and accurate segmentation in a single stage via the proposed novel Bottom-Up Shift (BUS) and Bidirectional Attentive Refinement (BIAR) modules. Specifically, BUS progressively locates the referent along hierarchical reasoning steps implied by the expression. At each step, it locates the corresponding visual region by disambiguating between similar regions, where the disambiguation bases on the relationships between regions. By the explainable visual reasoning, BUS explicitly aligns linguistic components with visual regions so that it can identify all the mentioned entities in the expression. BIAR fuses multi-level features via a two-way attentive message passing, which captures the visual details relevant to the referent to refine segmentation results. Experimental results demonstrate that the proposed method consisting of BUS and BIAR modules, can not only consistently surpass all existing state-of-the-art algorithms across common benchmark datasets but also visualize interpretable reasoning steps for stepwise segmentation. Code is available at https://github.com/incredibleXM/BUSNet.", "s2id" : "", "posterSession" : "Wednesday"} | json_instruct | {"type": "object", "properties": {"arXiv": {"type": "null"}, "title": {"type": "string"}, "pdf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "s2id": {"type": "string"}, "posterSession": {"type": "string"}}, "required": ["arXiv", "title", "pdf", "authors", "abstract", "s2id", "posterSession"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"vname": {"type": "string"}, "type": {"type": "string"}, "value": {"type": "string"}}, "required": ["vname", "type", "value"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"vname" : "BLOCKNUMBER", "type" : "BNum", "value" : "7"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"vname": {"type": "string"}, "type": {"type": "string"}, "value": {"type": "string"}}, "required": ["vname", "type", "value"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 101757255, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "740a38817396e54f2caf708d65072fcd", "wof:id" : 101757255, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [3.79721711826971, 43.57970557636389, 3.81547251734071, 43.59439068465059], "geometry" : {"coordinates" : [[[3.81547251734071, 43.58177455937653], [3.81490184275026, 43.57993084146949], [3.81116811583308, 43.57970557636389], [3.81088056150446, 43.58240215886002], [3.80964870740525, 43.58232780009553], [3.80955282923014, 43.58322665803223], [3.8033935067578, 43.5828546360832], [3.80329753037614, 43.58375348657216], [3.80083378342692, 43.58360457177486], [3.80073776539376, 43.58450341881377], [3.79950587729962, 43.58442893793421], [3.79940983646605, 43.58532778285661], [3.79817793234156, 43.58525328587768], [3.79779365410639, 43.5888486524093], [3.79902563365283, 43.58892315472849], [3.79864136766298, 43.59251851409374], [3.79740931268208, 43.5924440064336], [3.79721711826971, 43.59424167875659], [3.79968130649968, 43.59439068465059], [3.79977736795837, 43.59349184620942], [3.80100944744908, 43.59356632567062], [3.80110548609832, 43.59266748511305], [3.80233754955168, 43.59274194847228], [3.80243356539268, 43.59184310579889], [3.80366561280891, 43.59191755305687], [3.80376160584325, 43.59101870826805], [3.8049936372222, 43.59109313942508], [3.80508960745146, 43.59019429252101], [3.80632162279295, 43.59026870757788], [3.80670538883379, 43.5866733068134], [3.81163317667966, 43.58697079805108], [3.81172903290746, 43.58607194057549], [3.81296096805926, 43.58614627513907], [3.81315263098497, 43.58434855518021], [3.81438453124355, 43.58442287231492], [3.81467193953148, 43.58172628252186], [3.81547251734071, 43.58177455937653]]], "type" : "Polygon"}} | 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": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : " learn how to factor using the difference of two cubes\n\n[imath]a 3-64 b^{9}[/imath]\n\n\n", "url" : "https://www.youtube.com/watch?v=1kSYwIr_dCo"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"country_name": {"type": "string"}, "country_synonyms": {"type": "array", "items": {"type": "string"}}, "regions": {"type": "array", "items": {"type": "object", "properties": {"region_name": {"type": "string"}, "region_synonyms": {"type": "array", "items": {"type": "string"}}, "cities": {"type": "array", "items": {"type": "object", "properties": {"city_name": {"type": "string"}, "city_synonyms": {"type": "array", "items": {"type": "string"}}}, "required": ["city_name", "city_synonyms"]}}}, "required": ["region_name", "region_synonyms", "cities"]}}}, "required": ["country_name", "country_synonyms", "regions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"country_name" : "Dominican", "country_synonyms" : ["Dominican"], "regions" : [{"region_name" : "Santo-Domingo", "region_synonyms" : ["Santo Domingo de Guzm\u00e1n", "Santo Domingo"], "cities" : [{"city_name" : "Santo-Domingo", "city_synonyms" : ["Santo Domingo de Guzm\u00e1n", "Santo Domingo"]}]}]} | json_instruct | {"type": "object", "properties": {"country_name": {"type": "string"}, "country_synonyms": {"type": "array", "items": {"type": "string"}}, "regions": {"type": "array", "items": {"type": "object", "properties": {"region_name": {"type": "string"}, "region_synonyms": {"type": "array", "items": {"type": "string"}}, "cities": {"type": "array", "items": {"type": "object", "properties": {"city_name": {"type": "string"}, "city_synonyms": {"type": "array", "items": {"type": "string"}}}, "required": ["city_name", "city_synonyms"]}}}, "required": ["region_name", "region_synonyms", "cities"]}}}, "required": ["country_name", "country_synonyms", "regions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "9c78d2019c2246ca21f1", "c" : {}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"prod": {"type": "string"}, "dev": {"type": "string"}}, "required": ["prod", "dev"]}, "devDependencies": {"type": "object", "properties": {"bootstrap-sass": {"type": "string"}, "gulp": {"type": "string"}, "gulp-bundle-assets": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-uglify": {"type": "string"}, "laravel-elixir": {"type": "string"}, "laravel-elixir-browserify-official": {"type": "string"}, "vue-router": {"type": "string"}}, "required": ["bootstrap-sass", "gulp", "gulp-bundle-assets", "gulp-rename", "gulp-uglify", "laravel-elixir", "laravel-elixir-browserify-official", "vue-router"]}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "ioredis": {"type": "string"}, "laravel-elixir-vueify": {"type": "string"}, "socket.io": {"type": "string"}, "vue": {"type": "string"}, "vue-axios": {"type": "string"}, "vue-resource": {"type": "string"}, "vuex": {"type": "string"}}, "required": ["axios", "ioredis", "laravel-elixir-vueify", "socket.io", "vue", "vue-axios", "vue-resource", "vuex"]}}, "required": ["private", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"private" : true, "scripts" : {"prod" : "gulp --production", "dev" : "gulp watch"}, "devDependencies" : {"bootstrap-sass" : "^3.3.7", "gulp" : "^3.9.1", "gulp-bundle-assets" : "^2.27.1", "gulp-rename" : "^1.2.2", "gulp-uglify" : "^2.1.2", "laravel-elixir" : "^6.0.0-15", "laravel-elixir-browserify-official" : "^0.1.3", "vue-router" : "^2.3.0"}, "dependencies" : {"axios" : "^0.16.1", "ioredis" : "^2.5.0", "laravel-elixir-vueify" : "^2.0.0", "socket.io" : "^1.7.3", "vue" : "^2.2.2", "vue-axios" : "^2.0.1", "vue-resource" : "^1.2.1", "vuex" : "^2.2.1"}} | json_instruct | {"type": "object", "properties": {"private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"prod": {"type": "string"}, "dev": {"type": "string"}}, "required": ["prod", "dev"]}, "devDependencies": {"type": "object", "properties": {"bootstrap-sass": {"type": "string"}, "gulp": {"type": "string"}, "gulp-bundle-assets": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-uglify": {"type": "string"}, "laravel-elixir": {"type": "string"}, "laravel-elixir-browserify-official": {"type": "string"}, "vue-router": {"type": "string"}}, "required": ["bootstrap-sass", "gulp", "gulp-bundle-assets", "gulp-rename", "gulp-uglify", "laravel-elixir", "laravel-elixir-browserify-official", "vue-router"]}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "ioredis": {"type": "string"}, "laravel-elixir-vueify": {"type": "string"}, "socket.io": {"type": "string"}, "vue": {"type": "string"}, "vue-axios": {"type": "string"}, "vue-resource": {"type": "string"}, "vuex": {"type": "string"}}, "required": ["axios", "ioredis", "laravel-elixir-vueify", "socket.io", "vue", "vue-axios", "vue-resource", "vuex"]}}, "required": ["private", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "15c3f9009497b75c4618b772211a53d03244e8c6"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "510181005001", "text" : "\u738b\u5bb6\u6865\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510181005002", "text" : "\u5b81\u6c5f\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510181005003", "text" : "\u7389\u5792\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510181005004", "text" : "\u9ad8\u57c2\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510181005007", "text" : "\u60e0\u6c11\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510181005008", "text" : "\u671d\u9633\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510181005009", "text" : "\u9ad8\u6865\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510181005010", "text" : "\u4e0a\u6e38\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510181005011", "text" : "\u58f9\u8857\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510181005200", "text" : "\u767e\u82b1\u793e\u533a\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510181005201", "text" : "\u4e07\u5cad\u793e\u533a\u6751\u6c11\u59d4\u5458\u4f1a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"no": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "array", "items": {"type": "string"}}, "classification": {"type": "string"}, "tribeValue": {"type": "array", "items": {"type": "string"}}, "height": {"type": "string"}, "weight": {"type": "string"}}, "required": ["no", "name", "type", "classification", "tribeValue", "height", "weight"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"no" : "281", "name" : "\u30ad\u30eb\u30ea\u30a2", "type" : ["\u30a8\u30b9\u30d1\u30fc", "\u30d5\u30a7\u30a2\u30ea\u30fc"], "classification" : "\u304b\u3093\u3058\u3087\u3046\u30dd\u30b1\u30e2\u30f3", "tribeValue" : ["38", "35", "35", "65", "55", "50"], "height" : "0.8", "weight" : "20.2"} | json_instruct | {"type": "object", "properties": {"no": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "array", "items": {"type": "string"}}, "classification": {"type": "string"}, "tribeValue": {"type": "array", "items": {"type": "string"}}, "height": {"type": "string"}, "weight": {"type": "string"}}, "required": ["no", "name", "type", "classification", "tribeValue", "height", "weight"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "null"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"expo": {"type": "string"}, "react": {"type": "string"}, "react-native": {"type": "string"}, "react-native-elements": {"type": "string"}, "react-navigation": {"type": "string"}}, "required": ["expo", "react", "react-native", "react-native-elements", "react-navigation"]}}, "required": ["name", "version", "description", "author", "private", "main", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "login-ui", "version" : "0.0.0", "description" : "No description", "author" : null, "private" : true, "main" : "node_modules/expo/AppEntry.js", "dependencies" : {"expo" : "^31.0.0", "react" : "16.5.0", "react-native" : "https://github.com/expo/react-native/archive/sdk-31.0.0.tar.gz", "react-native-elements" : "0.19.1", "react-navigation" : "2.18.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "null"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"expo": {"type": "string"}, "react": {"type": "string"}, "react-native": {"type": "string"}, "react-native-elements": {"type": "string"}, "react-navigation": {"type": "string"}}, "required": ["expo", "react", "react-native", "react-native-elements", "react-navigation"]}}, "required": ["name", "version", "description", "author", "private", "main", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"example": {"type": "string"}}, "required": ["example"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"d3": {"type": "string"}}, "required": ["d3"]}, "browserify": {"type": "object", "properties": {"transform": {"type": "array", "items": {"type": "string"}}}, "required": ["transform"]}, "browserify-shim": {"type": "object", "properties": {"d3": {"type": "string"}}, "required": ["d3"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"browserify": {"type": "string"}, "browserify-shim": {"type": "string"}, "casper-chai": {"type": "string"}, "casperjs": {"type": "string"}, "chai": {"type": "string"}, "glob": {"type": "string"}, "jshint": {"type": "string"}, "mocha": {"type": "string"}, "mocha-casperjs": {"type": "string"}, "uglify-js": {"type": "string"}, "watchify": {"type": "string"}}, "required": ["browserify", "browserify-shim", "casper-chai", "casperjs", "chai", "glob", "jshint", "mocha", "mocha-casperjs", "uglify-js", "watchify"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "repository", "keywords", "dependencies", "browserify", "browserify-shim", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "d3-carto-map", "version" : "0.4.0", "description" : "easy layer-based maps for d3", "main" : "d3.carto.map.js", "directories" : {"example" : "examples"}, "scripts" : {"test" : "make test"}, "repository" : {"type" : "git", "url" : "https://github.com/emeeks/d3-carto-map"}, "keywords" : ["d3", "map", "cartography", "topojson", "geojson", "csv", "svg", "canvas"], "dependencies" : {"d3" : "^3.4.10"}, "browserify" : {"transform" : ["browserify-shim"]}, "browserify-shim" : {"d3" : "global:d3"}, "author" : "Elijah Meeks", "license" : "Unlicense", "bugs" : {"url" : "https://github.com/emeeks/d3-carto-map/issues"}, "homepage" : "https://github.com/emeeks/d3-carto-map", "devDependencies" : {"browserify" : "^4.2.0", "browserify-shim" : "^3.6.0", "casper-chai" : "^0.2.1", "casperjs" : "^1.1.0-beta3", "chai" : "^1.9.1", "glob" : "^4.0.4", "jshint" : "^2.5.2", "mocha" : "^1.20.1", "mocha-casperjs" : "^0.5.0", "uglify-js" : "^2.4.15", "watchify" : "^0.10.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"example": {"type": "string"}}, "required": ["example"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"d3": {"type": "string"}}, "required": ["d3"]}, "browserify": {"type": "object", "properties": {"transform": {"type": "array", "items": {"type": "string"}}}, "required": ["transform"]}, "browserify-shim": {"type": "object", "properties": {"d3": {"type": "string"}}, "required": ["d3"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"browserify": {"type": "string"}, "browserify-shim": {"type": "string"}, "casper-chai": {"type": "string"}, "casperjs": {"type": "string"}, "chai": {"type": "string"}, "glob": {"type": "string"}, "jshint": {"type": "string"}, "mocha": {"type": "string"}, "mocha-casperjs": {"type": "string"}, "uglify-js": {"type": "string"}, "watchify": {"type": "string"}}, "required": ["browserify", "browserify-shim", "casper-chai", "casperjs", "chai", "glob", "jshint", "mocha", "mocha-casperjs", "uglify-js", "watchify"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "repository", "keywords", "dependencies", "browserify", "browserify-shim", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this 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": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-83.213853, 42.546711], [-83.193527, 42.547283], [-83.193371, 42.544732], [-83.185609, 42.535651], [-83.185469, 42.532456], [-83.199682, 42.532042], [-83.213853, 42.546711]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 32743}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"nr_time_steps": {"type": "integer"}, "max_tree_depth": {"type": "integer"}, "array": {"type": "object", "properties": {"shape": {"type": "array", "items": {"type": "integer"}}}, "required": ["shape"]}, "partition": {"type": "object", "properties": {"shape": {"type": "array", "items": {"type": "integer"}}}, "required": ["shape"]}, "arguments": {"type": "object", "properties": {"positionals": {"type": "array", "items": {"type": "string"}}, "options": {"type": "object", "properties": {"center": {"type": "string"}}, "required": ["center"]}}, "required": ["positionals", "options"]}}, "required": ["nr_time_steps", "max_tree_depth", "array", "partition", "arguments"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nr_time_steps" : 24, "max_tree_depth" : 2, "array" : {"shape" : [4000, 4000]}, "partition" : {"shape" : [1500, 1500]}, "arguments" : {"positionals" : ["$LUE_BENCHMARK_DATA/flow_accumulation/africa-1-scaling.lue/area/raster/flow_direction"], "options" : {"center" : "30000, 49200"}}} | json_instruct | {"type": "object", "properties": {"nr_time_steps": {"type": "integer"}, "max_tree_depth": {"type": "integer"}, "array": {"type": "object", "properties": {"shape": {"type": "array", "items": {"type": "integer"}}}, "required": ["shape"]}, "partition": {"type": "object", "properties": {"shape": {"type": "array", "items": {"type": "integer"}}}, "required": ["shape"]}, "arguments": {"type": "object", "properties": {"positionals": {"type": "array", "items": {"type": "string"}}, "options": {"type": "object", "properties": {"center": {"type": "string"}}, "required": ["center"]}}, "required": ["positionals", "options"]}}, "required": ["nr_time_steps", "max_tree_depth", "array", "partition", "arguments"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"Name": {"type": "string"}, "@odata.id": {"type": "string"}, "@odata.type": {"type": "string"}, "@odata.context": {"type": "string"}, "Members": {"type": "array", "items": {}}, "Members@odata.count": {"type": "integer"}}, "required": ["Name", "@odata.id", "@odata.type", "@odata.context", "Members", "Members@odata.count"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "Network Adapter Collection", "@odata.id" : "/redfish/v1/Chassis/30303437-3034-4D32-3230-313133364752/NetworkAdapters/", "@odata.type" : "#NetworkAdapterCollection.NetworkAdapterCollection", "@odata.context" : "/redfish/v1/$metadata#NetworkAdapterCollection.NetworkAdapterCollection", "Members" : [], "Members@odata.count" : 0} | json_instruct | {"type": "object", "properties": {"Name": {"type": "string"}, "@odata.id": {"type": "string"}, "@odata.type": {"type": "string"}, "@odata.context": {"type": "string"}, "Members": {"type": "array", "items": {}}, "Members@odata.count": {"type": "integer"}}, "required": ["Name", "@odata.id", "@odata.type", "@odata.context", "Members", "Members@odata.count"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"queryName": {"type": "string"}, "severity": {"type": "string"}, "line": {"type": "integer"}, "fileName": {"type": "string"}}, "required": ["queryName", "severity", "line", "fileName"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"queryName" : "ElasticSearch Without Slow Logs", "severity" : "MEDIUM", "line" : 34, "fileName" : "positive1.yaml"}, {"queryName" : "ElasticSearch Without Slow Logs", "severity" : "MEDIUM", "line" : 30, "fileName" : "positive2.yaml"}, {"queryName" : "ElasticSearch Without Slow Logs", "severity" : "MEDIUM", "line" : 6, "fileName" : "positive3.yaml"}, {"queryName" : "ElasticSearch Without Slow Logs", "severity" : "MEDIUM", "line" : 44, "fileName" : "positive4.json"}, {"queryName" : "ElasticSearch Without Slow Logs", "severity" : "MEDIUM", "line" : 42, "fileName" : "positive5.json"}, {"queryName" : "ElasticSearch Without Slow Logs", "severity" : "MEDIUM", "line" : 7, "fileName" : "positive6.json"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"queryName": {"type": "string"}, "severity": {"type": "string"}, "line": {"type": "integer"}, "fileName": {"type": "string"}}, "required": ["queryName", "severity", "line", "fileName"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0x4f7086d111b3d93d90831bd434643ddbfcb6a7f4cff27d0a5dcd05681d76f11a", "parentHash" : "0x42827c60a9dc71ab1b48ce53eddf53e42a1f87b3beb3698a1a7765b870610c75", "number" : 66911, "timestamp" : 1439262436, "nonce" : "0x0122a5bf14005044", "difficulty" : 1953663145793, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x0193d941b50d91BE6567c7eE1C0Fe7AF498b4137", "extraData" : "0x4a5ace9e4e", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"USER": {"type": "string"}, "ID": {"type": "string"}, "NICKNAME": {"type": "string"}, "TIME": {"type": "string"}}, "required": ["USER", "ID", "NICKNAME", "TIME"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"USER" : "blakenoutcat", "ID" : "355880125663019010", "NICKNAME" : "Ryuulkg", "TIME" : "12/10/2019 14:33:37"} | json_instruct | {"type": "object", "properties": {"USER": {"type": "string"}, "ID": {"type": "string"}, "NICKNAME": {"type": "string"}, "TIME": {"type": "string"}}, "required": ["USER", "ID", "NICKNAME", "TIME"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required": ["Default", "Microsoft", "Microsoft.Hosting.Lifetime"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}, "BankID": {"type": "object", "properties": {"ClientId": {"type": "string"}, "ClientSecret": {"type": "string"}, "Issuer": {"type": "string"}}, "required": ["ClientId", "ClientSecret", "Issuer"]}}, "required": ["Logging", "AllowedHosts", "BankID"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Logging" : {"LogLevel" : {"Default" : "Information", "Microsoft" : "Warning", "Microsoft.Hosting.Lifetime" : "Information"}}, "AllowedHosts" : "*", "BankID" : {"ClientId" : "72fda011-0479-4a4c-9fff-0a6c7f584e1e", "ClientSecret" : "TsGlMQro488YSwc0h9NWydZAqHir13PPW2cDMEQBcLgFvaGOnXzOt9MWBhTDBEU7PaXtn9H7Y0QHdcVZolJOsg", "Issuer" : "https://oidc.sandbox.bankid.cz/"}} | json_instruct | {"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required": ["Default", "Microsoft", "Microsoft.Hosting.Lifetime"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}, "BankID": {"type": "object", "properties": {"ClientId": {"type": "string"}, "ClientSecret": {"type": "string"}, "Issuer": {"type": "string"}}, "required": ["ClientId", "ClientSecret", "Issuer"]}}, "required": ["Logging", "AllowedHosts", "BankID"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"generated_at" : "2017-01-27T09:37:34.430561", "required_by" : ["asv_meta"], "requires" : [], "package" : "asv-utils"} | json_instruct | {"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[133.625, 39.166666666666664], [133.625, 39.25], [133.75, 39.25], [133.75, 39.166666666666664], [133.625, 39.166666666666664]]]}, "properties" : {"code" : 583365, "url" : "http://madefor.github.io/0410/api/v1/583365.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/583365.geojson"}} | 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": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "name": {"type": "string"}, "count_objects": {"type": "string"}, "supersedes": {"type": "string"}, "superseded_by": {"type": "string"}}, "required": ["id", "url", "name", "count_objects", "supersedes", "superseded_by"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "35257021", "url" : "http://collection.cooperhewitt.org/types/35257021/", "name" : "tiraz tapestry", "count_objects" : "8", "supersedes" : "0", "superseded_by" : "0"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "name": {"type": "string"}, "count_objects": {"type": "string"}, "supersedes": {"type": "string"}, "superseded_by": {"type": "string"}}, "required": ["id", "url", "name", "count_objects", "supersedes", "superseded_by"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}, "check": {"type": "string"}}, "required": ["test", "lint", "check"]}, "dependencies": {"type": "object", "properties": {"async": {"type": "string"}, "lazy.js": {"type": "string"}, "forever": {"type": "string"}, "express": {"type": "string"}, "ws": {"type": "string"}, "sockjs": {"type": "string"}, "pubnub": {"type": "string"}, "pusher": {"type": "string"}, "pusher-client": {"type": "string"}, "firebase": {"type": "string"}, "fanoutpub": {"type": "string"}, "faye": {"type": "string"}, "hydna": {"type": "string"}, "ibtrealtimesjnode": {"type": "string"}, "syncano": {"type": "string"}}, "required": ["async", "lazy.js", "forever", "express", "ws", "sockjs", "pubnub", "pusher", "pusher-client", "firebase", "fanoutpub", "faye", "hydna", "ibtrealtimesjnode", "syncano"]}, "devDependencies": {"type": "object", "properties": {"jscs": {"type": "string"}, "jshint": {"type": "string"}, "mocha": {"type": "string"}, "chai": {"type": "string"}, "coveralls": {"type": "string"}, "istanbul": {"type": "string"}, "chalk": {"type": "string"}, "json-stringify-safe": {"type": "string"}}, "required": ["jscs", "jshint", "mocha", "chai", "coveralls", "istanbul", "chalk", "json-stringify-safe"]}}, "required": ["name", "main", "author", "version", "license", "private", "engines", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "realtime-benchmark", "main" : "./app/server", "author" : "LetsBlumIt Corp.", "version" : "0.0.1", "license" : "MIT", "private" : true, "engines" : {"node" : ">=0.12.x"}, "scripts" : {"test" : "mocha test", "lint" : "jshint app", "check" : "jscs app"}, "dependencies" : {"async" : "1.2.x", "lazy.js" : "0.4.x", "forever" : "0.15.x", "express" : "4.13.x", "ws" : "0.8.x", "sockjs" : "0.3.x", "pubnub" : "3.7.x", "pusher" : "1.0.x", "pusher-client" : "0.2.x", "firebase" : "2.3.x", "fanoutpub" : "1.0.x", "faye" : "1.1.x", "hydna" : "2.0.x", "ibtrealtimesjnode" : "2.1.x", "syncano" : "0.3.x"}, "devDependencies" : {"jscs" : "2.6.x", "jshint" : "2.8.x", "mocha" : "2.3.x", "chai" : "3.4.x", "coveralls" : "2.11.x", "istanbul" : "0.4.x", "chalk" : "1.0.x", "json-stringify-safe" : "5.0.x"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}, "check": {"type": "string"}}, "required": ["test", "lint", "check"]}, "dependencies": {"type": "object", "properties": {"async": {"type": "string"}, "lazy.js": {"type": "string"}, "forever": {"type": "string"}, "express": {"type": "string"}, "ws": {"type": "string"}, "sockjs": {"type": "string"}, "pubnub": {"type": "string"}, "pusher": {"type": "string"}, "pusher-client": {"type": "string"}, "firebase": {"type": "string"}, "fanoutpub": {"type": "string"}, "faye": {"type": "string"}, "hydna": {"type": "string"}, "ibtrealtimesjnode": {"type": "string"}, "syncano": {"type": "string"}}, "required": ["async", "lazy.js", "forever", "express", "ws", "sockjs", "pubnub", "pusher", "pusher-client", "firebase", "fanoutpub", "faye", "hydna", "ibtrealtimesjnode", "syncano"]}, "devDependencies": {"type": "object", "properties": {"jscs": {"type": "string"}, "jshint": {"type": "string"}, "mocha": {"type": "string"}, "chai": {"type": "string"}, "coveralls": {"type": "string"}, "istanbul": {"type": "string"}, "chalk": {"type": "string"}, "json-stringify-safe": {"type": "string"}}, "required": ["jscs", "jshint", "mocha", "chai", "coveralls", "istanbul", "chalk", "json-stringify-safe"]}}, "required": ["name", "main", "author", "version", "license", "private", "engines", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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": "number"}}}, "group_id": {"type": "integer"}, "shape_type": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}}, "required": ["label", "points", "group_id", "shape_type", "flags"]}}, "imagePath": {"type": "string"}, "imageData": {"type": "string"}, "imageHeight": {"type": "integer"}, "imageWidth": {"type": "integer"}}, "required": ["version", "flags", "shapes", "imagePath", "imageData", "imageHeight", "imageWidth"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "4.5.6", "flags" : {}, "shapes" : [{"label" : "null", "points" : [[1334.0, 689.0], [2096.0, 689.0], [2095.0, 928.0], [1336.0, 917.0]], "group_id" : 0, "shape_type" : "polygon", "flags" : {}}, {"label" : "null", "points" : [[638.0, 630.0], [1242.0, 631.0], [1243.0, 921.0], [645.0, 913.0]], "group_id" : 0, "shape_type" : "polygon", "flags" : {}}], "imagePath" : "img_3435.jpg", "imageData" : "null", "imageHeight" : 1024, "imageWidth" : 2641} | 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": "number"}}}, "group_id": {"type": "integer"}, "shape_type": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}}, "required": ["label", "points", "group_id", "shape_type", "flags"]}}, "imagePath": {"type": "string"}, "imageData": {"type": "string"}, "imageHeight": {"type": "integer"}, "imageWidth": {"type": "integer"}}, "required": ["version", "flags", "shapes", "imagePath", "imageData", "imageHeight", "imageWidth"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"commentStamp": {"type": "string"}, "super": {"type": "string"}, "category": {"type": "string"}, "classinstvars": {"type": "array", "items": {}}, "pools": {"type": "array", "items": {}}, "classvars": {"type": "array", "items": {}}, "instvars": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["commentStamp", "super", "category", "classinstvars", "pools", "classvars", "instvars", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"commentStamp" : "", "super" : "DelphiProgramNode", "category" : "SmaCC-Delphi", "classinstvars" : [], "pools" : [], "classvars" : [], "instvars" : ["libraryToken", "libraryName", "modifier", "semicolons", "usesToken", "moduleNames", "inTokens", "filenames", "commas", "exports", "main", "period"], "name" : "DelphiLibraryFileNode", "type" : "normal"} | json_instruct | {"type": "object", "properties": {"commentStamp": {"type": "string"}, "super": {"type": "string"}, "category": {"type": "string"}, "classinstvars": {"type": "array", "items": {}}, "pools": {"type": "array", "items": {}}, "classvars": {"type": "array", "items": {}}, "instvars": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["commentStamp", "super", "category", "classinstvars", "pools", "classvars", "instvars", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "170501020304", "variable1" : 0.3074, "variable2" : 0.5073, "variable3" : "B"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"count": {"type": "integer"}, "_tpl": {"type": "string"}}, "required": ["count", "_tpl"]}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[{"count" : 1203, "_tpl" : "5449016a4bdc2d6f028b456f"}]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"count": {"type": "integer"}, "_tpl": {"type": "string"}}, "required": ["count", "_tpl"]}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"stellar-sdk.js": {"type": "string"}, "stellar-sdk.min.js": {"type": "string"}}, "required": ["stellar-sdk.js", "stellar-sdk.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stellar-sdk.js" : "sha256-pp5A9Y2sOkHURH69fchs9HNpAFf5o8puDJ8bmkoqi20=", "stellar-sdk.min.js" : "sha256-PB8msnIbFQLfruj8g3rhS3Mn6+oJoqUP0eLKSgeYvJo="} | json_instruct | {"type": "object", "properties": {"stellar-sdk.js": {"type": "string"}, "stellar-sdk.min.js": {"type": "string"}}, "required": ["stellar-sdk.js", "stellar-sdk.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"version": {"type": "string"}, "details_url": {"type": "string"}, "download_url": {"type": "string"}}, "required": ["version", "details_url", "download_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "3.1.9", "details_url" : "https://github.com/vtrois/kratos/releases/tag/v3.1.9", "download_url" : "https://mirrors.vtrois.com/kratos/v3.1.9.zip"} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "details_url": {"type": "string"}, "download_url": {"type": "string"}}, "required": ["version", "details_url", "download_url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"en": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "fr": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["en", "fr"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"en" : {"name" : "Home"}, "fr" : {"name" : "Accueil"}} | json_instruct | {"type": "object", "properties": {"en": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "fr": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["en", "fr"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"install": {"type": "string"}, "test:server:codecov": {"type": "string"}, "test:app:codecov": {"type": "string"}, "test": {"type": "string"}}, "required": ["install", "test:server:codecov", "test:app:codecov", "test"]}}, "required": ["name", "version", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "agorask", "version" : "0.0.1", "scripts" : {"install" : "cd ./server && yarn install && cd ../mobile_app && yarn install", "test:server:codecov" : "cd ./server && yarn run codecov && cd ..", "test:app:codecov" : "cd ./mobile_app && yarn run codecov && cd ..", "test" : " yarn run test:server:codecov && yarn run test:app:codecov"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"install": {"type": "string"}, "test:server:codecov": {"type": "string"}, "test:app:codecov": {"type": "string"}, "test": {"type": "string"}}, "required": ["install", "test:server:codecov", "test:app:codecov", "test"]}}, "required": ["name", "version", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "website": {"type": "string"}, "repository": {"type": "string"}, "logo": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "buildpacks": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "env": {"type": "object", "properties": {"COOKIE_SECRET": {"type": "object", "properties": {"description": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["description", "required"]}, "REMOTE_STYLESHEET": {"type": "object", "properties": {"description": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["description", "required"]}}, "required": ["COOKIE_SECRET", "REMOTE_STYLESHEET"]}}, "required": ["name", "description", "website", "repository", "logo", "keywords", "buildpacks", "env"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Filters", "description" : "Social messaging/chat based around context, people and quality filters. Free and open source. Decentralised. Translatable. Easy to deploy.", "website" : "https://filters.social", "repository" : "https://github.com/FilipNest/filters.social", "logo" : "https://filters.social/icons/filter.svg", "keywords" : ["node", "chat"], "buildpacks" : [{"url" : "https://github.com/heroku/heroku-buildpack-nodejs"}], "env" : {"COOKIE_SECRET" : {"description" : "Cookie secret to validate sessions against", "required" : false}, "REMOTE_STYLESHEET" : {"description" : "URL of a stylesheet to use", "required" : false}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "website": {"type": "string"}, "repository": {"type": "string"}, "logo": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "buildpacks": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "env": {"type": "object", "properties": {"COOKIE_SECRET": {"type": "object", "properties": {"description": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["description", "required"]}, "REMOTE_STYLESHEET": {"type": "object", "properties": {"description": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["description", "required"]}}, "required": ["COOKIE_SECRET", "REMOTE_STYLESHEET"]}}, "required": ["name", "description", "website", "repository", "logo", "keywords", "buildpacks", "env"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@contentful/rich-text-html-renderer": {"type": "string"}, "@types/classnames": {"type": "string"}, "@types/node": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "classnames": {"type": "string"}, "gh-pages": {"type": "string"}, "isomorphic-unfetch": {"type": "string"}, "next": {"type": "string"}, "puppeteer": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "swr": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@contentful/rich-text-html-renderer", "@types/classnames", "@types/node", "@types/react", "@types/react-dom", "classnames", "gh-pages", "isomorphic-unfetch", "next", "puppeteer", "react", "react-dom", "swr", "typescript"]}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}, "export": {"type": "string"}, "pdf": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["dev", "build", "start", "export", "pdf", "deploy"]}, "eslintConfig": {"type": "object", "properties": {"extends": {"type": "string"}}, "required": ["extends"]}, "browserslist": {"type": "object", "properties": {"production": {"type": "array", "items": {"type": "string"}}, "development": {"type": "array", "items": {"type": "string"}}}, "required": ["production", "development"]}, "devDependencies": {"type": "object", "properties": {"express": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["express", "prettier"]}}, "required": ["name", "version", "private", "homepage", "dependencies", "scripts", "eslintConfig", "browserslist", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "curriculum", "version" : "0.1.0", "private" : true, "homepage" : "https://www.danielramos.me", "dependencies" : {"@contentful/rich-text-html-renderer" : "14.1.2", "@types/classnames" : "2.2.11", "@types/node" : "14.14.22", "@types/react" : "17.0.0", "@types/react-dom" : "17.0.0", "classnames" : "2.2.6", "gh-pages" : "3.1.0", "isomorphic-unfetch" : "3.1.0", "next" : "10.0.5", "puppeteer" : "5.5.0", "react" : "17.0.1", "react-dom" : "17.0.1", "swr" : "0.4.0", "typescript" : "4.1.3"}, "scripts" : {"dev" : "next", "build" : "next build", "start" : "next start", "export" : "next export", "pdf" : "node scripts/pdf.js", "deploy" : "gh-pages -t -f -d out -b master"}, "eslintConfig" : {"extends" : "react-app"}, "browserslist" : {"production" : [">0.2%", "not dead", "not op_mini all"], "development" : ["last 1 chrome version", "last 1 firefox version", "last 1 safari version"]}, "devDependencies" : {"express" : "4.17.1", "prettier" : "2.2.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@contentful/rich-text-html-renderer": {"type": "string"}, "@types/classnames": {"type": "string"}, "@types/node": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "classnames": {"type": "string"}, "gh-pages": {"type": "string"}, "isomorphic-unfetch": {"type": "string"}, "next": {"type": "string"}, "puppeteer": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "swr": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@contentful/rich-text-html-renderer", "@types/classnames", "@types/node", "@types/react", "@types/react-dom", "classnames", "gh-pages", "isomorphic-unfetch", "next", "puppeteer", "react", "react-dom", "swr", "typescript"]}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}, "export": {"type": "string"}, "pdf": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["dev", "build", "start", "export", "pdf", "deploy"]}, "eslintConfig": {"type": "object", "properties": {"extends": {"type": "string"}}, "required": ["extends"]}, "browserslist": {"type": "object", "properties": {"production": {"type": "array", "items": {"type": "string"}}, "development": {"type": "array", "items": {"type": "string"}}}, "required": ["production", "development"]}, "devDependencies": {"type": "object", "properties": {"express": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["express", "prettier"]}}, "required": ["name", "version", "private", "homepage", "dependencies", "scripts", "eslintConfig", "browserslist", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0x9b3b38b625ab64e43f43b0b7f6b28607ca8c1123a48fc0786b93c2c72d8a170a", "parentHash" : "0xa31ff63b488ca1e64b0c0b3dcf89df21bde4edbebd85b1eeb4ace66eae8a2f52", "number" : 82508, "timestamp" : 1439520572, "nonce" : "0x3be82aad8c0439b7", "difficulty" : 2374113722590, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xf927a40C8B7F6E07c5af7FA2155B4864a4112B13", "extraData" : "0x", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\u5de5\u5ee0\u540d\u7a31" : "\u6613\u83ef\u96fb\u5b50\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "90N00775", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u9ad8\u96c4\u5e02\u6960\u6893\u5340\u6960\u6893\u52a0\u5de5\u51fa\u53e3\u5340\u65b0\u958b\u767c\u8def6\u30018\u300110\u865f1\u30012\u30013\u30014\u6a13\u300112\u865f1\u30012\u6a13", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u9ad8\u96c4\u5e02\u6960\u6893\u5340", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u674e\u5b9b\u971e", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "76025826", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "0950705", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["26\u96fb\u5b50\u96f6\u7d44\u4ef6\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["263\u5370\u5237\u96fb\u8def\u677f", "269\u5176\u4ed6\u96fb\u5b50\u96f6\u7d44\u4ef6"]} | json_instruct | {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"deploymentId": {"type": "string"}, "isResourceDeleted": {"type": "boolean"}, "resourceMetadata": {"type": "object", "properties": {"arn": {"type": "string"}, "templateArn": {"type": "string"}, "templateMajorVersion": {"type": "string"}, "templateMinorVersion": {"type": "string"}, "environmentArn": {"type": "string"}}, "required": ["arn", "templateArn", "templateMajorVersion", "templateMinorVersion", "environmentArn"]}}, "required": ["deploymentId", "isResourceDeleted", "resourceMetadata"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"deploymentId" : "7c718501-a3d0-4c4b-995c-c20600e3051a", "isResourceDeleted" : false, "resourceMetadata" : {"arn" : "arn:aws:proton:us-east-1:987544922694:service/fourth-bugbash-fargate/service-instance/fourth-bugbash-instance", "templateArn" : "arn:aws:proton:us-east-1:987544922694:service-template/backend-fargate-svc", "templateMajorVersion" : "1", "templateMinorVersion" : "0", "environmentArn" : "arn:aws:proton:us-east-1:987544922694:environment/bugbash-tf-env-fargate"}} | json_instruct | {"type": "object", "properties": {"deploymentId": {"type": "string"}, "isResourceDeleted": {"type": "boolean"}, "resourceMetadata": {"type": "object", "properties": {"arn": {"type": "string"}, "templateArn": {"type": "string"}, "templateMajorVersion": {"type": "string"}, "templateMinorVersion": {"type": "string"}, "environmentArn": {"type": "string"}}, "required": ["arn", "templateArn", "templateMajorVersion", "templateMinorVersion", "environmentArn"]}}, "required": ["deploymentId", "isResourceDeleted", "resourceMetadata"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["apidocs-cli", "cli-utils", "composer-errors", "detect-conflicts", "log-utils", "mukla", "npm-related", "snippet", "to-mit"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {}, "required": []}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"FrostieDE\\ComposerDependencyList\\": {"type": "string"}}, "required": ["FrostieDE\\ComposerDependencyList\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "version", "type", "license", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "frostiede/composer-dependency-list", "description" : "Lists all Composer dependencies.", "version" : "2.0.2", "type" : "library", "license" : "MIT", "authors" : [{"name" : "Marcel Marnitz", "email" : "marcelmarnitz@googlemail.com"}], "require" : {}, "autoload" : {"psr-4" : {"FrostieDE\\ComposerDependencyList\\" : "./src/FrostieDE/ComposerDependencyList"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {}, "required": []}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"FrostieDE\\ComposerDependencyList\\": {"type": "string"}}, "required": ["FrostieDE\\ComposerDependencyList\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "version", "type", "license", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["epr", "eslint-path-formatter", "guerrero", "jasmine2-pit"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"default": {"type": "string"}, "items": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "code": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "code", "authors"]}}}, "required": ["default", "items"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"default" : "en_GB", "items" : [{"name" : "\u010ce\u0161tina", "code" : "cs_CZ", "authors" : ["Bobsik"]}, {"name" : "Deutsch", "code" : "de", "authors" : ["Bj\u00f6rn Bidar <theodorstormgrade@gmail.com>", "Pascal Schmid"]}, {"name" : "English (UK)", "code" : "en_GB", "authors" : ["Piotr Tworek <tworaz666@gmail.com>"]}, {"name" : "Italiano", "code" : "it_IT", "authors" : ["Gio Scino"]}, {"name" : "Nederlands", "code" : "nl_NL", "authors" : ["Heimen Stoffels"]}, {"name" : "\u0420\u0443\u0441\u0441\u043a\u0438\u0439", "code" : "ru_RU", "authors" : ["Petr Tsymbarovich <petr@tsymbarovich.ru>"]}, {"name" : "Svenska", "code" : "sv", "authors" : ["\u00c5ke Engelbrektson <https://svenskasprakfiler.se>"]}]} | json_instruct | {"type": "object", "properties": {"default": {"type": "string"}, "items": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "code": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "code", "authors"]}}}, "required": ["default", "items"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"ts-rap": {"type": "string"}, "rap": {"type": "string"}, "del": {"type": "string"}, "dc": {"type": "string"}}, "required": ["ts-rap", "rap", "del", "dc"]}}, "required": ["private", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"private" : true, "scripts" : {"ts-rap" : "ts-node ./../../src/models.ts", "rap" : "node ./../../dist/models.js", "del" : "node ./../../dist/models.js --del ./src/actions/types/testTypeDemo.ts", "dc" : "node ./../../dist/models.js --dc ./src/actions/types/testTypeDemo.ts"}} | json_instruct | {"type": "object", "properties": {"private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"ts-rap": {"type": "string"}, "rap": {"type": "string"}, "del": {"type": "string"}, "dc": {"type": "string"}}, "required": ["ts-rap", "rap", "del", "dc"]}}, "required": ["private", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"median": {"type": "object", "properties": {"firstView": {"type": "object", "properties": {"chromeUserTiming.CumulativeLayoutShift": {"type": "number"}, "chromeUserTiming.LargestContentfulPaint": {"type": "integer"}, "TotalBlockingTime": {"type": "integer"}}, "required": ["chromeUserTiming.CumulativeLayoutShift", "chromeUserTiming.LargestContentfulPaint", "TotalBlockingTime"]}}, "required": ["firstView"]}}, "required": ["median"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"median" : {"firstView" : {"chromeUserTiming.CumulativeLayoutShift" : 0.1, "chromeUserTiming.LargestContentfulPaint" : 2500, "TotalBlockingTime" : 300}}} | json_instruct | {"type": "object", "properties": {"median": {"type": "object", "properties": {"firstView": {"type": "object", "properties": {"chromeUserTiming.CumulativeLayoutShift": {"type": "number"}, "chromeUserTiming.LargestContentfulPaint": {"type": "integer"}, "TotalBlockingTime": {"type": "integer"}}, "required": ["chromeUserTiming.CumulativeLayoutShift", "chromeUserTiming.LargestContentfulPaint", "TotalBlockingTime"]}}, "required": ["firstView"]}}, "required": ["median"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "parameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "index": {"type": "integer"}, "routingParam": {"type": "boolean"}}, "required": ["name", "index", "routingParam"]}}, "requestPath": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "pathParams": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "url", "pathParams"]}, "body": {"type": "string"}}, "required": ["name", "parameters", "requestPath", "body"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "getContentItemsV1", "parameters" : [{"name" : "contentId", "index" : 0, "routingParam" : false}], "requestPath" : {"type" : "GET", "url" : "/v1/analytics/items/*", "pathParams" : ["contentId"]}, "body" : ""} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "parameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "index": {"type": "integer"}, "routingParam": {"type": "boolean"}}, "required": ["name", "index", "routingParam"]}}, "requestPath": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "pathParams": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "url", "pathParams"]}, "body": {"type": "string"}}, "required": ["name", "parameters", "requestPath", "body"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"lib": {"type": "array", "items": {"type": "string"}}}, "required": ["lib"]}, "tasks": {"type": "object", "properties": {"serve": {"type": "string"}, "bundle": {"type": "string"}}, "required": ["serve", "bundle"]}}, "required": ["compilerOptions", "tasks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"compilerOptions" : {"lib" : ["dom", "deno.ns"]}, "tasks" : {"serve" : "deno run --allow-net=127.0.0.1:8081 --allow-read=. https://deno.land/std@0.130.0/http/file_server.ts . --port 8081 --host 127.0.0.1", "bundle" : "deno bundle index.ts index.js"}} | json_instruct | {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"lib": {"type": "array", "items": {"type": "string"}}}, "required": ["lib"]}, "tasks": {"type": "object", "properties": {"serve": {"type": "string"}, "bundle": {"type": "string"}}, "required": ["serve", "bundle"]}}, "required": ["compilerOptions", "tasks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "minimum-stability": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "psr/http-message": {"type": "string"}, "psr/cache": {"type": "string"}, "php-http/httplug": {"type": "string"}, "php-http/discovery": {"type": "string"}, "php-http/client-common": {"type": "string"}, "php-http/cache-plugin": {"type": "string"}, "php-http/multipart-stream-builder": {"type": "string"}}, "required": ["php", "psr/http-message", "psr/cache", "php-http/httplug", "php-http/discovery", "php-http/client-common", "php-http/cache-plugin", "php-http/multipart-stream-builder"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"PivotalTracker\\": {"type": "string"}}, "required": ["PivotalTracker\\"]}}, "required": ["psr-0"]}}, "required": ["name", "type", "description", "homepage", "keywords", "license", "minimum-stability", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "bariton3/php-pivotal-tracker-api", "type" : "library", "description" : "Pivotal Tracker API v5 client", "homepage" : "https://github.com/bariton3/php-pivotal-tracker-api", "keywords" : ["pivotal tracker"], "license" : "MIT", "minimum-stability" : "dev", "authors" : [{"name" : "Oleksandr Tatarchuk", "email" : "bariton3@yandex.ru"}], "require" : {"php" : "^5.5 || ^7.0", "psr/http-message" : "^1.0", "psr/cache" : "^1.0", "php-http/httplug" : "^1.1", "php-http/discovery" : "^1.0", "php-http/client-common" : "^1.3", "php-http/cache-plugin" : "^1.2", "php-http/multipart-stream-builder" : "^1.0.0"}, "require-dev" : {"phpunit/phpunit" : ">=4.1"}, "autoload" : {"psr-0" : {"PivotalTracker\\" : "lib/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "minimum-stability": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "psr/http-message": {"type": "string"}, "psr/cache": {"type": "string"}, "php-http/httplug": {"type": "string"}, "php-http/discovery": {"type": "string"}, "php-http/client-common": {"type": "string"}, "php-http/cache-plugin": {"type": "string"}, "php-http/multipart-stream-builder": {"type": "string"}}, "required": ["php", "psr/http-message", "psr/cache", "php-http/httplug", "php-http/discovery", "php-http/client-common", "php-http/cache-plugin", "php-http/multipart-stream-builder"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"PivotalTracker\\": {"type": "string"}}, "required": ["PivotalTracker\\"]}}, "required": ["psr-0"]}}, "required": ["name", "type", "description", "homepage", "keywords", "license", "minimum-stability", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"x": {"type": "integer"}}, "required": ["x"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"x" : 1} | json_instruct | {"type": "object", "properties": {"x": {"type": "integer"}}, "required": ["x"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["person_id", "pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : 1.3, "people" : [{"person_id" : [-1], "pose_keypoints_2d" : [721.574, 291.892, 0.969471, 721.529, 409.611, 0.906299, 630.367, 406.72, 0.851866, 595.05, 550.841, 0.950939, 580.316, 683.302, 0.904898, 809.993, 409.659, 0.865705, 839.398, 559.778, 0.878327, 853.966, 686.302, 0.895524, 715.604, 709.807, 0.638887, 648.039, 706.918, 0.609396, 656.857, 957.081, 0.577747, 0, 0, 0, 777.491, 709.868, 0.612346, 759.811, 954.125, 0.632291, 0, 0, 0, 698.123, 274.257, 0.951497, 742.154, 271.349, 0.971649, 674.479, 294.798, 0.8096, 768.646, 291.876, 0.892993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]} | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["person_id", "pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.