input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "233524592", "name" : "Vintners Close", "nodes" : [{"type" : "node", "id" : 2418994029, "lat" : 52.5774893, "lon" : -0.2606413}, {"type" : "node", "id" : 2418994035, "lat" : 52.5776881, "lon" : -0.2603891}, {"type" : "node", "id" : 2418994037, "lat" : 52.5778413, "lon" : -0.2594128}, {"type" : "node", "id" : 2418994039, "lat" : 52.5773523, "lon" : -0.260652}, {"type" : "node", "id" : 2418994046, "lat" : 52.5771568, "lon" : -0.2606413}, {"type" : "node", "id" : 2418994047, "lat" : 52.5776327, "lon" : -0.2605876}, {"type" : "node", "id" : 6744649799, "lat" : 52.5778066, "lon" : -0.2596338}], "volunteer_postcode" : "PE8 6QF", "closest_distance" : 18769} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"uuid": {"type": "string"}, "children": {"type": "array", "items": {"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", "children", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"uuid" : "06657413-c653-4335-8efb-e81227af37de", "children" : ["506984d0-d587-4f49-b489-8c2417a42680"], "befores" : [{"name" : "gen", "status" : "passed", "start" : 1555196340031, "stop" : 1555196340834}], "start" : 1555196340031, "stop" : 1555196344211} | json_instruct | {"type": "object", "properties": {"uuid": {"type": "string"}, "children": {"type": "array", "items": {"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", "children", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"version": {"type": "string"}, "configurations": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "request": {"type": "string"}, "mainClass": {"type": "string"}, "projectName": {"type": "string"}}, "required": ["type", "name", "request", "mainClass", "projectName"]}}}, "required": ["version", "configurations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "0.2.0", "configurations" : [{"type" : "java", "name" : "Launch App", "request" : "launch", "mainClass" : "ru.zgz.star.backend.App", "projectName" : "backend"}]} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "configurations": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "request": {"type": "string"}, "mainClass": {"type": "string"}, "projectName": {"type": "string"}}, "required": ["type", "name", "request", "mainClass", "projectName"]}}}, "required": ["version", "configurations"], "$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"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"jasmine-core": {"type": "string"}, "karma": {"type": "string"}, "karma-jasmine": {"type": "string"}, "karma-chrome-launcher": {"type": "string"}, "karma-cli": {"type": "string"}, "karma-phantomjs-launcher": {"type": "string"}, "karma-firefox-launcher": {"type": "string"}, "karma-ng-html2js-preprocessor": {"type": "string"}}, "required": ["jasmine-core", "karma", "karma-jasmine", "karma-chrome-launcher", "karma-cli", "karma-phantomjs-launcher", "karma-firefox-launcher", "karma-ng-html2js-preprocessor"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "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"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "homepage", "authors", "description", "dependencies", "devDependencies", "scripts", "keywords", "license", "repository", "bugs", "main", "directories", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ionic-ng-walkthrough", "version" : "1.0.0", "homepage" : "https://github.com/sopraux/ionic-ng-walkthrough", "authors" : ["Ophir Stern <souly01@gmail.com>", "Ariadna Gomez <ari.grr@gmail.com>", "Sopra Steria Digital SC <digital@sopra.com>"], "description" : "One of the most common design challenges emerging in mobile design is that of 'invitation' - creating an explanation walk through during user first interaction with the app so to engage the customer. Following Theresa Neil's design pattern from Mobile Design Pattern Gallery", "dependencies" : {}, "devDependencies" : {"jasmine-core" : "^2.4.1", "karma" : "~0.12.0", "karma-jasmine" : "^0.2.0", "karma-chrome-launcher" : "^0.1.4", "karma-cli" : "~0.0.4", "karma-phantomjs-launcher" : "~0.1", "karma-firefox-launcher" : "^0.1.4", "karma-ng-html2js-preprocessor" : "^0.1.0"}, "scripts" : {"test" : "karma start karma.conf.js --single-run"}, "keywords" : ["angularjs", "directive", "walkthrough", "onboarding", "walk-through", "on-boarding", "tour guide"], "license" : "MIT", "repository" : {"type" : "git", "url" : "https://github.com/sopraux/ionic-ng-walkthrough.git"}, "bugs" : {"url" : "https://github.com/sopra/ionic-ng-walkthrough/issues"}, "main" : "karma.conf.js", "directories" : {"test" : "test"}, "ignore" : ["**/.*", "node_modules", "bower_components", "screenshots", "icons", "test", "tests"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"jasmine-core": {"type": "string"}, "karma": {"type": "string"}, "karma-jasmine": {"type": "string"}, "karma-chrome-launcher": {"type": "string"}, "karma-cli": {"type": "string"}, "karma-phantomjs-launcher": {"type": "string"}, "karma-firefox-launcher": {"type": "string"}, "karma-ng-html2js-preprocessor": {"type": "string"}}, "required": ["jasmine-core", "karma", "karma-jasmine", "karma-chrome-launcher", "karma-cli", "karma-phantomjs-launcher", "karma-firefox-launcher", "karma-ng-html2js-preprocessor"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "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"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "homepage", "authors", "description", "dependencies", "devDependencies", "scripts", "keywords", "license", "repository", "bugs", "main", "directories", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"colors": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "readline-sync": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["colors", "readline-sync"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "conslog", "version" : "1.2.0", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"colors" : {"version" : "1.4.0", "resolved" : "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", "integrity" : "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA=="}, "readline-sync" : {"version" : "1.4.10", "resolved" : "https://registry.npmjs.org/readline-sync/-/readline-sync-1.4.10.tgz", "integrity" : "sha512-gNva8/6UAe8QYepIQH/jQ2qn91Qj0B9sYjMBBs3QOB8F2CXcKgLxQaJRP76sWVRQt+QU+8fAkCbCvjjMFu7Ycw=="}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"colors": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "readline-sync": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["colors", "readline-sync"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "avaplus:block/black_hole_generator"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"frame_id": {"type": "integer"}, "walking": {"type": "string"}, "video_id": {"type": "string"}, "bbs": {"type": "array", "items": {"type": "object", "properties": {"artwork_id": {"type": "string"}, "right": {"type": "number"}, "bottom": {"type": "number"}, "top": {"type": "number"}, "confidence": {"type": "integer"}, "recognized": {"type": "boolean"}, "bb_big_enough": {"type": "boolean"}, "class": {"type": "string"}, "left": {"type": "number"}}, "required": ["artwork_id", "right", "bottom", "top", "confidence", "recognized", "bb_big_enough", "class", "left"]}}, "p_voice": {"type": "string"}}, "required": ["frame_id", "walking", "video_id", "bbs", "p_voice"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"frame_id" : 496, "walking" : "0", "video_id" : "VID_20161007_131547_reduced", "bbs" : [{"artwork_id" : "marzocco", "right" : 0.760421, "bottom" : 0.666553, "top" : 0.148136, "confidence" : 233, "recognized" : true, "bb_big_enough" : true, "class" : "artwork", "left" : 0.320283}], "p_voice" : "0"} | json_instruct | {"type": "object", "properties": {"frame_id": {"type": "integer"}, "walking": {"type": "string"}, "video_id": {"type": "string"}, "bbs": {"type": "array", "items": {"type": "object", "properties": {"artwork_id": {"type": "string"}, "right": {"type": "number"}, "bottom": {"type": "number"}, "top": {"type": "number"}, "confidence": {"type": "integer"}, "recognized": {"type": "boolean"}, "bb_big_enough": {"type": "boolean"}, "class": {"type": "string"}, "left": {"type": "number"}}, "required": ["artwork_id", "right", "bottom", "top", "confidence", "recognized", "bb_big_enough", "class", "left"]}}, "p_voice": {"type": "string"}}, "required": ["frame_id", "walking", "video_id", "bbs", "p_voice"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "prefs-math": {"type": "string"}}, "required": ["@metadata", "prefs-math"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"@metadata" : {"authors" : ["Ezagren", "J Subhi"]}, "prefs-math" : "Matik"} | json_instruct | {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "prefs-math": {"type": "string"}}, "required": ["@metadata", "prefs-math"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"postal_code" : "63923", "place_name" : "La Otra Banda", "place_type" : "Colonia", "county" : "Ahuacatl\u00e1n", "state" : "Nayarit", "city" : "Ahuacatl\u00e1n"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}, "31": {"type": "string"}, "32": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"edges" : [[21, 28], [18, 28], [23, 5], [5, 28], [28, 30], [28, 8], [28, 19], [20, 3], [28, 16], [28, 26], [29, 28], [28, 17], [16, 10], [27, 7], [28, 11], [28, 2], [28, 5], [9, 28], [28, 1], [12, 28], [28, 17], [28, 9], [2, 28], [4, 5], [6, 28], [28, 17], [10, 28], [28, 11], [21, 28], [6, 28], [17, 28], [28, 9], [7, 14], [5, 28], [0, 28], [31, 28], [1, 25], [22, 28], [28, 25], [9, 13], [10, 28], [28, 9], [15, 28], [5, 28], [21, 28], [5, 24], [28, 12], [1, 28], [9, 28], [28, 8], [28, 5], [28, 0], [28, 2], [28, 2], [32, 5], [25, 28]], "features" : {"0" : "2", "1" : "3", "2" : "4", "3" : "1", "4" : "1", "5" : "9", "6" : "2", "7" : "2", "8" : "2", "9" : "6", "10" : "3", "11" : "2", "12" : "2", "13" : "1", "14" : "1", "15" : "1", "16" : "2", "17" : "4", "18" : "1", "19" : "1", "20" : "1", "21" : "3", "22" : "1", "23" : "1", "24" : "1", "25" : "3", "26" : "1", "27" : "1", "28" : "46", "29" : "1", "30" : "1", "31" : "1", "32" : "1"}} | json_instruct | {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}, "31": {"type": "string"}, "32": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"cluster_permissions": {"type": "array", "items": {"type": "string"}}, "index_permissions": {"type": "array", "items": {"type": "object", "properties": {"index_patterns": {"type": "array", "items": {"type": "string"}}, "allowed_actions": {"type": "array", "items": {"type": "string"}}}, "required": ["index_patterns", "allowed_actions"]}}, "tenant_permissions": {"type": "array", "items": {}}}, "required": ["cluster_permissions", "index_permissions", "tenant_permissions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cluster_permissions" : ["cluster:monitor*"], "index_permissions" : [{"index_patterns" : ["sf"], "allowed_actions" : ["OPENDISTRO_SECURITY_CRUD"]}, {"index_patterns" : ["pub"], "allowed_actions" : ["OPENDISTRO_SECURITY_CRUD"]}], "tenant_permissions" : []} | json_instruct | {"type": "object", "properties": {"cluster_permissions": {"type": "array", "items": {"type": "string"}}, "index_permissions": {"type": "array", "items": {"type": "object", "properties": {"index_patterns": {"type": "array", "items": {"type": "string"}}, "allowed_actions": {"type": "array", "items": {"type": "string"}}}, "required": ["index_patterns", "allowed_actions"]}}, "tenant_permissions": {"type": "array", "items": {}}}, "required": ["cluster_permissions", "index_permissions", "tenant_permissions"], "$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" : 5017, "cartId" : "74c2e7ea-0083-4e0f-af67-d7f72741177d", "preferredProducts" : [1152, 933, 4876, 4020, 3460], "productReviews" : [{"productId" : 626, "reviewText" : "It only works when I'm Mauritania.", "reviewDate" : "2017-11-26T08:07:54.3697379+02:00"}, {"productId" : 28, "reviewText" : "talk about hatred.", "reviewDate" : "2019-09-25T15:57:06.3157194+03:00"}, {"productId" : 3024, "reviewText" : "The box this comes in is 5 kilometer by 5 inch and weights 13 kilogram!!!", "reviewDate" : "2017-11-28T18:06:49.9021195+02:00"}, {"productId" : 2898, "reviewText" : "I tried to slay it but got truffle all over it.", "reviewDate" : "2018-04-15T18:29:22.9807768+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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "university": {"type": "object", "properties": {"fullName": {"type": "string"}, "shortName": {"type": "string"}, "region": {"type": "string"}, "hashTag": {"type": "string"}, "url": {"type": "string"}, "myIcpcId": {"type": "string"}, "appearances": {"type": "integer"}, "wins": {"type": "integer"}, "gold": {"type": "integer"}, "silver": {"type": "integer"}, "bronze": {"type": "integer"}, "regionalChampionships": {"type": "integer"}}, "required": ["fullName", "shortName", "region", "hashTag", "url", "myIcpcId", "appearances", "wins", "gold", "silver", "bronze", "regionalChampionships"]}, "team": {"type": "object", "properties": {"name": {"type": "string"}, "regionals": {"type": "array", "items": {"type": "string"}}, "openCupPlace": {"type": "integer"}, "openCupTimes": {"type": "integer"}}, "required": ["name", "regionals", "openCupPlace", "openCupTimes"]}, "coach": {"type": "object", "properties": {"name": {"type": "string"}, "altNames": {"type": "array", "items": {"type": "string"}}, "tcRating": {"type": "integer"}, "cfRating": {"type": "integer"}, "achievements": {"type": "array", "items": {}}}, "required": ["name", "altNames", "tcRating", "cfRating", "achievements"]}, "contestants": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "altNames": {"type": "array", "items": {"type": "string"}}, "tcRating": {"type": "integer"}, "cfRating": {"type": "integer"}, "twitterHandle": {"type": "string"}, "achievements": {"type": "array", "items": {}}}, "required": ["name", "altNames", "tcRating", "cfRating", "twitterHandle", "achievements"]}}}, "required": ["id", "university", "team", "coach", "contestants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 85, "university" : {"fullName" : "Universidad Mayor de San Simon - Sistemas", "shortName" : "UMSS", "region" : "Latin America", "hashTag" : "UMSS", "url" : "http://www.umss.edu.bo/", "myIcpcId" : "311517", "appearances" : 1, "wins" : 0, "gold" : 0, "silver" : 0, "bronze" : 0, "regionalChampionships" : 0}, "team" : {"name" : "team.getAnotherName()", "regionals" : ["The 2016 ACM-ICPC South America/South Finals, 20th"], "openCupPlace" : -1, "openCupTimes" : 0}, "coach" : {"name" : "LETICIA BLANCO COCA", "altNames" : ["BLANCO COCA LETICIA"], "tcRating" : -1, "cfRating" : -1, "achievements" : []}, "contestants" : [{"name" : "Alex Cardona Siles", "altNames" : ["Cardona Siles Alex"], "tcRating" : -1, "cfRating" : -1, "twitterHandle" : "Cachnd", "achievements" : []}, {"name" : "Javier Eduardo Ojeda Jorge", "altNames" : ["Ojeda Jorge Javier Eduardo"], "tcRating" : -1, "cfHandle" : "jeoj", "cfRating" : 1363, "twitterHandle" : "JavierOjeda", "achievements" : []}, {"name" : "Miguel Diaz Iturry", "altNames" : ["Diaz Iturry Miguel"], "tcRating" : -1, "cfRating" : -1, "twitterHandle" : "zahisho", "achievements" : []}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "university": {"type": "object", "properties": {"fullName": {"type": "string"}, "shortName": {"type": "string"}, "region": {"type": "string"}, "hashTag": {"type": "string"}, "url": {"type": "string"}, "myIcpcId": {"type": "string"}, "appearances": {"type": "integer"}, "wins": {"type": "integer"}, "gold": {"type": "integer"}, "silver": {"type": "integer"}, "bronze": {"type": "integer"}, "regionalChampionships": {"type": "integer"}}, "required": ["fullName", "shortName", "region", "hashTag", "url", "myIcpcId", "appearances", "wins", "gold", "silver", "bronze", "regionalChampionships"]}, "team": {"type": "object", "properties": {"name": {"type": "string"}, "regionals": {"type": "array", "items": {"type": "string"}}, "openCupPlace": {"type": "integer"}, "openCupTimes": {"type": "integer"}}, "required": ["name", "regionals", "openCupPlace", "openCupTimes"]}, "coach": {"type": "object", "properties": {"name": {"type": "string"}, "altNames": {"type": "array", "items": {"type": "string"}}, "tcRating": {"type": "integer"}, "cfRating": {"type": "integer"}, "achievements": {"type": "array", "items": {}}}, "required": ["name", "altNames", "tcRating", "cfRating", "achievements"]}, "contestants": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "altNames": {"type": "array", "items": {"type": "string"}}, "tcRating": {"type": "integer"}, "cfRating": {"type": "integer"}, "twitterHandle": {"type": "string"}, "achievements": {"type": "array", "items": {}}}, "required": ["name", "altNames", "tcRating", "cfRating", "twitterHandle", "achievements"]}}}, "required": ["id", "university", "team", "coach", "contestants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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" : 44701, "cartId" : "0b6963cc-0247-491a-ae0d-935df84f9b41", "preferredProducts" : [1862, 3187, 1654], "productReviews" : [{"productId" : 856, "reviewText" : "talk about bliss!!", "reviewDate" : "2018-12-07T21:04:13.7044213+02:00"}, {"productId" : 2566, "reviewText" : "The box this comes in is 3 kilometer by 5 foot and weights 16 megaton!!!", "reviewDate" : "2018-12-22T03:53:03.7186827+02:00"}, {"productId" : 2976, "reviewText" : "one of my hobbies is skateboarding. and when i'm skateboarding this works great.", "reviewDate" : "2019-05-07T05:38:13.4074174+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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "yiisoft/yii2": {"type": "string"}, "yiisoft/yii2-jui": {"type": "string"}, "bower-asset/ckeditor": {"type": "string"}}, "required": ["php", "yiisoft/yii2", "yiisoft/yii2-jui", "bower-asset/ckeditor"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "support": {"type": "object", "properties": {"source": {"type": "string"}, "issues": {"type": "string"}}, "required": ["source", "issues"]}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"edofre\\ckeditor\\": {"type": "string"}}, "required": ["edofre\\ckeditor\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["branch-alias"]}}, "required": ["name", "description", "require", "keywords", "homepage", "type", "license", "support", "authors", "autoload", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "edofre/yii2-ckeditor", "description" : "Yii2 widget for ckeditor", "require" : {"php" : ">=5.5.0", "yiisoft/yii2" : "*", "yiisoft/yii2-jui" : "*", "bower-asset/ckeditor" : "~4.8.0"}, "keywords" : ["editor", "text", "widget", "ckeditor"], "homepage" : "https://github.com/edofre/yii2-ckeditor", "type" : "yii2-extension", "license" : "MIT", "support" : {"source" : "https://github.com/edofre/yii2-ckeditor", "issues" : "https://github.com/edofre/yii2-ckeditor/issues"}, "authors" : [{"name" : "Edo Freriks", "email" : "edofre@gmail.com"}], "autoload" : {"psr-4" : {"edofre\\ckeditor\\" : "src"}}, "extra" : {"branch-alias" : {"dev-master" : "1.0.x-dev"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "yiisoft/yii2": {"type": "string"}, "yiisoft/yii2-jui": {"type": "string"}, "bower-asset/ckeditor": {"type": "string"}}, "required": ["php", "yiisoft/yii2", "yiisoft/yii2-jui", "bower-asset/ckeditor"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "support": {"type": "object", "properties": {"source": {"type": "string"}, "issues": {"type": "string"}}, "required": ["source", "issues"]}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"edofre\\ckeditor\\": {"type": "string"}}, "required": ["edofre\\ckeditor\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["branch-alias"]}}, "required": ["name", "description", "require", "keywords", "homepage", "type", "license", "support", "authors", "autoload", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"answers": {"type": "array", "items": {"type": "string"}}, "centerLetter": {"type": "string"}, "letterString": {"type": "string"}, "outerLetters": {"type": "array", "items": {"type": "string"}}, "pangrams": {"type": "array", "items": {"type": "string"}}, "validLetters": {"type": "array", "items": {"type": "string"}}}, "required": ["answers", "centerLetter", "letterString", "outerLetters", "pangrams", "validLetters"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"answers" : ["alay", "aliya", "allay", "alloy", "ally", "allyl", "ayaya", "illy", "jivy", "jollily", "jolly", "jovially", "lavvy", "lily", "lolly", "loyal", "loyally", "oilily", "oily", "ovally", "yill"], "centerLetter" : "y", "letterString" : "yaijlov", "outerLetters" : ["a", "i", "j", "l", "o", "v"], "pangrams" : ["jovially"], "validLetters" : ["a", "i", "j", "l", "o", "v", "y"]} | json_instruct | {"type": "object", "properties": {"answers": {"type": "array", "items": {"type": "string"}}, "centerLetter": {"type": "string"}, "letterString": {"type": "string"}, "outerLetters": {"type": "array", "items": {"type": "string"}}, "pangrams": {"type": "array", "items": {"type": "string"}}, "validLetters": {"type": "array", "items": {"type": "string"}}}, "required": ["answers", "centerLetter", "letterString", "outerLetters", "pangrams", "validLetters"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"series": {"type": "object", "properties": {"type": {"type": "string"}, "data": {"type": "object", "properties": {"x": {"type": "array", "items": {"type": "integer"}}, "y": {"type": "array", "items": {"type": "integer"}}}, "required": ["x", "y"]}, "style": {"type": "object", "properties": {"marker": {"type": "object", "properties": {"shape": {"type": "string"}, "x": {"type": "integer"}, "y": {"type": "integer"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "fill": {"type": "string"}, "fill-opacity": {"type": "number"}, "stroke": {"type": "string"}, "stroke-opacity": {"type": "number"}}, "required": ["shape", "x", "y", "width", "height", "fill", "fill-opacity", "stroke", "stroke-opacity"]}}, "required": ["marker"]}}, "required": ["type", "data", "style"]}}, "required": ["series"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"series" : {"type" : "scatter", "data" : {"x" : [1, 2, 3, 4, 5], "y" : [1, 2, 3, 2, 1]}, "style" : {"marker" : {"shape" : "rect", "x" : -2, "y" : -2, "width" : 4, "height" : 4, "fill" : "white", "fill-opacity" : 0.9, "stroke" : "blue", "stroke-opacity" : 0.7}}}} | json_instruct | {"type": "object", "properties": {"series": {"type": "object", "properties": {"type": {"type": "string"}, "data": {"type": "object", "properties": {"x": {"type": "array", "items": {"type": "integer"}}, "y": {"type": "array", "items": {"type": "integer"}}}, "required": ["x", "y"]}, "style": {"type": "object", "properties": {"marker": {"type": "object", "properties": {"shape": {"type": "string"}, "x": {"type": "integer"}, "y": {"type": "integer"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "fill": {"type": "string"}, "fill-opacity": {"type": "number"}, "stroke": {"type": "string"}, "stroke-opacity": {"type": "number"}}, "required": ["shape", "x", "y", "width", "height", "fill", "fill-opacity", "stroke", "stroke-opacity"]}}, "required": ["marker"]}}, "required": ["type", "data", "style"]}}, "required": ["series"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}, "additional": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}}, "required": ["main", "additional"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 138278, "info" : {"name" : "Qiita\u7740\u8272", "description" : "<p>\u300c\u898b\u51fa\u3057\u3001\u6587\u7ae0\u3001\u30b5\u30a4\u30c9\u30d0\u30fc\u300dQiita\u306f\u767d\u4e00\u8272\u306e\u30c7\u30b6\u30a4\u30f3\u3067\u3069\u308c\u304c\u898b\u51fa\u3057\u306a\u306e\u304b\u3001\u8996\u8a8d\uff08\u6587\u5b57\u306e\u5927\u304d\u3055\uff09\u3067\u8003\u3048\u308b\u306e\u304c\u5104\u52ab\u306a\u305f\u3081\u4f5c\u308a\u307e\u3057\u305f\u3002</p>\r\n<p>\u3064\u3044\u3067\u306b\u5e83\u544a\u3082\u975e\u8868\u793a\u5316\u3057\u307e\u3057\u305f\u3002</p>\r\n<p>\u307b\u307c\u500b\u4eba\u7528\u3067\u3059\u3002</p>", "additionalInfo" : null, "format" : "uso", "category" : "qiita", "createdAt" : "2017-01-29T01:01:53.000Z", "updatedAt" : "2017-05-01T16:54:44.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 383308, "name" : "\u90fd\u5e02\u4e09\u90ce"}}, "stats" : {"installs" : {"total" : 102, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "138278_after.png", "archived" : false}, "additional" : [{"name" : "138278_additional_24518.png", "archived" : false}]}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document url-prefix(\"http://qiita.com/\") {\r\n/* ===== \u898b\u51fa\u3057 \r\n\u9ec4\u3000\u8d64\u3000\u7dd1 \u6843 */\r\nsection>h1{\r\n background: #FFFCE3;\r\n}\r\nsection>h2{\r\n background: #FBE9E2;\r\n}\r\nsection>h3{\r\n background: #e0ffe0;\r\n}\r\nsection>h4{\r\n background: #fdf6fc;\r\n}\r\n/* \u3064\u3044\u3066\u304f\u308b\u30c4\u30ea\u30fc\u8272 */\r\ndiv.tocTree_contents{\r\n background: hsla(19,0%,4%,.75);\r\n}\r\n.tocTree_contents a{\r\n color:#fff !important;\r\n}\r\n.tocTree_contents .active > a, .tocTree_contents a:hover{\r\n background: hsla(190,100%,80%,.4);\r\n}\r\n/*\u3000===== \u5f15\u7528 ===== */\r\nblockquote{\r\n background: #f4f4f4;\r\n}\r\npre{\r\n background: #e6e6fa !important;\r\n}\r\n/* ========== \u5e83\u544a\u9664\u53bb ========== */\r\n.scroll-chaser,.adsbygoogle\r\n,.col-sm-3>div:first-child{\r\n display:none !important;\r\n}\r\n\r\n@media screen and (min-width:1399px) {\r\ndiv.tocTree{\r\n width:400px !important; \r\n}\r\n}\r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}, "additional": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}}, "required": ["main", "additional"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "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" : 404394775, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "72c0b89177c01496f05eda17bf5c2cb6", "wof:id" : 404394775, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [2.63966606791089, 48.12054154374054, 2.75519830556672, 48.17744485322524], "geometry" : {"coordinates" : [[[2.66474811510003, 48.12054154374054], [2.63966606791089, 48.13895036982027], [2.64871175106265, 48.14128123572077], [2.65019683540007, 48.14440807779636], [2.66483274626243, 48.14535039650853], [2.66882585048437, 48.15825622463044], [2.6771517411602, 48.16027690459178], [2.6841333085078, 48.1690420525637], [2.69208842414895, 48.17275231885426], [2.71168992476114, 48.17744485322524], [2.73096855688269, 48.17224445233401], [2.73640600179847, 48.16630893789026], [2.75425493746622, 48.15190531847387], [2.75519830556672, 48.14565347849079], [2.72246141123341, 48.13741052929319], [2.70654706960447, 48.12481924580505], [2.6754844910602, 48.12516979186548], [2.66756955790782, 48.12066651110738], [2.66474811510003, 48.12054154374054]]], "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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"latestVersion": {"type": "string"}, "latestVersionCode": {"type": "integer"}, "url": {"type": "string"}, "releaseNotes": {"type": "array", "items": {}}}, "required": ["latestVersion", "latestVersionCode", "url", "releaseNotes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"latestVersion" : "1.0.2", "latestVersionCode" : 0, "url" : "https://raw.githubusercontent.com/MD2Korg/mCerebrum-releases/master/2.0/edu.dartmouth.alertness/sensing1.0.2.apk", "releaseNotes" : []} | json_instruct | {"type": "object", "properties": {"latestVersion": {"type": "string"}, "latestVersionCode": {"type": "integer"}, "url": {"type": "string"}, "releaseNotes": {"type": "array", "items": {}}}, "required": ["latestVersion", "latestVersionCode", "url", "releaseNotes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "title": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "chapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["title", "chaptersection", "identifier", "catch_text"]}}, "required": ["text", "historical", "credits", "sections", "division", "title", "chapter", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : "An individual shall be presumed capable of making health-care decisions unless certified otherwise under \u00a7 21-2204. Mental incapacity to make a health-care decision shall not be inferred from the fact that an individual:", "historical" : "Prior Codifications\n\n1981 Ed., \u00a7 21-2203.\n\nEffect of Amendments\n\nD.C. Law 16-305, in par. (2), substituted \"Has a diagnosis of mental retardation\" for \"Is mentally retarded\".\n\nD.C. Law 19-169, in par. (2), substituted \"an intellectual disability\" for \"mental retardation\".\n\nLegislative History of Laws\n\nFor legislative history of D.C. Law 7-189, see Historical and Statutory Notes following \u00a7 21-2201.\n\nFor legislative history of D.C. Law 10-68, see Historical and Statutory Notes following \u00a7 21-2201.\n\nFor Law 16-305, see notes following \u00a7 21-501.\n\nFor history of Law 19-169, see notes under \u00a7 21-501.\n\nDC CODE \u00a7 21-2203\n\nCurrent through December 11, 2012", "credits" : "(Mar. 16, 1989, D.C. Law 7-189, \u00a7 4, 35 DCR 8653; Feb. 5, 1994, D.C. Law 10-68, \u00a7 23(d), 40 DCR 6311; Apr. 24, 2007, D.C. Law 16-305, \u00a7 35(d), 53 DCR 6198; Sept. 26, 2012, D.C. Law 19-169, \u00a7 21(i), 59 DCR 5567.)", "sections" : [{"prefix" : "1", "text" : " Has been voluntarily or involuntarily hospitalized for mental illness pursuant to \u00a7 21-501 et seq.;"}, {"prefix" : "2", "text" : " Has a diagnosis of an intellectual disability or has been determined by a court to be incompetent to refuse commitment under \u00a7 7-1301.01 et seq.; or"}, {"prefix" : "3", "text" : " Has a conservator or guardian appointed pursuant to \u00a7 21-1501 et seq. or \u00a7 21-2001 et seq."}], "division" : {"identifier" : "III", "text" : "Decedents' Estates and Fiduciary Relations."}, "title" : {"identifier" : "21", "text" : "Fiduciary Relations and Persons with Mental Illness. (Refs & Annos)"}, "chapter" : {"identifier" : "22", "text" : "Health-Care Decisions. (Refs & Annos)"}, "heading" : {"title" : "21", "chaptersection" : "2203", "identifier" : "21-2203", "catch_text" : "Presumption of capacity."}} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "title": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "chapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["title", "chaptersection", "identifier", "catch_text"]}}, "required": ["text", "historical", "credits", "sections", "division", "title", "chapter", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"output_path": {"type": "string"}}, "required": ["output_path"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"output_path" : "logs"} | json_instruct | {"type": "object", "properties": {"output_path": {"type": "string"}}, "required": ["output_path"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:visual": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "test:visual", "build"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@open-wc/testing": {"type": "string"}, "@web/test-runner-puppeteer": {"type": "string"}, "sass": {"type": "string"}}, "required": ["@open-wc/testing", "@web/test-runner-puppeteer", "sass"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@cagov/ds-base-css", "version" : "1.0.13", "description" : "", "main" : "src/_core.scss", "scripts" : {"test" : "web-test-runner \"test/**/*.js\" --node-resolve", "test:visual" : "web-test-runner \"test/**/*.js\" --node-resolve --config test-config.js", "build" : "sass src/themes/_cannabis.scss dist/themes/cannabis.css && sass src/themes/_drought.scss dist/themes/drought.css && sass src/themes/_cagov.scss dist/themes/cagov.css"}, "keywords" : [], "author" : "", "license" : "ISC", "devDependencies" : {"@open-wc/testing" : "^3.0.1", "@web/test-runner-puppeteer" : "^0.10.2", "sass" : "^1.37.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:visual": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "test:visual", "build"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@open-wc/testing": {"type": "string"}, "@web/test-runner-puppeteer": {"type": "string"}, "sass": {"type": "string"}}, "required": ["@open-wc/testing", "@web/test-runner-puppeteer", "sass"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "host": {"type": "string"}, "protocol": {"type": "string"}, "port": {"type": "integer"}, "username": {"type": "string"}, "password": {"type": "string"}, "remotePath": {"type": "string"}, "uploadOnSave": {"type": "boolean"}}, "required": ["name", "host", "protocol", "port", "username", "password", "remotePath", "uploadOnSave"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "My Server", "host" : "192.168.20.20", "protocol" : "ftp", "port" : 21, "username" : "envanter", "password" : "envanter", "remotePath" : "/", "uploadOnSave" : true} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "host": {"type": "string"}, "protocol": {"type": "string"}, "port": {"type": "integer"}, "username": {"type": "string"}, "password": {"type": "string"}, "remotePath": {"type": "string"}, "uploadOnSave": {"type": "boolean"}}, "required": ["name", "host", "protocol", "port", "username", "password", "remotePath", "uploadOnSave"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : "2001", "provinceId" : "82", "regencyId" : "05", "districtId" : "01", "name" : "Waitina"}, {"id" : "2006", "provinceId" : "82", "regencyId" : "05", "districtId" : "01", "name" : "Kau"}, {"id" : "2007", "provinceId" : "82", "regencyId" : "05", "districtId" : "01", "name" : "Waitamela"}, {"id" : "2013", "provinceId" : "82", "regencyId" : "05", "districtId" : "01", "name" : "Karamat Titdoy"}, {"id" : "2016", "provinceId" : "82", "regencyId" : "05", "districtId" : "01", "name" : "Naflo"}] | 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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"pencil": {"type": "string"}}, "required": ["pencil"]}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}}, "required": ["lib"]}, "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"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}}, "required": ["eslint"]}, "dependencies": {"type": "object", "properties": {"ejs": {"type": "string"}, "express": {"type": "string"}, "fs-extra": {"type": "string"}, "js-yaml": {"type": "string"}, "jsdom": {"type": "string"}, "log4js": {"type": "string"}, "lru-cache": {"type": "string"}, "marked": {"type": "string"}, "moment": {"type": "string"}, "opn": {"type": "string"}, "rss": {"type": "string"}}, "required": ["ejs", "express", "fs-extra", "js-yaml", "jsdom", "log4js", "lru-cache", "marked", "moment", "opn", "rss"]}}, "required": ["name", "version", "description", "main", "bin", "directories", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "pencil-cli", "version" : "2.0.7", "description" : "static blog generator", "main" : "bin/pencil.js", "bin" : {"pencil" : "bin/pencil.js"}, "directories" : {"lib" : "lib"}, "scripts" : {"test" : "mocha --no-timeouts --bail ./test/test.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/zhouzh1/pencil.git"}, "keywords" : ["static", "blog", "generator"], "author" : "zhouzh1", "license" : "MIT", "bugs" : {"url" : "https://github.com/zhouzh1/pencil/issues"}, "homepage" : "https://github.com/zhouzh1/pencil#readme", "devDependencies" : {"eslint" : "^4.19.1"}, "dependencies" : {"ejs" : "^2.6.1", "express" : "^4.17.0", "fs-extra" : "^3.0.1", "js-yaml" : "^3.13.1", "jsdom" : "^11.12.0", "log4js" : "^1.1.1", "lru-cache" : "^4.1.5", "marked" : "^0.3.19", "moment" : "^2.24.0", "opn" : "^5.5.0", "rss" : "^1.2.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"pencil": {"type": "string"}}, "required": ["pencil"]}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}}, "required": ["lib"]}, "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"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}}, "required": ["eslint"]}, "dependencies": {"type": "object", "properties": {"ejs": {"type": "string"}, "express": {"type": "string"}, "fs-extra": {"type": "string"}, "js-yaml": {"type": "string"}, "jsdom": {"type": "string"}, "log4js": {"type": "string"}, "lru-cache": {"type": "string"}, "marked": {"type": "string"}, "moment": {"type": "string"}, "opn": {"type": "string"}, "rss": {"type": "string"}}, "required": ["ejs", "express", "fs-extra", "js-yaml", "jsdom", "log4js", "lru-cache", "marked", "moment", "opn", "rss"]}}, "required": ["name", "version", "description", "main", "bin", "directories", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "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"}, "devDependencies": {"type": "object", "properties": {"@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}}, "required": ["@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint"]}, "peerDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}}, "required": ["eslint", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser"]}}, "required": ["name", "version", "description", "main", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "peerDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "eslint-config-typescript-strict", "version" : "1.0.3", "description" : "EsLint configuration for typescript project.", "main" : "index.js", "repository" : {"type" : "git", "url" : "git+https://github.com/mtutynina/eslint-config-typescript-strict.git"}, "keywords" : ["eslint", "typescript"], "author" : "Mariya Tutynina", "license" : "MIT", "bugs" : {"url" : "https://github.com/mtutynina/eslint-config-typescript-strict/issues"}, "homepage" : "https://github.com/mtutynina/eslint-config-typescript-strict#readme", "devDependencies" : {"@typescript-eslint/eslint-plugin" : "^4.22.0", "@typescript-eslint/parser" : "^4.22.0", "eslint" : "^7.24.0"}, "peerDependencies" : {"eslint" : ">= 7", "@typescript-eslint/eslint-plugin" : "^4.22.0", "@typescript-eslint/parser" : "^4.22.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}}, "required": ["@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint"]}, "peerDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}}, "required": ["eslint", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser"]}}, "required": ["name", "version", "description", "main", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "peerDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "string"}, "efeksamping": {"type": "string"}, "indeksamanwanitahamil": {"type": "string"}, "kemasan": {"type": "string"}, "dosis": {"type": "string"}, "penyajian": {"type": "string"}, "pabrik": {"type": "string"}, "id": {"type": "string"}, "category_id": {"type": "string"}}, "required": ["name", "harga", "golongan", "kandungan", "indikasi", "kontraindikasi", "perhatian", "efeksamping", "indeksamanwanitahamil", "kemasan", "dosis", "penyajian", "pabrik", "id", "category_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ESTIN DROP 10 ML", "harga" : " Rp. 6.050/ kemasan", "golongan" : "http://medicastore.com/image_banner/obat_keras_dan_psikotropika.gif", "kandungan" : "Cetirizine di HCl.", "indikasi" : "Rinitis alergi menahun dan musiman, urtikaria idiopatik kronis.", "kontraindikasi" : "Laktasi.", "perhatian" : "Interaksi Obat:Alkohol.", "efeksamping" : "Sakit kepala, pusing, mengantuk, agitasi, mulut kering, dan rasa tidak enak pada saluran cerna.", "indeksamanwanitahamil" : "B: Baik penelitian reproduksi hewan tidak menunjukkan risiko pada janin maupun penelitian terkendali pada wanita hamil atau hewan coba tidak memperlihatkan efek merugikan (kecuali penurunan kesuburan) dimana tidak ada penelitian terkendali yang mengkonfirmasi risiko pada wanita hamil semester pertama (dan tidak ada bukti risiko pada trisemester selanjutnya).", "kemasan" : "Tetes 10 mg/mL x 10 mL x 1's", "dosis" : "Dewasa dan anak usia lebih dari 12 tahun : 1 kali sehari 1 mL.Anak usia 6-12 tahun : 1 mL/hari, Usia 2-6 tahun : 0,5 mL/hari. Diberikan tunggal atau terbagi dalam 2 dosis.", "penyajian" : "Dikonsumsi bersamaan dengan makanan", "pabrik" : "PT. Gracia Pharmindo", "id" : "13584", "category_id" : "17"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "string"}, "efeksamping": {"type": "string"}, "indeksamanwanitahamil": {"type": "string"}, "kemasan": {"type": "string"}, "dosis": {"type": "string"}, "penyajian": {"type": "string"}, "pabrik": {"type": "string"}, "id": {"type": "string"}, "category_id": {"type": "string"}}, "required": ["name", "harga", "golongan", "kandungan", "indikasi", "kontraindikasi", "perhatian", "efeksamping", "indeksamanwanitahamil", "kemasan", "dosis", "penyajian", "pabrik", "id", "category_id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"botkit": {"type": "string"}, "botkit-middleware-witai": {"type": "string"}, "redis": {"type": "string"}}, "required": ["botkit", "botkit-middleware-witai", "redis"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "engines", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "advisor_bot", "version" : "0.0.1", "description" : "Slack bot skeleton", "main" : "advisor_bot.js", "scripts" : {"start" : "node advisor_bot.js"}, "author" : "Shreeraj Dabholkar", "license" : "MIT", "dependencies" : {"botkit" : "^0.2.2", "botkit-middleware-witai" : "^0.0.2", "redis" : "*"}, "engines" : {"node" : "*"}, "repository" : {"type" : "git", "url" : "github.com/Shreeraj1746/AdvisorBot.git"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"botkit": {"type": "string"}, "botkit-middleware-witai": {"type": "string"}, "redis": {"type": "string"}}, "required": ["botkit", "botkit-middleware-witai", "redis"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "engines", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"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": {"illuminate/support": {"type": "string"}, "symfony/yaml": {"type": "string"}, "erusev/parsedown": {"type": "string"}}, "required": ["illuminate/support", "symfony/yaml", "erusev/parsedown"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Ldoc\\": {"type": "string"}, "Ldoc\\Tests\\": {"type": "string"}}, "required": ["Ldoc\\", "Ldoc\\Tests\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "license", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "techone/ldoc", "description" : "A documentation generator for Laravel.", "license" : "Apache-2.0", "authors" : [{"name" : "TechLee", "email" : "duanpier@gmail.com"}], "require" : {"illuminate/support" : "~5.1", "symfony/yaml" : "~3.0|~4.0", "erusev/parsedown" : "^1.7"}, "require-dev" : {"phpunit/phpunit" : "~5.7|~6.0"}, "autoload" : {"psr-4" : {"Ldoc\\" : "src/", "Ldoc\\Tests\\" : "tests/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"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": {"illuminate/support": {"type": "string"}, "symfony/yaml": {"type": "string"}, "erusev/parsedown": {"type": "string"}}, "required": ["illuminate/support", "symfony/yaml", "erusev/parsedown"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Ldoc\\": {"type": "string"}, "Ldoc\\Tests\\": {"type": "string"}}, "required": ["Ldoc\\", "Ldoc\\Tests\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "license", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "_release": {"type": "string"}, "_resolution": {"type": "object", "properties": {"type": {"type": "string"}, "branch": {"type": "string"}, "commit": {"type": "string"}}, "required": ["type", "branch", "commit"]}, "_source": {"type": "string"}, "_target": {"type": "string"}, "_originalSource": {"type": "string"}}, "required": ["name", "homepage", "_release", "_resolution", "_source", "_target", "_originalSource"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "bootstrapx-clickover", "homepage" : "https://github.com/lecar-red/bootstrapx-clickover", "_release" : "0d1186b9ca", "_resolution" : {"type" : "branch", "branch" : "master", "commit" : "0d1186b9cac73178572521c21807eb686214c347"}, "_source" : "https://github.com/lecar-red/bootstrapx-clickover.git", "_target" : "*", "_originalSource" : "bootstrapx-clickover"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "_release": {"type": "string"}, "_resolution": {"type": "object", "properties": {"type": {"type": "string"}, "branch": {"type": "string"}, "commit": {"type": "string"}}, "required": ["type", "branch", "commit"]}, "_source": {"type": "string"}, "_target": {"type": "string"}, "_originalSource": {"type": "string"}}, "required": ["name", "homepage", "_release", "_resolution", "_source", "_target", "_originalSource"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"survey.css": {"type": "string"}, "survey.jquery.js": {"type": "string"}, "survey.jquery.min.js": {"type": "string"}, "survey.min.css": {"type": "string"}}, "required": ["survey.css", "survey.jquery.js", "survey.jquery.min.js", "survey.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"survey.css" : "sha512-Mx5K7PWhex+U5tEemC8FUmVBoOp8eROR9tO2kwdvBYDcPe6ujKSos8iwtVGsf3/k2q5qAbWasXACa5NouOLovQ==", "survey.jquery.js" : "sha512-5yO7OGVPXpuS3nmuFROiRMwR8Hf9VEV16taPjCjPX2GgbWzpObf54PenR4FFIUDtEDgYd2xVYa89tcy9bMsyZA==", "survey.jquery.min.js" : "sha512-rUwnOCf095BcdrbjEsbP9DCMSuzuqNfpX5AOIcyTWbZd9apWyqfO3ph1UHfyb4fqdWPRnEhNaN8zlU3+zdh6sw==", "survey.min.css" : "sha512-ImmZftRZTS9sosW1WZuoB1IFS/kKwglElwkJ5XhpFcs14jcX0fBOV7Rn8BqidJi6oJjUoZydq2oA0xCZMQXkPQ=="} | json_instruct | {"type": "object", "properties": {"survey.css": {"type": "string"}, "survey.jquery.js": {"type": "string"}, "survey.jquery.min.js": {"type": "string"}, "survey.min.css": {"type": "string"}}, "required": ["survey.css", "survey.jquery.js", "survey.jquery.min.js", "survey.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}, "site_admin": {"type": "boolean"}, "name": {"type": "string"}, "company": {"type": "null"}, "blog": {"type": "null"}, "location": {"type": "string"}, "email": {"type": "string"}, "hireable": {"type": "null"}, "bio": {"type": "null"}, "public_repos": {"type": "integer"}, "public_gists": {"type": "integer"}, "followers": {"type": "integer"}, "following": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["user", "repos", "login", "id", "avatar_url", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type", "site_admin", "name", "company", "blog", "location", "email", "hireable", "bio", "public_repos", "public_gists", "followers", "following", "created_at", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"user" : "sartios", "repos" : 1, "login" : "sartios", "id" : 917573, "avatar_url" : "https://avatars3.githubusercontent.com/u/917573?v=3", "url" : "https://api.github.com/users/sartios", "html_url" : "https://github.com/sartios", "followers_url" : "https://api.github.com/users/sartios/followers", "following_url" : "https://api.github.com/users/sartios/following{/other_user}", "gists_url" : "https://api.github.com/users/sartios/gists{/gist_id}", "starred_url" : "https://api.github.com/users/sartios/starred{/owner}{/repo}", "subscriptions_url" : "https://api.github.com/users/sartios/subscriptions", "organizations_url" : "https://api.github.com/users/sartios/orgs", "repos_url" : "https://api.github.com/users/sartios/repos", "events_url" : "https://api.github.com/users/sartios/events{/privacy}", "received_events_url" : "https://api.github.com/users/sartios/received_events", "type" : "User", "site_admin" : false, "name" : "Savramis Sartios", "company" : null, "blog" : null, "location" : "Thessaloniki", "email" : "savramis.sartios@gmail.com", "hireable" : null, "bio" : null, "public_repos" : 39, "public_gists" : 1, "followers" : 4, "following" : 16, "created_at" : "2011-07-15T12:23:22Z", "updated_at" : "2017-02-08T16:35:12Z"} | json_instruct | {"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}, "site_admin": {"type": "boolean"}, "name": {"type": "string"}, "company": {"type": "null"}, "blog": {"type": "null"}, "location": {"type": "string"}, "email": {"type": "string"}, "hireable": {"type": "null"}, "bio": {"type": "null"}, "public_repos": {"type": "integer"}, "public_gists": {"type": "integer"}, "followers": {"type": "integer"}, "following": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["user", "repos", "login", "id", "avatar_url", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type", "site_admin", "name", "company", "blog", "location", "email", "hireable", "bio", "public_repos", "public_gists", "followers", "following", "created_at", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"localfile": {"type": "string"}, "format": {"type": "string"}, "database_type": {"type": "string"}, "info": {"type": "object", "properties": {"library_name": {"type": "string"}, "full_addr": {"type": "array", "items": {"type": "string"}}, "longitude": {"type": "string"}, "latitude": {"type": "string"}}, "required": ["library_name", "full_addr", "longitude", "latitude"]}}, "required": ["localfile", "format", "database_type", "info"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"localfile" : "QC_Gatineau_Libraries.csv", "format" : "csv", "database_type" : "library", "info" : {"library_name" : "NOM_TOPOGR", "full_addr" : ["ADR_COMPLE", "force:gatineau", "force:qc", "force:ca"], "longitude" : "LONGITUDE", "latitude" : "LATITUDE"}} | json_instruct | {"type": "object", "properties": {"localfile": {"type": "string"}, "format": {"type": "string"}, "database_type": {"type": "string"}, "info": {"type": "object", "properties": {"library_name": {"type": "string"}, "full_addr": {"type": "array", "items": {"type": "string"}}, "longitude": {"type": "string"}, "latitude": {"type": "string"}}, "required": ["library_name", "full_addr", "longitude", "latitude"]}}, "required": ["localfile", "format", "database_type", "info"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "495e5739f05cc64c98f9492b6da29580e6d684a1"} | 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": "object", "properties": {"robotsparebin": {"type": "object", "properties": {"username": {"type": "string"}, "password": {"type": "string"}}, "required": ["username", "password"]}}, "required": ["robotsparebin"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"robotsparebin" : {"username" : "maria", "password" : "thoushallnotpass"}} | json_instruct | {"type": "object", "properties": {"robotsparebin": {"type": "object", "properties": {"username": {"type": "string"}, "password": {"type": "string"}}, "required": ["username", "password"]}}, "required": ["robotsparebin"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "illuminate/support": {"type": "string"}}, "required": ["php", "illuminate/support"]}, "autoload": {"type": "object", "properties": {"classmap": {"type": "array", "items": {"type": "string"}}, "psr-0": {"type": "object", "properties": {"Terbium\\DbConfig\\": {"type": "string"}}, "required": ["Terbium\\DbConfig\\"]}}, "required": ["classmap", "psr-0"]}, "minimum-stability": {"type": "string"}}, "required": ["name", "description", "keywords", "type", "authors", "license", "require", "autoload", "minimum-stability"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "terbium/db-config", "description" : "Laravel Config with DB-storage support", "keywords" : ["laravel", "configuration"], "type" : "library", "authors" : [{"name" : "YAAP", "email" : "yaapis@gmail.com"}, {"name" : "Volodimir Kornilov", "email" : "mail@terion.name"}], "license" : "MIT", "require" : {"php" : ">=5.3.0", "illuminate/support" : "4.1.*"}, "autoload" : {"classmap" : ["src/migrations"], "psr-0" : {"Terbium\\DbConfig\\" : "src/"}}, "minimum-stability" : "dev"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "illuminate/support": {"type": "string"}}, "required": ["php", "illuminate/support"]}, "autoload": {"type": "object", "properties": {"classmap": {"type": "array", "items": {"type": "string"}}, "psr-0": {"type": "object", "properties": {"Terbium\\DbConfig\\": {"type": "string"}}, "required": ["Terbium\\DbConfig\\"]}}, "required": ["classmap", "psr-0"]}, "minimum-stability": {"type": "string"}}, "required": ["name", "description", "keywords", "type", "authors", "license", "require", "autoload", "minimum-stability"], "$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": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {"type": "object", "properties": {"pic_title": {"type": "string"}, "suffix": {"type": "string"}, "id": {"type": "integer"}, "url": {"type": "string"}}, "required": ["pic_title", "suffix", "id", "url"]}}}, "required": ["e_id", "title", "content", "picNo", "picUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"e_id" : "1058", "title" : "\u5fae\u8f6f\u521b\u59cb\u4eba\u4e4b\u4e00 \u4fdd\u7f57\u00b7\u827e\u4f26\u51fa\u751f", "content" : "\n\u00a0\u00a0\u00a0\u00a0\u572868\u5e74\u524d\u7684\u4eca\u5929\uff0c1953\u5e741\u670821\u65e5(\u519c\u53861952\u5e7412\u67087\u65e5)\uff0c\u5fae\u8f6f\u521b\u59cb\u4eba\u4e4b\u4e00 \u4fdd\u7f57\u00b7\u827e\u4f26\u51fa\u751f\u3002\u4fdd\u7f57\u00b7\u827e\u4f26\u4fdd\u7f57\u00b7\u827e\u4f261953\u5e74\u51fa\u751f\u4e8e\u7f8e\u56fd\u897f\u96c5\u56fe\uff0c\u6bd5\u4e1a\u4e8e\u534e\u76db\u987f\u5dde\u7acb\u5927\u5b66\u30021968\u5e74\uff0c\u4ed6\u4e0e\u76d6\u8328\u5728\u6e56\u6ee8\u4e2d\u5b66\u76f8\u9047\uff0c\u827e\u4f26\u4ee5\u5176\u4e30\u5bcc\u7684\u77e5\u8bc6\u6298\u670d\u4e86\u76d6\u8328\u3002\u4e24\u4eba\u6210\u4e86\u597d\u670b\u53cb\uff0c\u4e00\u540c\u8fc8\u8fdb\u4e86\u8ba1\u7b97\u673a\u738b\u56fd\uff0c\u6380\u8d77\u4e00\u573a\u8f6f\u4ef6\u9769\u547d\u30021975\u5e74\uff0c\u4ed6\u4eec\u5171\u540c\u521b\u7acb\u4e86\u201c\u5fae\u8f6f\u5e1d\u56fd\u201d\uff0c\u827e\u4f26\u62e5\u670940%\u7684\u80a1\u4efd\u3002\u4ed6\u548c\u76d6\u8328\u4e00\u8d77\u521b\u7acb\u4e86\u5fae\u8f6f\uff0c\u7136\u540e\u79bb\u5f00\u4e86\u5fae\u8f6f\uff0c\u4ed6\u73b0\u5728\u7684\u8eab\u4ef7\u662f330\u4ebf\u7f8e\u5143\uff0c\u5728\u5168\u4e16\u754c\u7684\u516d\u5341\u4ebf\u4eba\u53e3\u4e2d\u53ea\u6709\u6bd4\u5c14\u00b7\u76d6\u8328\u6bd4\u4ed6\u94b1\u591a\u4e16\u754c\u4e8c\u53f7\u5bcc\u7fc1\u3002", "picNo" : "1", "picUrl" : [{"pic_title" : "\u4fdd\u7f57\u00b7\u827e\u4f26", "suffix" : "jpeg", "id" : 1, "url" : "https://aimgs.oss-cn-shenzhen.aliyuncs.com/history_2021/1058_1.jpeg"}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {"type": "object", "properties": {"pic_title": {"type": "string"}, "suffix": {"type": "string"}, "id": {"type": "integer"}, "url": {"type": "string"}}, "required": ["pic_title", "suffix", "id", "url"]}}}, "required": ["e_id", "title", "content", "picNo", "picUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"main": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "dependencies": {"type": "object", "properties": {"async": {"type": "string"}}, "required": ["async"]}, "license": {"type": "string"}}, "required": ["main", "name", "version", "description", "homepage", "repository", "keywords", "author", "dependencies", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"main" : "merkle.js", "name" : "merkle-bitcoin", "version" : "1.0.2", "description" : "Bitcoin-style merkle root generation.", "homepage" : "https://github.com/CryptoCyberCid/merkle-bitcoin", "repository" : {"type" : "git", "url" : "git://github.com/CryptoCyberCid/merkle-bitcoin.git"}, "keywords" : ["merkle", "bitcoin"], "author" : {"name" : "Olaf Wasilewski", "email" : "olaf.wasilewski@gmx.de"}, "dependencies" : {"async" : "^1.2.1"}, "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"main": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "dependencies": {"type": "object", "properties": {"async": {"type": "string"}}, "required": ["async"]}, "license": {"type": "string"}}, "required": ["main", "name", "version", "description", "homepage", "repository", "keywords", "author", "dependencies", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"mappings": {"type": "object", "properties": {"_doc": {"type": "object", "properties": {"_meta": {"type": "object", "properties": {"aet_geopoint": {"type": "string"}, "aet_join_field": {"type": "string"}, "aet_subscribed_topics": {"type": "array", "items": {"type": "string"}}, "aet_parent_field": {"type": "object", "properties": {"Person": {"type": "string"}, "Household": {"type": "string"}, "Building": {"type": "string"}}, "required": ["Person", "Household", "Building"]}}, "required": ["aet_geopoint", "aet_join_field", "aet_subscribed_topics", "aet_parent_field"]}, "properties": {"type": "object", "properties": {"geo_point": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "aet_relationship": {"type": "object", "properties": {"type": {"type": "string"}, "relations": {"type": "object", "properties": {"Survey": {"type": "string"}, "Building": {"type": "string"}, "Household": {"type": "string"}}, "required": ["Survey", "Building", "Household"]}}, "required": ["type", "relations"]}}, "required": ["geo_point", "aet_relationship"]}}, "required": ["_meta", "properties"]}}, "required": ["_doc"]}}, "required": ["mappings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"mappings" : {"_doc" : {"_meta" : {"aet_geopoint" : "geo_point", "aet_join_field" : "aet_relationship", "aet_subscribed_topics" : ["Person", "Building", "Household", "Survey"], "aet_parent_field" : {"Person" : "household_id", "Household" : "location_id", "Building" : "survey_id"}}, "properties" : {"geo_point" : {"type" : "geo_point"}, "aet_relationship" : {"type" : "join", "relations" : {"Survey" : "Building", "Building" : "Household", "Household" : "Person"}}}}}} | json_instruct | {"type": "object", "properties": {"mappings": {"type": "object", "properties": {"_doc": {"type": "object", "properties": {"_meta": {"type": "object", "properties": {"aet_geopoint": {"type": "string"}, "aet_join_field": {"type": "string"}, "aet_subscribed_topics": {"type": "array", "items": {"type": "string"}}, "aet_parent_field": {"type": "object", "properties": {"Person": {"type": "string"}, "Household": {"type": "string"}, "Building": {"type": "string"}}, "required": ["Person", "Household", "Building"]}}, "required": ["aet_geopoint", "aet_join_field", "aet_subscribed_topics", "aet_parent_field"]}, "properties": {"type": "object", "properties": {"geo_point": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "aet_relationship": {"type": "object", "properties": {"type": {"type": "string"}, "relations": {"type": "object", "properties": {"Survey": {"type": "string"}, "Building": {"type": "string"}, "Household": {"type": "string"}}, "required": ["Survey", "Building", "Household"]}}, "required": ["type", "relations"]}}, "required": ["geo_point", "aet_relationship"]}}, "required": ["_meta", "properties"]}}, "required": ["_doc"]}}, "required": ["mappings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"mapName": {"type": "string"}, "mapAuthor": {"type": "string"}, "mapDescription": {"type": "string"}, "mapSize": {"type": "object", "properties": {"y": {"type": "string"}, "x": {"type": "string"}}, "required": ["y", "x"]}, "mapInfo": {"type": "object", "properties": {"target": {"type": "integer"}, "block": {"type": "integer"}, "item": {"type": "integer"}, "nothing": {"type": "integer"}, "client1000": {"type": "integer"}, "client2000": {"type": "integer"}}, "required": ["target", "block", "item", "nothing", "client1000", "client2000"]}, "map": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "players": {"type": "string"}, "startPosition": {"type": "object", "properties": {"C": {"type": "object", "properties": {"y": {"type": "integer"}, "x": {"type": "integer"}}, "required": ["y", "x"]}, "H": {"type": "object", "properties": {"y": {"type": "integer"}, "x": {"type": "integer"}}, "required": ["y", "x"]}}, "required": ["C", "H"]}}, "required": ["mapName", "mapAuthor", "mapDescription", "mapSize", "mapInfo", "map", "players", "startPosition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"mapName" : "zenjoken\u30fb619 Arrange", "mapAuthor" : "M.K", "mapDescription" : "", "mapSize" : {"y" : "16", "x" : "16"}, "mapInfo" : {"target" : 84, "block" : 28, "item" : 54, "nothing" : 88, "client1000" : 1, "client2000" : 1}, "map" : [[1, 2, 2, 1, 1, 3, 0, 0, 0, 0, 3, 1, 1, 2, 2, 1], [0, 0, 0, 0, 3, 2, 0, 0, 3, 0, 2, 3, 0, 0, 0, 0], [2, 0, 0, 0, 1, 3, 0, 3, 0, 0, 3, 1, 0, 0, 0, 2], [3, 0, 0, 1, 3, 3, 0, 0, 3, 0, 3, 3, 1, 0, 0, 3], [1, 1, 1, 1, 1, 3, 0, 0, 0, 0, 3, 1, 1, 1, 1, 1], [1, 1, 1000, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1], [3, 1, 1, 1, 2, 3, 1, 3, 3, 1, 3, 2, 1, 1, 1, 3], [2, 2, 1, 1, 3, 3, 0, 0, 0, 0, 3, 3, 1, 1, 2, 2], [2, 2, 1, 1, 3, 3, 0, 0, 0, 0, 3, 3, 1, 1, 2, 2], [3, 1, 1, 1, 2, 3, 1, 3, 3, 1, 3, 2, 1, 1, 1, 3], [1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 2000, 1, 1], [1, 1, 1, 1, 1, 3, 0, 0, 0, 0, 3, 1, 1, 1, 1, 1], [3, 0, 0, 1, 3, 3, 0, 3, 0, 0, 3, 3, 1, 0, 0, 3], [2, 0, 0, 0, 1, 3, 0, 0, 3, 0, 3, 1, 0, 0, 0, 2], [0, 0, 0, 0, 3, 2, 0, 3, 0, 0, 2, 3, 0, 0, 0, 0], [1, 2, 2, 1, 1, 3, 0, 0, 0, 0, 3, 1, 1, 2, 2, 1]], "players" : "2", "startPosition" : {"C" : {"y" : 5, "x" : 2}, "H" : {"y" : 10, "x" : 13}}} | json_instruct | {"type": "object", "properties": {"mapName": {"type": "string"}, "mapAuthor": {"type": "string"}, "mapDescription": {"type": "string"}, "mapSize": {"type": "object", "properties": {"y": {"type": "string"}, "x": {"type": "string"}}, "required": ["y", "x"]}, "mapInfo": {"type": "object", "properties": {"target": {"type": "integer"}, "block": {"type": "integer"}, "item": {"type": "integer"}, "nothing": {"type": "integer"}, "client1000": {"type": "integer"}, "client2000": {"type": "integer"}}, "required": ["target", "block", "item", "nothing", "client1000", "client2000"]}, "map": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "players": {"type": "string"}, "startPosition": {"type": "object", "properties": {"C": {"type": "object", "properties": {"y": {"type": "integer"}, "x": {"type": "integer"}}, "required": ["y", "x"]}, "H": {"type": "object", "properties": {"y": {"type": "integer"}, "x": {"type": "integer"}}, "required": ["y", "x"]}}, "required": ["C", "H"]}}, "required": ["mapName", "mapAuthor", "mapDescription", "mapSize", "mapInfo", "map", "players", "startPosition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"xbox": {"type": "number"}, "ps": {"type": "number"}}, "required": ["xbox", "ps"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"xbox" : 955579.0, "ps" : 982377.0} | json_instruct | {"type": "object", "properties": {"xbox": {"type": "number"}, "ps": {"type": "number"}}, "required": ["xbox", "ps"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"subreddit": {"type": "string"}, "hour": {"type": "string"}, "avg": {"type": "number"}}, "required": ["subreddit", "hour", "avg"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"subreddit" : "MusicBattlestations", "hour" : "01", "avg" : 13.76923076923077}, {"subreddit" : "MusicBattlestations", "hour" : "02", "avg" : 28.75}, {"subreddit" : "MusicBattlestations", "hour" : "03", "avg" : 32.583333333333336}, {"subreddit" : "MusicBattlestations", "hour" : "04", "avg" : 26.571428571428573}, {"subreddit" : "MusicBattlestations", "hour" : "05", "avg" : 26.4}, {"subreddit" : "MusicBattlestations", "hour" : "06", "avg" : 66.0}, {"subreddit" : "MusicBattlestations", "hour" : "07", "avg" : 28.6}, {"subreddit" : "MusicBattlestations", "hour" : "08", "avg" : 63.25}, {"subreddit" : "MusicBattlestations", "hour" : "09", "avg" : 47.5}, {"subreddit" : "MusicBattlestations", "hour" : "10", "avg" : 26.9}, {"subreddit" : "MusicBattlestations", "hour" : "11", "avg" : 46.77777777777778}, {"subreddit" : "MusicBattlestations", "hour" : "12", "avg" : 109.66666666666667}, {"subreddit" : "MusicBattlestations", "hour" : "13", "avg" : 25.642857142857142}, {"subreddit" : "MusicBattlestations", "hour" : "14", "avg" : 80.76923076923077}, {"subreddit" : "MusicBattlestations", "hour" : "15", "avg" : 58.21052631578947}, {"subreddit" : "MusicBattlestations", "hour" : "16", "avg" : 65.23529411764706}, {"subreddit" : "MusicBattlestations", "hour" : "17", "avg" : 48.166666666666664}, {"subreddit" : "MusicBattlestations", "hour" : "18", "avg" : 40.92857142857143}, {"subreddit" : "MusicBattlestations", "hour" : "19", "avg" : 79.82352941176471}, {"subreddit" : "MusicBattlestations", "hour" : "20", "avg" : 43.588235294117645}, {"subreddit" : "MusicBattlestations", "hour" : "21", "avg" : 46.84}, {"subreddit" : "MusicBattlestations", "hour" : "22", "avg" : 72.91666666666667}, {"subreddit" : "MusicBattlestations", "hour" : "23", "avg" : 79.05882352941177}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"subreddit": {"type": "string"}, "hour": {"type": "string"}, "avg": {"type": "number"}}, "required": ["subreddit", "hour", "avg"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"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" : [[[139.25, 34.583333333333336], [139.25, 34.666666666666664], [139.375, 34.666666666666664], [139.375, 34.583333333333336], [139.25, 34.583333333333336]]]}, "properties" : {"code" : 513972, "url" : "http://madefor.github.io/0410/api/v1/513972.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/513972.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": {"name": {"type": "object", "properties": {"US-en": {"type": "string"}, "EU-en": {"type": "string"}, "EU-de": {"type": "string"}, "EU-es": {"type": "string"}, "US-es": {"type": "string"}, "EU-fr": {"type": "string"}, "US-fr": {"type": "string"}, "EU-it": {"type": "string"}, "EU-nl": {"type": "string"}, "CN-zh": {"type": "string"}, "TW-zh": {"type": "string"}, "JP-ja": {"type": "string"}, "KR-ko": {"type": "string"}, "EU-ru": {"type": "string"}}, "required": ["US-en", "EU-en", "EU-de", "EU-es", "US-es", "EU-fr", "US-fr", "EU-it", "EU-nl", "CN-zh", "TW-zh", "JP-ja", "KR-ko", "EU-ru"]}, "personality": {"type": "string"}, "birthday": {"type": "string"}, "birthdate": {"type": "string"}, "species": {"type": "string"}, "gender": {"type": "string"}, "subtype": {"type": "string"}, "hobby": {"type": "string"}, "icon": {"type": "string"}, "image": {"type": "string"}, "bubbleColor": {"type": "string"}, "textColor": {"type": "string"}, "saying": {"type": "string"}, "catchPhrase": {"type": "object", "properties": {"US-en": {"type": "string"}, "EU-en": {"type": "string"}, "EU-de": {"type": "string"}, "EU-es": {"type": "string"}, "US-es": {"type": "string"}, "EU-fr": {"type": "string"}, "US-fr": {"type": "string"}, "EU-it": {"type": "string"}, "EU-nl": {"type": "string"}, "CN-zh": {"type": "string"}, "TW-zh": {"type": "string"}, "JP-ja": {"type": "string"}, "KR-ko": {"type": "string"}, "EU-ru": {"type": "string"}}, "required": ["US-en", "EU-en", "EU-de", "EU-es", "US-es", "EU-fr", "US-fr", "EU-it", "EU-nl", "CN-zh", "TW-zh", "JP-ja", "KR-ko", "EU-ru"]}, "description": {"type": "string"}}, "required": ["name", "personality", "birthday", "birthdate", "species", "gender", "subtype", "hobby", "icon", "image", "bubbleColor", "textColor", "saying", "catchPhrase", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : {"US-en" : "Yuka", "EU-en" : "Yuka", "EU-de" : "Ute", "EU-es" : "Yuka", "US-es" : "Yuka", "EU-fr" : "Calypso", "US-fr" : "Calypso", "EU-it" : "Yuka", "EU-nl" : "Yuka", "CN-zh" : "\u5c24\u5609\u8389", "TW-zh" : "\u5c24\u5609\u8389", "JP-ja" : "\u30e6\u30fc\u30ab\u30ea", "KR-ko" : "\uc720\uce74\ub9ac", "EU-ru" : "\u042e\u043a\u0430"}, "personality" : "Snooty", "birthday" : "July 20th", "birthdate" : "20/7", "species" : "Koala", "gender" : "Female", "subtype" : "B", "hobby" : "Fashion", "icon" : "https://acnhapi.com/v1/icons/villagers/220", "image" : "https://acnhapi.com/v1/images/villagers/220", "bubbleColor" : "#194c89", "textColor" : "#fffad4", "saying" : "Beauty is in the eye of the beholder.", "catchPhrase" : {"US-en" : "tsk tsk", "EU-en" : "tsk tsk", "EU-de" : "grins", "EU-es" : "pues", "US-es" : "ts\u00e9 ts\u00e9", "EU-fr" : "tss tss", "US-fr" : "tss tss", "EU-it" : "ts\u00e9 ts\u00e9", "EU-nl" : "tss tss", "CN-zh" : "\u554a\u5566", "TW-zh" : "\u554a\u5566", "JP-ja" : "\u30a2\u30e9", "KR-ko" : "\uc5b4\ub9db", "EU-ru" : "\u0446-\u0446"}, "description" : "Yuka is a snooty koala villager in the Animal Crossing series. Both her English and Japanese names come from eucalyptus, which koalas eat the leaves of."} | json_instruct | {"type": "object", "properties": {"name": {"type": "object", "properties": {"US-en": {"type": "string"}, "EU-en": {"type": "string"}, "EU-de": {"type": "string"}, "EU-es": {"type": "string"}, "US-es": {"type": "string"}, "EU-fr": {"type": "string"}, "US-fr": {"type": "string"}, "EU-it": {"type": "string"}, "EU-nl": {"type": "string"}, "CN-zh": {"type": "string"}, "TW-zh": {"type": "string"}, "JP-ja": {"type": "string"}, "KR-ko": {"type": "string"}, "EU-ru": {"type": "string"}}, "required": ["US-en", "EU-en", "EU-de", "EU-es", "US-es", "EU-fr", "US-fr", "EU-it", "EU-nl", "CN-zh", "TW-zh", "JP-ja", "KR-ko", "EU-ru"]}, "personality": {"type": "string"}, "birthday": {"type": "string"}, "birthdate": {"type": "string"}, "species": {"type": "string"}, "gender": {"type": "string"}, "subtype": {"type": "string"}, "hobby": {"type": "string"}, "icon": {"type": "string"}, "image": {"type": "string"}, "bubbleColor": {"type": "string"}, "textColor": {"type": "string"}, "saying": {"type": "string"}, "catchPhrase": {"type": "object", "properties": {"US-en": {"type": "string"}, "EU-en": {"type": "string"}, "EU-de": {"type": "string"}, "EU-es": {"type": "string"}, "US-es": {"type": "string"}, "EU-fr": {"type": "string"}, "US-fr": {"type": "string"}, "EU-it": {"type": "string"}, "EU-nl": {"type": "string"}, "CN-zh": {"type": "string"}, "TW-zh": {"type": "string"}, "JP-ja": {"type": "string"}, "KR-ko": {"type": "string"}, "EU-ru": {"type": "string"}}, "required": ["US-en", "EU-en", "EU-de", "EU-es", "US-es", "EU-fr", "US-fr", "EU-it", "EU-nl", "CN-zh", "TW-zh", "JP-ja", "KR-ko", "EU-ru"]}, "description": {"type": "string"}}, "required": ["name", "personality", "birthday", "birthdate", "species", "gender", "subtype", "hobby", "icon", "image", "bubbleColor", "textColor", "saying", "catchPhrase", "description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 105477, "info" : {"name" : "NHK WEB EASY Print", "description" : "Print style for making NHK WEB EASY News better for studying japanese; removes all page decorations and menus, adds more white space for annotations, increases font size for easier reading.\r\n\r\nNote that the style only kicks in on printing.", "additionalInfo" : null, "format" : "uso", "category" : "global", "createdAt" : "2014-09-16T11:59:38.000Z", "updatedAt" : "2014-09-16T11:59:38.000Z", "license" : "CC0-1.0", "author" : {"id" : 273991, "name" : "mjl Martin J. Laubach"}}, "stats" : {"installs" : {"total" : 185, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "105477_after.png", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@media print {\r\n\r\n.header, .easylogo, #aboutThisSite, #side, .pagetop, #regularnews, #soundkana, .pagemove,\r\n#enq_answer_disp, #enq_ansbak, #bottom, #footer { display: none; }\r\n\r\n.detail #main #newswrap #newsarticle p {\r\n line-height: 6.5;\r\n}\r\n\r\n.detail #mainTop {\r\n width: 97%;\r\n border-right: 50px;\r\n}\r\n \r\n.detail #main #newstitle,\r\n.detail #main #newswrap #newsarticle {\r\n width: 100%;\r\n}\r\n\r\n* {\r\n background-image: none !important;\r\n}\r\n\r\nhtml>body {\r\n font-size: 100%;\r\n}\r\n\r\n}\r\n"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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" : 404355479, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "85e0c74a8f59f197c5aefceedf5e8bf0", "wof:id" : 404355479, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [5.71943537666944, 45.67270706064167, 5.80398832994389, 45.74292126019687], "geometry" : {"coordinates" : [[[5.7692897757977, 45.67270706064167], [5.75918863517189, 45.67968578306989], [5.74485079627696, 45.6782791966996], [5.72428552804291, 45.68768972655471], [5.71943537666944, 45.68709514336517], [5.72119656248569, 45.70277539727003], [5.72886178342381, 45.70618505690303], [5.72774063075312, 45.70926667745834], [5.73132114418224, 45.71015303754714], [5.74893920871035, 45.70546266441728], [5.75693229513387, 45.70921386928566], [5.76331062161013, 45.71846443886041], [5.77636565899375, 45.72791984853914], [5.76967850557458, 45.74081610438956], [5.78042662202774, 45.74292126019687], [5.78536951868999, 45.72992326358155], [5.79343332134712, 45.72171334479686], [5.80398832994389, 45.70459247516582], [5.80172732132009, 45.69727812279942], [5.7925776191584, 45.69458594463554], [5.77180359421912, 45.67952913579819], [5.7692897757977, 45.67270706064167]]], "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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}, "locale": {"type": "string"}}, "required": ["authors", "locale"]}, "day1long": {"type": "string"}, "day2long": {"type": "string"}, "day3long": {"type": "string"}, "day4long": {"type": "string"}, "day5long": {"type": "string"}, "day6long": {"type": "string"}, "day7long": {"type": "string"}, "day1short": {"type": "string"}, "day2short": {"type": "string"}, "day3short": {"type": "string"}, "day4short": {"type": "string"}, "day5short": {"type": "string"}, "day6short": {"type": "string"}, "day7short": {"type": "string"}, "ethMonth2long": {"type": "string"}, "ethMonth5long": {"type": "string"}, "ethMonth6long": {"type": "string"}, "ethMonth2short": {"type": "string"}, "ethMonth5short": {"type": "string"}, "ethMonth6short": {"type": "string"}}, "required": ["@metadata", "day1long", "day2long", "day3long", "day4long", "day5long", "day6long", "day7long", "day1short", "day2short", "day3short", "day4short", "day5short", "day6short", "day7short", "ethMonth2long", "ethMonth5long", "ethMonth6long", "ethMonth2short", "ethMonth5short", "ethMonth6short"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"@metadata" : {"authors" : ["Augustine Dickinson"], "locale" : "ti"}, "day1long" : "Sanbat", "day2long" : "Sanuy", "day3long" : "Salus", "day4long" : "Rabu\u02bf", "day5long" : "\u1e24\u0101mus", "day6long" : "\u02bf\u0100rbi", "day7long" : "Qad\u0101m", "day1short" : "Sanb.", "day2short" : "Sanu.", "day3short" : "Sal.", "day4short" : "Rab.", "day5short" : "\u1e24\u0101m.", "day6short" : "\u02bf\u0100rb.", "day7short" : "Qad.", "ethMonth2long" : "\u1e6c\u01ddq\u01ddmti", "ethMonth5long" : "\u1e6c\u01ddrri", "ethMonth6long" : "Lakk\u0101tit", "ethMonth2short" : "\u1e6c\u01ddq.", "ethMonth5short" : "\u1e6c\u01ddr.", "ethMonth6short" : "Lakk."} | json_instruct | {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}, "locale": {"type": "string"}}, "required": ["authors", "locale"]}, "day1long": {"type": "string"}, "day2long": {"type": "string"}, "day3long": {"type": "string"}, "day4long": {"type": "string"}, "day5long": {"type": "string"}, "day6long": {"type": "string"}, "day7long": {"type": "string"}, "day1short": {"type": "string"}, "day2short": {"type": "string"}, "day3short": {"type": "string"}, "day4short": {"type": "string"}, "day5short": {"type": "string"}, "day6short": {"type": "string"}, "day7short": {"type": "string"}, "ethMonth2long": {"type": "string"}, "ethMonth5long": {"type": "string"}, "ethMonth6long": {"type": "string"}, "ethMonth2short": {"type": "string"}, "ethMonth5short": {"type": "string"}, "ethMonth6short": {"type": "string"}}, "required": ["@metadata", "day1long", "day2long", "day3long", "day4long", "day5long", "day6long", "day7long", "day1short", "day2short", "day3short", "day4short", "day5short", "day6short", "day7short", "ethMonth2long", "ethMonth5long", "ethMonth6long", "ethMonth2short", "ethMonth5short", "ethMonth6short"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"station" : [{"pref_cd" : 27, "line_cd" : 99626, "line_name" : "\u5927\u962a\u30e2\u30ce\u30ec\u30fc\u30eb\u7dda", "station_cd" : 9962614, "station_g_cd" : 3300128, "station_name" : "\u9580\u771f\u5e02", "lon" : 135.582533, "lat" : 34.737081}]} | json_instruct | {"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"namaKab" : "GAYO LUES", "originalFilename" : "YUSUF040.jpg", "namaPartai" : "Partai Golongan Karya", "id" : 186625, "noUrut" : 1, "nama" : "M. YUSUF HS", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "GAYO LUES", "originalFilename" : "SOFYAN042.jpg", "namaPartai" : "Partai Golongan Karya", "id" : 78730, "noUrut" : 2, "nama" : "ALI SOFYAN", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "GAYO LUES", "originalFilename" : "ARMAYA035.jpg", "namaPartai" : "Partai Golongan Karya", "id" : 78828, "noUrut" : 3, "nama" : "ARMAYA RITA", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "GAYO LUES", "originalFilename" : "RUDI021.jpg", "namaPartai" : "Partai Golongan Karya", "id" : 189797, "noUrut" : 4, "nama" : "RUDI ARIGA", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "GAYO LUES", "originalFilename" : "RAJALI032.jpg", "namaPartai" : "Partai Golongan Karya", "id" : 79091, "noUrut" : 5, "nama" : "RAJALI", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "GAYO LUES", "originalFilename" : "SILAWATI023.jpg", "namaPartai" : "Partai Golongan Karya", "id" : 101267, "noUrut" : 6, "nama" : "SILAWATI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "GAYO LUES", "originalFilename" : "AMRI066.jpg", "namaPartai" : "Partai Golongan Karya", "id" : 78933, "noUrut" : 7, "nama" : "KHAIRUL AMRI, S.Pd", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "GAYO LUES", "originalFilename" : "SAPRANG034.jpg", "namaPartai" : "Partai Golongan Karya", "id" : 79258, "noUrut" : 8, "nama" : "SAPERANG SYAMSUDDIN", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "GAYO LUES", "originalFilename" : "NURAINI038.jpg", "namaPartai" : "Partai Golongan Karya", "id" : 78955, "noUrut" : 9, "nama" : "NURAINI, S.Pd", "stringJenisKelamin" : "Perempuan"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"multipart": {"type": "array", "items": {"type": "object", "properties": {"apply": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["apply"]}}}, "required": ["multipart"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"multipart" : [{"apply" : {"model" : "columns:block/blackstone_column_center"}}, {"when" : {"down" : true}, "apply" : {"model" : "columns:block/blackstone_column_end"}}, {"when" : {"up" : true}, "apply" : {"model" : "columns:block/blackstone_column_end", "x" : 180, "uvlock" : true}}]} | json_instruct | {"type": "object", "properties": {"multipart": {"type": "array", "items": {"type": "object", "properties": {"apply": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["apply"]}}}, "required": ["multipart"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "grandpa_34292", "displayName" : "grandpa_34292"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"Word": {"type": "string"}, "Number": {"type": "integer"}}, "required": ["Word", "Number"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Word" : "abc.existing", "Number" : 111} | json_instruct | {"type": "object", "properties": {"Word": {"type": "string"}, "Number": {"type": "integer"}}, "required": ["Word", "Number"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"stac_version": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {"rel": {"type": "string"}, "href": {"type": "string"}}, "required": ["rel", "href"]}}}, "required": ["stac_version", "id", "name", "description", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stac_version" : "0.6.0", "id" : "santa-rosa-fires", "name" : "Santa Rosa Fires", "description" : "Planet Disaster Data makes imagery available directly to the public, volunteers, humanitarian organizations, and other coordinating bodies in support of the International Charter for Space and Major Disasters. This catalog of data is released for the Santa Rosa Fires, providing a 30 day window pre- and post-disaster. Imagery is provided under Creative Commons licenses, free of charge, with either CC-BY-SA or CC-BY-NC. All new Planet scenes are made available each day, immediately after production. ", "links" : [{"rel" : "self", "href" : "http://cholmes.github.io/stac-html-x/disasters/santa-rosa-fires/catalog.json"}, {"rel" : "root", "href" : "../catalog.json"}, {"rel" : "parent", "href" : "../catalog.json"}]} | json_instruct | {"type": "object", "properties": {"stac_version": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {"rel": {"type": "string"}, "href": {"type": "string"}}, "required": ["rel", "href"]}}}, "required": ["stac_version", "id", "name", "description", "links"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"package.json": {"type": "string"}}, "required": ["package.json"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"package.json" : "sort-package-json"} | json_instruct | {"type": "object", "properties": {"package.json": {"type": "string"}}, "required": ["package.json"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "/* This file is generated by createIcons.js any changes will be lost. */\nimport createIcon from '../createIcon';\nvar CaretRightIcon = createIcon({\n name: 'CaretRightIcon',\n height: 512,\n width: 192,\n svgPath: 'M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z',\n yOffset: '',\n xOffset: '',\n transform: ''\n});\nexport default CaretRightIcon;", "map" : null, "metadata" : {}, "sourceType" : "module"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "GeneralComments": {"type": "string"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "GeneralComments", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"IsRecentlyVerified" : false, "ID" : 114397, "UUID" : "BD35BD86-426B-4321-A1BE-B2301B3A789B", "DataProviderID" : 1, "OperatorID" : 105, "UsageTypeID" : 4, "AddressInfo" : {"ID" : 114743, "Title" : "Hohe M\u00fchle", "AddressLine1" : "Hohe M\u00fchle 12", "Town" : "Rahden", "StateOrProvince" : "Kreis Minden-L\u00fcbbecke", "Postcode" : "32369", "CountryID" : 87, "Latitude" : 52.4307941, "Longitude" : 8.608814499999994, "DistanceUnit" : 0}, "Connections" : [{"ID" : 161038, "ConnectionTypeID" : 25, "StatusTypeID" : 50, "LevelID" : 2, "Amps" : 32, "Voltage" : 400, "PowerKW" : 22, "CurrentTypeID" : 20, "Quantity" : 2}], "NumberOfPoints" : 2, "GeneralComments" : "24/7 nutzbar", "StatusTypeID" : 50, "DateLastStatusUpdate" : "2019-01-07T15:21:00Z", "DataQualityLevel" : 1, "DateCreated" : "2019-01-07T15:21:00Z", "SubmissionStatusTypeID" : 200} | json_instruct | {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "GeneralComments": {"type": "string"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "GeneralComments", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"case-insensitive": {"type": "string"}, "class-chain": {"type": "string"}, "is-buffer": {"type": "string"}, "is-generator-function": {"type": "string"}, "is-plain-object": {"type": "string"}, "remove-prefix": {"type": "string"}, "whitespace-regex": {"type": "string"}}, "required": ["case-insensitive", "class-chain", "is-buffer", "is-generator-function", "is-plain-object", "remove-prefix", "whitespace-regex"]}, "devDependencies": {"type": "object", "properties": {"eslint-config-lamansky": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["eslint-config-lamansky", "mocha"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "eslintConfig": {"type": "object", "properties": {"extends": {"type": "string"}, "env": {"type": "object", "properties": {"mocha": {"type": "boolean"}}, "required": ["mocha"]}}, "required": ["extends", "env"]}}, "required": ["name", "version", "description", "keywords", "author", "license", "homepage", "repository", "main", "files", "engines", "dependencies", "devDependencies", "scripts", "eslintConfig"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "isit", "version" : "1.1.0", "description" : "Tests a value\u2019s type against a string like 'positive integer' or 'non-empty map'.", "keywords" : ["type", "check", "test", "class", "undefined", "null", "primitive", "scalar", "wrapper", "boolean", "bool", "true", "truthy", "false", "falsey", "empty", "function", "generator", "number", "numeric", "positive", "negative", "sign", "NaN", "integer", "int", "float", "finite", "infinite", "Infinity", "object", "plain", "plain object", "array", "arguments", "buffer", "collection", "map", "set", "WeakMap", "WeakSet", "iterable", "typed array", "Int8Array", "Uint8Array", "Uint8ClampedArray", "Int16Array", "Uint16Array", "Int32Array", "Uint32Array", "Float32Array", "Float64Array", "string", "symbol", "curry", "currying", "curried"], "author" : "John Lamansky", "license" : "MIT", "homepage" : "https://github.com/lamansky/isit", "repository" : "lamansky/isit", "main" : "index.js", "files" : ["x.js"], "engines" : {"node" : ">=7.0.0"}, "dependencies" : {"case-insensitive" : "^1.0.0", "class-chain" : "^1.0.0", "is-buffer" : "^1.1.4", "is-generator-function" : "^1.0.6", "is-plain-object" : "^2.0.1", "remove-prefix" : "^1.0.0", "whitespace-regex" : "^0.1.2"}, "devDependencies" : {"eslint-config-lamansky" : "^1.0.0", "mocha" : "^3.2.0"}, "scripts" : {"test" : "mocha"}, "eslintConfig" : {"extends" : "lamansky", "env" : {"mocha" : true}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"case-insensitive": {"type": "string"}, "class-chain": {"type": "string"}, "is-buffer": {"type": "string"}, "is-generator-function": {"type": "string"}, "is-plain-object": {"type": "string"}, "remove-prefix": {"type": "string"}, "whitespace-regex": {"type": "string"}}, "required": ["case-insensitive", "class-chain", "is-buffer", "is-generator-function", "is-plain-object", "remove-prefix", "whitespace-regex"]}, "devDependencies": {"type": "object", "properties": {"eslint-config-lamansky": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["eslint-config-lamansky", "mocha"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "eslintConfig": {"type": "object", "properties": {"extends": {"type": "string"}, "env": {"type": "object", "properties": {"mocha": {"type": "boolean"}}, "required": ["mocha"]}}, "required": ["extends", "env"]}}, "required": ["name", "version", "description", "keywords", "author", "license", "homepage", "repository", "main", "files", "engines", "dependencies", "devDependencies", "scripts", "eslintConfig"], "$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": {"debug": {"type": "string"}, "start": {"type": "string"}, "nodemon": {"type": "string"}, "browsersync": {"type": "string"}}, "required": ["debug", "start", "nodemon", "browsersync"]}, "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"}, "dependencies": {"type": "object", "properties": {"bcryptjs": {"type": "string"}, "connect-pg-simple": {"type": "string"}, "express": {"type": "string"}, "express-session": {"type": "string"}, "faker": {"type": "string"}, "method-override": {"type": "string"}, "multer": {"type": "string"}, "nodemailer": {"type": "string"}, "nunjucks": {"type": "string"}, "pg": {"type": "string"}}, "required": ["bcryptjs", "connect-pg-simple", "express", "express-session", "faker", "method-override", "multer", "nodemailer", "nunjucks", "pg"]}, "devDependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}, "nodemon": {"type": "string"}, "npm-run-all": {"type": "string"}}, "required": ["browser-sync", "nodemon", "npm-run-all"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "DesafioFinalLaunchBase", "version" : "2.0.0", "description" : "<h1 align=\"center\"> FOODFY <br> <br> <img src=\"/.github/chef.png\" alt=\"FOODFY LOGO\" width=\"200\">", "main" : "src/server.js", "scripts" : {"debug" : "nodemon --inspect=0.0.0.0:9229 src/server.js", "start" : "npm-run-all -p nodemon browsersync", "nodemon" : "nodemon src/server.js", "browsersync" : "browser-sync start --proxy http://localhost:5001 --files 'public, src/app/views'"}, "repository" : {"type" : "git", "url" : "git+https://github.com/alvaroico/DesafioFinalLaunchBase.git"}, "keywords" : ["Desafio", "Final", "LaunchBase"], "author" : "alvaroico", "license" : "ISC", "bugs" : {"url" : "https://github.com/alvaroico/DesafioFinalLaunchBase/issues"}, "homepage" : "https://github.com/alvaroico/DesafioFinalLaunchBase#readme", "dependencies" : {"bcryptjs" : "^2.4.3", "connect-pg-simple" : "^6.2.0", "express" : "^4.17.1", "express-session" : "^1.17.1", "faker" : "^4.1.0", "method-override" : "^3.0.0", "multer" : "^1.4.2", "nodemailer" : "^6.4.11", "nunjucks" : "^3.2.1", "pg" : "^8.2.1"}, "devDependencies" : {"browser-sync" : "^2.26.7", "nodemon" : "^2.0.4", "npm-run-all" : "^4.1.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"debug": {"type": "string"}, "start": {"type": "string"}, "nodemon": {"type": "string"}, "browsersync": {"type": "string"}}, "required": ["debug", "start", "nodemon", "browsersync"]}, "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"}, "dependencies": {"type": "object", "properties": {"bcryptjs": {"type": "string"}, "connect-pg-simple": {"type": "string"}, "express": {"type": "string"}, "express-session": {"type": "string"}, "faker": {"type": "string"}, "method-override": {"type": "string"}, "multer": {"type": "string"}, "nodemailer": {"type": "string"}, "nunjucks": {"type": "string"}, "pg": {"type": "string"}}, "required": ["bcryptjs", "connect-pg-simple", "express", "express-session", "faker", "method-override", "multer", "nodemailer", "nunjucks", "pg"]}, "devDependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}, "nodemon": {"type": "string"}, "npm-run-all": {"type": "string"}}, "required": ["browser-sync", "nodemon", "npm-run-all"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"text": {"type": "string"}, "appkey": {"type": "string"}, "info": {"type": "string"}, "userid": {"type": "string"}}, "required": ["text", "appkey", "info", "userid"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : "hehehe", "appkey" : "123", "info" : "123", "userid" : "1123444"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "appkey": {"type": "string"}, "info": {"type": "string"}, "userid": {"type": "string"}}, "required": ["text", "appkey", "info", "userid"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "DateLastVerified": {"type": "string"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "CountryID", "Latitude", "Longitude", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "DateLastVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"IsRecentlyVerified" : true, "DateLastVerified" : "2021-10-07T21:55:00Z", "ID" : 189516, "UUID" : "5F004B5A-B3BF-4B81-B17B-67626BB08030", "DataProviderID" : 1, "OperatorID" : 1, "UsageTypeID" : 1, "AddressInfo" : {"ID" : 189875, "Title" : "La Casa de La Bateria", "AddressLine1" : "Estaci\u00f3n Plaza Carolina", "CountryID" : 173, "Latitude" : 9.030414512288075, "Longitude" : -79.47657625223809, "DistanceUnit" : 0}, "Connections" : [{"ID" : 306553, "ConnectionTypeID" : 0, "StatusTypeID" : 50, "CurrentTypeID" : 20, "Quantity" : 1}], "NumberOfPoints" : 1, "StatusTypeID" : 50, "DateLastStatusUpdate" : "2021-10-09T21:16:00Z", "DataQualityLevel" : 1, "DateCreated" : "2021-10-07T21:55:00Z", "SubmissionStatusTypeID" : 200} | json_instruct | {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "DateLastVerified": {"type": "string"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "CountryID", "Latitude", "Longitude", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "DateLastVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"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" : "Domfront en Poiraie", "dpt" : "Orne", "inscrits" : 3405, "abs" : 807, "votants" : 2598, "blancs" : 76, "nuls" : 24, "exp" : 2498, "res" : [{"panneau" : "11", "voix" : 643}, {"panneau" : "3", "voix" : 599}, {"panneau" : "2", "voix" : 478}, {"panneau" : "9", "voix" : 388}, {"panneau" : "1", "voix" : 163}, {"panneau" : "4", "voix" : 120}, {"panneau" : "5", "voix" : 33}, {"panneau" : "6", "voix" : 29}, {"panneau" : "8", "voix" : 20}, {"panneau" : "10", "voix" : 18}, {"panneau" : "7", "voix" : 7}]} | 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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "level": {"type": "integer"}, "rarity": {"type": "string"}, "vendor_value": {"type": "integer"}, "game_types": {"type": "array", "items": {"type": "string"}}, "flags": {"type": "array", "items": {"type": "string"}}, "restrictions": {"type": "array", "items": {}}, "id": {"type": "integer"}, "chat_link": {"type": "string"}, "icon": {"type": "string"}, "details": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["name", "description", "type", "level", "rarity", "vendor_value", "game_types", "flags", "restrictions", "id", "chat_link", "icon", "details"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Birthday Card", "description" : "Contains 5000 Karma.<br><br><c=@flavor>Thank you for all of your support over the years!</c>", "type" : "Consumable", "level" : 0, "rarity" : "Rare", "vendor_value" : 0, "game_types" : ["Pvp", "PvpLobby", "Wvw", "Dungeon", "Pve"], "flags" : ["AccountBound", "NoMysticForge", "NoSalvage", "NoSell", "DeleteWarning", "AccountBindOnUse"], "restrictions" : [], "id" : 70244, "chat_link" : "[&AgFkEgEA]", "icon" : "https://render.guildwars2.com/file/F7FE05C9AA6E3A09B90E423466093B931C50B092/222546.png", "details" : {"type" : "Generic"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "level": {"type": "integer"}, "rarity": {"type": "string"}, "vendor_value": {"type": "integer"}, "game_types": {"type": "array", "items": {"type": "string"}}, "flags": {"type": "array", "items": {"type": "string"}}, "restrictions": {"type": "array", "items": {}}, "id": {"type": "integer"}, "chat_link": {"type": "string"}, "icon": {"type": "string"}, "details": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["name", "description", "type", "level", "rarity", "vendor_value", "game_types", "flags", "restrictions", "id", "chat_link", "icon", "details"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"prefix": {"type": "string"}, "token": {"type": "string"}, "sunucuID": {"type": "string"}, "kay\u0131tLOG": {"type": "string"}, "vipROL": {"type": "string"}, "tag": {"type": "string"}, "tagLOG": {"type": "string"}, "tagROL": {"type": "string"}, "kay\u0131ts\u0131zROL": {"type": "string"}, "kay\u0131tl\u0131ROL": {"type": "string"}, "botROL": {"type": "string"}, "kad\u0131nROL": {"type": "string"}, "erkekROL": {"type": "string"}, "jailLOG": {"type": "string"}, "jailROL": {"type": "string"}, "yetkiliROL": {"type": "string"}, "giriskanal": {"type": "string"}}, "required": ["prefix", "token", "sunucuID", "kay\u0131tLOG", "vipROL", "tag", "tagLOG", "tagROL", "kay\u0131ts\u0131zROL", "kay\u0131tl\u0131ROL", "botROL", "kad\u0131nROL", "erkekROL", "jailLOG", "jailROL", "yetkiliROL", "giriskanal"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"prefix" : ".", "token" : "NzkxODk4OTcyMjU5ODc2ODc0.X-V3Yw.xPdHWfn6dpbVMAD7skXLPZzdcMw", "sunucuID" : "789972602482589698", "kay\u0131tLOG" : "789977158775734302", "vipROL" : "789972602915258403", "tag" : "\u2020", "tagLOG" : "789972603233894441", "tagROL" : "789972602915258405", "kay\u0131ts\u0131zROL" : "789972602901889070", "kay\u0131tl\u0131ROL" : "789972602911326215", "botROL" : "789972602915258407", "kad\u0131nROL" : "789972602915258401", "erkekROL" : "789972602911326217", "jailLOG" : "789972603233894441", "jailROL" : "789972602961526784", "yetkiliROL" : "789972602939637781", "giriskanal" : "789977158775734302"} | json_instruct | {"type": "object", "properties": {"prefix": {"type": "string"}, "token": {"type": "string"}, "sunucuID": {"type": "string"}, "kay\u0131tLOG": {"type": "string"}, "vipROL": {"type": "string"}, "tag": {"type": "string"}, "tagLOG": {"type": "string"}, "tagROL": {"type": "string"}, "kay\u0131ts\u0131zROL": {"type": "string"}, "kay\u0131tl\u0131ROL": {"type": "string"}, "botROL": {"type": "string"}, "kad\u0131nROL": {"type": "string"}, "erkekROL": {"type": "string"}, "jailLOG": {"type": "string"}, "jailROL": {"type": "string"}, "yetkiliROL": {"type": "string"}, "giriskanal": {"type": "string"}}, "required": ["prefix", "token", "sunucuID", "kay\u0131tLOG", "vipROL", "tag", "tagLOG", "tagROL", "kay\u0131ts\u0131zROL", "kay\u0131tl\u0131ROL", "botROL", "kad\u0131nROL", "erkekROL", "jailLOG", "jailROL", "yetkiliROL", "giriskanal"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "string"}, "homepage": {"type": "string"}, "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": "null"}, "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" : 119303, "name" : "ffmpeg.org - dark", "description" : "A dark style for a ffmpeg guide site.", "user" : {"id" : 168625, "name" : "Thermalzombie", "email" : "redacted", "paypal_email" : "gamer1978@hotmail.com", "homepage" : "http://www.thermalzombie.com/", "about" : null, "license" : "ccby"}, "updated" : "2015-10-01T05:50:03.000Z", "weekly_install_count" : 0, "total_install_count" : 77, "rating" : null, "after_screenshot_name" : "https://userstyles.org/style_screenshots/119303_after.jpeg?r=1592208477", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : null, "created" : "2015-09-30T10:27:32.000Z", "category" : "site", "raw_subcategory" : "ffmpeg", "subcategory" : "ffmpeg", "additional_info" : null, "style_tags" : [], "css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n\r\n@-moz-document domain(\"ffmpeg.org\") {\r\n\r\nhtml, body, .wikipage, tt, .wiki, pre,\r\n.nav li a\r\n{\r\nbackground: #000000 !important;\r\n}\r\n#mainnav li\r\n{\r\nborder: none !important;\r\n}\r\ndiv.trac-content, .wikipage h2,\r\npre.wiki, pre.literal-block,\r\ntable.wiki, .nav,\r\n#mainnav *:link, #mainnav *:visited\r\n{\r\nbox-shadow: none !important;\r\n}\r\na, pre, ul, td, hr, p, i, tt, h1, h2, h3, h4, h5\r\n{\r\ncolor: #A3A3A3 !important;\r\n}\r\n}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/119303/ffmpeg-org-dark.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": "string"}, "homepage": {"type": "string"}, "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": "null"}, "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": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "repository": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"brace": {"type": "string"}, "browserify": {"type": "string"}, "resolve": {"type": "string"}}, "required": ["brace", "browserify", "resolve"]}, "main": {"type": "string"}, "bin": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "version", "author", "repository", "license", "dependencies", "main", "bin", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "commonjs-editor", "description" : "Edit and execute top-level files of CommonJS modules in browsers", "version" : "0.0.7", "author" : {"name" : "Laurent Christophe", "email" : "lachrist@vub.ac.be"}, "repository" : "lachrist/commonjs-editor", "license" : "MIT", "dependencies" : {"brace" : "0.10.0", "browserify" : "14.4.0", "resolve" : "1.4.0"}, "main" : "./main.js", "bin" : "./bin.js", "keywords" : ["CommonJS", "Editor", "Ace", "Cloud9"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "repository": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"brace": {"type": "string"}, "browserify": {"type": "string"}, "resolve": {"type": "string"}}, "required": ["brace", "browserify", "resolve"]}, "main": {"type": "string"}, "bin": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "version", "author", "repository", "license", "dependencies", "main", "bin", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"postal_code" : "09940", "place_name" : "Jardines de San Lorenzo Tezonco", "place_type" : "Colonia", "county" : "Iztapalapa", "state" : "Ciudad de M\u00e9xico", "city" : "Ciudad de M\u00e9xico"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"lastUpdated" : 1655019279666, "username" : "jona101t", "scores" : [{"xp" : 7798, "rank" : 414, "cardId" : 625}, {"xp" : 3711, "rank" : 77, "cardId" : 633}, {"xp" : 5638, "rank" : 128, "cardId" : 658}, {"xp" : 12241, "rank" : 108, "cardId" : 659}, {"xp" : 1877, "rank" : 148, "cardId" : 663}, {"xp" : 13159, "rank" : 285, "cardId" : 282}]} | json_instruct | {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "colors": {"type": "string"}, "cors": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "getmac": {"type": "string"}, "ip": {"type": "string"}, "joi": {"type": "string"}, "request": {"type": "string"}, "serialport": {"type": "string"}}, "required": ["body-parser", "colors", "cors", "dotenv", "express", "getmac", "ip", "joi", "request", "serialport"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "raspberry-pi", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Titan", "license" : "ISC", "dependencies" : {"body-parser" : "^1.19.0", "colors" : "^1.4.0", "cors" : "^2.8.5", "dotenv" : "^8.2.0", "express" : "^4.17.1", "getmac" : "^5.1.0", "ip" : "^1.1.5", "joi" : "^14.3.1", "request" : "^2.88.0", "serialport" : "^8.0.7"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "colors": {"type": "string"}, "cors": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "getmac": {"type": "string"}, "ip": {"type": "string"}, "joi": {"type": "string"}, "request": {"type": "string"}, "serialport": {"type": "string"}}, "required": ["body-parser", "colors", "cors", "dotenv", "express", "getmac", "ip", "joi", "request", "serialport"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "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"}, "main": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"prebuild": {"type": "string"}, "test": {"type": "string"}, "hashmark": {"type": "string"}, "build": {"type": "string"}}, "required": ["prebuild", "test", "hashmark", "build"]}, "devDependencies": {"type": "object", "properties": {"coffee-script": {"type": "string"}, "hashmark": {"type": "string"}, "requirejs": {"type": "string"}}, "required": ["coffee-script", "hashmark", "requirejs"]}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "main", "author", "description", "keywords", "homepage", "license", "bugs", "repository", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "amalthea", "version" : "1.1.4", "main" : "dist/amalthea.js", "author" : "Apollo <zhaoyang@jizhi.im>", "description" : "the hyper front-end engine of data science", "keywords" : ["html-plugin", "online-judge", "jupyter-notebook"], "homepage" : "https://amalthea.ai", "license" : "MIT", "bugs" : "https://github.com/Jinglue/Amalthea/issues", "repository" : {"type" : "git", "url" : "https://github.com/Jinglue/Amalthea.git"}, "scripts" : {"prebuild" : "bower install", "test" : "jest && eslint .", "hashmark" : "hashmark dist/*.js -rsl 7 'dist/{name}.{hash}.bundle.js'", "build" : "rm -rf dist && coffee -cb src/main.coffee && r.js -o src/build.js baseUrl=./src name=almond include=main out=dist/amalthea.js && hashmark dist/*.js -sl 7 'dist/{name}.{hash}.bundle.js' && gzip -r -f -k dist/*.js"}, "devDependencies" : {"coffee-script" : "^1.12.7", "hashmark" : "^5.0.0", "requirejs" : "^2.3.5"}, "dependencies" : {}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"prebuild": {"type": "string"}, "test": {"type": "string"}, "hashmark": {"type": "string"}, "build": {"type": "string"}}, "required": ["prebuild", "test", "hashmark", "build"]}, "devDependencies": {"type": "object", "properties": {"coffee-script": {"type": "string"}, "hashmark": {"type": "string"}, "requirejs": {"type": "string"}}, "required": ["coffee-script", "hashmark", "requirejs"]}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "main", "author", "description", "keywords", "homepage", "license", "bugs", "repository", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "username": {"type": "string"}, "text": {"type": "string"}, "date": {"type": "string"}, "retweet": {"type": "integer"}, "like": {"type": "integer"}}, "required": ["id", "url", "username", "text", "date", "retweet", "like"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "1098973415245963264", "url" : "https://twitter.com/PPochPoch/status/1098973415245963264", "username" : "", "text" : "\u0e15\u0e49\u0e2d\u0e07\u0e43\u0e2b\u0e49\u0e1e\u0e39\u0e14\u0e14\u0e49\u0e27\u0e22\u0e2b\u0e23\u0e2d 5555555 \u0e16\u0e37\u0e2d\u0e27\u0e48\u0e32\u0e04\u0e19\u0e25\u0e30\u0e08\u0e38\u0e14\u0e02\u0e32\u0e22\u0e25\u0e30\u0e01\u0e31\u0e19", "date" : "22-02-2019 22:50", "retweet" : 0, "like" : 0}, {"id" : "1098872182497636352", "url" : "https://twitter.com/PPochPoch/status/1098872182497636352", "username" : "", "text" : "\u0e2b\u0e21\u0e32\u0e22\u0e16\u0e36\u0e07 ?", "date" : "22-02-2019 16:08", "retweet" : 0, "like" : 0}, {"id" : "1098840799519793158", "url" : "https://twitter.com/PPochPoch/status/1098840799519793158", "username" : "", "text" : "\u0e43\u0e19\u0e22\u0e38\u0e04\u0e43\u0e2b\u0e21\u0e48\u0e46 \u0e2b\u0e25\u0e31\u0e07\u0e08\u0e32\u0e01 Miss a \u0e01\u0e47\u0e21\u0e35\u0e19\u0e31\u0e07\u0e40\u0e14\u0e47\u0e01 #itzy \u0e19\u0e35\u0e48\u0e41\u0e2b\u0e25\u0e30\u0e17\u0e35\u0e48\u0e01\u0e39\u0e49\u0e2b\u0e19\u0e49\u0e32\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e02\u0e2d\u0e07\u0e44\u0e2d\u0e14\u0e2d\u0e25\u0e43\u0e2b\u0e49\u0e01\u0e31\u0e1a JYP", "date" : "22-02-2019 14:03", "retweet" : 0, "like" : 3}, {"id" : "1098408969704419329", "url" : "https://twitter.com/PPochPoch/status/1098408969704419329", "username" : "", "text" : "\u0e17\u0e23\u0e21\u0e32\u0e19\u0e04\u0e48\u0e30 \u0e01\u0e33\u0e25\u0e31\u0e07\u0e08\u0e30\u0e44\u0e14\u0e49\u0e2d\u0e2d\u0e01\u0e08\u0e32\u0e01\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17\u0e01\u0e47\u0e17\u0e23\u0e21\u0e32\u0e23", "date" : "21-02-2019 09:28", "retweet" : 0, "like" : 0}, {"id" : "1098390241839276033", "url" : "https://twitter.com/PPochPoch/status/1098390241839276033", "username" : "", "text" : "\u0e2d\u0e35\u0e14\u0e2d\u0e01\u0e41\u0e25\u0e49\u0e27\u0e0a\u0e35\u0e27\u0e34\u0e15\u0e41\u0e21\u0e23\u0e48\u0e07\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e2d\u0e30\u0e44\u0e23\u0e01\u0e31\u0e19\u0e41\u0e19\u0e48\u0e27\u0e30", "date" : "21-02-2019 08:13", "retweet" : 1, "like" : 0}, {"id" : "1098141466449272832", "url" : "https://twitter.com/PPochPoch/status/1098141466449272832", "username" : "", "text" : "\u0e2d\u0e35\u0e01\u0e2a\u0e34\u0e1a\u0e1b\u0e35\u0e02\u0e49\u0e32\u0e07\u0e2b\u0e19\u0e49\u0e32\u0e43\u0e19\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48 \u0e40\u0e08\u0e19\u0e27\u0e32\u0e22\u0e01\u0e25\u0e32\u0e22\u0e40\u0e1b\u0e47\u0e19\u0e1e\u0e25\u0e31\u0e07\u0e2b\u0e25\u0e31\u0e01\u0e02\u0e2d\u0e07\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28 \u0e04\u0e07\u0e23\u0e39\u0e49\u0e19\u0e30\u0e27\u0e48\u0e32\u0e08\u0e30\u0e40\u0e01\u0e34\u0e14\u0e2d\u0e30\u0e44\u0e23\u0e02\u0e36\u0e49\u0e19 #Savethanathorn", "date" : "20-02-2019 15:45", "retweet" : 1, "like" : 1}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "username": {"type": "string"}, "text": {"type": "string"}, "date": {"type": "string"}, "retweet": {"type": "integer"}, "like": {"type": "integer"}}, "required": ["id", "url", "username", "text", "date", "retweet", "like"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "dynamic": {"type": "boolean"}, "resolved": {"type": "string"}, "parent": {"type": "string"}}, "required": ["name", "dynamic", "resolved", "parent"]}}, "generated": {"type": "object", "properties": {"html": {"type": "string"}}, "required": ["html"]}, "sourceMaps": {"type": "null"}, "error": {"type": "null"}, "hash": {"type": "string"}, "cacheData": {"type": "object", "properties": {}, "required": []}}, "required": ["id", "dependencies", "generated", "sourceMaps", "error", "hash", "cacheData"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "index.html", "dependencies" : [{"name" : "./index.js", "dynamic" : true, "resolved" : "/Users/alonadelson/Desktop/dev/microsrvs/classifieds-app/src/index.js", "parent" : "/Users/alonadelson/Desktop/dev/microsrvs/classifieds-app/src/index.html"}], "generated" : {"html" : "<!-- ******************************************\n* Author : Author \n* Created On : Thu Jan 09 2020\n* File : index.html\n******************************************* -->\n\n<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n <meta charset=\"UTF-8\">\n <title>Classified App</title>\n</head>\n\n<body>\n <div id=\"app\"></div>\n <script src=\"/168726dbe96b3ce427e7fedce31bb0bc.js\"></script>\n</body>\n\n</html>"}, "sourceMaps" : null, "error" : null, "hash" : "add37b43f2620f5b299e135d444e9d89", "cacheData" : {}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "dynamic": {"type": "boolean"}, "resolved": {"type": "string"}, "parent": {"type": "string"}}, "required": ["name", "dynamic", "resolved", "parent"]}}, "generated": {"type": "object", "properties": {"html": {"type": "string"}}, "required": ["html"]}, "sourceMaps": {"type": "null"}, "error": {"type": "null"}, "hash": {"type": "string"}, "cacheData": {"type": "object", "properties": {}, "required": []}}, "required": ["id", "dependencies", "generated", "sourceMaps", "error", "hash", "cacheData"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"total_duration": {"type": "number"}, "timestamp": {"type": "string"}}, "required": ["total_duration", "timestamp"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"total_duration" : 8339.685000896454, "timestamp" : "2020-11-27 06:54:03.220488"} | json_instruct | {"type": "object", "properties": {"total_duration": {"type": "number"}, "timestamp": {"type": "string"}}, "required": ["total_duration", "timestamp"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"num_states": {"type": "integer"}, "batch_size": {"type": "integer"}, "index": {"type": "array", "items": {}}}, "required": ["num_states", "batch_size", "index"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"num_states" : 0, "batch_size" : 40000000, "index" : []} | json_instruct | {"type": "object", "properties": {"num_states": {"type": "integer"}, "batch_size": {"type": "integer"}, "index": {"type": "array", "items": {}}}, "required": ["num_states", "batch_size", "index"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"merged" : "/Users/FabrizioKruisland/Downloads/SeriesGuide/SeriesGuide/build/intermediates/res/merged/amazon/debug/mipmap-xxxhdpi/ic_launcher_round.png", "source" : "/Users/FabrizioKruisland/Downloads/SeriesGuide/SeriesGuide/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"typeElement": {"type": "object", "properties": {"STAGE": {"type": "string"}, "CONTAINER": {"type": "string"}, "TEXT": {"type": "string"}, "IMG": {"type": "string"}, "AUDIO": {"type": "string"}, "VIDEO": {"type": "string"}, "IMAGE_TEXT": {"type": "string"}, "IMAGE_AUDIO": {"type": "string"}, "ANIMATED_SPRITE": {"type": "string"}}, "required": ["STAGE", "CONTAINER", "TEXT", "IMG", "AUDIO", "VIDEO", "IMAGE_TEXT", "IMAGE_AUDIO", "ANIMATED_SPRITE"]}, "typeQuestion": {"type": "object", "properties": {"CHOICE": {"type": "string"}, "FILLVACANCY": {"type": "string"}, "CLASSIFY": {"type": "string"}, "ONLINE": {"type": "string"}}, "required": ["CHOICE", "FILLVACANCY", "CLASSIFY", "ONLINE"]}, "undoType": {"type": "object", "properties": {"DELETE_STAGE": {"type": "string"}, "DELETE": {"type": "string"}, "ADD_STAGE": {"type": "string"}, "ADD": {"type": "string"}, "LOCK": {"type": "string"}, "HIDE": {"type": "string"}, "GROUP": {"type": "string"}, "CANCEL_GROUP": {"type": "string"}, "CHANGE_LAYER": {"type": "string"}, "CHANGE_STAGE_LAYER": {"type": "string"}, "CHANGE_PROPERTY": {"type": "string"}}, "required": ["DELETE_STAGE", "DELETE", "ADD_STAGE", "ADD", "LOCK", "HIDE", "GROUP", "CANCEL_GROUP", "CHANGE_LAYER", "CHANGE_STAGE_LAYER", "CHANGE_PROPERTY"]}}, "required": ["typeElement", "typeQuestion", "undoType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"typeElement" : {"STAGE" : "1", "CONTAINER" : "2", "TEXT" : "3", "IMG" : "4", "AUDIO" : "5", "VIDEO" : "6", "IMAGE_TEXT" : "7", "IMAGE_AUDIO" : "8", "ANIMATED_SPRITE" : "9"}, "typeQuestion" : {"CHOICE" : "1", "FILLVACANCY" : "2", "CLASSIFY" : "3", "ONLINE" : "4"}, "undoType" : {"DELETE_STAGE" : "1", "DELETE" : "2", "ADD_STAGE" : "3", "ADD" : "4", "LOCK" : "5", "HIDE" : "6", "GROUP" : "7", "CANCEL_GROUP" : "8", "CHANGE_LAYER" : "9", "CHANGE_STAGE_LAYER" : "10", "CHANGE_PROPERTY" : "11"}} | json_instruct | {"type": "object", "properties": {"typeElement": {"type": "object", "properties": {"STAGE": {"type": "string"}, "CONTAINER": {"type": "string"}, "TEXT": {"type": "string"}, "IMG": {"type": "string"}, "AUDIO": {"type": "string"}, "VIDEO": {"type": "string"}, "IMAGE_TEXT": {"type": "string"}, "IMAGE_AUDIO": {"type": "string"}, "ANIMATED_SPRITE": {"type": "string"}}, "required": ["STAGE", "CONTAINER", "TEXT", "IMG", "AUDIO", "VIDEO", "IMAGE_TEXT", "IMAGE_AUDIO", "ANIMATED_SPRITE"]}, "typeQuestion": {"type": "object", "properties": {"CHOICE": {"type": "string"}, "FILLVACANCY": {"type": "string"}, "CLASSIFY": {"type": "string"}, "ONLINE": {"type": "string"}}, "required": ["CHOICE", "FILLVACANCY", "CLASSIFY", "ONLINE"]}, "undoType": {"type": "object", "properties": {"DELETE_STAGE": {"type": "string"}, "DELETE": {"type": "string"}, "ADD_STAGE": {"type": "string"}, "ADD": {"type": "string"}, "LOCK": {"type": "string"}, "HIDE": {"type": "string"}, "GROUP": {"type": "string"}, "CANCEL_GROUP": {"type": "string"}, "CHANGE_LAYER": {"type": "string"}, "CHANGE_STAGE_LAYER": {"type": "string"}, "CHANGE_PROPERTY": {"type": "string"}}, "required": ["DELETE_STAGE", "DELETE", "ADD_STAGE", "ADD", "LOCK", "HIDE", "GROUP", "CANCEL_GROUP", "CHANGE_LAYER", "CHANGE_STAGE_LAYER", "CHANGE_PROPERTY"]}}, "required": ["typeElement", "typeQuestion", "undoType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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" : [[[144.5, 20.666666666666668], [144.5, 20.75], [144.625, 20.75], [144.625, 20.666666666666668], [144.5, 20.666666666666668]]]}, "properties" : {"code" : 314404, "url" : "http://madefor.github.io/0410/api/v1/314404.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/314404.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#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"liveId": {"type": "string"}, "title": {"type": "string"}, "subTitle": {"type": "string"}, "picPath": {"type": "string"}, "startTime": {"type": "integer"}, "memberId": {"type": "integer"}, "liveType": {"type": "integer"}, "picLoopTime": {"type": "integer"}, "lrcPath": {"type": "string"}, "streamPath": {"type": "string"}, "screenMode": {"type": "integer"}, "roomId": {"type": "string"}, "bwqaVersion": {"type": "integer"}}, "required": ["liveId", "title", "subTitle", "picPath", "startTime", "memberId", "liveType", "picLoopTime", "lrcPath", "streamPath", "screenMode", "roomId", "bwqaVersion"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"liveId" : "5a9fa6e80cf2bc50772d7863", "title" : "\u6c88\u5c0f\u7231\u7684\u76f4\u64ad\u95f4", "subTitle" : "\u51fa\u73b0\u4e00\u4f1a\u513f\u3002", "picPath" : "/mediasource/live/152041239178875H7k9IeX9.png", "startTime" : 1520412392010, "memberId" : 538697, "liveType" : 1, "picLoopTime" : 0, "lrcPath" : "/mediasource/live/lrc/5a9fa6e80cf2bc50772d7863.lrc", "streamPath" : "http://2519.liveplay.myqcloud.com/live/2519_3529686.flv", "screenMode" : 0, "roomId" : "9470936", "bwqaVersion" : 0}, {"liveId" : "5a9fa0150cf2fcbae90e8f5a", "title" : "\u9676\u83c0\u745e\u7684\u76f4\u64ad\u95f4", "subTitle" : "\u5192\u6ce1", "picPath" : "/mediasource/live/1520410481937Jh6fle7Muv.jpg", "startTime" : 1520410645714, "memberId" : 614736, "liveType" : 1, "picLoopTime" : 0, "lrcPath" : "/mediasource/live/lrc/5a9fa0150cf2fcbae90e8f5a.lrc", "streamPath" : "http://2519.liveplay.myqcloud.com/live/2519_3529675.flv", "screenMode" : 0, "roomId" : "19835742", "bwqaVersion" : 0}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"liveId": {"type": "string"}, "title": {"type": "string"}, "subTitle": {"type": "string"}, "picPath": {"type": "string"}, "startTime": {"type": "integer"}, "memberId": {"type": "integer"}, "liveType": {"type": "integer"}, "picLoopTime": {"type": "integer"}, "lrcPath": {"type": "string"}, "streamPath": {"type": "string"}, "screenMode": {"type": "integer"}, "roomId": {"type": "string"}, "bwqaVersion": {"type": "integer"}}, "required": ["liveId", "title", "subTitle", "picPath", "startTime", "memberId", "liveType", "picLoopTime", "lrcPath", "streamPath", "screenMode", "roomId", "bwqaVersion"]}, "$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": {"static\\development\\pages\\_error.js": {"type": "boolean"}}, "required": ["static\\development\\pages\\_error.js"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "8886c3302c96de58dfa6", "c" : {"static\\development\\pages\\_error.js" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"static\\development\\pages\\_error.js": {"type": "boolean"}}, "required": ["static\\development\\pages\\_error.js"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"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" : 60449, "cartId" : "5d9d43ac-bd9e-42e0-bdb2-237c1bf039d1", "preferredProducts" : [1828], "productReviews" : [{"productId" : 3530, "reviewText" : "This is a really good Guyana Dollar.", "reviewDate" : "2019-11-13T22:36:37.1540717+02:00"}, {"productId" : 1080, "reviewText" : "The box this comes in is 5 kilometer by 6 meter and weights 20 ounce!", "reviewDate" : "2016-07-25T17:35:38.0857051+03:00"}, {"productId" : 3587, "reviewText" : "i use it profusely when i'm in my garage.", "reviewDate" : "2018-12-17T07:37:29.2733939+02:00"}, {"productId" : 1143, "reviewText" : "I saw one of these in South Korea and I bought one.", "reviewDate" : "2017-09-17T23:20:28.693268+03:00"}, {"productId" : 3221, "reviewText" : "My co-worker Namon has one of these. He says it looks funny-looking.", "reviewDate" : "2016-06-12T09:54:56.3435762+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#"} |
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#"}
| [[2005, 6], [2009, 8], [2010, 9], [2011, 10], [2012, 14], [2013, 14], [2014, 12]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"canonicalName": {"type": "string"}, "alternateNames": {"type": "array", "items": {}}, "description": {"type": "string"}}, "required": ["canonicalName", "alternateNames", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"canonicalName" : "stepper", "alternateNames" : [], "description" : "Generic stepper machine"} | json_instruct | {"type": "object", "properties": {"canonicalName": {"type": "string"}, "alternateNames": {"type": "array", "items": {}}, "description": {"type": "string"}}, "required": ["canonicalName", "alternateNames", "description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "official_id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "school_type_entity": {"type": "string"}, "fax": {"type": "string"}, "state": {"type": "string"}, "phone": {"type": "string"}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "official_id", "address", "school_type", "school_type_entity", "fax", "state", "phone", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Eichendorff-Schule", "id" : "HE-3318-0", "official_id" : "3318", "address" : "Schulstra\u00dfe 26, 64646 Heppenheim (Bergstra\u00dfe)", "school_type" : "Grundschule", "school_type_entity" : "Grundschule", "fax" : "06252/913339", "state" : "HE", "phone" : "06252/913329", "full_time_school" : false, "lon" : 8.644375, "lat" : 49.640763888889} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "official_id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "school_type_entity": {"type": "string"}, "fax": {"type": "string"}, "state": {"type": "string"}, "phone": {"type": "string"}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "official_id", "address", "school_type", "school_type_entity", "fax", "state", "phone", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type": "integer"}}, "required": ["play", "subPlay"]}, "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" : "63adadf2-5d80-4e08-91cf-6c164b22cabc", "playerTags" : ["9f218ed1-d793-437d-a1b9-79f88f69154d"], "teamTags" : ["eb67ae5e-c4bf-46ca-bbbc-425cd34182ff", "105bc3ff-1320-4e37-8ef0-8d595cb95dd0"], "gameTags" : ["3e19825a-43ea-4903-beea-a99ea9061380"], "metadata" : {"play" : 34, "subPlay" : -1}, "created" : "2021-04-09T15:03:05.803Z", "season" : 14, "tournament" : -1, "type" : 70, "day" : 94, "phase" : 6, "category" : 2, "description" : "Lotus Mango hops on the Grind Rail toward third base.\nThey do a Spacewalk (229)!\n... but lose their balance and bail!\nOut!", "nuts" : 0} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type": "integer"}}, "required": ["play", "subPlay"]}, "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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "MAESYN", "frequency" : 130, "males" : "4.615384615384616 %", "females" : "95.38461538461539 %"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"pdfmake.js": {"type": "string"}, "pdfmake.min.js": {"type": "string"}, "vfs_fonts.js": {"type": "string"}}, "required": ["pdfmake.js", "pdfmake.min.js", "vfs_fonts.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"pdfmake.js" : "sha512-AWolRCF/ZNN+qTYjpBQ7Wk4JG6rviQZhZuPqQ4+ICxbTziIL1DLTrofFPps0CXqvVRouCFY2EeCpqVo2tHQUZg==", "pdfmake.min.js" : "sha512-ljyYWl8v6noZ/0/eYgl2yfuNPBcScC2zFSg5FfRqDR0IhjdbNtY6eWVF15fE1Xk4ycjJYHbtJDxf/Z4xx/yCDw==", "vfs_fonts.js" : "sha512-E00geMsGU9M+VRyD3KNEhVBPAfsMUsnJ76qMWT9h6mBGOkLaybZqLqSCUHTcHgbWykUvK4GDKdO1tff/Net95Q=="} | json_instruct | {"type": "object", "properties": {"pdfmake.js": {"type": "string"}, "pdfmake.min.js": {"type": "string"}, "vfs_fonts.js": {"type": "string"}}, "required": ["pdfmake.js", "pdfmake.min.js", "vfs_fonts.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "status": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "type", "symbol", "decimals", "website", "description", "explorer", "status", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "HummingBird Finance", "type" : "BEP20", "symbol" : "Hmng", "decimals" : 9, "website" : "https://www.hummingbirdbsc.org/", "description" : "Hummingbird Finance contract is designed to apply 3% tax to every transaction. 1.5% is distributed to the current holders and 1.5 % is burned forever which decreases supply of HMNG. ", "explorer" : "https://bscscan.com/token/0x14357d294fbabbe0fbf59503370c772d563b35b6", "status" : "active", "id" : "0x14357D294fBabbE0fbF59503370c772d563b35b6"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "status": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "type", "symbol", "decimals", "website", "description", "explorer", "status", "id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"ja106:0.1": {"type": "string"}, "ja106:0.2": {"type": "string"}, "ja106:0.3": {"type": "string"}, "ja106:0.4": {"type": "string"}, "ja106:1.1": {"type": "string"}, "ja106:1.2": {"type": "string"}, "ja106:1.3": {"type": "string"}, "ja106:1.4": {"type": "string"}, "ja106:2.1": {"type": "string"}}, "required": ["ja106:0.1", "ja106:0.2", "ja106:0.3", "ja106:0.4", "ja106:1.1", "ja106:1.2", "ja106:1.3", "ja106:1.4", "ja106:2.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ja106:0.1" : "J\u0101taka", "ja106:0.2" : "Ekakanip\u0101ta", "ja106:0.3" : "Parosatavagga", "ja106:0.4" : "6. Uda\u00f1can\u012bj\u0101taka", "ja106:1.1" : "\u201cSukha\u1e41 vata ma\u1e41 j\u012bvanta\u1e41,", "ja106:1.2" : "Pacam\u0101n\u0101 uda\u00f1can\u012b;", "ja106:1.3" : "Cor\u012b j\u0101yappav\u0101dena,", "ja106:1.4" : "Tela\u1e41 lo\u1e47a\u00f1ca y\u0101cat\u012b\u201dti.", "ja106:2.1" : "Uda\u00f1can\u012bj\u0101taka\u1e41 cha\u1e6d\u1e6dha\u1e41."} | json_instruct | {"type": "object", "properties": {"ja106:0.1": {"type": "string"}, "ja106:0.2": {"type": "string"}, "ja106:0.3": {"type": "string"}, "ja106:0.4": {"type": "string"}, "ja106:1.1": {"type": "string"}, "ja106:1.2": {"type": "string"}, "ja106:1.3": {"type": "string"}, "ja106:1.4": {"type": "string"}, "ja106:2.1": {"type": "string"}}, "required": ["ja106:0.1", "ja106:0.2", "ja106:0.3", "ja106:0.4", "ja106:1.1", "ja106:1.2", "ja106:1.3", "ja106:1.4", "ja106:2.1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "rarity": {"type": "string"}, "category": {"type": "string"}, "materialtype": {"type": "string"}, "dropdomain": {"type": "string"}, "daysofweek": {"type": "array", "items": {"type": "string"}}, "source": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "rarity", "category", "materialtype", "dropdomain", "daysofweek", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Plomb karstique", "description" : "Mat\u00e9riau d'\u00e9l\u00e9vation d'arme.\\nLe Karst Jueyun est la demeure des Adeptes puissants et \u00e9clair\u00e9s qui ma\u00eetrisent les arts occultes.", "rarity" : "2", "category" : "AVATAR_MATERIAL", "materialtype" : "Mat\u00e9riau d'\u00e9l\u00e9vation d'arme", "dropdomain" : "Donjon d'entra\u00eenement : Ruines grondantes", "daysofweek" : ["Mardi", "Vendredi", "Dimanche"], "source" : ["Boutique de souvenirs de Liyue"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "rarity": {"type": "string"}, "category": {"type": "string"}, "materialtype": {"type": "string"}, "dropdomain": {"type": "string"}, "daysofweek": {"type": "array", "items": {"type": "string"}}, "source": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "rarity", "category", "materialtype", "dropdomain", "daysofweek", "source"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "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": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 404389511, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "86a2a1de29c9afce11c2ba860b4eaa9d", "wof:id" : 404389511, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [5.28917, 48.27611, 5.28917, 48.27611], "geometry" : {"coordinates" : [5.28917, 48.27611], "type" : "Point"}} | 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": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$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"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "argv-parser", "version" : "1.0.0", "description" : "A simple argv parser for NodeJS.", "main" : "index.js", "scripts" : {"test" : "node test.js another --good=yes -bad=no --novalue"}, "keywords" : ["argv", "parser"], "author" : "Seyz", "license" : "MIT"} | 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"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"month": {"type": "string"}, "num": {"type": "integer"}, "link": {"type": "string"}, "year": {"type": "string"}, "news": {"type": "string"}, "safe_title": {"type": "string"}, "transcript": {"type": "string"}, "alt": {"type": "string"}, "img": {"type": "string"}, "title": {"type": "string"}, "day": {"type": "string"}, "mirror_img": {"type": "string"}}, "required": ["month", "num", "link", "year", "news", "safe_title", "transcript", "alt", "img", "title", "day", "mirror_img"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"month" : "7", "num" : 1866, "link" : "", "year" : "2017", "news" : "", "safe_title" : "Russell's Teapot", "transcript" : "", "alt" : "Unfortunately, NASA regulations state that Bertrand Russell-related payloads can only be launched within launch vehicles which do not launch themselves.", "img" : "https://imgs.xkcd.com/comics/russells_teapot.png", "title" : "Russell's Teapot", "day" : "21", "mirror_img" : "https://raw.githubusercontent.com/aghontpi/mirror-xkcd-api/main/api/1866/russells_teapot.png"} | json_instruct | {"type": "object", "properties": {"month": {"type": "string"}, "num": {"type": "integer"}, "link": {"type": "string"}, "year": {"type": "string"}, "news": {"type": "string"}, "safe_title": {"type": "string"}, "transcript": {"type": "string"}, "alt": {"type": "string"}, "img": {"type": "string"}, "title": {"type": "string"}, "day": {"type": "string"}, "mirror_img": {"type": "string"}}, "required": ["month", "num", "link", "year", "news", "safe_title", "transcript", "alt", "img", "title", "day", "mirror_img"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "type": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Sola Token", "symbol" : "SOL", "address" : "0x1f54638b7737193ffd86c19ec51907a7c41755d8", "decimals" : 6, "type" : "ERC20"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "type": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}}, "required": ["name", "fips", "state_code", "county_code", "population", "countrylevel_id", "census_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"name" : "Nicollet County", "fips" : "27103", "state_code" : 27, "county_code" : 103, "population" : 34274, "countrylevel_id" : "fips:27103", "census_data" : {"COUNTYNS" : "00659497", "AFFGEOID" : "0500000US27103", "LSAD" : "06", "ALAND" : 1161978443, "AWATER" : 47471908}}, "geometry" : {"type" : "Polygon", "coordinates" : [[[-94.78063, 44.456649999999996], [-94.6242, 44.45603], [-93.92954999999999, 44.456716], [-93.93268499999999, 44.344885], [-94.025162, 44.256519], [-94.01186799999999, 44.23952], [-94.04667099999999, 44.154374], [-94.371731, 44.264447999999994], [-94.491333, 44.359676], [-94.666062, 44.394048], [-94.78063, 44.456649999999996]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}}, "required": ["name", "fips", "state_code", "county_code", "population", "countrylevel_id", "census_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"geometry" : {"type" : "Point", "coordinates" : [-96.24, 41.0]}, "type" : "Feature", "id" : "68058", "properties" : {"other_cities" : "", "city" : "South Bend", "state" : "NE", "county" : "Cass County"}} | json_instruct | {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "repository": {"type": "string"}, "license": {"type": "string"}, "atomTestRunner": {"type": "string"}, "engines": {"type": "object", "properties": {"atom": {"type": "string"}}, "required": ["atom"]}, "dependencies": {"type": "object", "properties": {"grim": {"type": "string"}}, "required": ["grim"]}, "devDependencies": {"type": "object", "properties": {"atom-mocha-test-runner": {"type": "string"}, "sinon": {"type": "string"}, "standard": {"type": "string"}}, "required": ["atom-mocha-test-runner", "sinon", "standard"]}, "standard": {"type": "object", "properties": {"env": {"type": "object", "properties": {"jasmine": {"type": "boolean"}}, "required": ["jasmine"]}, "globals": {"type": "array", "items": {"type": "string"}}}, "required": ["env", "globals"]}}, "required": ["name", "main", "version", "description", "keywords", "repository", "license", "atomTestRunner", "engines", "dependencies", "devDependencies", "standard"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "dalek", "main" : "./lib/main", "version" : "0.2.2", "description" : "EXTERMINATEs built-in packages installed in ~/.atom/packages", "keywords" : [], "repository" : "https://github.com/atom/atom", "license" : "MIT", "atomTestRunner" : "./test/runner", "engines" : {"atom" : ">=1.12.7 <2.0.0"}, "dependencies" : {"grim" : "^2.0.1"}, "devDependencies" : {"atom-mocha-test-runner" : "^1.0.0", "sinon" : "^2.0.0", "standard" : "^8.6.0"}, "standard" : {"env" : {"jasmine" : true}, "globals" : ["atom"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "repository": {"type": "string"}, "license": {"type": "string"}, "atomTestRunner": {"type": "string"}, "engines": {"type": "object", "properties": {"atom": {"type": "string"}}, "required": ["atom"]}, "dependencies": {"type": "object", "properties": {"grim": {"type": "string"}}, "required": ["grim"]}, "devDependencies": {"type": "object", "properties": {"atom-mocha-test-runner": {"type": "string"}, "sinon": {"type": "string"}, "standard": {"type": "string"}}, "required": ["atom-mocha-test-runner", "sinon", "standard"]}, "standard": {"type": "object", "properties": {"env": {"type": "object", "properties": {"jasmine": {"type": "boolean"}}, "required": ["jasmine"]}, "globals": {"type": "array", "items": {"type": "string"}}}, "required": ["env", "globals"]}}, "required": ["name", "main", "version", "description", "keywords", "repository", "license", "atomTestRunner", "engines", "dependencies", "devDependencies", "standard"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"bonuses": {"type": "array", "items": {}}, "meta": {"type": "object", "properties": {"created_at": {"type": "string"}, "elapsed_s": {"type": "number"}, "git_commit": {"type": "string"}, "judge": {"type": "object", "properties": {"dislikes": {"type": "integer"}, "fit_in_hole": {"type": "boolean"}, "gained_bonuses": {"type": "array", "items": {}}, "is_valid": {"type": "boolean"}, "satisfy_stretch": {"type": "boolean"}}, "required": ["dislikes", "fit_in_hole", "gained_bonuses", "is_valid", "satisfy_stretch"]}, "solver": {"type": "string"}}, "required": ["created_at", "elapsed_s", "git_commit", "judge", "solver"]}, "vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["bonuses", "meta", "vertices"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"bonuses" : [], "meta" : {"created_at" : "2021/07/11 22:01:16", "elapsed_s" : 93.13038, "git_commit" : "3999b023565a5316729ed1947c0c5dbae699996b", "judge" : {"dislikes" : 0, "fit_in_hole" : true, "gained_bonuses" : [], "is_valid" : true, "satisfy_stretch" : true}, "solver" : "K3Solver"}, "vertices" : [[28, 0], [0, 4], [56, 4], [28, 0]]} | json_instruct | {"type": "object", "properties": {"bonuses": {"type": "array", "items": {}}, "meta": {"type": "object", "properties": {"created_at": {"type": "string"}, "elapsed_s": {"type": "number"}, "git_commit": {"type": "string"}, "judge": {"type": "object", "properties": {"dislikes": {"type": "integer"}, "fit_in_hole": {"type": "boolean"}, "gained_bonuses": {"type": "array", "items": {}}, "is_valid": {"type": "boolean"}, "satisfy_stretch": {"type": "boolean"}}, "required": ["dislikes", "fit_in_hole", "gained_bonuses", "is_valid", "satisfy_stretch"]}, "solver": {"type": "string"}}, "required": ["created_at", "elapsed_s", "git_commit", "judge", "solver"]}, "vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["bonuses", "meta", "vertices"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"guidelines.title": {"type": "string"}, "guidelines.header": {"type": "string"}, "guidelines.respectheader": {"type": "string"}, "guidelines.respectbody": {"type": "string"}, "guidelines.constructiveheader": {"type": "string"}, "guidelines.constructivebody": {"type": "string"}, "guidelines.shareheader": {"type": "string"}, "guidelines.sharebody": {"type": "string"}, "guidelines.privacyheader": {"type": "string"}, "guidelines.privacybody": {"type": "string"}, "guidelines.honestyheader": {"type": "string"}, "guidelines.honestybody": {"type": "string"}, "guidelines.friendlyheader": {"type": "string"}, "guidelines.friendlybody": {"type": "string"}, "guidelines.footer": {"type": "string"}}, "required": ["guidelines.title", "guidelines.header", "guidelines.respectheader", "guidelines.respectbody", "guidelines.constructiveheader", "guidelines.constructivebody", "guidelines.shareheader", "guidelines.sharebody", "guidelines.privacyheader", "guidelines.privacybody", "guidelines.honestyheader", "guidelines.honestybody", "guidelines.friendlyheader", "guidelines.friendlybody", "guidelines.footer"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"guidelines.title" : "Linhas de Orienta\u00e7\u00e3o da Comunidade Scratch", "guidelines.header" : "Precisamos da ajuda de todos para manter o Scratch uma comunidade amig\u00e1vel e criativa onde pessoas com diferentes origens e interesses se sentem bem-vindas.", "guidelines.respectheader" : "Seja respeitoso.", "guidelines.respectbody" : "Ao partilhar projectos ou publicar coment\u00e1rios, lembre-se de que pessoas de diferentes idades e origens ver\u00e3o o que partilhar.", "guidelines.constructiveheader" : "Seja construtivo.", "guidelines.constructivebody" : "Quando comentar os projectos de outros, diga o que \u00e9 que gosta nesses projectos e fa\u00e7a sugest\u00f5es.", "guidelines.shareheader" : "Partilhe.", "guidelines.sharebody" : "\u00c9 livre de remisturar projectos, ideias, imagens ou o que quer que encontre no Scratch \u2013 e qualquer pessoa pode usar o que quer que voc\u00ea partilhar. Lembre-se de dar os devidos cr\u00e9ditos quando remisturar.", "guidelines.privacyheader" : "Mantenha as suas informa\u00e7\u00f5es pessoais privadas.", "guidelines.privacybody" : "Por raz\u00f5es de seguran\u00e7a, n\u00e3o forne\u00e7a qualquer informa\u00e7\u00e3o que possa ser usada para comunica\u00e7\u00e3o privada - tal como apelidos reais, n\u00famero de telefone, moradas, endere\u00e7os de correio electr\u00f3nico e liga\u00e7\u00f5es para redes sociais ou s\u00edtios web suportando conversas n\u00e3o moderadas.", "guidelines.honestyheader" : "Seja honesto.", "guidelines.honestybody" : "N\u00e3o se tente fazer passar por outros Scratchadores, n\u00e3o espalhe boatos, nem tente de nenhuma outra forma enganar a comunidade.", "guidelines.friendlyheader" : "Ajude a manter o s\u00edtio Web amig\u00e1vel.", "guidelines.friendlybody" : "Se lhe parece que um projecto \u00e9 maldoso, insultuoso, demasiado violento ou de alguma outra forma desapropriado, clique em \u00abReportar\u00bb para nos informar.", "guidelines.footer" : "O Scratch acolhe pessoas de todas as idades, ra\u00e7as, etnias, religi\u00f5es, compet\u00eancias, orienta\u00e7\u00f5es sexuais e identidades de g\u00e9nero."} | json_instruct | {"type": "object", "properties": {"guidelines.title": {"type": "string"}, "guidelines.header": {"type": "string"}, "guidelines.respectheader": {"type": "string"}, "guidelines.respectbody": {"type": "string"}, "guidelines.constructiveheader": {"type": "string"}, "guidelines.constructivebody": {"type": "string"}, "guidelines.shareheader": {"type": "string"}, "guidelines.sharebody": {"type": "string"}, "guidelines.privacyheader": {"type": "string"}, "guidelines.privacybody": {"type": "string"}, "guidelines.honestyheader": {"type": "string"}, "guidelines.honestybody": {"type": "string"}, "guidelines.friendlyheader": {"type": "string"}, "guidelines.friendlybody": {"type": "string"}, "guidelines.footer": {"type": "string"}}, "required": ["guidelines.title", "guidelines.header", "guidelines.respectheader", "guidelines.respectbody", "guidelines.constructiveheader", "guidelines.constructivebody", "guidelines.shareheader", "guidelines.sharebody", "guidelines.privacyheader", "guidelines.privacybody", "guidelines.honestyheader", "guidelines.honestybody", "guidelines.friendlyheader", "guidelines.friendlybody", "guidelines.footer"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "preclusion": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "preclusion", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"courseCode" : "GE3241", "courseCredit" : "4", "description" : "This module explores debates in geography about social issues. It emphasises the relationship between social identity and social space, and how different places reflect and shape diverse ways of life. The module examines the role of space in the interplay of different social groups (e.g. ethnic groups, men/women), and in relation to different aspects of daily life (e.g. housing, leisure). Its emphasis, however, is on how to think about these issues in different scales/contexts (streets, public spaces, global cities). The course is intended for geography majors, and students throughout NUS with an interest in the relationship between society and space.", "faculty" : "Arts and Social Science", "preclusion" : "GE2224", "title" : "Geographies of Social Life"} | json_instruct | {"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "preclusion": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "preclusion", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"SymfonyBundles\\JsonRequestBundle\\": {"type": "string"}}, "required": ["SymfonyBundles\\JsonRequestBundle\\"]}, "exclude-from-classmap": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "exclude-from-classmap"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "symfony/framework-bundle": {"type": "string"}}, "required": ["php", "symfony/framework-bundle"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "phpunit/php-code-coverage": {"type": "string"}, "symfony/phpunit-bridge": {"type": "string"}, "symfony/yaml": {"type": "string"}}, "required": ["phpunit/phpunit", "phpunit/php-code-coverage", "symfony/phpunit-bridge", "symfony/yaml"]}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["branch-alias"]}}, "required": ["name", "type", "description", "keywords", "homepage", "license", "authors", "autoload", "require", "require-dev", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "symfony-bundles/json-request-bundle", "type" : "symfony-bundle", "description" : "Symfony JsonRequest Bundle", "keywords" : ["json", "symfony", "bundle", "angular"], "homepage" : "https://github.com/symfony-bundles/json-request-bundle", "license" : "MIT", "authors" : [{"name" : "Dmitry Khaperets", "email" : "khaperets@gmail.com"}], "autoload" : {"psr-4" : {"SymfonyBundles\\JsonRequestBundle\\" : ""}, "exclude-from-classmap" : ["/Tests/"]}, "require" : {"php" : ">=7.3", "symfony/framework-bundle" : "^4.3||^5.0"}, "require-dev" : {"phpunit/phpunit" : "^6.4", "phpunit/php-code-coverage" : "^5.0", "symfony/phpunit-bridge" : "^4.3||^5.0", "symfony/yaml" : "^4.3||^5.0"}, "extra" : {"branch-alias" : {"dev-master" : "3.x-dev"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"SymfonyBundles\\JsonRequestBundle\\": {"type": "string"}}, "required": ["SymfonyBundles\\JsonRequestBundle\\"]}, "exclude-from-classmap": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "exclude-from-classmap"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "symfony/framework-bundle": {"type": "string"}}, "required": ["php", "symfony/framework-bundle"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "phpunit/php-code-coverage": {"type": "string"}, "symfony/phpunit-bridge": {"type": "string"}, "symfony/yaml": {"type": "string"}}, "required": ["phpunit/phpunit", "phpunit/php-code-coverage", "symfony/phpunit-bridge", "symfony/yaml"]}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["branch-alias"]}}, "required": ["name", "type", "description", "keywords", "homepage", "license", "authors", "autoload", "require", "require-dev", "extra"], "$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.