input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"joint_goal_accuracy": {"type": "number"}, "slot": {"type": "object", "properties": {"accuracy": {"type": "number"}, "value_prediction": {"type": "object", "properties": {"prec": {"type": "number"}, "rec": {"type": "number"}, "f1": {"type": "number"}}, "required": ["prec", "rec", "f1"]}, "none_prediction": {"type": "object", "properties": {"prec": {"type": "number"}, "rec": {"type": "number"}, "f1": {"type": "number"}}, "required": ["prec", "rec", "f1"]}}, "required": ["accuracy", "value_prediction", "none_prediction"]}}, "required": ["joint_goal_accuracy", "slot"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"joint_goal_accuracy" : 0.26836672738312084, "slot" : {"accuracy" : 0.893993864442527, "value_prediction" : {"prec" : 0.8135369839909137, "rec" : 0.7758531073446346, "f1" : 0.7942483099775136}, "none_prediction" : {"prec" : 0.9464994505139311, "rec" : 0.9758070965850018, "f1" : 0.9609298601403191}}} | json_instruct | {"type": "object", "properties": {"joint_goal_accuracy": {"type": "number"}, "slot": {"type": "object", "properties": {"accuracy": {"type": "number"}, "value_prediction": {"type": "object", "properties": {"prec": {"type": "number"}, "rec": {"type": "number"}, "f1": {"type": "number"}}, "required": ["prec", "rec", "f1"]}, "none_prediction": {"type": "object", "properties": {"prec": {"type": "number"}, "rec": {"type": "number"}, "f1": {"type": "number"}}, "required": ["prec", "rec", "f1"]}}, "required": ["accuracy", "value_prediction", "none_prediction"]}}, "required": ["joint_goal_accuracy", "slot"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"title": {"type": "string"}, "data": {"type": "string"}, "defaultContent": {"type": "string"}, "visible": {"type": "boolean"}, "orderable": {"type": "boolean"}, "searchable": {"type": "boolean"}}, "required": ["title", "data", "defaultContent", "visible", "orderable", "searchable"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Alpha-3 Code", "data" : "alpha_3_code", "defaultContent" : "", "visible" : true, "orderable" : true, "searchable" : true} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "data": {"type": "string"}, "defaultContent": {"type": "string"}, "visible": {"type": "boolean"}, "orderable": {"type": "boolean"}, "searchable": {"type": "boolean"}}, "required": ["title", "data", "defaultContent", "visible", "orderable", "searchable"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"$schema": {"type": "string"}, "solution": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "version": {"type": "string"}, "includeClientSideAssets": {"type": "boolean"}, "skipFeatureDeployment": {"type": "boolean"}, "isDomainIsolated": {"type": "boolean"}, "developer": {"type": "object", "properties": {"name": {"type": "string"}, "websiteUrl": {"type": "string"}, "privacyUrl": {"type": "string"}, "termsOfUseUrl": {"type": "string"}, "mpnId": {"type": "string"}}, "required": ["name", "websiteUrl", "privacyUrl", "termsOfUseUrl", "mpnId"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "id": {"type": "string"}, "version": {"type": "string"}, "assets": {"type": "object", "properties": {"elementManifests": {"type": "array", "items": {"type": "string"}}}, "required": ["elementManifests"]}}, "required": ["title", "description", "id", "version", "assets"]}}}, "required": ["name", "id", "version", "includeClientSideAssets", "skipFeatureDeployment", "isDomainIsolated", "developer", "features"]}, "paths": {"type": "object", "properties": {"zippedPackage": {"type": "string"}}, "required": ["zippedPackage"]}}, "required": ["$schema", "solution", "paths"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "https://developer.microsoft.com/json-schemas/spfx-build/package-solution.schema.json", "solution" : {"name" : "Google Tag Manager extension", "id" : "42f8713a-93a5-410c-8a0b-c61e8a7e1c04", "version" : "0.4.0.0", "includeClientSideAssets" : true, "skipFeatureDeployment" : true, "isDomainIsolated" : false, "developer" : {"name" : "Christopher Parsons", "websiteUrl" : "https://github.com/cwparsons", "privacyUrl" : "", "termsOfUseUrl" : "", "mpnId" : ""}, "features" : [{"title" : "Application Extension - Deployment of custom action.", "description" : "Deploys a custom action with ClientSideComponentId association", "id" : "6ea1b240-ae1f-405a-af9f-5b398fcf7fd7", "version" : "1.0.0.0", "assets" : {"elementManifests" : ["elements.xml", "ClientSideInstance.xml"]}}]}, "paths" : {"zippedPackage" : "solution/spfx-google-tag-manager.sppkg"}} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "solution": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "version": {"type": "string"}, "includeClientSideAssets": {"type": "boolean"}, "skipFeatureDeployment": {"type": "boolean"}, "isDomainIsolated": {"type": "boolean"}, "developer": {"type": "object", "properties": {"name": {"type": "string"}, "websiteUrl": {"type": "string"}, "privacyUrl": {"type": "string"}, "termsOfUseUrl": {"type": "string"}, "mpnId": {"type": "string"}}, "required": ["name", "websiteUrl", "privacyUrl", "termsOfUseUrl", "mpnId"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "id": {"type": "string"}, "version": {"type": "string"}, "assets": {"type": "object", "properties": {"elementManifests": {"type": "array", "items": {"type": "string"}}}, "required": ["elementManifests"]}}, "required": ["title", "description", "id", "version", "assets"]}}}, "required": ["name", "id", "version", "includeClientSideAssets", "skipFeatureDeployment", "isDomainIsolated", "developer", "features"]}, "paths": {"type": "object", "properties": {"zippedPackage": {"type": "string"}}, "required": ["zippedPackage"]}}, "required": ["$schema", "solution", "paths"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"info": {"type": "object", "properties": {"author": {"type": "string"}, "version": {"type": "integer"}}, "required": ["author", "version"]}, "properties": {"type": "object", "properties": {"grid-size": {"type": "string"}}, "required": ["grid-size"]}, "stickers": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}}, "required": ["filename"]}}}, "required": ["info", "properties", "stickers"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"info" : {"author" : "xcode", "version" : 1}, "properties" : {"grid-size" : "regular"}, "stickers" : [{"filename" : "sticker-1.sticker"}, {"filename" : "sticker-2.sticker"}, {"filename" : "sticker-3.sticker"}, {"filename" : "sticker-4.sticker"}, {"filename" : "sticker-5.sticker"}, {"filename" : "sticker-6.sticker"}, {"filename" : "sticker-7.sticker"}, {"filename" : "sticker-8.sticker"}, {"filename" : "sticker-9.sticker"}, {"filename" : "sticker-10.sticker"}, {"filename" : "sticker-11.sticker"}, {"filename" : "sticker-12.sticker"}, {"filename" : "sticker-13.sticker"}, {"filename" : "sticker-14.sticker"}]} | json_instruct | {"type": "object", "properties": {"info": {"type": "object", "properties": {"author": {"type": "string"}, "version": {"type": "integer"}}, "required": ["author", "version"]}, "properties": {"type": "object", "properties": {"grid-size": {"type": "string"}}, "required": ["grid-size"]}, "stickers": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}}, "required": ["filename"]}}}, "required": ["info", "properties", "stickers"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"label" : "Person", "normalizedVertices" : [{"x" : 0.3022209, "y" : 0.13479473}, {"x" : 0.734485, "y" : 0.13479473}, {"x" : 0.734485, "y" : 0.9753229}, {"x" : 0.3022209, "y" : 0.9753229}], "score" : 0.8777457}, {"label" : "Footwear", "normalizedVertices" : [{"x" : 0.36978015, "y" : 0.84628797}, {"x" : 0.5004861, "y" : 0.84628797}, {"x" : 0.5004861, "y" : 0.96381736}, {"x" : 0.36978015, "y" : 0.96381736}], "score" : 0.7177706}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cam/image_array" : "5390_cam-image_array_.jpg", "user/angle" : 0.214, "user/throttle" : 0.394, "user/mode" : "user", "pos/pos_x" : 80.97835, "pos/pos_y" : 0.5529273, "pos/pos_z" : 23.81362, "pos/speed" : 13.89247, "pos/cte" : -6.452461, "milliseconds" : 286774} | json_instruct | {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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"}, "prepare": {"type": "string"}}, "required": ["test", "prepare"]}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"coz-engine": {"type": "string"}, "handlebars": {"type": "string"}, "stringcase": {"type": "string"}}, "required": ["coz-engine", "handlebars", "stringcase"]}, "devDependencies": {"type": "object", "properties": {"ababel": {"type": "string"}, "amocha": {"type": "string"}, "ape-releasing": {"type": "string"}, "ape-tasking": {"type": "string"}, "ape-tmpl": {"type": "string"}, "ape-updating": {"type": "string"}, "coz": {"type": "string"}}, "required": ["ababel", "amocha", "ape-releasing", "ape-tasking", "ape-tmpl", "ape-updating", "coz"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "coz-handlebars-engine", "version" : "4.1.1", "description" : "coz rendering engine with handlebars.", "main" : "shim/node", "scripts" : {"test" : "node ./ci/test.js", "prepare" : "node ./ci/build.js && node ./ci/shim.js"}, "repository" : "coz-labo/coz-handlebars-engine", "keywords" : ["coz", "engine"], "author" : {"name" : "Taka Okunishi", "url" : "http://okunishitaka.com"}, "license" : "MIT", "bugs" : {"url" : "https://github.com/coz-labo/coz-handlebars-engine/issues"}, "homepage" : "https://github.com/coz-labo/coz-handlebars-engine#readme", "dependencies" : {"coz-engine" : "^3.0.0", "handlebars" : "^4.7.2", "stringcase" : "^4.3.1"}, "devDependencies" : {"ababel" : "^6.1.2", "amocha" : "^7.0.1", "ape-releasing" : "^5.0.7", "ape-tasking" : "^4.0.12", "ape-tmpl" : "^6.0.14", "ape-updating" : "^5.0.3", "coz" : "^7.0.19"}, "engines" : {"node" : ">=8", "npm" : ">=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"}, "prepare": {"type": "string"}}, "required": ["test", "prepare"]}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"coz-engine": {"type": "string"}, "handlebars": {"type": "string"}, "stringcase": {"type": "string"}}, "required": ["coz-engine", "handlebars", "stringcase"]}, "devDependencies": {"type": "object", "properties": {"ababel": {"type": "string"}, "amocha": {"type": "string"}, "ape-releasing": {"type": "string"}, "ape-tasking": {"type": "string"}, "ape-tmpl": {"type": "string"}, "ape-updating": {"type": "string"}, "coz": {"type": "string"}}, "required": ["ababel", "amocha", "ape-releasing", "ape-tasking", "ape-tmpl", "ape-updating", "coz"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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" : [-86.5, 40.86]}, "type" : "Feature", "id" : "46978", "properties" : {"other_cities" : "", "city" : "Royal Center", "state" : "IN", "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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["Apache Software License", "BSD License", "Public Domain", "GNU General Public License v2 (GPLv2)", "GNU Lesser General Public License v2 (LGPLv2)", "GNU Library or Lesser General Public License (LGPL)", "License", "MIT License", "Mozilla Public License 2.0 (MPL 2.0)", "Python Software Foundation License"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"open": {"type": "string"}, "high": {"type": "string"}, "low": {"type": "string"}, "volume": {"type": "string"}, "last": {"type": "string"}, "volume_30day": {"type": "string"}}, "required": ["open", "high", "low", "volume", "last", "volume_30day"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"open" : "0.1538", "high" : "0.1568", "low" : "0.1457", "volume" : "4155171.8", "last" : "0.1489", "volume_30day" : "164647550.8"} | json_instruct | {"type": "object", "properties": {"open": {"type": "string"}, "high": {"type": "string"}, "low": {"type": "string"}, "volume": {"type": "string"}, "last": {"type": "string"}, "volume_30day": {"type": "string"}}, "required": ["open", "high", "low", "volume", "last", "volume_30day"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K14604": {"type": "string"}}, "required": ["K14604"]}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {"rn01120": {"type": "string"}, "rn00624": {"type": "string"}, "rn01100": {"type": "string"}}, "required": ["rn01120", "rn00624", "rn01100"]}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"comment" : "2-hydroxy-6-oxo-6-(2-carboxyphenyl)-hexa-2,4-dienoate hydrolase: FlnE", "definition" : "2-Hydroxy-6-oxo-6-(2-carboxyphenyl)-hexa-2,4-dienoate + H2O <=> Phthalate + 2-Hydroxy-2,4-pentadienoate", "orthologs" : {"K14604" : "2-hydroxy-6-oxo-6-(2'-carboxyphenyl)-hexa-2,4-dienoate hydrolase [EC:3.7.1.-]"}, "name" : "", "product_stoichiometries" : ["1", "1"], "enzymes" : ["3.7.1.-"], "equation" : "C16264 + C00001 <=> C01606 + C00596", "glycans" : false, "substrate_stoichiometries" : ["1", "1"], "rpairs" : {}, "entry_id" : "R07802", "pathways" : {"rn01120" : "Microbial metabolism in diverse environments", "rn00624" : "Polycyclic aromatic hydrocarbon degradation", "rn01100" : "Metabolic pathways"}, "products" : ["C01606", "C00596"], "substrates" : ["C16264", "C00001"]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K14604": {"type": "string"}}, "required": ["K14604"]}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {"rn01120": {"type": "string"}, "rn00624": {"type": "string"}, "rn01100": {"type": "string"}}, "required": ["rn01120", "rn00624", "rn01100"]}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$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"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "dependencies": {"type": "object", "properties": {"@types/debug": {"type": "string"}, "@types/json5": {"type": "string"}, "@types/lodash": {"type": "string"}, "@types/mkdirp": {"type": "string"}, "@types/node": {"type": "string"}, "debug": {"type": "string"}, "json5": {"type": "string"}, "lodash": {"type": "string"}, "mkdirp": {"type": "string"}}, "required": ["@types/debug", "@types/json5", "@types/lodash", "@types/mkdirp", "@types/node", "debug", "json5", "lodash", "mkdirp"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}}, "required": ["name", "version", "private", "description", "main", "types", "repository", "author", "license", "devDependencies", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@tslib/conf", "version" : "1.0.24", "private" : false, "description" : "config file loader for typescript", "main" : "dist/src/conf.js", "types" : "dist/src/conf.d.ts", "repository" : "git@github.com:mm-ts-lib/conf.git", "author" : "zhufeng <zhfjyq@163.com>", "license" : "MIT", "devDependencies" : {}, "dependencies" : {"@types/debug" : "^0.0.30", "@types/json5" : "^0.0.29", "@types/lodash" : "^4.14.107", "@types/mkdirp" : "^0.5.2", "@types/node" : "^9.6.2", "debug" : "^3.1.0", "json5" : "^1.0.1", "lodash" : "^4.17.5", "mkdirp" : "^0.5.1"}, "scripts" : {"test" : "ts-node ./test/test.ts"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "dependencies": {"type": "object", "properties": {"@types/debug": {"type": "string"}, "@types/json5": {"type": "string"}, "@types/lodash": {"type": "string"}, "@types/mkdirp": {"type": "string"}, "@types/node": {"type": "string"}, "debug": {"type": "string"}, "json5": {"type": "string"}, "lodash": {"type": "string"}, "mkdirp": {"type": "string"}}, "required": ["@types/debug", "@types/json5", "@types/lodash", "@types/mkdirp", "@types/node", "debug", "json5", "lodash", "mkdirp"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}}, "required": ["name", "version", "private", "description", "main", "types", "repository", "author", "license", "devDependencies", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"303774813": {"type": "string"}}, "required": ["303774813"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "TT", "version" : "0.1.0", "summary" : "iiiiii", "description" : "gjkgjkgggg", "homepage" : "https://github.com/303774813/TT", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"303774813" : "wangchao7@yiche.com"}, "source" : {"git" : "https://github.com/303774813/TT.git", "tag" : "0.1.0"}, "platforms" : {"ios" : "8.0"}, "source_files" : "TT/Classes/**/*"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"303774813": {"type": "string"}}, "required": ["303774813"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1973, 24], [1976, 5], [1977, 11], [1978, 7], [1979, 7], [1980, 8], [1981, 11], [1982, 13], [1983, 13], [1984, 9], [1985, 7], [1986, 14], [1987, 9], [1988, 11], [1989, 11], [1990, 11], [1991, 15], [1992, 13], [1993, 14], [1994, 9], [1995, 14], [1996, 15], [1997, 19], [1998, 20], [1999, 37], [2000, 32], [2001, 24], [2002, 39], [2003, 32], [2004, 53], [2005, 51], [2006, 45], [2007, 55], [2008, 39], [2009, 41], [2010, 26], [2011, 26], [2012, 26], [2013, 18], [2014, 30]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"sources": {"type": "array", "items": {"type": "object", "properties": {"file": {"type": "string"}, "labels": {"type": "array", "items": {"type": "string"}}}, "required": ["file", "labels"]}}, "target": {"type": "object", "properties": {"labels": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}}, "required": ["labels", "name"]}}, "required": ["sources", "target"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sources" : [{"file" : "C:/Source/opencv/opencv_contrib-4.1.1/modules/face/test/test_bif.cpp", "labels" : ["Extra", "opencv_face", "AccuracyTest"]}, {"file" : "C:/Source/opencv/opencv_contrib-4.1.1/modules/face/test/test_face_align.cpp", "labels" : ["Extra", "opencv_face", "AccuracyTest"]}, {"file" : "C:/Source/opencv/opencv_contrib-4.1.1/modules/face/test/test_facemark.cpp", "labels" : ["Extra", "opencv_face", "AccuracyTest"]}, {"file" : "C:/Source/opencv/opencv_contrib-4.1.1/modules/face/test/test_facemark_aam.cpp", "labels" : ["Extra", "opencv_face", "AccuracyTest"]}, {"file" : "C:/Source/opencv/opencv_contrib-4.1.1/modules/face/test/test_facemark_lbf.cpp", "labels" : ["Extra", "opencv_face", "AccuracyTest"]}, {"file" : "C:/Source/opencv/opencv_contrib-4.1.1/modules/face/test/test_loadsave.cpp", "labels" : ["Extra", "opencv_face", "AccuracyTest"]}, {"file" : "C:/Source/opencv/opencv_contrib-4.1.1/modules/face/test/test_mace.cpp", "labels" : ["Extra", "opencv_face", "AccuracyTest"]}, {"file" : "C:/Source/opencv/opencv_contrib-4.1.1/modules/face/test/test_main.cpp", "labels" : ["Extra", "opencv_face", "AccuracyTest"]}, {"file" : "C:/Source/opencv/opencv_contrib-4.1.1/modules/face/test/test_precomp.hpp", "labels" : ["Extra", "opencv_face", "AccuracyTest"]}], "target" : {"labels" : ["Extra", "opencv_face", "AccuracyTest"], "name" : "opencv_test_face"}} | json_instruct | {"type": "object", "properties": {"sources": {"type": "array", "items": {"type": "object", "properties": {"file": {"type": "string"}, "labels": {"type": "array", "items": {"type": "string"}}}, "required": ["file", "labels"]}}, "target": {"type": "object", "properties": {"labels": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}}, "required": ["labels", "name"]}}, "required": ["sources", "target"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "build": {"type": "string"}, "postinstall": {"type": "string"}, "lint": {"type": "string"}, "tslint-check": {"type": "string"}, "preformat": {"type": "string"}, "format": {"type": "string"}, "test": {"type": "string"}}, "required": ["bootstrap", "build", "postinstall", "lint", "tslint-check", "preformat", "format", "test"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "jest": {"type": "string"}, "lerna": {"type": "string"}, "prettier": {"type": "string"}, "tslint": {"type": "string"}, "tslint-config-prettier": {"type": "string"}}, "required": ["@types/jest", "jest", "lerna", "prettier", "tslint", "tslint-config-prettier"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "workspaces": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "private", "scripts", "keywords", "author", "license", "devDependencies", "engines", "workspaces", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "carcassonne-scoreboard-app", "private" : true, "scripts" : {"bootstrap" : "lerna bootstrap", "build" : "lerna run build", "postinstall" : "npm run bootstrap", "lint" : "tslint -p tsconfig.json \"packages/*/{src,test}/**/*.{ts,tsx}\"", "tslint-check" : "tslint-config-prettier-check ./tslint.json", "preformat" : "npm run tslint-check && npm run lint", "format" : "prettier \"packages/*/{src,test}/**/*.{ts,tsx}\" --write", "test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : [], "author" : "", "license" : "MIT", "devDependencies" : {"@types/jest" : "^24.0.15", "jest" : "^24.8.0", "lerna" : "^3.15.0", "prettier" : "^1.18.2", "tslint" : "^5.18.0", "tslint-config-prettier" : "^1.18.0"}, "engines" : {"node" : ">=8.0.0"}, "workspaces" : ["packages/*"], "dependencies" : {}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "build": {"type": "string"}, "postinstall": {"type": "string"}, "lint": {"type": "string"}, "tslint-check": {"type": "string"}, "preformat": {"type": "string"}, "format": {"type": "string"}, "test": {"type": "string"}}, "required": ["bootstrap", "build", "postinstall", "lint", "tslint-check", "preformat", "format", "test"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "jest": {"type": "string"}, "lerna": {"type": "string"}, "prettier": {"type": "string"}, "tslint": {"type": "string"}, "tslint-config-prettier": {"type": "string"}}, "required": ["@types/jest", "jest", "lerna", "prettier", "tslint", "tslint-config-prettier"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "workspaces": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "private", "scripts", "keywords", "author", "license", "devDependencies", "engines", "workspaces", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"gdg": {"type": "string"}, "meet": {"type": "string"}}, "required": ["gdg", "meet"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"gdg" : "https://gdg.community.dev", "meet" : "https://www.meetup.com/find/"} | json_instruct | {"type": "object", "properties": {"gdg": {"type": "string"}, "meet": {"type": "string"}}, "required": ["gdg", "meet"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"translations": {"type": "object", "properties": {"About": {"type": "string"}, "Get the apps to sync your files": {"type": "string"}, "Desktop client": {"type": "string"}, "Android app": {"type": "string"}, "iOS app": {"type": "string"}, "Connect your desktop apps to %s": {"type": "string"}, "Access files via WebDAV": {"type": "string"}, "Server address": {"type": "string"}, "Copy link": {"type": "string"}, "Previous": {"type": "string"}, "Next": {"type": "string"}}, "required": ["About", "Get the apps to sync your files", "Desktop client", "Android app", "iOS app", "Connect your desktop apps to %s", "Access files via WebDAV", "Server address", "Copy link", "Previous", "Next"]}, "pluralForm": {"type": "string"}}, "required": ["translations", "pluralForm"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"translations" : {"About" : "Haqq\u0131nda", "Get the apps to sync your files" : "Fayllar\u0131n\u0131z\u0131n sinxronizasiyas\u0131 \u00fc\u00e7\u00fcn proqramlar\u0131 g\u00f6t\u00fcr\u00fcn", "Desktop client" : "Desktop client", "Android app" : "Android proqram\u0131", "iOS app" : "iOS proqram\u0131", "Connect your desktop apps to %s" : "Desktop proqram\u0131n\u0131z\u0131 %s-\u0259 qo\u015fun", "Access files via WebDAV" : "Fayllara WebDAV il\u0259 yetki", "Server address" : "Server \u00fcnvan\u0131", "Copy link" : "linki n\u00fcsx\u0259l\u0259", "Previous" : "\u018fvv\u0259l\u0259", "Next" : "N\u00f6vb\u0259ti"}, "pluralForm" : "nplurals=2; plural=(n != 1);"} | json_instruct | {"type": "object", "properties": {"translations": {"type": "object", "properties": {"About": {"type": "string"}, "Get the apps to sync your files": {"type": "string"}, "Desktop client": {"type": "string"}, "Android app": {"type": "string"}, "iOS app": {"type": "string"}, "Connect your desktop apps to %s": {"type": "string"}, "Access files via WebDAV": {"type": "string"}, "Server address": {"type": "string"}, "Copy link": {"type": "string"}, "Previous": {"type": "string"}, "Next": {"type": "string"}}, "required": ["About", "Get the apps to sync your files", "Desktop client", "Android app", "iOS app", "Connect your desktop apps to %s", "Access files via WebDAV", "Server address", "Copy link", "Previous", "Next"]}, "pluralForm": {"type": "string"}}, "required": ["translations", "pluralForm"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "nesbot/carbon": {"type": "string"}, "monolog/monolog": {"type": "string"}}, "required": ["php", "nesbot/carbon", "monolog/monolog"]}, "require-dev": {"type": "object", "properties": {"mockery/mockery": {"type": "string"}, "laravel/framework": {"type": "string"}, "laravel/laravel": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["mockery/mockery", "laravel/framework", "laravel/laravel", "phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"anlutro\\LaravelTesting\\": {"type": "string"}}, "required": ["anlutro\\LaravelTesting\\"]}}, "required": ["psr-4"]}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}}, "required": ["name", "description", "license", "authors", "require", "require-dev", "autoload", "minimum-stability", "prefer-stable"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "anlutro/l4-testing", "description" : "Base PHPUnit classes for Laravel 4.", "license" : "MIT", "authors" : [{"name" : "Andreas Lutro", "email" : "anlutro@gmail.com"}], "require" : {"php" : ">=5.4.0", "nesbot/carbon" : "~1.3", "monolog/monolog" : "~1.1"}, "require-dev" : {"mockery/mockery" : "0.9.*", "laravel/framework" : ">=4.1, <6", "laravel/laravel" : ">=4.1, <6", "phpunit/phpunit" : ">=4, <6"}, "autoload" : {"psr-4" : {"anlutro\\LaravelTesting\\" : "src/"}}, "minimum-stability" : "dev", "prefer-stable" : true} | 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": {"php": {"type": "string"}, "nesbot/carbon": {"type": "string"}, "monolog/monolog": {"type": "string"}}, "required": ["php", "nesbot/carbon", "monolog/monolog"]}, "require-dev": {"type": "object", "properties": {"mockery/mockery": {"type": "string"}, "laravel/framework": {"type": "string"}, "laravel/laravel": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["mockery/mockery", "laravel/framework", "laravel/laravel", "phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"anlutro\\LaravelTesting\\": {"type": "string"}}, "required": ["anlutro\\LaravelTesting\\"]}}, "required": ["psr-4"]}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}}, "required": ["name", "description", "license", "authors", "require", "require-dev", "autoload", "minimum-stability", "prefer-stable"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"docs": {"type": "string"}}, "required": ["docs"]}, "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": {"jasmine-core": {"type": "string"}, "jsdoc-to-markdown": {"type": "string"}, "karma": {"type": "string"}, "karma-chrome-launcher": {"type": "string"}, "karma-firefox-launcher": {"type": "string"}, "karma-ie-launcher": {"type": "string"}, "karma-ievms": {"type": "string"}, "karma-jasmine": {"type": "string"}, "karma-jasmine-html-reporter": {"type": "string"}, "karma-opera-launcher": {"type": "string"}, "karma-phantomjs-launcher": {"type": "string"}, "karma-safari-launcher": {"type": "string"}, "karma-spec-reporter": {"type": "string"}, "phantomjs-prebuilt": {"type": "string"}}, "required": ["jasmine-core", "jsdoc-to-markdown", "karma", "karma-chrome-launcher", "karma-firefox-launcher", "karma-ie-launcher", "karma-ievms", "karma-jasmine", "karma-jasmine-html-reporter", "karma-opera-launcher", "karma-phantomjs-launcher", "karma-safari-launcher", "karma-spec-reporter", "phantomjs-prebuilt"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "binary-variations", "version" : "1.0.2", "description" : "A small permutations module, which gives you all possible binary variations in order. ", "main" : "index.js", "scripts" : {"docs" : "jsdoc2md --helper ./handlebars-helper/rawinclude.js --template README.hbs \"index.js\" --verbose > README.md"}, "repository" : {"type" : "git", "url" : "git@github.com:AndyOGo/binary-variations.git"}, "keywords" : ["permutations", "variations", "binary-variations"], "author" : "Andreas Deuschlinger", "license" : "MIT", "bugs" : {"url" : "https://github.com/AndyOGo/binary-variations/issues"}, "homepage" : "https://github.com/AndyOGo/binary-variations", "devDependencies" : {"jasmine-core" : "^2.4.1", "jsdoc-to-markdown" : "^1.3.3", "karma" : "^0.13.22", "karma-chrome-launcher" : "^0.2.2", "karma-firefox-launcher" : "^0.1.7", "karma-ie-launcher" : "^0.2.0", "karma-ievms" : "^0.1.0", "karma-jasmine" : "^0.3.7", "karma-jasmine-html-reporter" : "^0.2.0", "karma-opera-launcher" : "^0.3.0", "karma-phantomjs-launcher" : "^1.0.0", "karma-safari-launcher" : "^0.1.1", "karma-spec-reporter" : "0.0.24", "phantomjs-prebuilt" : "^2.1.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"docs": {"type": "string"}}, "required": ["docs"]}, "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": {"jasmine-core": {"type": "string"}, "jsdoc-to-markdown": {"type": "string"}, "karma": {"type": "string"}, "karma-chrome-launcher": {"type": "string"}, "karma-firefox-launcher": {"type": "string"}, "karma-ie-launcher": {"type": "string"}, "karma-ievms": {"type": "string"}, "karma-jasmine": {"type": "string"}, "karma-jasmine-html-reporter": {"type": "string"}, "karma-opera-launcher": {"type": "string"}, "karma-phantomjs-launcher": {"type": "string"}, "karma-safari-launcher": {"type": "string"}, "karma-spec-reporter": {"type": "string"}, "phantomjs-prebuilt": {"type": "string"}}, "required": ["jasmine-core", "jsdoc-to-markdown", "karma", "karma-chrome-launcher", "karma-firefox-launcher", "karma-ie-launcher", "karma-ievms", "karma-jasmine", "karma-jasmine-html-reporter", "karma-opera-launcher", "karma-phantomjs-launcher", "karma-safari-launcher", "karma-spec-reporter", "phantomjs-prebuilt"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "card_title": {"type": "string"}, "house": {"type": "string"}, "card_type": {"type": "string"}, "front_image": {"type": "string"}, "card_text": {"type": "string"}, "traits": {"type": "string"}, "amber": {"type": "integer"}, "power": {"type": "null"}, "armor": {"type": "null"}, "rarity": {"type": "string"}, "flavor_text": {"type": "string"}, "card_number": {"type": "string"}, "expansion": {"type": "integer"}, "is_maverick": {"type": "boolean"}, "is_anomaly": {"type": "boolean"}}, "required": ["id", "card_title", "house", "card_type", "front_image", "card_text", "traits", "amber", "power", "armor", "rarity", "flavor_text", "card_number", "expansion", "is_maverick", "is_anomaly"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "a6921678-860c-418f-8075-a0a912b57415", "card_title" : "Gel M\u00edmico", "house" : "Logos", "card_type" : "Creature", "front_image" : "https://cdn.keyforgegame.com/media/card_front/pt/452_170_X8P36WJC7CQV_pt.png", "card_text" : "Gel M\u00edmico n\u00e3o pode ser jogado a menos que haja outra criatura em jogo.\rGel M\u00edmico entra em jogo como uma c\u00f3pia de outra criatura em jogo, mas ela pertencer\u00e1 \u00e0 casa Logos.", "traits" : "Metamorfo \u2022 Mutante", "amber" : 0, "power" : null, "armor" : null, "rarity" : "Rare", "flavor_text" : "", "card_number" : "170", "expansion" : 452, "is_maverick" : false, "is_anomaly" : false} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "card_title": {"type": "string"}, "house": {"type": "string"}, "card_type": {"type": "string"}, "front_image": {"type": "string"}, "card_text": {"type": "string"}, "traits": {"type": "string"}, "amber": {"type": "integer"}, "power": {"type": "null"}, "armor": {"type": "null"}, "rarity": {"type": "string"}, "flavor_text": {"type": "string"}, "card_number": {"type": "string"}, "expansion": {"type": "integer"}, "is_maverick": {"type": "boolean"}, "is_anomaly": {"type": "boolean"}}, "required": ["id", "card_title", "house", "card_type", "front_image", "card_text", "traits", "amber", "power", "armor", "rarity", "flavor_text", "card_number", "expansion", "is_maverick", "is_anomaly"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"message": {"type": "string"}, "error": {"type": "string"}, "cause": {"type": "array", "items": {}}}, "required": ["message", "error", "cause"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"message" : "campaign code doesnt match", "error" : "campaign-code-doesnt-match", "cause" : []} | json_instruct | {"type": "object", "properties": {"message": {"type": "string"}, "error": {"type": "string"}, "cause": {"type": "array", "items": {}}}, "required": ["message", "error", "cause"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"noEmit": {"type": "boolean"}, "downlevelIteration": {"type": "boolean"}}, "required": ["noEmit", "downlevelIteration"]}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"extends" : "./tsconfig.json", "compilerOptions" : {"noEmit" : true, "downlevelIteration" : true}, "exclude" : ["coverage", "dist", "docs", "examples", "package", "node_modules"]} | json_instruct | {"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"noEmit": {"type": "boolean"}, "downlevelIteration": {"type": "boolean"}}, "required": ["noEmit", "downlevelIteration"]}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"02-2018": {"type": "integer"}, "04-2018": {"type": "integer"}, "05-2018": {"type": "integer"}, "06-2018": {"type": "integer"}}, "required": ["02-2018", "04-2018", "05-2018", "06-2018"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"02-2018" : 1, "04-2018" : 4, "05-2018" : 351, "06-2018" : 11} | json_instruct | {"type": "object", "properties": {"02-2018": {"type": "integer"}, "04-2018": {"type": "integer"}, "05-2018": {"type": "integer"}, "06-2018": {"type": "integer"}}, "required": ["02-2018", "04-2018", "05-2018", "06-2018"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"config": {"type": "object", "properties": {"step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"host_ip": {"type": "string"}, "name": {"type": "string"}}, "required": ["host_ip", "name"]}}, "required": ["data"]}}, "required": ["user"]}}, "required": ["step"]}}, "required": ["config"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"config" : {"step" : {"user" : {"data" : {"host_ip" : "\u0e42\u0e2e\u0e2a\u0e15\u0e4c IP", "name" : "\u0e0a\u0e37\u0e48\u0e2d"}}}}} | json_instruct | {"type": "object", "properties": {"config": {"type": "object", "properties": {"step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"host_ip": {"type": "string"}, "name": {"type": "string"}}, "required": ["host_ip", "name"]}}, "required": ["data"]}}, "required": ["user"]}}, "required": ["step"]}}, "required": ["config"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "", "user" : "michaelkuhn", "url" : "https://api.github.com/repos/spack/spack/issues/15024", "updated_at" : "2020-02-18 02:25:21", "created_at" : "2020-02-17 15:31:57", "closed_at" : "2020-02-18 02:25:21", "state" : "closed", "title" : "node-js: Add 12.16.0 and 13.8.0", "number" : 15024, "milestone" : null, "labels" : ["new-version"], "id" : 566373798, "html_url" : "https://github.com/spack/spack/pull/15024", "assignees" : [], "comments" : 0} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {"type": "string"}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "fax", "phone", "website", "email", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Rivius-Gymnasium der Stadt Attendorn", "id" : "NRW-170239", "address" : "Westwall 48, 57439 Attendorn", "school_type" : "Gymnasium", "fax" : "02722 639954", "phone" : "02722 5953", "website" : " http://www.rivius-gymnasium.de", "email" : " 170239@schule.nrw.de ", "state" : "NRW", "programs" : {"programs" : ["Fairtrade Schools", "Schule ohne Rassismus - Schule mit Courage"]}, "full_time_school" : false, "lon" : 7.900005, "lat" : 51.127421} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {"type": "string"}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "fax", "phone", "website", "email", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"website": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "string"}, "id": {"type": "string"}, "director": {"type": "string"}, "phone": {"type": "string"}, "provider": {"type": "string"}, "email": {"type": "string"}, "state": {"type": "string"}, "full_time_school": {"type": "boolean"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["website", "school_type", "fax", "name", "address", "id", "director", "phone", "provider", "email", "state", "full_time_school", "programs", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"website" : "johanna-schule.barnim.de", "school_type" : "Schule mit dem sonderp\u00e4d. F\u00f6rderschwerpunkt emotionale und soziale Entwicklung", "fax" : "03338 754689", "name" : "Johanna-Schule Schule mit dem sonderp\u00e4dagogischen F\u00f6rderschwerpunkt \"emotionale und soziale Entwicklung\" ", "address" : "M\u00fchlenstra\u00dfe 19 16321 Bernau bei Berlin", "id" : "BB-400580", "director" : "Herr Lindemann", "phone" : "03338 5633", "provider" : "Kreis", "email" : "johanna-schule-bernau|at|barnim.de\n", "state" : "BB", "full_time_school" : false, "programs" : {"programs" : []}, "lon" : 13.584463, "lat" : 52.680242} | json_instruct | {"type": "object", "properties": {"website": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "string"}, "id": {"type": "string"}, "director": {"type": "string"}, "phone": {"type": "string"}, "provider": {"type": "string"}, "email": {"type": "string"}, "state": {"type": "string"}, "full_time_school": {"type": "boolean"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["website", "school_type", "fax", "name", "address", "id", "director", "phone", "provider", "email", "state", "full_time_school", "programs", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "AN/PVS-14 Night Vision Monocular", "ShortName" : "PVS-14", "Description" : "AN/PVS-14 Monocular Night Vision Device.\nArmy/Navy Portable Visual Search device allows nighttime detection of targets on distances of up to 350m with 40\u00b0\nFOV and adjustable brightness."} | json_instruct | {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "Zaitech", "definitions" : ["Investment in financial markets by a company in order to boost profits. "], "parts-of-speech" : "Noun"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"data.json": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}, "required": ["sha512", "size"]}}, "required": ["data.json"]}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": "object", "properties": {"14Knzt7E5McPxaUHrQ8nwoBhwFAPmtRzD1": {"type": "string"}}, "required": ["14Knzt7E5McPxaUHrQ8nwoBhwFAPmtRzD1"]}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"address" : "1TaLkFrMwvbNsooF4ioKAY9EuxTBTjipT", "cert_auth_type" : "web", "cert_sign" : "Gx9FrZVtxOveujXDsM+xSKxFloGaT66sIJ7zY7v3zaCyzfHpUIZz73aOsmwqkUIAL+59mp4RJA7xSdgJQhH4ngM=", "cert_user_id" : "gbhtv@zeroid.bit", "files" : {"data.json" : {"sha512" : "9dfa93c13cf30e978e19506d3cb05fad1628af6074949a7f9024eb299aa19fd5", "size" : 378}}, "inner_path" : "data/users/14Knzt7E5McPxaUHrQ8nwoBhwFAPmtRzD1/content.json", "modified" : 1493455293, "signs" : {"14Knzt7E5McPxaUHrQ8nwoBhwFAPmtRzD1" : "GwYgJ2kqDtUamqnH+/eKecF+BMkyAsltLJHnw1yRZ7SaGk6IRfKfbhusMintOfFqPTbkQYi9zqBeyjWbADXInrM="}} | json_instruct | {"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"data.json": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}, "required": ["sha512", "size"]}}, "required": ["data.json"]}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": "object", "properties": {"14Knzt7E5McPxaUHrQ8nwoBhwFAPmtRzD1": {"type": "string"}}, "required": ["14Knzt7E5McPxaUHrQ8nwoBhwFAPmtRzD1"]}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"title": {"type": "string"}, "artist": {"type": "string"}, "year": {"type": "string"}, "albumCover": {"type": "string"}, "albumPrice": {"type": "number"}, "tracks": {"type": "array", "items": {"type": "object", "properties": {"order": {"type": "integer"}, "trackTitle": {"type": "string"}, "length": {"type": "string"}}, "required": ["order", "trackTitle", "length"]}}}, "required": ["title", "artist", "year", "albumCover", "albumPrice", "tracks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Highway 61 Revisited", "artist" : "Bob Dylan", "year" : "1965", "albumCover" : "assets/img/bobDylanHighway61Revisited.jpg", "albumPrice" : 6.99, "tracks" : [{"order" : 1, "trackTitle" : "Like a Rolling Stone", "length" : "6:13"}, {"order" : 2, "trackTitle" : "Tombstone Blues", "length" : "6:00"}, {"order" : 3, "trackTitle" : "It Takes a Lot to Laugh, It Takes a Train to Cry", "length" : "4:09"}, {"order" : 4, "trackTitle" : "From a Buick 6", "length" : "3:19"}, {"order" : 5, "trackTitle" : "Ballad of a Thin Man", "length" : "5:58"}, {"order" : 6, "trackTitle" : "Queen Jane Approximately", "length" : "5:31"}, {"order" : 7, "trackTitle" : "Highway 61 Revisited", "length" : "3:30"}, {"order" : 8, "trackTitle" : "Just Like Tom Thumb's Blues", "length" : "5:32"}, {"order" : 9, "trackTitle" : "Desolation Row", "length" : "11:21"}]} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "artist": {"type": "string"}, "year": {"type": "string"}, "albumCover": {"type": "string"}, "albumPrice": {"type": "number"}, "tracks": {"type": "array", "items": {"type": "object", "properties": {"order": {"type": "integer"}, "trackTitle": {"type": "string"}, "length": {"type": "string"}}, "required": ["order", "trackTitle", "length"]}}}, "required": ["title", "artist", "year", "albumCover", "albumPrice", "tracks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"display-name": {"type": "string"}, "questions": {"type": "array", "items": {}}}, "required": ["display-name", "questions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"display-name" : "Les tests simples", "questions" : []} | json_instruct | {"type": "object", "properties": {"display-name": {"type": "string"}, "questions": {"type": "array", "items": {}}}, "required": ["display-name", "questions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "private": {"type": "boolean"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"storage-aws": {"type": "string"}, "storage-azure": {"type": "string"}, "storage-core": {"type": "string"}, "storage-gcp": {"type": "string"}, "ts-node": {"type": "string"}}, "required": ["storage-aws", "storage-azure", "storage-core", "storage-gcp", "ts-node"]}}, "required": ["name", "version", "description", "author", "homepage", "private", "repository", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "samples", "version" : "0.7.2", "description" : "Samples", "author" : "Justin Brooks <jsbroks@gmail.com>", "homepage" : "https://github.com/datatorch/node-storage#readme", "private" : true, "repository" : {"type" : "git", "url" : "git+https://github.com/datatorch/node-storage.git"}, "dependencies" : {"storage-aws" : "^0.7.2", "storage-azure" : "^0.7.2", "storage-core" : "^0.7.2", "storage-gcp" : "^0.7.2", "ts-node" : "^9.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "private": {"type": "boolean"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"storage-aws": {"type": "string"}, "storage-azure": {"type": "string"}, "storage-core": {"type": "string"}, "storage-gcp": {"type": "string"}, "ts-node": {"type": "string"}}, "required": ["storage-aws", "storage-azure", "storage-core", "storage-gcp", "ts-node"]}}, "required": ["name", "version", "description", "author", "homepage", "private", "repository", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"VERSIONS": {"type": "array", "items": {"type": "string"}}, "COMPONENTS_BY_VERSION": {"type": "object", "properties": {"latest": {"type": "object", "properties": {"bridle": {"type": "string"}, "zephyr": {"type": "string"}}, "required": ["bridle", "zephyr"]}, "2.6.0": {"type": "object", "properties": {"bridle": {"type": "string"}, "zephyr": {"type": "string"}}, "required": ["bridle", "zephyr"]}, "2.5": {"type": "object", "properties": {"bridle": {"type": "string"}, "zephyr": {"type": "string"}}, "required": ["bridle", "zephyr"]}, "2.5.0": {"type": "object", "properties": {"bridle": {"type": "string"}, "zephyr": {"type": "string"}}, "required": ["bridle", "zephyr"]}}, "required": ["latest", "2.6.0", "2.5", "2.5.0"]}}, "required": ["VERSIONS", "COMPONENTS_BY_VERSION"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"VERSIONS" : ["latest", "2.6.0", "2.5", "2.5.0"], "COMPONENTS_BY_VERSION" : {"latest" : {"bridle" : "2.6.99", "zephyr" : "2.6.0"}, "2.6.0" : {"bridle" : "2.6.0", "zephyr" : "2.6.0"}, "2.5" : {"bridle" : "2.5.0", "zephyr" : "2.5.0"}, "2.5.0" : {"bridle" : "2.5.0", "zephyr" : "2.5.0"}}} | json_instruct | {"type": "object", "properties": {"VERSIONS": {"type": "array", "items": {"type": "string"}}, "COMPONENTS_BY_VERSION": {"type": "object", "properties": {"latest": {"type": "object", "properties": {"bridle": {"type": "string"}, "zephyr": {"type": "string"}}, "required": ["bridle", "zephyr"]}, "2.6.0": {"type": "object", "properties": {"bridle": {"type": "string"}, "zephyr": {"type": "string"}}, "required": ["bridle", "zephyr"]}, "2.5": {"type": "object", "properties": {"bridle": {"type": "string"}, "zephyr": {"type": "string"}}, "required": ["bridle", "zephyr"]}, "2.5.0": {"type": "object", "properties": {"bridle": {"type": "string"}, "zephyr": {"type": "string"}}, "required": ["bridle", "zephyr"]}}, "required": ["latest", "2.6.0", "2.5", "2.5.0"]}}, "required": ["VERSIONS", "COMPONENTS_BY_VERSION"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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" : "TOBA SAMOSIR", "originalFilename" : "VIKTOR SILALAHI.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 129337, "noUrut" : 1, "nama" : "Ir. VIKTOR HALOMOAN SILALAHI", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA MEDAN", "originalFilename" : "LINTONG.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 263118, "noUrut" : 2, "nama" : "Ir. LINTONG SITORUS", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "TOBA SAMOSIR", "originalFilename" : "JUITA MANURUNG.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 134940, "noUrut" : 3, "nama" : "JUITA FILLA MANURUNG, S.Th", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTA PEMATANGSIANTAR", "originalFilename" : "ELSAWANTY.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 230481, "noUrut" : 4, "nama" : "ELSAWANTY CRISTIANI PURBA, A.Md", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "TOBA SAMOSIR", "originalFilename" : "RUSTAM.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 149356, "noUrut" : 5, "nama" : "RUSTAM SILALAHI", "stringJenisKelamin" : "Laki-Laki"}] | 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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "flags": {"type": "array", "items": {"type": "string"}}, "restrictions": {"type": "array", "items": {}}, "rarity": {"type": "string"}, "id": {"type": "integer"}, "icon": {"type": "string"}, "details": {"type": "object", "properties": {"type": {"type": "string"}, "damage_type": {"type": "string"}}, "required": ["type", "damage_type"]}}, "required": ["name", "type", "flags", "restrictions", "rarity", "id", "icon", "details"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "The Ender of All", "type" : "Weapon", "flags" : ["ShowInWardrobe"], "restrictions" : [], "rarity" : "Basic", "id" : 7863, "icon" : "https://render.guildwars2.com/file/9C0AA3B821A949E1030715BBFED190300759945C/1895053.png", "details" : {"type" : "Sword", "damage_type" : "Physical"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "flags": {"type": "array", "items": {"type": "string"}}, "restrictions": {"type": "array", "items": {}}, "rarity": {"type": "string"}, "id": {"type": "integer"}, "icon": {"type": "string"}, "details": {"type": "object", "properties": {"type": {"type": "string"}, "damage_type": {"type": "string"}}, "required": ["type", "damage_type"]}}, "required": ["name", "type", "flags", "restrictions", "rarity", "id", "icon", "details"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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" : 2186, "cartId" : "2db8b12c-25d5-43d0-a6ba-3d857c8f38e4", "preferredProducts" : [3782, 402, 4422, 2093, 571], "productReviews" : [{"productId" : 4091, "reviewText" : "one of my hobbies is mushroom cultivation. and when i'm cultivating mushrooms this works great.", "reviewDate" : "2019-06-05T17:41:55.3565235+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"skyblock_id": {"type": "string"}, "quantity": {"type": "string"}, "item_name": {"type": "string"}}, "required": ["skyblock_id", "quantity", "item_name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"skyblock_id" : "ENCHANTED_ENDER_PEARL", "quantity" : "6", "item_name" : "Enchanted ender pearl"}, {"skyblock_id" : "ENCHANTED_ENDER_PEARL", "quantity" : "6", "item_name" : "Enchanted ender pearl"}, {"skyblock_id" : "ENCHANTED_ENDER_PEARL", "quantity" : "6", "item_name" : "Enchanted ender pearl"}, {"skyblock_id" : "ENCHANTED_ENDER_PEARL", "quantity" : "6", "item_name" : "Enchanted ender pearl"}, {"skyblock_id" : "ENDERMAN_GENERATOR_4", "quantity" : "1", "item_name" : "Enderman generator 4"}, {"skyblock_id" : "ENCHANTED_ENDER_PEARL", "quantity" : "6", "item_name" : "Enchanted ender pearl"}, {"skyblock_id" : "ENCHANTED_ENDER_PEARL", "quantity" : "6", "item_name" : "Enchanted ender pearl"}, {"skyblock_id" : "ENCHANTED_ENDER_PEARL", "quantity" : "6", "item_name" : "Enchanted ender pearl"}, {"skyblock_id" : "ENCHANTED_ENDER_PEARL", "quantity" : "6", "item_name" : "Enchanted ender pearl"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"skyblock_id": {"type": "string"}, "quantity": {"type": "string"}, "item_name": {"type": "string"}}, "required": ["skyblock_id", "quantity", "item_name"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "types", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "tencent-wx-jssdk", "version" : "1.3.2-201807261207", "description" : "\u5fae\u4fe1 JS-SDK", "main" : "index.js", "types" : "index.d.ts", "scripts" : {}, "repository" : {"type" : "git", "url" : "git+https://github.com/taoqf/tencent-wx-jssdk.git"}, "keywords" : ["wx", "weixin", "\u5fae\u4fe1", "\u516c\u4f17\u53f7", "jssdk", "sdk", "typescript"], "author" : "taoqf", "license" : "MIT", "bugs" : {"url" : "https://github.com/taoqf/tencent-wx-jssdk/issues"}, "homepage" : "https://github.com/taoqf/tencent-wx-jssdk#readme"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "types", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "DFacTo: Distributed Factorization of Tensors.", "fields" : ["scalability", "gradient descent", "least squares", "tensor", "factorization"], "abstract" : "We present a technique for significantly speeding up Alternating Least Squares (ALS) and Gradient Descent (GD), two widely used algorithms for tensor factorization. By exploiting properties of the Khatri-Rao product, we show how to efficiently address a computationally challenging sub-step of both algorithms. Our algorithm, DFacTo, only requires two sparse matrix-vector products and is easy to parallelize. DFacTo is not only scalable but also on average 4 to 10 times faster than competing algorithms on a variety of datasets. For instance, DFacTo only takes 480 seconds on 4 machines to perform one iteration of the ALS algorithm and 1,143 seconds to perform one iteration of the GD algorithm on a 6.5 million x 2.5 million x 1.5 million dimensional tensor with 1.2 billion non-zero entries.", "citation" : "Citations (77)", "year" : "2014", "departments" : ["Purdue University", "Purdue University"], "conf" : "nips", "authors" : ["Joon Hee Choi.....http://dblp.org/pers/hd/c/Choi:Joon_Hee", "S. Vishwanathan.....http://dblp.org/pers/hd/v/Vishwanathan:S="], "pages" : 9} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"admindisableddownload": {"type": "string"}, "clicktoupload": {"type": "string"}, "couldnotloadfiles": {"type": "string"}, "emptyfilelist": {"type": "string"}, "erroruploadnotworking": {"type": "string"}, "myfiles": {"type": "string"}, "myprivatefiles": {"type": "string"}, "myprivatefilesdesc": {"type": "string"}, "sitefiles": {"type": "string"}, "sitefilesdesc": {"type": "string"}, "uploadfiles": {"type": "string"}}, "required": ["admindisableddownload", "clicktoupload", "couldnotloadfiles", "emptyfilelist", "erroruploadnotworking", "myfiles", "myprivatefiles", "myprivatefilesdesc", "sitefiles", "sitefilesdesc", "uploadfiles"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"admindisableddownload" : "L'administrateur de votre Moodle a d\u00e9sactiv\u00e9 le t\u00e9l\u00e9chargement des fichiers. Vous pouvez les consulter, mais pas les t\u00e9l\u00e9charger.", "clicktoupload" : "Cliquer sur le bouton ci-dessous pour d\u00e9poser les fichiers dans vos fichiers personnels.", "couldnotloadfiles" : "La liste des fichiers n'a pas pu \u00eatre charg\u00e9e.", "emptyfilelist" : "Aucun fichier \u00e0 afficher.", "erroruploadnotworking" : "Il n'est actuellement pas possible de d\u00e9poser des fichiers sur votre site.", "myfiles" : "Mes fichiers", "myprivatefiles" : "Mes fichiers personnels", "myprivatefilesdesc" : "Les fichiers disponibles dans votre zone priv\u00e9e sur cette plateforme Moodle.", "sitefiles" : "Fichiers du site", "sitefilesdesc" : "Les autres fichiers disponibles sur cette plateforme Moodle.", "uploadfiles" : "D\u00e9poser des fichiers"} | json_instruct | {"type": "object", "properties": {"admindisableddownload": {"type": "string"}, "clicktoupload": {"type": "string"}, "couldnotloadfiles": {"type": "string"}, "emptyfilelist": {"type": "string"}, "erroruploadnotworking": {"type": "string"}, "myfiles": {"type": "string"}, "myprivatefiles": {"type": "string"}, "myprivatefilesdesc": {"type": "string"}, "sitefiles": {"type": "string"}, "sitefilesdesc": {"type": "string"}, "uploadfiles": {"type": "string"}}, "required": ["admindisableddownload", "clicktoupload", "couldnotloadfiles", "emptyfilelist", "erroruploadnotworking", "myfiles", "myprivatefiles", "myprivatefilesdesc", "sitefiles", "sitefilesdesc", "uploadfiles"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "homeassistant": {"type": "string"}}, "required": ["name", "homeassistant"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Shellies Discovery", "homeassistant" : "0.95.0"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "homeassistant": {"type": "string"}}, "required": ["name", "homeassistant"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"John Volk": {"type": "string"}}, "required": ["John Volk"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}, "source_files": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "requires_arc", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ExpandableColumnLayout", "version" : "1.0.1", "summary" : "A custom UICollectionViewLayout that provides a flexible column-based layout with optional expandable drawer functionality.", "description" : "* Arbitrary column count per section\n* Specifiy unit-height or exact height per item\n* Expand or contract sections via attractive drawer-like animation", "homepage" : "https://github.com/johntvolk/ExpandableColumnLayout", "license" : "MIT", "authors" : {"John Volk" : "john.t.volk@gmail.com"}, "source" : {"git" : "https://github.com/johntvolk/ExpandableColumnLayout.git", "tag" : "1.0.1"}, "platforms" : {"ios" : "8.0"}, "requires_arc" : true, "source_files" : "Pod/Classes/**/*"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"John Volk": {"type": "string"}}, "required": ["John Volk"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}, "source_files": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "requires_arc", "source_files"], "$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"}, "employeeid": {"type": "string"}, "employeetype": {"type": "string"}, "employeetypedescription": {"type": "string"}, "firstname": {"type": "string"}, "middlename": {"type": "string"}, "lastname": {"type": "string"}, "corpname": {"type": "string"}, "corpFEIN": {"type": "string"}, "address1": {"type": "string"}, "address2": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "postalcode": {"type": "string"}, "country": {"type": "string"}, "favorite": {"type": "null"}, "language": {"type": "string"}}, "required": ["id", "employeeid", "employeetype", "employeetypedescription", "firstname", "middlename", "lastname", "corpname", "corpFEIN", "address1", "address2", "city", "state", "postalcode", "country", "favorite", "language"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "1491302", "employeeid" : "9268gIgEI", "employeetype" : "REG", "employeetypedescription" : "PWE Employee", "firstname" : "MARIE", "middlename" : "", "lastname" : "FRXXX", "corpname" : "", "corpFEIN" : "", "address1" : "C/O EMA TELSTAR PRODUCTIONS AB", "address2" : "BOX 1018 CARL MILLES VAG 7", "city" : "BEVERLY HILLS", "state" : "FO", "postalcode" : "000000000", "country" : "UNK", "favorite" : null, "language" : "English"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "employeeid": {"type": "string"}, "employeetype": {"type": "string"}, "employeetypedescription": {"type": "string"}, "firstname": {"type": "string"}, "middlename": {"type": "string"}, "lastname": {"type": "string"}, "corpname": {"type": "string"}, "corpFEIN": {"type": "string"}, "address1": {"type": "string"}, "address2": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "postalcode": {"type": "string"}, "country": {"type": "string"}, "favorite": {"type": "null"}, "language": {"type": "string"}}, "required": ["id", "employeeid", "employeetype", "employeetypedescription", "firstname", "middlename", "lastname", "corpname", "corpFEIN", "address1", "address2", "city", "state", "postalcode", "country", "favorite", "language"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "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"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["name", "name_long", "fips", "state_code_int", "state_code_postal", "state_code_iso", "county_code", "population", "countrylevel_id", "census_data", "center_lat", "center_lon", "area_m2", "timezone"]}, "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" : "San Mateo County", "name_long" : "San Mateo County, CA", "fips" : "06081", "state_code_int" : 6, "state_code_postal" : "CA", "state_code_iso" : "US-CA", "county_code" : 81, "population" : 766573, "countrylevel_id" : "fips:06081", "census_data" : {"COUNTYNS" : "00277305", "AFFGEOID" : "0500000US06081", "LSAD" : "06", "ALAND" : 1161960635, "AWATER" : 757110545}, "center_lat" : 37.42, "center_lon" : -122.33, "area_m2" : 1919071180, "timezone" : "America/Los_Angeles"}, "geometry" : {"type" : "Polygon", "coordinates" : [[[-122.518, 37.576], [-122.497, 37.612], [-122.497, 37.686], [-122.501, 37.708], [-122.39, 37.708], [-122.393, 37.708], [-122.36, 37.593], [-122.244, 37.558], [-122.168, 37.504], [-122.129, 37.521], [-122.117, 37.507], [-122.081, 37.478], [-122.145, 37.458], [-122.19, 37.431], [-122.193, 37.318], [-122.152, 37.286], [-122.153, 37.215], [-122.318, 37.187], [-122.294, 37.105], [-122.323, 37.115], [-122.344, 37.144], [-122.397, 37.187], [-122.418, 37.249], [-122.406, 37.315], [-122.401, 37.337], [-122.409, 37.375], [-122.444, 37.436], [-122.446, 37.462], [-122.494, 37.492], [-122.517, 37.521], [-122.518, 37.576]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "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"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["name", "name_long", "fips", "state_code_int", "state_code_postal", "state_code_iso", "county_code", "population", "countrylevel_id", "census_data", "center_lat", "center_lon", "area_m2", "timezone"]}, "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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"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" : "DORTHY", "frequency" : 20344, "males" : "0.3883208808493905 %", "females" : "99.61167911915061 %"}] | 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": {"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" : 101902101, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "26f3bb1e21d05128ac4e2cb7094ec600", "wof:id" : 101902101, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [2.44324706918354, 49.88662880861898, 2.45280351191917, 49.89325415513093], "geometry" : {"coordinates" : [[[2.44892952311102, 49.88850858914827], [2.44921166520879, 49.88672117491637], [2.44782639088208, 49.88662880861898], [2.44768529770693, 49.88752251400706], [2.44491471285221, 49.88733772682224], [2.44477356227617, 49.88823142775328], [2.44338825175015, 49.88813900686489], [2.44324706918354, 49.88903270531648], [2.44463240512357, 49.88912512818411], [2.44449124139413, 49.89001882811471], [2.4458766076267, 49.89011123608236], [2.44573546273608, 49.89100493749174], [2.44712085926193, 49.89109733055903], [2.44697973321263, 49.89199103344708], [2.44836516003301, 49.89208341161316], [2.44822405282724, 49.89297711597965], [2.45238043879846, 49.89325415513093], [2.45280351191917, 49.89057302273289], [2.45141812131305, 49.89048069916151], [2.45155915796187, 49.88958698934016], [2.45017379764545, 49.88949465086677], [2.45031485313859, 49.888600942523], [2.44892952311102, 49.88850858914827]]], "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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "firstName": {"type": "string"}, "lastName": {"type": "string"}, "email": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "organisations": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "permissions": {"type": "array", "items": {}}, "notifications": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "code", "name", "permissions", "notifications"]}}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "active": {"type": "boolean"}}, "required": ["id", "firstName", "lastName", "email", "username", "password", "organisations", "createdAt", "updatedAt", "active"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "0586f235-b05b-43b0-ab40-30d7e28ef6a5", "firstName" : "Missouri", "lastName" : "Bartoletti", "email" : "missouri.bartoletti-8351@example.com", "username" : "missouri.bartoletti-8351@example.com", "password" : "bat", "organisations" : [{"id" : "50aa4750-b887-49bc-9bf4-b67a55e18288", "code" : "2LC", "name" : "National Online Teacher Training", "permissions" : [], "notifications" : ["course_published", "course_changed", "course_withdrawn", "course_vacancies_changed"]}, {"id" : "b5678812-4247-4b2d-9de0-f3d4ad01f83e", "code" : "1V7", "name" : "Yorkshire and Humber School Direct", "permissions" : [], "notifications" : ["course_published", "course_changed", "course_withdrawn", "course_vacancies_changed"]}, {"id" : "79af57c6-053f-4e75-995a-2eae20fe2ed1", "code" : "2B2", "name" : "Yorkshire and Humber Teacher Training", "permissions" : [], "notifications" : ["course_published", "course_changed", "course_withdrawn", "course_vacancies_changed", "course_published_training_provider", "course_changed_training_provider", "course_withdrawn_training_provider", "course_vacancies_changed_training_provider"]}], "createdAt" : "2022-03-07T12:31:32.439Z", "updatedAt" : "2022-03-08T20:09:43.543Z", "active" : false} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "firstName": {"type": "string"}, "lastName": {"type": "string"}, "email": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "organisations": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "permissions": {"type": "array", "items": {}}, "notifications": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "code", "name", "permissions", "notifications"]}}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "active": {"type": "boolean"}}, "required": ["id", "firstName", "lastName", "email", "username", "password", "organisations", "createdAt", "updatedAt", "active"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"app_name": {"type": "string"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"discord.io": {"type": "string"}, "express": {"type": "string"}, "express-handlebars": {"type": "string"}, "express-jquery": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["discord.io", "express", "express-handlebars", "express-jquery", "socket.io"]}, "license": {"type": "string"}, "main": {"type": "string"}, "name": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "version": {"type": "string"}}, "required": ["app_name", "author", "dependencies", "license", "main", "name", "scripts", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"app_name" : "new-talking-heads-for-discord", "author" : "ibito", "dependencies" : {"discord.io" : "github:woor/discord.io#gateway_v6", "express" : "^4.16.2", "express-handlebars" : "^3.0.0", "express-jquery" : "^1.8.3", "socket.io" : "^2.0.4"}, "license" : "MIT", "main" : "index.html", "name" : "talking-heads-for-discord", "scripts" : {"start" : "node app/talkingheads.js"}, "version" : "0.0.1"} | json_instruct | {"type": "object", "properties": {"app_name": {"type": "string"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"discord.io": {"type": "string"}, "express": {"type": "string"}, "express-handlebars": {"type": "string"}, "express-jquery": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["discord.io", "express", "express-handlebars", "express-jquery", "socket.io"]}, "license": {"type": "string"}, "main": {"type": "string"}, "name": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "version": {"type": "string"}}, "required": ["app_name", "author", "dependencies", "license", "main", "name", "scripts", "version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "build", "start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-loader": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "css-loader": {"type": "string"}, "json-loader": {"type": "string"}, "less": {"type": "string"}, "less-loader": {"type": "string"}, "style-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-server": {"type": "string"}, "webpack-merge": {"type": "string"}}, "required": ["babel-loader", "babel-preset-es2015", "css-loader", "json-loader", "less", "less-loader", "style-loader", "webpack", "webpack-dev-server", "webpack-merge"]}, "dependencies": {"type": "object", "properties": {"three": {"type": "string"}}, "required": ["three"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "aviator", "version" : "1.0.0", "description" : "The Making of \u201cThe Aviator\u201d: Animating a Basic 3D Scene with Three.js (from tympanus tutorial)", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "build" : "webpack", "start" : "webpack-dev-server"}, "repository" : {"type" : "git", "url" : "git+https://github.com/hanakamer/aviator.git"}, "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/hanakamer/aviator/issues"}, "homepage" : "https://github.com/hanakamer/aviator#readme", "devDependencies" : {"babel-loader" : "^6.2.4", "babel-preset-es2015" : "^6.6.0", "css-loader" : "^0.23.1", "json-loader" : "^0.5.4", "less" : "^2.6.1", "less-loader" : "^2.2.2", "style-loader" : "^0.13.1", "webpack" : "^1.12.15", "webpack-dev-server" : "^1.14.1", "webpack-merge" : "^0.8.4"}, "dependencies" : {"three" : "^0.76.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "build", "start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-loader": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "css-loader": {"type": "string"}, "json-loader": {"type": "string"}, "less": {"type": "string"}, "less-loader": {"type": "string"}, "style-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-server": {"type": "string"}, "webpack-merge": {"type": "string"}}, "required": ["babel-loader", "babel-preset-es2015", "css-loader", "json-loader", "less", "less-loader", "style-loader", "webpack", "webpack-dev-server", "webpack-merge"]}, "dependencies": {"type": "object", "properties": {"three": {"type": "string"}}, "required": ["three"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "require-all": {"type": "boolean"}}, "required": ["name", "homepage", "repositories", "require-all"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "katsana/packages", "homepage" : "https://packages.katsanalabs.com", "repositories" : [{"type" : "vcs", "url" : "https://gitlab.com/katsana/partner-sdk-php"}, {"type" : "vcs", "url" : "https://github.com/katsana/core"}, {"type" : "vcs", "url" : "https://github.com/katsana/geocoder"}], "require-all" : true} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "require-all": {"type": "boolean"}}, "required": ["name", "homepage", "repositories", "require-all"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1997, 5], [1998, 5], [2000, 9], [2002, 5], [2007, 9], [2008, 8], [2009, 6], [2010, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "premises": {"type": "array", "items": {"type": "string"}}}, "required": ["citations", "argumentText", "conclusion", "language", "lookupTerms", "metaLanguage", "premises"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"citations" : [{"textCitation" : "[See xpccat on Metamath](http://us.metamath.org/mpegif/xpccat.html)"}], "argumentText" : "ARGUMENT\nx y\n\n| Step | Hyp | Ref | Expression |\n|---|---|---|---|\n\n| 1 | | xpccat.t | |- T = ( C Xc. D ) |\n| 2 | | xpccat.c | |- ( ph -> C e. Cat ) |\n| 3 | | xpccat.d | |- ( ph -> D e. Cat ) |\n| 4 | | #P_eqid | |- ( Base ` C ) = ( Base ` C ) |\n| 5 | | #P_eqid | |- ( Base ` D ) = ( Base ` D ) |\n| 6 | | #P_eqid | |- ( Id ` C ) = ( Id ` C ) |\n| 7 | | #P_eqid | |- ( Id ` D ) = ( Id ` D ) |\n| 8 | 1, 2, 3, 4, 5, 6, 7 | #P_xpccatid | |- ( ph -> ( T e. Cat /\\ ( Id ` T ) = ( x e. ( Base ` C ) , y e. ( Base ` D ) |-> <. ( ( Id ` C ) ` x ) , ( ( Id ` D ) ` y ) >. ) ) ) |\n| 9 | 8 | #P_simpld | |- ( ph -> T e. Cat ) |", "conclusion" : "#P_xpccat", "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_vx", "#T_vy", "#T_cT", "#T_wceq", "#T_cC", "#T_cxpc", "#T_cD", "#T_wph", "#T_wi", "#T_cC", "#T_wcel", "#T_ccat", "#T_wph", "#T_wi", "#T_cD", "#T_wcel", "#T_ccat", "#T_cbs", "#T_cfv", "#T_cC", "#T_wceq", "#T_cbs", "#T_cfv", "#T_cC", "#T_cbs", "#T_cfv", "#T_cD", "#T_wceq", "#T_cbs", "#T_cfv", "#T_cD", "#T_ccid", "#T_cfv", "#T_cC", "#T_wceq", "#T_ccid", "#T_cfv", "#T_cC", "#T_ccid", "#T_cfv", "#T_cD", "#T_wceq", "#T_ccid", "#T_cfv", "#T_cD", "#T_wph", "#T_wi", "#T_cT", "#T_wcel", "#T_ccat", "#T_wa", "#T_ccid", "#T_cfv", "#T_cT", "#T_wceq", "#T_vx.wal", "#T_cmpt2--1", "#T_cbs", "#T_cfv", "#T_cC", "#T_cmpt2--2", "#T_vy.tru", "#T_cmpt2--3", "#T_cbs", "#T_cfv", "#T_cD", "#T_cmpt2--4", "#T_cop--1", "#T_ccid", "#T_cfv", "#T_cC", "#T_cfv", "#T_vx.wal", "#T_cop--2", "#T_ccid", "#T_cfv", "#T_cD", "#T_cfv", "#T_vy.tru", "#T_cop--3", "#T_wph", "#T_wi", "#T_cT", "#T_wcel", "#T_ccat"], "metaLanguage" : "METAMATH", "premises" : ["#P_eqid", "#P_simpld", "#P_xpccatid"]} | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "premises": {"type": "array", "items": {"type": "string"}}}, "required": ["citations", "argumentText", "conclusion", "language", "lookupTerms", "metaLanguage", "premises"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"version": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "shapes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "points": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "group_id": {"type": "integer"}, "shape_type": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}}, "required": ["label", "points", "group_id", "shape_type", "flags"]}}, "imagePath": {"type": "string"}, "imageData": {"type": "string"}, "imageHeight": {"type": "integer"}, "imageWidth": {"type": "integer"}}, "required": ["version", "flags", "shapes", "imagePath", "imageData", "imageHeight", "imageWidth"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "4.5.7", "flags" : {}, "shapes" : [{"label" : "null", "points" : [[262.0, 965.0], [835.0, 938.0], [835.0, 1016.0], [252.0, 1036.0]], "group_id" : 2, "shape_type" : "polygon", "flags" : {}}, {"label" : "null", "points" : [[407.0, 562.0], [786.0, 528.0], [755.0, 697.0], [378.0, 730.0]], "group_id" : 0, "shape_type" : "polygon", "flags" : {}}, {"label" : "null", "points" : [[268.0, 759.0], [900.0, 724.0], [892.0, 902.0], [247.0, 949.0]], "group_id" : 0, "shape_type" : "polygon", "flags" : {}}], "imagePath" : "img_2315.jpg", "imageData" : "null", "imageHeight" : 1365, "imageWidth" : 1024} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "shapes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "points": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "group_id": {"type": "integer"}, "shape_type": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}}, "required": ["label", "points", "group_id", "shape_type", "flags"]}}, "imagePath": {"type": "string"}, "imageData": {"type": "string"}, "imageHeight": {"type": "integer"}, "imageWidth": {"type": "integer"}}, "required": ["version", "flags", "shapes", "imagePath", "imageData", "imageHeight", "imageWidth"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "unzoned", "definition" : "Not zoned; not bound with a girdle; as, an unzoned bosom. Prior."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$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": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"year" : 2003, "sex" : "M", "n" : 5, "prop" : 2.38e-06}, {"year" : 2004, "sex" : "M", "n" : 5, "prop" : 2.37e-06}, {"year" : 2010, "sex" : "M", "n" : 5, "prop" : 2.44e-06}, {"year" : 2011, "sex" : "M", "n" : 7, "prop" : 3.45e-06}, {"year" : 2012, "sex" : "M", "n" : 8, "prop" : 3.95e-06}, {"year" : 2015, "sex" : "M", "n" : 7, "prop" : 3.43e-06}, {"year" : 2016, "sex" : "M", "n" : 9, "prop" : 4.46e-06}, {"year" : 2017, "sex" : "M", "n" : 9, "prop" : 4.58e-06}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"demo": {"type": "string"}, "demo-install": {"type": "string"}, "demo-start": {"type": "string"}}, "required": ["demo", "demo-install", "demo-start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"npm-run-all": {"type": "string"}, "rimraf": {"type": "string"}}, "required": ["npm-run-all", "rimraf"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "scripts", "author", "license", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "site-inspector-demo", "version" : "1.0.0", "scripts" : {"demo" : "run-s demo-install demo-start", "demo-install" : "node install.js", "demo-start" : "npm --prefix ./src/Tabs/CaptureTab run build && npm --prefix ./src/Tabs/GettingStartedTab run build && npm --prefix ./src/SiteInspector/ run start demo"}, "author" : "Microsoft", "license" : "MIT", "devDependencies" : {"npm-run-all" : "^4.1.5", "rimraf" : "^2.6.2"}, "engines" : {"node" : "7.2.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"demo": {"type": "string"}, "demo-install": {"type": "string"}, "demo-start": {"type": "string"}}, "required": ["demo", "demo-install", "demo-start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"npm-run-all": {"type": "string"}, "rimraf": {"type": "string"}}, "required": ["npm-run-all", "rimraf"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "scripts", "author", "license", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"viewBox": {"type": "string"}, "font": {"type": "string"}, "code": {"type": "string"}, "ref": {"type": "string"}, "path": {"type": "string"}}, "required": ["viewBox", "font", "code", "ref", "path"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"viewBox" : "0 0 1024 1024", "font" : "file-icons", "code" : "eabd", "ref" : "json-2", "path" : "M255 69Q127 142 64 262 0 382 0 512t64 250q63 120 191 193 127 74 263 69 137-5 249-70t185-180q72-115 72-262 0-110-42-203T869.5 148Q799 80 707 41T514 0q-67 0-132 16.5T255 69m536 215q21 80 17 155-4 76-32.5 137.5T696 682q-52 43-124 60 56-43 82-100 25-58 26.5-116.5T664 413q-17-54-47-89-39-50-88-69-48-19-97.5-14.5T336 269q-46 23-79 59-51 59-71 136-20 76-15 155.5T205 775q28 75 73 132-111-68-168-175-56-108-56.5-222.5T109 289q57-107 171-172 74-45 150-59 77-13 146.5 6.5T702 138q56 54 89 146m38 300q24-59 28-125 5-65-7.5-128.5T808 210q-29-57-72-101 52 29 95 70t74.5 92.5Q937 323 955 384q18 60 18 128 2 113-62 217-63 104-156 167t-199 70q-105 7-189-73-85-79-117-180t-19-192q13-91 70-158t151-79q-70 60-92 136-23 76-9.5 148T407 696q43 57 103 76 54 17 104 6 51-12 93-40.5t74-69.5q32-41 48-84M509 302q62 30 92 89 29 59 27.5 123.5T596 636q-31 58-91 85-62-42-87-101-26-60-22-120.5T430 385q30-53 79-83z"} | json_instruct | {"type": "object", "properties": {"viewBox": {"type": "string"}, "font": {"type": "string"}, "code": {"type": "string"}, "ref": {"type": "string"}, "path": {"type": "string"}}, "required": ["viewBox", "font", "code", "ref", "path"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"iti29:0.1": {"type": "string"}, "iti29:0.2": {"type": "string"}, "iti29:0.3": {"type": "string"}, "iti29:0.4": {"type": "string"}, "iti29:1.1": {"type": "string"}, "iti29:2.1": {"type": "string"}, "iti29:2.2": {"type": "string"}, "iti29:2.3": {"type": "string"}, "iti29:2.4": {"type": "string"}, "iti29:2.5": {"type": "string"}, "iti29:2.6": {"type": "string"}, "iti29:2.7": {"type": "string"}, "iti29:2.8": {"type": "string"}, "iti29:3.1": {"type": "string"}, "iti29:3.2": {"type": "string"}, "iti29:3.3": {"type": "string"}, "iti29:3.4": {"type": "string"}, "iti29:4.1": {"type": "string"}, "iti29:4.2": {"type": "string"}, "iti29:4.3": {"type": "string"}, "iti29:4.4": {"type": "string"}, "iti29:5.1": {"type": "string"}, "iti29:5.2": {"type": "string"}, "iti29:5.3": {"type": "string"}, "iti29:5.4": {"type": "string"}, "iti29:6.1": {"type": "string"}, "iti29:6.2": {"type": "string"}}, "required": ["iti29:0.1", "iti29:0.2", "iti29:0.3", "iti29:0.4", "iti29:1.1", "iti29:2.1", "iti29:2.2", "iti29:2.3", "iti29:2.4", "iti29:2.5", "iti29:2.6", "iti29:2.7", "iti29:2.8", "iti29:3.1", "iti29:3.2", "iti29:3.3", "iti29:3.4", "iti29:4.1", "iti29:4.2", "iti29:4.3", "iti29:4.4", "iti29:5.1", "iti29:5.2", "iti29:5.3", "iti29:5.4", "iti29:6.1", "iti29:6.2"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"iti29:0.1" : "<article id='iti29'><header><ul><li class='division'>{}</li>", "iti29:0.2" : "<li class='nipata'>{}</li>", "iti29:0.3" : "<li class='vagga'>{}</li></ul>", "iti29:0.4" : "<h1>{}</h1></header>", "iti29:1.1" : "<p>{}</p>", "iti29:2.1" : "<p>{}", "iti29:2.2" : "{}", "iti29:2.3" : "{}", "iti29:2.4" : "{}", "iti29:2.5" : "{}", "iti29:2.6" : "{}</p>", "iti29:2.7" : "<p>{}", "iti29:2.8" : "{}</p>", "iti29:3.1" : "<blockquote class='gatha'><p>{}<br>", "iti29:3.2" : "{}<br>", "iti29:3.3" : "{}<br>", "iti29:3.4" : "{}</p>", "iti29:4.1" : "<p>{}<br>", "iti29:4.2" : "{}<br>", "iti29:4.3" : "{}<br>", "iti29:4.4" : "{}</p>", "iti29:5.1" : "<p>{}<br>", "iti29:5.2" : "{}<br>", "iti29:5.3" : "{}<br>", "iti29:5.4" : "{}</p></blockquote>", "iti29:6.1" : "<p>{}</p>", "iti29:6.2" : "<p class='endsection'>{}</p></article>"} | json_instruct | {"type": "object", "properties": {"iti29:0.1": {"type": "string"}, "iti29:0.2": {"type": "string"}, "iti29:0.3": {"type": "string"}, "iti29:0.4": {"type": "string"}, "iti29:1.1": {"type": "string"}, "iti29:2.1": {"type": "string"}, "iti29:2.2": {"type": "string"}, "iti29:2.3": {"type": "string"}, "iti29:2.4": {"type": "string"}, "iti29:2.5": {"type": "string"}, "iti29:2.6": {"type": "string"}, "iti29:2.7": {"type": "string"}, "iti29:2.8": {"type": "string"}, "iti29:3.1": {"type": "string"}, "iti29:3.2": {"type": "string"}, "iti29:3.3": {"type": "string"}, "iti29:3.4": {"type": "string"}, "iti29:4.1": {"type": "string"}, "iti29:4.2": {"type": "string"}, "iti29:4.3": {"type": "string"}, "iti29:4.4": {"type": "string"}, "iti29:5.1": {"type": "string"}, "iti29:5.2": {"type": "string"}, "iti29:5.3": {"type": "string"}, "iti29:5.4": {"type": "string"}, "iti29:6.1": {"type": "string"}, "iti29:6.2": {"type": "string"}}, "required": ["iti29:0.1", "iti29:0.2", "iti29:0.3", "iti29:0.4", "iti29:1.1", "iti29:2.1", "iti29:2.2", "iti29:2.3", "iti29:2.4", "iti29:2.5", "iti29:2.6", "iti29:2.7", "iti29:2.8", "iti29:3.1", "iti29:3.2", "iti29:3.3", "iti29:3.4", "iti29:4.1", "iti29:4.2", "iti29:4.3", "iti29:4.4", "iti29:5.1", "iti29:5.2", "iti29:5.3", "iti29:5.4", "iti29:6.1", "iti29:6.2"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"task_meta": {"type": "object", "properties": {}, "required": []}, "annotations": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "new": {"type": "boolean"}, "parent_id": {"type": "null"}, "created_by": {"type": "string"}, "created_at": {"type": "string"}, "deprecated": {"type": "boolean"}, "spatial_type": {"type": "string"}, "spatial_payload": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "classification_payloads": {"type": "array", "items": {"type": "object", "properties": {"class_id": {"type": "integer"}, "confidence": {"type": "number"}}, "required": ["class_id", "confidence"]}}, "line_size": {"type": "integer"}, "containing_box": {"type": "null"}, "frame": {"type": "null"}, "text_payload": {"type": "string"}}, "required": ["id", "new", "parent_id", "created_by", "created_at", "deprecated", "spatial_type", "spatial_payload", "classification_payloads", "line_size", "containing_box", "frame", "text_payload"]}}, "import_fname": {"type": "string"}}, "required": ["task_meta", "annotations", "import_fname"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"task_meta" : {}, "annotations" : [{"id" : "77c32ac8-0763-4a84-81e1-6ea1c5c03d7c", "new" : true, "parent_id" : null, "created_by" : "justice_spriggs", "created_at" : "2020-07-17T17:30:08Z", "deprecated" : false, "spatial_type" : "bbox3", "spatial_payload" : [[124.83870967741937, 246.77419354838713, 88.0], [337.74193548387103, 394.8387096774194, 225.0]], "classification_payloads" : [{"class_id" : 3, "confidence" : 1.0}], "line_size" : 4, "containing_box" : null, "frame" : null, "text_payload" : ""}], "import_fname" : "1595007008_justice_spriggs.json"} | json_instruct | {"type": "object", "properties": {"task_meta": {"type": "object", "properties": {}, "required": []}, "annotations": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "new": {"type": "boolean"}, "parent_id": {"type": "null"}, "created_by": {"type": "string"}, "created_at": {"type": "string"}, "deprecated": {"type": "boolean"}, "spatial_type": {"type": "string"}, "spatial_payload": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "classification_payloads": {"type": "array", "items": {"type": "object", "properties": {"class_id": {"type": "integer"}, "confidence": {"type": "number"}}, "required": ["class_id", "confidence"]}}, "line_size": {"type": "integer"}, "containing_box": {"type": "null"}, "frame": {"type": "null"}, "text_payload": {"type": "string"}}, "required": ["id", "new", "parent_id", "created_by", "created_at", "deprecated", "spatial_type", "spatial_payload", "classification_payloads", "line_size", "containing_box", "frame", "text_payload"]}}, "import_fname": {"type": "string"}}, "required": ["task_meta", "annotations", "import_fname"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"900008728": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900008729": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900008728", "900008729"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"900008728" : {"nama" : "TPS 1", "dapil" : [1101, 11109, 2111003]}, "900008729" : {"nama" : "TPS 2", "dapil" : [1101, 11109, 2111003]}} | json_instruct | {"type": "object", "properties": {"900008728": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900008729": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900008728", "900008729"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs": {"type": "string"}, "P6736": {"type": "string"}}, "required": ["label:cs", "P31", "P31^label:cs", "P131^label:cs", "P6736"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {"label:cs" : "Kaple v D\u011bkovce", "P31" : "http://www.wikidata.org/entity/Q108325", "P31^label:cs" : "Kaple", "P131^label:cs" : "Podsedice", "P6736" : "20282"}, "geometry" : {"type" : "Point", "coordinates" : [13.92926, 50.49046]}}, {"type" : "Feature", "properties" : {"label:cs" : "K\u0159\u00ed\u017e v D\u011bkovce", "P31" : "http://www.wikidata.org/entity/Q2309609", "P31^label:cs" : "Pam\u011btn\u00ed k\u0159\u00ed\u017e", "P131^label:cs" : "Podsedice", "P6736" : "20281"}, "geometry" : {"type" : "Point", "coordinates" : [13.93005, 50.49041]}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs": {"type": "string"}, "P6736": {"type": "string"}}, "required": ["label:cs", "P31", "P31^label:cs", "P131^label:cs", "P6736"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Ungersheim", "dpt" : "Haut-Rhin", "inscrits" : 1905, "abs" : 305, "votants" : 1600, "blancs" : 34, "nuls" : 10, "exp" : 1556, "res" : [{"panneau" : "2", "voix" : 585}, {"panneau" : "11", "voix" : 261}, {"panneau" : "3", "voix" : 237}, {"panneau" : "9", "voix" : 214}, {"panneau" : "1", "voix" : 125}, {"panneau" : "4", "voix" : 62}, {"panneau" : "8", "voix" : 20}, {"panneau" : "5", "voix" : 17}, {"panneau" : "10", "voix" : 17}, {"panneau" : "6", "voix" : 15}, {"panneau" : "7", "voix" : 3}]} | 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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"mod": {"type": "string"}, "play": {"type": "integer"}, "type": {"type": "integer"}, "parent": {"type": "string"}, "subPlay": {"type": "integer"}}, "required": ["mod", "play", "type", "parent", "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" : "42a25d17-629d-46f4-bb22-a9e51cdc0422", "playerTags" : ["bd8d58b6-f37f-48e6-9919-8e14ec91f92a"], "teamTags" : [], "gameTags" : ["e310ea72-4856-41ec-bc7c-16ca31793a58"], "metadata" : {"mod" : "INHABITING", "play" : 41, "type" : 0, "parent" : "500fd95a-23de-40e1-8f94-a247bf1258c4", "subPlay" : 0}, "created" : "2021-04-09T00:03:27.075Z", "season" : 14, "tournament" : -1, "type" : 107, "day" : 79, "phase" : 6, "category" : 1, "description" : "Jos\u00e9 Haley stopped Inhabiting.", "nuts" : 0} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"mod": {"type": "string"}, "play": {"type": "integer"}, "type": {"type": "integer"}, "parent": {"type": "string"}, "subPlay": {"type": "integer"}}, "required": ["mod", "play", "type", "parent", "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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"engine.io.js": {"type": "string"}, "engine.io.min.js": {"type": "string"}}, "required": ["engine.io.js", "engine.io.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"engine.io.js" : "sha256-C2q3safsT06QHCRM0JtWzTy431r/d3J5ScTZKqXjRm4=", "engine.io.min.js" : "sha256-k8SlxkTo95xN7KRmcY3/EnVzJU6jbRmZk9ZPpXJKXbo="} | json_instruct | {"type": "object", "properties": {"engine.io.js": {"type": "string"}, "engine.io.min.js": {"type": "string"}}, "required": ["engine.io.js", "engine.io.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"cell_code": {"type": "string"}, "taxa": {"type": "object", "properties": {"2020": {"type": "object", "properties": {"n": {"type": "integer"}, "min_coord_uncertainty": {"type": "number"}}, "required": ["n", "min_coord_uncertainty"]}}, "required": ["2020"]}}, "required": ["cell_code", "taxa"]}, "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"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {"cell_code" : "1kmE3983N3095", "taxa" : {"2020" : {"n" : 1, "min_coord_uncertainty" : 25.0}}}, "geometry" : {"type" : "Polygon", "coordinates" : [[[5.194935354364113, 50.86654799641164], [5.194008603297329, 50.87551498908833], [5.20819031257213, 50.87610421592392], [5.209114348923501, 50.867137092892506], [5.194935354364113, 50.86654799641164]]]}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"cell_code": {"type": "string"}, "taxa": {"type": "object", "properties": {"2020": {"type": "object", "properties": {"n": {"type": "integer"}, "min_coord_uncertainty": {"type": "number"}}, "required": ["n", "min_coord_uncertainty"]}}, "required": ["2020"]}}, "required": ["cell_code", "taxa"]}, "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"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"" : {"model" : "rechiseled_compat:block/betterendforge_tenanea_planks_diagonal_stripes_connecting"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "preclusion": {"type": "string"}, "prereqTree": {"type": "object", "properties": {"or": {"type": "array", "items": {"type": "string"}}}, "required": ["or"]}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "preclusion", "prereqTree", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"courseCode" : "PR2115A", "courseCredit" : "4", "description" : "This module provides the basic principles of drug design, with the emphasis on the relationship between structure, physicochemical properties and the molecular basis of drug action.", "faculty" : "Science", "preclusion" : "PR2115", "prereqTree" : {"or" : ["PR1110A", "PR1111A"]}, "title" : "Medicinal Chemistry for Drug Design"} | json_instruct | {"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "preclusion": {"type": "string"}, "prereqTree": {"type": "object", "properties": {"or": {"type": "array", "items": {"type": "string"}}}, "required": ["or"]}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "preclusion", "prereqTree", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "*Thanks for taking the time to report this build failure. To proceed with the\r\nreport please:*\r\n1. Title the issue \"Installation issue: <name-of-the-package>\".\r\n2. Provide the information required below.\r\n3. Remove the template instructions before posting the issue.\r\n\r\nWe encourage you to try, as much as possible, to reduce your problem to the minimal example that still reproduces the issue. That would help us a lot in fixing it quickly and effectively!\r\n\r\n\r\n---\r\n\r\n### Steps to reproduce the issue\r\n\r\n```console\r\n$ spack install doxygen \r\n```\r\n\r\n### Description\r\n\r\nThe doxygen package ([package.py](https://github.com/spack/spack/blob/master/var/spack/repos/builtin/packages/doxygen/package.py)) seems to load the source code from http://ftp.stack.nl/pub/users/dimitri/doxygen-1.8.10.src.tar.gz respectively http://www.stack.nl/~dimitri/doxygen/ which are both offline.\r\n\r\nI'd suggest to use the tarball from the official site:\r\nhttp://doxygen.nl/files/doxygen-1.8.16.src.tar.gz for the latest release and https://sourceforge.net/projects/doxygen/files/ is the official way to get older releases.", "user" : "jounathaen", "url" : "https://api.github.com/repos/spack/spack/issues/12924", "updated_at" : "2019-09-24 14:13:34", "created_at" : "2019-09-24 11:46:02", "closed_at" : "2019-09-24 14:13:34", "state" : "closed", "title" : "Installation issue: doxygen", "number" : 12924, "milestone" : null, "labels" : ["build-error"], "id" : 497635872, "html_url" : "https://github.com/spack/spack/issues/12924", "assignees" : [], "comments" : 2} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"title": {"type": "string"}, "director": {"type": "array", "items": {"type": "string"}}, "scriptwriter": {"type": "array", "items": {"type": "string"}}, "performers": {"type": "array", "items": {"type": "string"}}, "screen_time": {"type": "integer"}, "production_studio": {"type": "string"}, "release_date": {"type": "string"}}, "required": ["title", "director", "scriptwriter", "performers", "screen_time", "production_studio", "release_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "\u307e\u3063\u767d\u306e\u95c7", "director" : ["\u5185\u8c37\u6b63\u6587", "\u5927\u5cf6\u5b5d\u592b"], "scriptwriter" : ["\u5185\u8c37\u6b63\u6587"], "performers" : ["\u767e\u702c\u6714", "\u5c0f\u6fa4\u4eae\u592a", "\u30c8\u30af\u30ca\u30ac\u30af\u30cb\u30cf\u30eb", "\u7be0\u539f\u3042\u3055\u307f", "\u6751\u7530\u96c4\u6d69", "\u6a2a\u95a2\u5065\u609f", "\u6a39\u9e97", "\u5149\u85e4\u4f9d\u91cc", "\u6c38\u5409\u60a0\u4eba", "\u4e09\u6751\u614e", "\u304a\u5bae\u306e\u677e", "\u5b87\u9244\u83ca\u4e09", "\u68ee\u4e00\u5f25", "\u6625\u6728\u751f", "\u7c73\u672c\u54f2\u4e5f", "\u85e4\u539f\u5553\u5150", "\u5de5\u85e4\u6f64\u77e2", "\u514e\u672c\u6709\u7d00", "RICO", "\u798f\u9593\u3080\u3064\u307f", "\u9ad8\u7551\u52a0\u5bff\u5b50", "\u4e09\u6d66\u525b", "\u91e3\u821f\u5927\u5922", "\u7941\u7b54\u9662\u96c4\u8cb4", "\u5165\u6c5f\u5d07\u53f2", "\u8107\u91ce\u7950\u6a39", "\u5c0f\u6797\u82f1\u6a39", "\u4e2d\u8fbc\u4fca\u592a\u90ce", "\u91d1\u6fa4\u7fd4", "\u8c37\u53e3\u52c7\u6a39", "\u5927\u5185\u5f69\u52a0", "\u82b3\u8cc0\u3042\u3084\u4e43", "Peach", "anna", "\u795e\u539f\u3086\u304b\u308a", "\u5f8c\u85e4\u3044\u305a\u307f", "\u9577\u6fa4\u3055\u3086\u308a", "\u91ce\u4e0a\u667a\u4e16", "\u4f50\u3005\u6728\u592e", "\u91ce\u4e0a\u6d69\u4e4b", "\u30c7\u30d6\u58f1", "\u67f4\u7530\u5e78\u592a\u6717", "\u5ca9\u4e0b\u609f\u6717", "\u5bae\u6751\u660c\u5fd7", "\u8af8\u661f\u7be4\u5fd7", "\u6ff1\u5ca1\u614e\u4e5f", "\u5c71\u5d0e\u5e78\u6cbb", "\u5c71\u4e0b\u6d69", "\u677e\u672c\u5320", "\u4e2d\u5c3e\u592a\u4e00", "\u5c71\u5d0e\u52dd\u7f8e", "\u5927\u95a2\u3042\u3086\u307f", "\u98ef\u7530\u7950\u5b50", "\u6210\u4e95\u611b\u82b1", "Ayame", "\u4e95\u4e0a\u611b\u552f", "\u5185\u8c37\u4fca\u884c"], "screen_time" : 115, "production_studio" : "\u300c\u307e\u3063\u767d\u306e\u95c7\u300d\u88fd\u4f5c\u59d4\u54e1\u4f1a", "release_date" : "2018-11-03"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "director": {"type": "array", "items": {"type": "string"}}, "scriptwriter": {"type": "array", "items": {"type": "string"}}, "performers": {"type": "array", "items": {"type": "string"}}, "screen_time": {"type": "integer"}, "production_studio": {"type": "string"}, "release_date": {"type": "string"}}, "required": ["title", "director", "scriptwriter", "performers", "screen_time", "production_studio", "release_date"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-120.830694, 37.523348], [-120.830195, 37.53657], [-120.828761, 37.536634], [-120.828728, 37.551114], [-120.599068, 37.551052], [-120.784912, 37.478255], [-120.81557, 37.466963], [-120.829883, 37.47948], [-120.826037, 37.479514], [-120.826025, 37.478052], [-120.821396, 37.477988], [-120.821438, 37.485274], [-120.816799, 37.485226], [-120.816833, 37.507124], [-120.821439, 37.507163], [-120.821385, 37.521742], [-120.830761, 37.521806], [-120.830694, 37.523348]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 10529}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "tel": {"type": "string"}, "fax": {"type": "string"}, "licensee": {"type": "string"}, "licensePeriod": {"type": "string"}, "licenseClass": {"type": "string"}, "hciCode": {"type": "string"}, "address": {"type": "string"}, "doctorInCharge": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "qualifications": {"type": "array", "items": {"type": "string"}}, "specialties": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "qualifications", "specialties"]}}, "detailedServices": {"type": "object", "properties": {"General Medical": {"type": "boolean"}, "Specialist Medical": {"type": "array", "items": {"type": "string"}}}, "required": ["General Medical", "Specialist Medical"]}, "operatingHours": {"type": "object", "properties": {"Monday to Friday": {"type": "string"}, "Saturday": {"type": "string"}, "Sunday and Public Holiday": {"type": "string"}}, "required": ["Monday to Friday", "Saturday", "Sunday and Public Holiday"]}}, "required": ["name", "tel", "fax", "licensee", "licensePeriod", "licenseClass", "hciCode", "address", "doctorInCharge", "detailedServices", "operatingHours"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ME NOVENA SPECIALIST GROUP", "tel" : "66906818", "fax" : "66906828", "licensee" : "ME NOVENA SPECIALIST GROUP PTE. LTD.", "licensePeriod" : "10/10/2016 to 09/10/2021", "licenseClass" : "[ 5 Years ]", "hciCode" : "12C0224", "address" : "38 IRRAWADDY ROAD, MOUNT ELIZABETH NOVENA SPECIALIST CENTRE, #08-36/37/38/39 Singapore 329563", "doctorInCharge" : [{"name" : "TANG I HSIUNG JOHANN", "qualifications" : ["B Med (University of Newcastle, Australia) 1998", "FRANZCR (Radiation Oncology) (Royal Australian and New Zealand College of Radiologists, Australia) 2007", "FAMS (Academy of Medicine, Singapore) 2007"], "specialties" : ["Radiation Oncology"]}], "detailedServices" : {"General Medical" : true, "Specialist Medical" : ["General Surgery", "Obstetrics & Gynaecology", "Radiation Oncology", "Urology"]}, "operatingHours" : {"Monday to Friday" : "08:30 am to 05:30 pm", "Saturday" : "08:30 am to 12:00 pm", "Sunday and Public Holiday" : "Closed"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "tel": {"type": "string"}, "fax": {"type": "string"}, "licensee": {"type": "string"}, "licensePeriod": {"type": "string"}, "licenseClass": {"type": "string"}, "hciCode": {"type": "string"}, "address": {"type": "string"}, "doctorInCharge": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "qualifications": {"type": "array", "items": {"type": "string"}}, "specialties": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "qualifications", "specialties"]}}, "detailedServices": {"type": "object", "properties": {"General Medical": {"type": "boolean"}, "Specialist Medical": {"type": "array", "items": {"type": "string"}}}, "required": ["General Medical", "Specialist Medical"]}, "operatingHours": {"type": "object", "properties": {"Monday to Friday": {"type": "string"}, "Saturday": {"type": "string"}, "Sunday and Public Holiday": {"type": "string"}}, "required": ["Monday to Friday", "Saturday", "Sunday and Public Holiday"]}}, "required": ["name", "tel", "fax", "licensee", "licensePeriod", "licenseClass", "hciCode", "address", "doctorInCharge", "detailedServices", "operatingHours"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"py/object": {"type": "string"}, "id": {"type": "null"}, "name": {"type": "string"}, "header": {"type": "string"}, "footer": {"type": "string"}}, "required": ["py/object", "id", "name", "header", "footer"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"py/object" : "model.group.Group", "id" : null, "name" : "", "header" : "", "footer" : ""}, {"py/object" : "model.group.Group", "id" : null, "name" : "name9LfZ", "header" : "headhj elbjjY", "footer" : "footsU CsYd s13"}, {"py/object" : "model.group.Group", "id" : null, "name" : "nameTWe0FE5", "header" : "headTlsIZl CwJD1vZ", "footer" : "foot4 Y"}, {"py/object" : "model.group.Group", "id" : null, "name" : "nametW", "header" : "headPRzSY y1Qs", "footer" : "foot eABQRgNeV"}, {"py/object" : "model.group.Group", "id" : null, "name" : "nameSzI", "header" : "headsAItr", "footer" : "footKPWuFffd"}, {"py/object" : "model.group.Group", "id" : null, "name" : "nameZkgO", "header" : "headw", "footer" : "footZa5Fhx WEl Z3OZ"}, {"py/object" : "model.group.Group", "id" : null, "name" : "nameWpON52H", "header" : "headCOYJMPY 5tVz", "footer" : "foot b gZ7gOL xP2 cwZc"}, {"py/object" : "model.group.Group", "id" : null, "name" : "nameu", "header" : "head404fJr 9L rakr", "footer" : "foot1Kp hqNM"}, {"py/object" : "model.group.Group", "id" : null, "name" : "nameBm6 0jQl", "header" : "headfUQvY8v5 vNdQPlQW", "footer" : "footsFb"}, {"py/object" : "model.group.Group", "id" : null, "name" : "name39fG EV6", "header" : "heady0PRnq QGiKGTI", "footer" : "foot L7p96bJGgr0rWr6W"}, {"py/object" : "model.group.Group", "id" : null, "name" : "name6tix5", "header" : "head0ebwX3ED5PVS r1 t", "footer" : "footUCzXS EYrwH qNKvQ8"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"py/object": {"type": "string"}, "id": {"type": "null"}, "name": {"type": "string"}, "header": {"type": "string"}, "footer": {"type": "string"}}, "required": ["py/object", "id", "name", "header", "footer"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cam/image_array" : "10450_cam-image_array_.jpg", "user/angle" : 0.22, "user/throttle" : 0.658, "user/mode" : "user", "pos/pos_x" : 85.19273, "pos/pos_y" : 0.5591577, "pos/pos_z" : 22.57028, "pos/speed" : 11.42604, "pos/cte" : -8.990877, "milliseconds" : 554271} | json_instruct | {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {}}}, "required": ["e_id", "title", "content", "picNo", "picUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"e_id" : "15135", "title" : "\u5f20\u732e\u5fe0\u5728\u6210\u90fd\u79f0\u5e1d", "content" : "\n\u00a0\u00a0\u00a0\u00a0\u5728377\u5e74\u524d\u7684\u4eca\u5929\uff0c1644\u5e7412\u670814\u65e5(\u519c\u53861644\u5e7411\u670816\u65e5)\uff0c\u5f20\u732e\u5fe0\u5efa\u7acb\u5927\u897f\u653f\u6743\u3002\n\t1644\u5e7412\u670814\u65e5(\u5d07\u796f\u5341\u4e03\u5e74\u5341\u4e00\u6708\u5341\u516d\u65e5)\uff0c\u5f20\u732e\u5fe0\u5728\u6210\u90fd\u79f0\u5e1d\uff0c\u5efa\u56fd\u53f7\u201c\u5927\u897f\u201d\uff0c\u6539\u5143\u201c\u5927\u987a\u201d\uff0c\u4ee5\u6210\u90fd\u4e3a\u897f\u4eac\u3002\u5927\u897f\u653f\u6743\u5efa\u7acb\u540e\uff0c\u8bbe\u7f6e\u5de6\u53f3\u4e1e\u76f8\uff0c\u516d\u90e8\u5c1a\u4e66\u7b49\u6587\u6b66\u5b98\u5458\u3002\u547d\u201c\u6c6a\u5146\u9e9f\u4e3a\u5de6\u4e1e\u76f8\uff0c\u4e25\u9521\u547d\u4e3a\u53f3\u4e1e\u76f8\u201d\u3002\u4ee5\u738b\u56fd\u9e9f\u3001\u6c5f\u9f0e\u9547\u3001\u9f9a\u5b8c\u656c\u7b49\u4e3a\u5c1a\u4e66\u3002\u5927\u897f\u653f\u6743\u9881\u884c\u300a\u901a\u5929\u5386\u300b\uff0c\u8bbe\u94b1\u5c40\u94f8\u201c\u5927\u987a\u901a\u5b9d\u201d\u884c\u7528\u3002\u5f00\u79d1\u53d6\u58eb\uff0c\u9009\u62d4\u4e09\u5341\u4eba\u4e3a\u8fdb\u58eb\uff0c\u4efb\u4e3a\u90e1\u53bf\u5404\u5b98\u3002\u5927\u897f\u653f\u6743\u5ba3\u5e03\uff0c\u5bf9\u897f\u5357\u5404\u65cf\u767e\u59d3\u201c\u8832\u514d\u8fb9\u5883\u4e09\u5e74\u79df\u8d4b\u201d\u3002\u5f20\u732e\u5fe0\u7684\u53f7\u4ee4\u68ee\u4e25\uff0c\u4e0d\u8bb8\u201c\u64c5\u81ea\u62db\u5175\u201d\uff0c\u201c\u64c5\u53d7\u6c11\u8bcd\u201d\uff0c\u201c\u64c5\u53d6\u672c\u571f\u5987\u5973\u4e3a\u59bb\u201d\uff0c\u8fdd\u8005\u6b63\u6cd5\u3002\u5f20\u732e\u5fe0\u5c01\u56db\u4e2a\u517b\u5b50\u4e3a\u738b\uff0c\u5b59\u53ef\u671b\u4e3a\u5e73\u4e1c\u738b\uff0c\u5218\u6587\u79c0\u4e3a\u629a\u5357\u738b\uff0c\u674e\u5b9a\u56fd\u4e3a\u5b89\u897f\u738b\uff0c\u827e\u80fd\u5947\u4e3a\u5b9a\u5317\u738b\u3002\n\n\t\u5728\u519b\u4e8b\u4e0a\uff0c\u5927\u897f\u653f\u6743\u8bbe\u4e94\u519b\u90fd\u7763\u5e9c\uff0c\u4e2d\u519b\u738b\u5c1a\u793c\uff0c\u524d\u519b\u738b\u5b9a\u56fd\uff0c\u540e\u519b\u51af\u53cc\u793c\uff0c\u5de6\u519b\u9a6c\u5143\u5229\uff0c\u53f3\u519b\u5f20\u5316\u9f99\u3002\u5206\u5175\u4e00\u767e\u4e8c\u5341\u8425\uff0c\u6709\u201c\u864e\u5a01\u3001\u8c79\u97ec\u3001\u9f99\u97ec\u3001\u9e70\u626c\u4e3a\u5bbf\u536b\u201d\uff0c\u8bbe\u90fd\u7763\u9886\u4e4b\u3002\u57ce\u5916\u8bbe\u5927\u8425\u5341\uff0c\u5c0f\u8425\u5341\u4e8c\uff0c\u4e2d\u7f6e\u8001\u8425\uff0c\u540d\u4e3a\u5fa1\u8425\uff0c\u732e\u5fe0\u5c45\u4e4b\u3002\u53c8\u547d\u5b59\u53ef\u671b\u4e3a\u5e73\u4e1c\u5c06\u519b\uff0c\u76d1\u5341\u4e5d\u8425\uff1b\u674e\u5b9a\u56fd\u4e3a\u5b89\u897f\u5c06\u519b\uff0c\u76d1\u5341\u516d\u8425\uff1b\u5218\u6587\u79c0\u4e3a\u629a\u5357\u5c06\u519b\uff0c\u76d1\u5341\u4e94\u8425\uff1b\u827e\u80fd\u5947\u4e3a\u5b9a\u5317\u5c06\u519b\uff0c\u76d1\u4e8c\u5341\u8425\u3002\u5206\u5175\u56db\u51fa\uff0c\u201c\u9042\u636e\u6709\u5168\u8700\u201d\u3002\n\n\t\u4e0d\u4e45\uff0c\u56db\u5ddd\u5404\u5730\u7684\u660e\u671d\u5c06\u9886\u66fe\u82f1\u3001\u674e\u5360\u6625\u3001\u4e8e\u5927\u6d77\u3001\u738b\u7965\u3001\u6768\u5c55\u3001\u66f9\u52cb\u7b49\uff0c\u7eb7\u7eb7\u805a\u96c6\u5175\u9a6c\uff0c\u88ad\u51fb\u5927\u897f\u519c\u6c11\u519b\uff0c\u5c60\u6740\u5927\u897f\u653f\u6743\u5730\u65b9\u5b98\u5458\uff0c\u7ed9\u5927\u897f\u653f\u6743\u5f88\u5927\u5a01\u80c1\u3002\u5bf9\u6b64\uff0c\u5f20\u732e\u5fe0\u8fdb\u884c\u4e86\u4e25\u5389\u7684\u9547\u538b\u3002\n\n\t\u5f20\u732e\u5fe0\u547d\u5b59\u53ef\u671b\u5f80\u53d6\u6c49\u4e2d\uff0c\u88ab\u674e\u81ea\u6210\u90e8\u5c06\u8d3a\u73cd\u51fb\u8d25\u3002\u5f20\u732e\u5fe0\u4eb2\u5f80\u6551\u63f4\uff0c\u9053\u7ecf\u6893\u6f7c\u4e03\u66f2\u5c71\uff0c\u201c\u4ef0\u89c6\u795e\u5e99\uff0c\u9898\u989d\u5f20\u59d3\uff0c\u66f0\uff1a\u2018\u6b64\u543e\u7956\u4e5f\u3002\u2019\u8ffd\u4e0a\u5c0a\u53f7\uff0c\u66f0\u59cb\u7956\u9ad8\u7687\u5e1d\u201d\u3002\u547d\u4fee\u5e99\u523b\u77f3\u7940\u4e4b\u3002\u90e8\u5c06\u5218\u8fdb\u5fe0\u5165\u636e\u4fdd\u5b81\u5e9c\uff0c\u90e8\u5c06\u9a6c\u5143\u5229\u514b\u987a\u5e86\u5b88\u4e4b\u3002\u4e59\u9149\u5e74\u5143\u65e6\u8fc7\u540e\uff0c\u5f20\u732e\u5fe0\u4e8e\u521d\u4e09\u65e5\u5bf9\u90e8\u4e0b\u8bf4\uff1a\u201c\u4e09\u56fd\u4ee5\u6765\uff0c\u6c49\u4e2d\u539f\u5c5e\u56db\u5ddd\uff0c\u4eca\u543e\u5b9a\u90fd\u4e8e\u5ddd\uff0c\u4e0d\u53d6\u6c49\u4e2d\uff0c\u96be\u514d\u4ed6\u4eba\u5f97\u9647\u671b\u8700\u4e4e?\u95fb\u95ef\u738b\u9063\u9a6c\u720c\u5b88\u6c49\u4e2d\uff0c\u720c\u5eb8\u624d\u8033\uff0c\u82e5\u4e0d\u65e9\u53d6\uff0c\u4ed6\u65e5\u6613\u4ee5\u80fd\u4eba\uff0c\u5219\u96be\u56fe\u4e5f\u3002\u201d\u4e3a\u4e86\u4fdd\u8bc1\u56db\u5ddd\u7684\u5b89\u5168\uff0c\u4ed6\u6d3e\u5e73\u4e1c\u3001\u864e\u5a01\u4e8c\u5c06\u519b\uff0c\u5411\u5317\u5e73\u5b9a\u6c49\u5357\u5730\u533a\u3002\u53c8\u547d\u90fd\u7763\u5f20\u5e7f\u624d\u65e9\u706d\u66fe\u82f1\uff0c\u4ee5\u4fbf\u6253\u5f00\u4e1c\u4e0b\u7684\u9053\u8def\u3002\u5341\u516d\u65e5\uff0c\u519c\u6c11\u519b\u5176\u540d\u3001\u5f20\u5e7f\u624d\u4e24\u519b\u9f50\u53d1\uff0c\u4e0d\u77e5\u674e\u81ea\u6210\u4ee5\u8d3a\u73cd\u4ee3\u9a6c\u720c\u3002\u7ed3\u679c\u5927\u897f\u519b\u7684\u4e09\u4e07\u5175\u9a6c\u88ab\u8d3a\u73cd\u90e8\u51fb\u8d25\u3002", "picNo" : "0", "picUrl" : []}] | 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": {}}}, "required": ["e_id", "title", "content", "picNo", "picUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["debounce-stream", "dom-value-object-stream", "evidence", "stream-debounce"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["310106015001", "\u8543\u74dc\u5f04\u5c45\u59d4\u4f1a", "111", "0"], ["310106015002", "\u5353\u60a6\u5c45\u5c45\u59d4\u4f1a", "111", "0"], ["310106015003", "\u534e\u5eb7\u5c45\u59d4\u4f1a", "111", "0"], ["310106015004", "\u65b0\u6865\u5c45\u59d4\u4f1a", "111", "0"], ["310106015005", "\u534e\u65b0\u5c45\u59d4\u4f1a", "111", "0"], ["310106015006", "\u5730\u68a8\u6e2f\u5c45\u59d4\u4f1a", "111", "0"], ["310106015007", "\u534e\u4e30\u5c45\u59d4\u4f1a", "111", "0"], ["310106015008", "\u666e\u5584\u5c45\u59d4\u4f1a", "111", "0"], ["310106015009", "\u94c1\u8def\u65b0\u6751\u5c45\u59d4\u4f1a", "111", "0"], ["310106015010", "\u548c\u6cf0\u82b1\u82d1\u5c45\u59d4\u4f1a", "111", "0"], ["310106015011", "\u5b89\u6e90\u5c45\u59d4\u4f1a", "111", "0"], ["310106015012", "\u6cb3\u6ee8\u878d\u666f\u5c45\u59d4\u4f1a", "111", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "mocha": {"type": "string"}, "nock": {"type": "string"}, "node-mocks-http": {"type": "string"}, "nyc": {"type": "string"}, "redis-mock": {"type": "string"}, "rewiremock": {"type": "string"}}, "required": ["chai", "mocha", "nock", "node-mocks-http", "nyc", "redis-mock", "rewiremock"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test-with-coverage": {"type": "string"}}, "required": ["test", "test-with-coverage"]}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "redis": {"type": "string"}, "url": {"type": "string"}, "util": {"type": "string"}}, "required": ["axios", "redis", "url", "util"]}}, "required": ["devDependencies", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"devDependencies" : {"chai" : "^4.2.0", "mocha" : "^8.2.1", "nock" : "^13.0.5", "node-mocks-http" : "^1.9.0", "nyc" : "^15.1.0", "redis-mock" : "^0.56.3", "rewiremock" : "^3.14.3"}, "scripts" : {"test" : "mocha", "test-with-coverage" : "nyc --reporter=lcov --reporter=text mocha --lines 80 --per-file"}, "dependencies" : {"axios" : "^0.21.1", "redis" : "^3.0.2", "url" : "^0.11.0", "util" : "^0.11.1"}} | json_instruct | {"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "mocha": {"type": "string"}, "nock": {"type": "string"}, "node-mocks-http": {"type": "string"}, "nyc": {"type": "string"}, "redis-mock": {"type": "string"}, "rewiremock": {"type": "string"}}, "required": ["chai", "mocha", "nock", "node-mocks-http", "nyc", "redis-mock", "rewiremock"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test-with-coverage": {"type": "string"}}, "required": ["test", "test-with-coverage"]}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "redis": {"type": "string"}, "url": {"type": "string"}, "util": {"type": "string"}}, "required": ["axios", "redis", "url", "util"]}}, "required": ["devDependencies", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "requirement": {"type": "string"}, "locked_text": {"type": "string"}, "type": {"type": "string"}, "flags": {"type": "array", "items": {"type": "string"}}, "tiers": {"type": "array", "items": {"type": "object", "properties": {"count": {"type": "integer"}, "points": {"type": "integer"}}, "required": ["count", "points"]}}, "rewards": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["type", "id", "count"]}}}, "required": ["id", "name", "description", "requirement", "locked_text", "type", "flags", "tiers", "rewards"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 4740, "name" : "Putting Out Fires", "description" : "", "requirement" : "Complete 10 events for the Order of the Crystal Bloom in the Burning Forest.\nRequired to gain access to the Crystal Bloom quartermaster.", "locked_text" : "", "type" : "Default", "flags" : ["Permanent"], "tiers" : [{"count" : 1, "points" : 1}, {"count" : 5, "points" : 1}, {"count" : 10, "points" : 1}], "rewards" : [{"type" : "Item", "id" : 90332, "count" : 1}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "requirement": {"type": "string"}, "locked_text": {"type": "string"}, "type": {"type": "string"}, "flags": {"type": "array", "items": {"type": "string"}}, "tiers": {"type": "array", "items": {"type": "object", "properties": {"count": {"type": "integer"}, "points": {"type": "integer"}}, "required": ["count", "points"]}}, "rewards": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["type", "id", "count"]}}}, "required": ["id", "name", "description", "requirement", "locked_text", "type", "flags", "tiers", "rewards"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"leaflet-providers.js": {"type": "string"}, "leaflet-providers.min.js": {"type": "string"}}, "required": ["leaflet-providers.js", "leaflet-providers.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"leaflet-providers.js" : "sha256-dp8hHtOvFimSL4WTccqU+yVrmxr86jwYeTFhNciVOYI=", "leaflet-providers.min.js" : "sha256-JPj03/K4bWKrDGh6FKkBo7Y4HWIL07wWA445Mhd/d+g="} | json_instruct | {"type": "object", "properties": {"leaflet-providers.js": {"type": "string"}, "leaflet-providers.min.js": {"type": "string"}}, "required": ["leaflet-providers.js", "leaflet-providers.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Unsupervised Alignment of Natural Language Instructions with Video Segments.", "fields" : ["machine translation", "generative grammar", "unsupervised learning", "video tracking", "sentence"], "abstract" : "We propose an unsupervised learning algorithm for automatically inferring the mappings between English nouns and corresponding video objects. Given a sequence of natural language instructions and an unaligned video recording, we simultaneously align each instruction to its corresponding video segment, and also align nouns in each instruction to their corresponding objects in video. While existing grounded language acquisition algorithms rely on pre-aligned supervised data (each sentence paired with corresponding image frame or video segment), our algorithm aims to automatically infer the alignment from the temporal structure of the video and parallel text instructions. We propose two generative models that are closely related to the HMM and IBM 1 word alignment models used in statistical machine translation. We evaluate our algorithm on videos of biological experiments performed in wetlabs, and demonstrate its capability of aligning video segments to text instructions and matching video objects to nouns in the absence of any direct supervision.", "citation" : "Citations (14)", "departments" : ["University of Rochester", "University of Rochester", "University of Rochester", "University of Rochester", "University of Rochester"], "authors" : ["Iftekhar Naim.....http://dblp.org/pers/hd/n/Naim:Iftekhar", "Young Chol Song.....http://dblp.org/pers/hd/s/Song:Young_Chol", "Qiguang Liu.....http://dblp.org/pers/hd/l/Liu:Qiguang", "Henry A. Kautz.....http://dblp.org/pers/hd/k/Kautz:Henry_A=", "Jiebo Luo.....http://dblp.org/pers/hd/l/Luo:Jiebo", "Daniel Gildea.....http://dblp.org/pers/hd/g/Gildea:Daniel"], "conf" : "aaai", "year" : "2014", "pages" : 7} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"class": {"type": "string"}, "updateMode": {"type": "string"}, "schemaVersion": {"type": "string"}, "id": {"type": "string"}, "label": {"type": "string"}, "remark": {"type": "string"}, "AS3_Tenant": {"type": "object", "properties": {"class": {"type": "string"}, "AS3_Application": {"type": "object", "properties": {"class": {"type": "string"}, "template": {"type": "string"}, "testItem": {"type": "object", "properties": {"class": {"type": "string"}, "remark": {"type": "string"}, "port": {"type": "integer"}, "ftpsMode": {"type": "string"}, "enforceTlsSessionReuseEnabled": {"type": "boolean"}, "activeModeEnabled": {"type": "boolean"}, "securityEnabled": {"type": "boolean"}, "translateExtendedEnabled": {"type": "boolean"}, "inheritParentProfileEnabled": {"type": "boolean"}}, "required": ["class", "remark", "port", "ftpsMode", "enforceTlsSessionReuseEnabled", "activeModeEnabled", "securityEnabled", "translateExtendedEnabled", "inheritParentProfileEnabled"]}}, "required": ["class", "template", "testItem"]}}, "required": ["class", "AS3_Application"]}}, "required": ["class", "updateMode", "schemaVersion", "id", "label", "remark", "AS3_Tenant"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"class" : "ADC", "updateMode" : "selective", "schemaVersion" : "3.8.0", "id" : "declarationId", "label" : "theDeclaration", "remark" : "All properties declaration", "AS3_Tenant" : {"class" : "Tenant", "AS3_Application" : {"class" : "Application", "template" : "generic", "testItem" : {"class" : "FTP_Profile", "remark" : "description", "port" : 300, "ftpsMode" : "require", "enforceTlsSessionReuseEnabled" : true, "activeModeEnabled" : false, "securityEnabled" : true, "translateExtendedEnabled" : false, "inheritParentProfileEnabled" : true}}}} | json_instruct | {"type": "object", "properties": {"class": {"type": "string"}, "updateMode": {"type": "string"}, "schemaVersion": {"type": "string"}, "id": {"type": "string"}, "label": {"type": "string"}, "remark": {"type": "string"}, "AS3_Tenant": {"type": "object", "properties": {"class": {"type": "string"}, "AS3_Application": {"type": "object", "properties": {"class": {"type": "string"}, "template": {"type": "string"}, "testItem": {"type": "object", "properties": {"class": {"type": "string"}, "remark": {"type": "string"}, "port": {"type": "integer"}, "ftpsMode": {"type": "string"}, "enforceTlsSessionReuseEnabled": {"type": "boolean"}, "activeModeEnabled": {"type": "boolean"}, "securityEnabled": {"type": "boolean"}, "translateExtendedEnabled": {"type": "boolean"}, "inheritParentProfileEnabled": {"type": "boolean"}}, "required": ["class", "remark", "port", "ftpsMode", "enforceTlsSessionReuseEnabled", "activeModeEnabled", "securityEnabled", "translateExtendedEnabled", "inheritParentProfileEnabled"]}}, "required": ["class", "template", "testItem"]}}, "required": ["class", "AS3_Application"]}}, "required": ["class", "updateMode", "schemaVersion", "id", "label", "remark", "AS3_Tenant"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d149-18", "text" : "April 8, 1969\nMr. Robert D. Swezey\nCorporation for Public Broadcasting\n1250 Connecticut Avenue, N.W.\nWashington, D.C. 20036\nDear Mr. Swezeyj\nBelatedly I am expressing my personal appre\u00ac\nciation and that of the Board of Directors\nof National Educational Radio for the March\n20-21 meeting of the Radio Advisory Committee.\nThe reaction I\u2019ve received to the meeting\u2014\nfrom a majority of the members of the comm\u00ac\nittee\u2014has been affirmative.\nI have written President Macy indicating\nsome matters that the Corporation might wish\nto consider as discussions of radio continue.\nAs we agreed, the recommendations in Sam Holt's\nPublic Radio Study should, in the main, be\nimplemented. On those points where there was\nlack of agreement, further discussion should\nb\u00a9 held.\nAgain, on behalf of NER, thanks for appointing\nthe committee and conducting the initial\nmeeting.\nSincerely,\nRAM/cb\nRobert A. Mott\nExecutive Director,\nNER"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-74.006563, 40.648714], [-74.005074, 40.650147], [-74.000662, 40.647487], [-74.002415, 40.645809], [-74.006563, 40.648714]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 45324}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Time" : "2021-06-08T07:00:00Z", "Temp" : 21.7, "RelHum" : 42, "WindSpeed" : 3.3, "WindDir" : 323} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"n_dim" : 5, "n_trials" : 340, "objective" : "deap_combo3_on_cube", "white" : "pysot_lcb", "black" : "optuna_random_clone_2", "traceback" : ["passing", "passing"], "best_val" : [986289.5931599893, 22920626.38939787], "best_x" : [[0.5686270430864899, 0.5438042308107292, 0.5192459300701452, 0.5151975316159384, 0.5179641655792411], [0.4790596054038486, 0.541978844436424, 0.6086619444467141, 0.5392867509606476, 0.41374327653738374]], "feval_count" : [340, 340], "n_trials_instructed" : [340, 340], "passing" : [true, true], "completed" : true, "points" : 1.0, "winner" : "pysot_lcb", "loser" : "optuna_random_clone_2"} | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"count": {"type": "integer"}, "151122": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "132011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "111021": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "119111": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "252010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "291141": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "434051": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["count", "151122", "N.A.//", "132011", "111021", "119111", "252010", "291141", "434051"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"count" : 14, "151122" : {"count" : 1}, "N.A.//" : {"count" : 7}, "132011" : {"count" : 1}, "111021" : {"count" : 1}, "119111" : {"count" : 1}, "252010" : {"count" : 1}, "291141" : {"count" : 1}, "434051" : {"count" : 1}} | json_instruct | {"type": "object", "properties": {"count": {"type": "integer"}, "151122": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "132011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "111021": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "119111": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "252010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "291141": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "434051": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["count", "151122", "N.A.//", "132011", "111021", "119111", "252010", "291141", "434051"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "pug": {"type": "string"}}, "required": ["express", "pug"]}}, "required": ["name", "version", "description", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "test", "version" : "1.0.0", "description" : "Marko's Testing", "scripts" : {"start" : "node index.js", "test" : "echo \\'No tests available\\'"}, "dependencies" : {"express" : "^4.17.1", "pug" : "^3.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "pug": {"type": "string"}}, "required": ["express", "pug"]}}, "required": ["name", "version", "description", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}}, "required": ["text", "created", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : "New slogan: <a href=\"https://github.com/scripting/utils/blob/master/daveutils.js#L748\">Wash your hands</a>. ", "created" : "Tue, 07 Apr 2020 13:07:59 GMT", "type" : "outline"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}}, "required": ["text", "created", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "450702001003", "text" : "\u65b0\u5174\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "450702001004", "text" : "\u57ce\u4e2d\u5357\u793e\u533a\u5c45\u59d4\u4f1a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"accountLinkingWhitelistedDomains": {"type": "null"}, "asin": {"type": "string"}, "averageRating": {"type": "integer"}, "canDisable": {"type": "boolean"}, "capabilities": {"type": "null"}, "category": {"type": "null"}, "description": {"type": "string"}, "enablement": {"type": "null"}, "exampleInteractions": {"type": "array", "items": {"type": "string"}}, "firstReleaseDate": {"type": "number"}, "homepageLinkText": {"type": "null"}, "homepageLinkUrl": {"type": "null"}, "id": {"type": "string"}, "imageAltText": {"type": "string"}, "imageUrl": {"type": "string"}, "inAppPurchasingSupported": {"type": "boolean"}, "launchPhrase": {"type": "string"}, "name": {"type": "string"}, "numberOfReviews": {"type": "integer"}, "pamsPartnerId": {"type": "null"}, "permissions": {"type": "null"}, "privacyPolicyUrl": {"type": "null"}, "shortDescription": {"type": "string"}, "skillTypes": {"type": "null"}, "stage": {"type": "string"}, "termsOfUseUrl": {"type": "null"}, "vendorId": {"type": "string"}, "vendorName": {"type": "string"}}, "required": ["accountLinkingWhitelistedDomains", "asin", "averageRating", "canDisable", "capabilities", "category", "description", "enablement", "exampleInteractions", "firstReleaseDate", "homepageLinkText", "homepageLinkUrl", "id", "imageAltText", "imageUrl", "inAppPurchasingSupported", "launchPhrase", "name", "numberOfReviews", "pamsPartnerId", "permissions", "privacyPolicyUrl", "shortDescription", "skillTypes", "stage", "termsOfUseUrl", "vendorId", "vendorName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"accountLinkingWhitelistedDomains" : null, "asin" : "B01LXCLVIW", "averageRating" : 0, "canDisable" : true, "capabilities" : null, "category" : null, "description" : "A test fact skill about rabbits.", "enablement" : null, "exampleInteractions" : ["Alexa open rabbit facts", "Alexa ask rabbit facts to tell me a rabbit fact", "Alexa ask rabbit facts to give me a rabbit fact"], "firstReleaseDate" : 1475566987.784, "homepageLinkText" : null, "homepageLinkUrl" : null, "id" : "amzn1.ask.skill.73becd04-5d03-421e-b7c5-50f84589ca50", "imageAltText" : "Rabbit Facts icon", "imageUrl" : "https://github.com/dale3h/alexa-skills-list/raw/master/skills/B01LXCLVIW/skill_icon", "inAppPurchasingSupported" : false, "launchPhrase" : "rabbit facts", "name" : "Rabbit Facts", "numberOfReviews" : 0, "pamsPartnerId" : null, "permissions" : null, "privacyPolicyUrl" : null, "shortDescription" : "Tells facts about rabbits.", "skillTypes" : null, "stage" : "live", "termsOfUseUrl" : null, "vendorId" : "MIPWDUI46G3J0", "vendorName" : "Brandon Thimmesch"} | json_instruct | {"type": "object", "properties": {"accountLinkingWhitelistedDomains": {"type": "null"}, "asin": {"type": "string"}, "averageRating": {"type": "integer"}, "canDisable": {"type": "boolean"}, "capabilities": {"type": "null"}, "category": {"type": "null"}, "description": {"type": "string"}, "enablement": {"type": "null"}, "exampleInteractions": {"type": "array", "items": {"type": "string"}}, "firstReleaseDate": {"type": "number"}, "homepageLinkText": {"type": "null"}, "homepageLinkUrl": {"type": "null"}, "id": {"type": "string"}, "imageAltText": {"type": "string"}, "imageUrl": {"type": "string"}, "inAppPurchasingSupported": {"type": "boolean"}, "launchPhrase": {"type": "string"}, "name": {"type": "string"}, "numberOfReviews": {"type": "integer"}, "pamsPartnerId": {"type": "null"}, "permissions": {"type": "null"}, "privacyPolicyUrl": {"type": "null"}, "shortDescription": {"type": "string"}, "skillTypes": {"type": "null"}, "stage": {"type": "string"}, "termsOfUseUrl": {"type": "null"}, "vendorId": {"type": "string"}, "vendorName": {"type": "string"}}, "required": ["accountLinkingWhitelistedDomains", "asin", "averageRating", "canDisable", "capabilities", "category", "description", "enablement", "exampleInteractions", "firstReleaseDate", "homepageLinkText", "homepageLinkUrl", "id", "imageAltText", "imageUrl", "inAppPurchasingSupported", "launchPhrase", "name", "numberOfReviews", "pamsPartnerId", "permissions", "privacyPolicyUrl", "shortDescription", "skillTypes", "stage", "termsOfUseUrl", "vendorId", "vendorName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1993, 5], [2000, 9], [2001, 16], [2002, 10], [2003, 13], [2004, 8], [2005, 10], [2006, 7], [2007, 8], [2008, 10], [2009, 9]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"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" : {"type" : "barangay", "level" : "4", "label" : "Pangdan Pangdan, Kalingalan Caluang, Sulu, Autonomous Region of Muslim Mindanao (ARMM), PH", "locale" : "ph.autonomous-region-of-muslim-mindanao-armm.sulu.kalingalan-caluang.pangdan-pangdan", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "1", "region_reference" : "15", "region_name" : "Autonomous Region of Muslim Mindanao (ARMM)", "province_id" : "74", "province_reference" : "74", "province_name" : "Sulu", "city_id" : "597", "city_reference" : "1477", "city_name" : "Kalingalan Caluang", "barangay_id" : "16756", "barangay_reference" : "38113", "barangay_name" : "Pangdan Pangdan"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[121.240334, 5.91339], [121.254288, 5.91651], [121.257538, 5.91141], [121.259499, 5.90961], [121.260834, 5.90833], [121.261711, 5.90705], [121.261223, 5.90693], [121.260368, 5.90672], [121.250557, 5.89868], [121.240967, 5.89185], [121.240646, 5.89169], [121.239807, 5.89126], [121.238449, 5.89109], [121.236801, 5.89236], [121.236107, 5.89361], [121.236107, 5.89444], [121.238327, 5.89444], [121.237503, 5.89528], [121.237503, 5.89556], [121.236656, 5.89556], [121.236107, 5.89611], [121.235687, 5.89611], [121.23513, 5.89749], [121.234863, 5.89888], [121.234161, 5.89999], [121.234016, 5.90051], [121.233467, 5.9025], [121.233147, 5.90328], [121.232353, 5.90523], [121.232224, 5.90556], [121.232224, 5.90611], [121.232498, 5.90639], [121.232498, 5.90667], [121.233063, 5.90722], [121.233612, 5.90722], [121.233887, 5.9075], [121.234734, 5.9075], [121.235001, 5.90778], [121.235558, 5.90778], [121.235832, 5.9075], [121.236107, 5.90778], [121.236107, 5.90833], [121.237778, 5.90917], [121.238441, 5.9093], [121.238487, 5.90931], [121.238533, 5.90939], [121.239166, 5.91083], [121.239807, 5.91116], [121.24028, 5.91139], [121.240547, 5.91167], [121.240417, 5.91309], [121.240334, 5.91339]]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"noReprocess": {"type": "object", "properties": {"jcr:primaryType": {"type": "string"}, "jcr:title": {"type": "string"}, "type": {"type": "string"}, "componentRules": {"type": "array", "items": {}}, "policyRules": {"type": "array", "items": {}}, "pageHandling": {"type": "string"}, "sourceRoot": {"type": "string"}, "targetRoot": {"type": "string"}, "templateRules": {"type": "array", "items": {"type": "string"}}, "buckets": {"type": "object", "properties": {"bucket0": {"type": "object", "properties": {"paths": {"type": "array", "items": {"type": "string"}}}, "required": ["paths"]}}, "required": ["bucket0"]}}, "required": ["jcr:primaryType", "jcr:title", "type", "componentRules", "policyRules", "pageHandling", "sourceRoot", "targetRoot", "templateRules", "buckets"]}, "reprocess": {"type": "object", "properties": {"jcr:primaryType": {"type": "string"}, "reprocess": {"type": "boolean"}, "jcr:title": {"type": "string"}, "type": {"type": "string"}, "pageHandling": {"type": "string"}, "componentRules": {"type": "array", "items": {}}, "policyRules": {"type": "array", "items": {}}, "templateRules": {"type": "array", "items": {"type": "string"}}, "buckets": {"type": "object", "properties": {"bucket0": {"type": "object", "properties": {"paths": {"type": "array", "items": {"type": "string"}}}, "required": ["paths"]}}, "required": ["bucket0"]}}, "required": ["jcr:primaryType", "reprocess", "jcr:title", "type", "pageHandling", "componentRules", "policyRules", "templateRules", "buckets"]}}, "required": ["noReprocess", "reprocess"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"noReprocess" : {"jcr:primaryType" : "nt:unstructured", "jcr:title" : "Test", "type" : "STRUCTURE", "componentRules" : [], "policyRules" : [], "pageHandling" : "COPY", "sourceRoot" : "/content/test", "targetRoot" : "/content/newpath/with/extra/tokens", "templateRules" : ["com.adobe.aem.modernize.structure.rule.PageRewriteRule.first-page", "com.adobe.aem.modernize.structure.rule.PageRewriteRule.second-page"], "buckets" : {"bucket0" : {"paths" : ["/content/test/first-page", "/content/test/second-page", "/content/test/not-found-page"]}}}, "reprocess" : {"jcr:primaryType" : "nt:unstructured", "reprocess" : true, "jcr:title" : "Test", "type" : "STRUCTURE", "pageHandling" : "RESTORE", "componentRules" : [], "policyRules" : [], "templateRules" : ["com.adobe.aem.modernize.structure.rule.PageRewriteRule.first-page", "com.adobe.aem.modernize.structure.rule.PageRewriteRule.second-page"], "buckets" : {"bucket0" : {"paths" : ["/content/test/first-page", "/content/test/second-page", "/content/test/not-found-page"]}}}} | json_instruct | {"type": "object", "properties": {"noReprocess": {"type": "object", "properties": {"jcr:primaryType": {"type": "string"}, "jcr:title": {"type": "string"}, "type": {"type": "string"}, "componentRules": {"type": "array", "items": {}}, "policyRules": {"type": "array", "items": {}}, "pageHandling": {"type": "string"}, "sourceRoot": {"type": "string"}, "targetRoot": {"type": "string"}, "templateRules": {"type": "array", "items": {"type": "string"}}, "buckets": {"type": "object", "properties": {"bucket0": {"type": "object", "properties": {"paths": {"type": "array", "items": {"type": "string"}}}, "required": ["paths"]}}, "required": ["bucket0"]}}, "required": ["jcr:primaryType", "jcr:title", "type", "componentRules", "policyRules", "pageHandling", "sourceRoot", "targetRoot", "templateRules", "buckets"]}, "reprocess": {"type": "object", "properties": {"jcr:primaryType": {"type": "string"}, "reprocess": {"type": "boolean"}, "jcr:title": {"type": "string"}, "type": {"type": "string"}, "pageHandling": {"type": "string"}, "componentRules": {"type": "array", "items": {}}, "policyRules": {"type": "array", "items": {}}, "templateRules": {"type": "array", "items": {"type": "string"}}, "buckets": {"type": "object", "properties": {"bucket0": {"type": "object", "properties": {"paths": {"type": "array", "items": {"type": "string"}}}, "required": ["paths"]}}, "required": ["bucket0"]}}, "required": ["jcr:primaryType", "reprocess", "jcr:title", "type", "pageHandling", "componentRules", "policyRules", "templateRules", "buckets"]}}, "required": ["noReprocess", "reprocess"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"half=lower": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "half=upper": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["half=lower", "half=upper"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"half=lower" : {"model" : "corntopia:block/corn_stalk_bottom"}, "half=upper" : {"model" : "corntopia:block/corn_stalk_top"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"half=lower": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "half=upper": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["half=lower", "half=upper"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"subject_level": {"type": "object", "properties": {"regexp": {"type": "string"}}, "required": ["regexp"]}}, "required": ["subject_level"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"subject_level" : {"regexp" : "\\b(\\w*sub-\\w*)\\b"}} | json_instruct | {"type": "object", "properties": {"subject_level": {"type": "object", "properties": {"regexp": {"type": "string"}}, "required": ["regexp"]}}, "required": ["subject_level"], "$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"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "createdAt": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["id", "title", "createdAt", "author"]}}}, "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" : 1710, "info" : {"name" : "Google Logo Remover", "description" : "Inspired by LouCypher's \"Google Logo Replacer\".\r\n\r\nThis should work on all \"google.com\" and \"google.ca\" pages; let me know if there are any it doesn't.\r\n\r\nAlso, if Google's redirecting you to \"google.uk\" or whatever, you can just change the \"ca\" suffix.\r\n\r\n\r\nUpdated 1/28/07 Thanks ERlack$ 8-\u00fe\r\nUpdated 1/30/07 to include \"Groups\"", "additionalInfo" : null, "format" : "uso", "category" : "google", "createdAt" : "2007-01-25T07:27:30.000Z", "updatedAt" : "2007-01-30T05:59:30.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 566, "name" : "Weishun"}}, "stats" : {"installs" : {"total" : 3977, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "1710-after.png", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 2, "commentsCount" : 2}, "data" : [{"id" : 4896, "title" : "It also removes the direction/zoom sliders from go", "createdAt" : "2007-01-28T12:41:34.000Z", "author" : {"id" : 391, "name" : "ERlack$"}}, {"id" : 6483, "title" : "the search bar goes all on top so its 100x worse..", "createdAt" : "2009-05-04T09:25:33.000Z", "author" : {"id" : 22287, "name" : "PanzerIV"}}]}, "style" : {"css" : "@-moz-document domain(\"google.com\"), domain(\"google.ca\") {\r\ndiv[style=\"padding: 6px 10px;\"], img[src*=\"/logos/\"], img[src*=\"/intl/\"]:not([src*=\"/intl/en_ALL/mapfiles/lmc.png\"]), img[src*=\"logo.gif\"], img[src*=\"logo_sm.gif\"], img[src*=\"/groups/img/3nb/groups_bar.gif\"], #logo, [class=\"logo\"], [class=\"td-logo\"], [href*=\"?hl\"] img { display: none ! important; }\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": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "createdAt": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["id", "title", "createdAt", "author"]}}}, "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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "scintillate", "definition" : "1. To emit sparks, or fine igneous particles. As the electrical globe only scintillates when rubbed against its cushion. Sir W. Scott. 2. To sparkle, as the fixed stars."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"_active": {"type": "boolean"}, "_notice_text": {"type": "null"}, "_plus_required": {"type": "boolean"}, "_plus_store_url": {"type": "null"}, "_support_contract": {"type": "boolean"}, "_version_required": {"type": "integer"}, "account_supported": {"type": "boolean"}, "api": {"type": "string"}, "city": {"type": "string"}, "country": {"type": "string"}, "data": {"type": "object", "properties": {"baseurl": {"type": "string"}}, "required": ["baseurl"]}, "geo": {"type": "array", "items": {"type": "number"}}, "information": {"type": "string"}, "library_id": {"type": "integer"}, "state": {"type": "string"}, "title": {"type": "string"}}, "required": ["_active", "_notice_text", "_plus_required", "_plus_store_url", "_support_contract", "_version_required", "account_supported", "api", "city", "country", "data", "geo", "information", "library_id", "state", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_active" : true, "_notice_text" : null, "_plus_required" : false, "_plus_store_url" : null, "_support_contract" : false, "_version_required" : 0, "account_supported" : false, "api" : "littera", "city" : "St. Wolfgang", "country" : "Deutschland", "data" : {"baseurl" : "http://www.stwolfgang.webopac.at"}, "geo" : [47.7400836, 13.446381], "information" : "http://www.bibliothek-stwolfgang.at", "library_id" : 9189, "state" : "Bayern", "title" : "\u00d6ffentliche Bibliothek"} | json_instruct | {"type": "object", "properties": {"_active": {"type": "boolean"}, "_notice_text": {"type": "null"}, "_plus_required": {"type": "boolean"}, "_plus_store_url": {"type": "null"}, "_support_contract": {"type": "boolean"}, "_version_required": {"type": "integer"}, "account_supported": {"type": "boolean"}, "api": {"type": "string"}, "city": {"type": "string"}, "country": {"type": "string"}, "data": {"type": "object", "properties": {"baseurl": {"type": "string"}}, "required": ["baseurl"]}, "geo": {"type": "array", "items": {"type": "number"}}, "information": {"type": "string"}, "library_id": {"type": "integer"}, "state": {"type": "string"}, "title": {"type": "string"}}, "required": ["_active", "_notice_text", "_plus_required", "_plus_store_url", "_support_contract", "_version_required", "account_supported", "api", "city", "country", "data", "geo", "information", "library_id", "state", "title"], "$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.