input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1 value | schema stringlengths 100 1.99k |
|---|---|---|---|
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[146.125, 29.583333333333332], [146.125, 29.666666666666668], [146.25, 29.666666666666668], [146.25, 29.583333333333332], [146.125, 29.583333333333332]]]}, "properties" : {"code" : 444631, "url" : "http://madefor.github.io/0410/api/v1/444631.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/444631.geojson"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"-991304": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["-991304"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"-991304" : {"nama" : "Taipei", "dapil" : [3102]}} | json_instruct | {"type": "object", "properties": {"-991304": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["-991304"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "verses": {"type": "array", "items": {"type": "object", "properties": {"lines": {"type": "array", "items": {"type": "string"}}}, "required": ["lines"]}}, "chorus": {"type": "string"}, "CCLI": {"type": "string"}}, "required": ["title", "verses", "chorus", "CCLI"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "IPH 403 - Hosanna, hosanna, hosanna in the highest", "verses" : [{"lines" : ["Hosanna, hosanna, hosanna in the highest;", "hosanna, hosanna, hosanna in the highest:", "\f Lord, we lift up Your name,", " with hearts full of praise.", "Be exalted, O Lord our God \u2014", " hosanna, in the highest."]}, {"lines" : ["\fGlory, glory, glory to the King of Kings;", "glory, glory, glory to the King of Kings:", "\f Lord, we lift up Your name,", " with hearts full of praise.", " Be exalted, O Lord our God \u2014", " glory to the King of Kings."]}], "chorus" : "", "CCLI" : "Carl Tuttle, b. 1953 CCLI 128675\r"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "verses": {"type": "array", "items": {"type": "object", "properties": {"lines": {"type": "array", "items": {"type": "string"}}}, "required": ["lines"]}}, "chorus": {"type": "string"}, "CCLI": {"type": "string"}}, "required": ["title", "verses", "chorus", "CCLI"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "log4js": {"type": "string"}}, "required": ["axios", "log4js"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mamori", "version" : "1.0.0", "description" : "Airi Universe status bot.", "main" : "index.js", "scripts" : {"test" : "node index.js"}, "keywords" : ["bot", "status"], "author" : "Cocoa <cocoa@await.moe>", "license" : "MIT", "dependencies" : {"axios" : "^0.19.2", "log4js" : "^6.2.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"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "log4js": {"type": "string"}}, "required": ["axios", "log4js"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "tvstudio:block/lime_tv_stand"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"C": {"type": "number"}}, "required": ["C"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"C" : 0.16021403357180247} | json_instruct | {"type": "object", "properties": {"C": {"type": "number"}}, "required": ["C"], "$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"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "email", "role"]}}, "support": {"type": "object", "properties": {"email": {"type": "string"}, "issues": {"type": "string"}, "source": {"type": "string"}}, "required": ["email", "issues", "source"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Samharrison\\DisqusPlugin\\": {"type": "string"}}, "required": ["Samharrison\\DisqusPlugin\\"]}}, "required": ["psr-4"]}}, "required": ["name", "type", "description", "keywords", "license", "authors", "support", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "samharrison/disqus-plugin", "type" : "streams-addon", "description" : "A simple plugin to display Disqus comments.", "keywords" : ["streams plugin", "disqus"], "license" : "MIT", "authors" : [{"name" : "Sam Harrison", "email" : "samharrison.xg@gmail.com", "role" : "Owner"}], "support" : {"email" : "samharrison.xg@gmail.com", "issues" : "https://github.com/samharrison7/disqus-plugin/issues", "source" : "https://github.com/samharrison7/disqus-plugin"}, "autoload" : {"psr-4" : {"Samharrison\\DisqusPlugin\\" : "src/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "email", "role"]}}, "support": {"type": "object", "properties": {"email": {"type": "string"}, "issues": {"type": "string"}, "source": {"type": "string"}}, "required": ["email", "issues", "source"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Samharrison\\DisqusPlugin\\": {"type": "string"}}, "required": ["Samharrison\\DisqusPlugin\\"]}}, "required": ["psr-4"]}}, "required": ["name", "type", "description", "keywords", "license", "authors", "support", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"@fortawesome/fontawesome-free": {"type": "string"}, "@symfony/webpack-encore": {"type": "string"}, "autoprefixer": {"type": "string"}, "bootstrap": {"type": "string"}, "bootstrap-tagsinput": {"type": "string"}, "chart.js": {"type": "string"}, "core-js": {"type": "string"}, "file-loader": {"type": "string"}, "jquery": {"type": "string"}, "node-sass": {"type": "string"}, "postcss": {"type": "string"}, "postcss-loader": {"type": "string"}, "postcss-scss": {"type": "string"}, "sass-loader": {"type": "string"}, "stylelint": {"type": "string"}, "stylelint-order": {"type": "string"}, "stylelint-scss": {"type": "string"}}, "required": ["@fortawesome/fontawesome-free", "@symfony/webpack-encore", "autoprefixer", "bootstrap", "bootstrap-tagsinput", "chart.js", "core-js", "file-loader", "jquery", "node-sass", "postcss", "postcss-loader", "postcss-scss", "sass-loader", "stylelint", "stylelint-order", "stylelint-scss"]}, "license": {"type": "string"}, "browserslist": {"type": "array", "items": {"type": "string"}}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "stylelint": {"type": "string"}}, "required": ["build", "stylelint"]}, "dependencies": {"type": "object", "properties": {"@popperjs/core": {"type": "string"}, "@typo3/icons": {"type": "string"}, "choices.js": {"type": "string"}, "luxon": {"type": "string"}, "prismjs": {"type": "string"}, "vanillajs-datepicker": {"type": "string"}}, "required": ["@popperjs/core", "@typo3/icons", "choices.js", "luxon", "prismjs", "vanillajs-datepicker"]}}, "required": ["devDependencies", "license", "browserslist", "private", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"devDependencies" : {"@fortawesome/fontawesome-free" : "^5.15.4", "@symfony/webpack-encore" : "^1.7.0", "autoprefixer" : "^10.4.0", "bootstrap" : "^5.1.3", "bootstrap-tagsinput" : "^0.7.1", "chart.js" : "^3.6.2", "core-js" : "^3.19.3", "file-loader" : "^6.2.0", "jquery" : "^3.6.0", "node-sass" : "^7.0.0", "postcss" : "^8.4.5", "postcss-loader" : "^6.2.1", "postcss-scss" : "^4.0.2", "sass-loader" : "^12.4.0", "stylelint" : "^14.1.0", "stylelint-order" : "^5.0.0", "stylelint-scss" : "^4.0.1"}, "license" : "UNLICENSED", "browserslist" : ["last 2 versions", "ios >= 8"], "private" : true, "scripts" : {"build" : "encore production --progress", "stylelint" : "stylelint assets/css/*"}, "dependencies" : {"@popperjs/core" : "^2.11.0", "@typo3/icons" : "^2.5.0", "choices.js" : "^9.0.1", "luxon" : "^2.2.0", "prismjs" : "^1.25.0", "vanillajs-datepicker" : "^1.1.4"}} | json_instruct | {"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"@fortawesome/fontawesome-free": {"type": "string"}, "@symfony/webpack-encore": {"type": "string"}, "autoprefixer": {"type": "string"}, "bootstrap": {"type": "string"}, "bootstrap-tagsinput": {"type": "string"}, "chart.js": {"type": "string"}, "core-js": {"type": "string"}, "file-loader": {"type": "string"}, "jquery": {"type": "string"}, "node-sass": {"type": "string"}, "postcss": {"type": "string"}, "postcss-loader": {"type": "string"}, "postcss-scss": {"type": "string"}, "sass-loader": {"type": "string"}, "stylelint": {"type": "string"}, "stylelint-order": {"type": "string"}, "stylelint-scss": {"type": "string"}}, "required": ["@fortawesome/fontawesome-free", "@symfony/webpack-encore", "autoprefixer", "bootstrap", "bootstrap-tagsinput", "chart.js", "core-js", "file-loader", "jquery", "node-sass", "postcss", "postcss-loader", "postcss-scss", "sass-loader", "stylelint", "stylelint-order", "stylelint-scss"]}, "license": {"type": "string"}, "browserslist": {"type": "array", "items": {"type": "string"}}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "stylelint": {"type": "string"}}, "required": ["build", "stylelint"]}, "dependencies": {"type": "object", "properties": {"@popperjs/core": {"type": "string"}, "@typo3/icons": {"type": "string"}, "choices.js": {"type": "string"}, "luxon": {"type": "string"}, "prismjs": {"type": "string"}, "vanillajs-datepicker": {"type": "string"}}, "required": ["@popperjs/core", "@typo3/icons", "choices.js", "luxon", "prismjs", "vanillajs-datepicker"]}}, "required": ["devDependencies", "license", "browserslist", "private", "scripts", "dependencies"], "$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"}, "enchantment": {"type": "string"}, "modifier": {"type": "object", "properties": {"operation": {"type": "string"}, "value": {"type": "integer"}}, "required": ["operation", "value"]}}, "required": ["type", "enchantment", "modifier"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "ope:modify_enchantment_level", "enchantment" : "minecraft:smite", "modifier" : {"operation" : "addition", "value" : 5}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "enchantment": {"type": "string"}, "modifier": {"type": "object", "properties": {"operation": {"type": "string"}, "value": {"type": "integer"}}, "required": ["operation", "value"]}}, "required": ["type", "enchantment", "modifier"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["aurorajs", "fast-timer", "memrun", "paging", "pushtocouchdb", "qeda", "react-composition", "react-fast-dialog", "react-fast-fixed", "react-fast-form", "react-fast-upload", "react-paging", "tree-store"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x4f697bd290a057273a3413485cd8bc462f449136", "tool" : "osiris", "start" : 1564596667.6854615, "end" : 1564596670.524057, "duration" : 2.838595390319824, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"resistors": {"type": "array", "items": {"type": "object", "properties": {"polygon": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}, "colors": {"type": "array", "items": {"type": "string"}}}, "required": ["polygon", "colors"]}}}, "required": ["resistors"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"resistors" : [{"polygon" : [{"x" : 182, "y" : 101}, {"x" : 217, "y" : 105}, {"x" : 206, "y" : 196}, {"x" : 165, "y" : 195}], "colors" : ["yellow", "violet", "brown", "none", "gold", "none"]}, {"polygon" : [{"x" : 232, "y" : 119}, {"x" : 269, "y" : 119}, {"x" : 257, "y" : 211}, {"x" : 220, "y" : 206}], "colors" : ["brown", "red", "red", "none", "gold", "none"]}]} | json_instruct | {"type": "object", "properties": {"resistors": {"type": "array", "items": {"type": "object", "properties": {"polygon": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}, "colors": {"type": "array", "items": {"type": "string"}}}, "required": ["polygon", "colors"]}}}, "required": ["resistors"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}, "clipped": {"type": "boolean"}, "id": {"type": "string"}}, "required": ["arcs", "type", "properties", "clipped", "id"]}}}, "required": ["type", "geometries"]}}, "required": ["vectile"]}, "type": {"type": "string"}, "transform": {"type": "object", "properties": {"translate": {"type": "array", "items": {"type": "number"}}, "scale": {"type": "array", "items": {"type": "number"}}}, "required": ["translate", "scale"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["objects", "type", "transform", "arcs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"objects" : {"vectile" : {"type" : "GeometryCollection", "geometries" : [{"arcs" : [[0]], "type" : "Polygon", "properties" : {"id" : "29709"}, "clipped" : true, "id" : "16e2e24ef0"}, {"arcs" : [[1]], "type" : "Polygon", "properties" : {"id" : "29750"}, "clipped" : true, "id" : "7af2978fe7"}, {"arcs" : [[2]], "type" : "Polygon", "properties" : {"id" : "29977"}, "clipped" : true, "id" : "548859cc9d"}, {"arcs" : [[3]], "type" : "Polygon", "properties" : {"id" : "30103"}, "clipped" : true, "id" : "37f224651f"}, {"arcs" : [[4]], "type" : "Polygon", "properties" : {"id" : "30104"}, "clipped" : true, "id" : "dbe763af60"}, {"arcs" : [[5]], "type" : "Polygon", "properties" : {"id" : "30439"}, "clipped" : true, "id" : "f472a95e54"}, {"arcs" : [[6]], "type" : "Polygon", "properties" : {"id" : "30447"}, "clipped" : true, "id" : "c4a959dfa8"}, {"arcs" : [[7]], "type" : "Polygon", "properties" : {"id" : "31049"}, "clipped" : true, "id" : "5136f22284"}, {"arcs" : [[8]], "type" : "Polygon", "properties" : {"id" : "31078"}, "clipped" : true, "id" : "d92f1aa85f"}]}}, "type" : "Topology", "transform" : {"translate" : [15.183105468750007, 49.41097319969587], "scale" : [1.341104507446289e-06, 8.725532631287392e-07]}, "arcs" : [[[1000, 1024], [-45, -433], [-70, -538], [-171, 21], [87, 573], [39, 377], [160, 0]], [[109, 718], [30, 306], [311, 0], [-42, -512], [-68, -384], [-273, 40], [34, 291], [8, 259]], [[1024, 36], [-139, 17], [70, 538], [45, 433], [24, 0], [0, -988]], [[699, 1024], [-60, -578], [-61, -345], [-238, 27], [68, 384], [42, 512], [249, 0]], [[578, 101], [61, 345], [60, 578], [141, 0], [-39, -377], [-87, -573], [-136, 27]], [[140, 0], [-140, 27], [0, 151], [67, -10], [273, -40], [238, -27], [136, -27], [171, -21], [139, -17], [0, -36], [-884, 0]], [[0, 27], [140, -27], [-140, 0], [0, 27]], [[0, 711], [109, 7], [-8, -259], [-34, -291], [-67, 10], [0, 533]], [[139, 1024], [-30, -306], [-109, -7], [0, 313], [139, 0]]]} | json_instruct | {"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}, "clipped": {"type": "boolean"}, "id": {"type": "string"}}, "required": ["arcs", "type", "properties", "clipped", "id"]}}}, "required": ["type", "geometries"]}}, "required": ["vectile"]}, "type": {"type": "string"}, "transform": {"type": "object", "properties": {"translate": {"type": "array", "items": {"type": "number"}}, "scale": {"type": "array", "items": {"type": "number"}}}, "required": ["translate", "scale"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["objects", "type", "transform", "arcs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"face-api.js": {"type": "string"}}, "required": ["face-api.js"]}}, "required": ["author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : "justadudewhohacks", "license" : "MIT", "dependencies" : {"face-api.js" : "../../"}} | json_instruct | {"type": "object", "properties": {"author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"face-api.js": {"type": "string"}}, "required": ["face-api.js"]}}, "required": ["author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "min_rarity": {"type": "integer"}, "max_rarity": {"type": "integer"}, "two_pc": {"type": "string"}, "four_pc": {"type": "string"}, "goblet": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["id", "name", "description"]}, "plume": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["id", "name", "description"]}, "circlet": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["id", "name", "description"]}, "flower": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["id", "name", "description"]}, "sands": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["id", "name", "description"]}}, "required": ["id", "name", "min_rarity", "max_rarity", "two_pc", "four_pc", "goblet", "plume", "circlet", "flower", "sands"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "resolution_of_sojourner", "name" : "\u0420\u0435\u0448\u0438\u043c\u043e\u0441\u0442\u044c \u0432\u0440\u0435\u043c\u0435\u043d\u0449\u0438\u043a\u0430", "min_rarity" : 3, "max_rarity" : 4, "two_pc" : "\u0423\u0432\u0435\u043b\u0438\u0447\u0438\u0432\u0430\u0435\u0442 \u0441\u0438\u043b\u0443 \u0430\u0442\u0430\u043a\u0438 \u043d\u0430 18%.", "four_pc" : "\u0423\u0432\u0435\u043b\u0438\u0447\u0438\u0432\u0430\u0435\u0442 \u0448\u0430\u043d\u0441 \u043a\u0440\u0438\u0442. \u043f\u043e\u043f\u0430\u0434\u0430\u043d\u0438\u044f \u0437\u0430\u0440\u044f\u0436\u0435\u043d\u043d\u043e\u0439 \u0430\u0442\u0430\u043a\u0438 \u043d\u0430 30%.", "goblet" : {"id" : "goblet_of_the_sojourner", "name" : "\u041a\u0443\u0431\u043e\u043a \u0432\u0440\u0435\u043c\u0435\u043d\u0449\u0438\u043a\u0430", "description" : "\u041f\u0440\u043e\u0441\u0442\u043e\u0439 \u0444\u0430\u0440\u0444\u043e\u0440\u043e\u0432\u044b\u0439 \u043a\u0443\u0431\u043e\u043a, \u0432 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u043a\u043e\u0433\u0434\u0430-\u0442\u043e \u043f\u0435\u043d\u0438\u043b\u0438\u0441\u044c \u0440\u043e\u0441\u043a\u043e\u0448\u043d\u044b\u0435 \u043d\u0430\u043f\u0438\u0442\u043a\u0438."}, "plume" : {"id" : "feather_of_homecoming", "name" : "\u041f\u0435\u0440\u043e \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0435\u043d\u0438\u044f \u0434\u043e\u043c\u043e\u0439", "description" : "\u0421\u0438\u043d\u0435\u0435 \u043f\u0435\u0440\u043e \u0441 \u043f\u0440\u0435\u0432\u0440\u0430\u0442\u0438\u0432\u0448\u0435\u0439\u0441\u044f \u0432 \u043a\u0440\u0438\u0441\u0442\u0430\u043b\u043b \u0442\u043e\u0441\u043a\u043e\u0439 \u0443\u0445\u043e\u0434\u044f\u0449\u0435\u0433\u043e \u0437\u0430 \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442 \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u0438\u043a\u0430."}, "circlet" : {"id" : "crown_of_parting", "name" : "\u0412\u0435\u043d\u043e\u043a \u0440\u0430\u0441\u0441\u0442\u0430\u0432\u0430\u043d\u0438\u044f", "description" : "\u0418\u0432\u043e\u0432\u044b\u0439 \u0432\u0435\u043d\u043e\u043a, \u043e\u0442 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0432\u0435\u0435\u0442 \u0432\u0435\u0441\u0435\u043d\u043d\u0438\u043c \u0431\u0440\u0438\u0437\u043e\u043c."}, "flower" : {"id" : "heart_of_comradeship", "name" : "\u0421\u0435\u0440\u0434\u0446\u0435 \u0442\u043e\u0432\u0430\u0440\u0438\u0449\u0435\u0441\u0442\u0432\u0430", "description" : "\u041c\u0430\u043b\u0435\u043d\u044c\u043a\u0438\u0439 \u0446\u0432\u0435\u0442\u043e\u043a \u0441 \u0441\u0430\u043f\u0444\u0438\u0440\u043e\u0432\u044b\u043c\u0438 \u043b\u0435\u043f\u0435\u0441\u0442\u043a\u0430\u043c\u0438 \u0438 \u043f\u0440\u0438\u0432\u044f\u0437\u0430\u043d\u043d\u043e\u0439 \u043a \u0441\u0442\u0435\u0431\u043b\u044e \u043b\u0435\u043d\u0442\u043e\u0439."}, "sands" : {"id" : "sundial_of_the_sojourner", "name" : "\u0421\u043e\u043b\u043d\u0435\u0447\u043d\u044b\u0435 \u0447\u0430\u0441\u044b \u0432\u0440\u0435\u043c\u0435\u043d\u0449\u0438\u043a\u0430", "description" : "\u0421\u043e\u043b\u043d\u0435\u0447\u043d\u044b\u0435 \u0447\u0430\u0441\u044b, \u043f\u0435\u0440\u0435\u0436\u0438\u0432\u0448\u0438\u0435 \u043d\u0435 \u043e\u0434\u043d\u043e \u0442\u044b\u0441\u044f\u0447\u0435\u043b\u0435\u0442\u0438\u0435. \u041e\u043d\u0438 \u0431\u0435\u0437\u043c\u043e\u043b\u0432\u043d\u043e \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u044e\u0442 \u0432\u0435\u0441\u0442\u0438 \u043e\u0442\u0441\u0447\u0451\u0442 \u0441\u043e\u043b\u043d\u0435\u0447\u043d\u044b\u0445 \u0438 \u043b\u0443\u043d\u043d\u044b\u0445 \u0446\u0438\u043a\u043b\u043e\u0432."}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "min_rarity": {"type": "integer"}, "max_rarity": {"type": "integer"}, "two_pc": {"type": "string"}, "four_pc": {"type": "string"}, "goblet": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["id", "name", "description"]}, "plume": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["id", "name", "description"]}, "circlet": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["id", "name", "description"]}, "flower": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["id", "name", "description"]}, "sands": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["id", "name", "description"]}}, "required": ["id", "name", "min_rarity", "max_rarity", "two_pc", "four_pc", "goblet", "plume", "circlet", "flower", "sands"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"className": {"type": "string"}, "methods": {"type": "object", "properties": {"equals": {"type": "string"}, "getData": {"type": "string"}, "hashCode": {"type": "string"}, "setData": {"type": "string"}}, "required": ["equals", "getData", "hashCode", "setData"]}, "path": {"type": "string"}, "typeName": {"type": "string"}}, "required": ["className", "methods", "path", "typeName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"className" : "io.deephaven.web.shared.data.columns.DoubleArrayColumnData", "methods" : {"equals" : ":param o: java.lang.Object\n:return: boolean", "getData" : ":return: double[]", "hashCode" : ":return: int", "setData" : ":param data: double[]"}, "path" : "io.deephaven.web.shared.data.columns.DoubleArrayColumnData", "typeName" : "class"} | json_instruct | {"type": "object", "properties": {"className": {"type": "string"}, "methods": {"type": "object", "properties": {"equals": {"type": "string"}, "getData": {"type": "string"}, "hashCode": {"type": "string"}, "setData": {"type": "string"}}, "required": ["equals", "getData", "hashCode", "setData"]}, "path": {"type": "string"}, "typeName": {"type": "string"}}, "required": ["className", "methods", "path", "typeName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "changes": {"type": "array", "items": {"type": "string"}}}, "required": ["versionEnd", "versionStart", "changes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"versionEnd" : {"versionNum" : 1314, "commit" : "15c50ffd9a50aec8a2496ac03f1343963b43acf4", "date" : "2021-05-14T04:15:02.941Z"}, "versionStart" : {"versionNum" : 1313, "commit" : "c19a19787412298912b7bba4543731e9fb55b311", "date" : "2021-05-14T04:13:38.525Z"}, "changes" : ["blockchains/ethereum/allowlist.json", "blockchains/ethereum/assets/0x93B2FfF814FCaEFFB01406e80B4Ecd89Ca6A021b/info.json"]} | json_instruct | {"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "changes": {"type": "array", "items": {"type": "string"}}}, "required": ["versionEnd", "versionStart", "changes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {"type": "string"}}, "SERIES_NAME": {"type": "array", "items": {"type": "string"}}, "X_CALENDAR_YEAR": {"type": "array", "items": {"type": "integer"}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {"type": "number"}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {"type": "integer"}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {"type": "number"}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "CONDITIONS_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_DIAGNOSIS": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "CONDITIONS_BY_TYPE", "AGE_AT_FIRST_DIAGNOSIS"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : ["70-79", "90-99", "80-89", "80-89", "50-59", "80-89", "80-89", "70-79", "70-79", "70-79"], "SERIES_NAME" : ["MALE", "FEMALE", "FEMALE", "FEMALE", "MALE", "MALE", "MALE", "MALE", "MALE", "MALE"], "X_CALENDAR_YEAR" : [2010, 2012, 2013, 2014, 2014, 2014, 2016, 2016, 2017, 2018], "Y_PREVALENCE_1000PP" : [0.03133, 0.14418, 0.07658, 0.07318, 0.01606, 0.06344, 0.08166, 0.05712, 0.04127, 0.05315]}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [201106, 201304, 201408, 201412, 201601, 201602, 201606, 201802], "Y_PREVALENCE_1000PP" : [0.0011, 0.0013, 0.00118, 0.00145, 0.00173, 0.00149, 0.00154, 0.00216]}, "CONDITIONS_BY_TYPE" : {"CONCEPT_NAME" : "Observation recorded from EHR", "COUNT_VALUE" : 406}, "AGE_AT_FIRST_DIAGNOSIS" : {"CATEGORY" : ["FEMALE", "MALE"], "MIN_VALUE" : [0, 1], "P10_VALUE" : [51, 51], "P25_VALUE" : [65, 61], "MEDIAN_VALUE" : [79, 72], "P75_VALUE" : [86, 81], "P90_VALUE" : [89, 87], "MAX_VALUE" : [97, 98]}} | json_instruct | {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {"type": "string"}}, "SERIES_NAME": {"type": "array", "items": {"type": "string"}}, "X_CALENDAR_YEAR": {"type": "array", "items": {"type": "integer"}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {"type": "number"}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {"type": "integer"}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {"type": "number"}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "CONDITIONS_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_DIAGNOSIS": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "CONDITIONS_BY_TYPE", "AGE_AT_FIRST_DIAGNOSIS"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"profiles": {"type": "object", "properties": {"WireMock.Net.StandAlone.NETCoreApp": {"type": "object", "properties": {"commandName": {"type": "string"}, "commandLineArgs": {"type": "string"}}, "required": ["commandName", "commandLineArgs"]}}, "required": ["WireMock.Net.StandAlone.NETCoreApp"]}}, "required": ["profiles"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"profiles" : {"WireMock.Net.StandAlone.NETCoreApp" : {"commandName" : "Project", "commandLineArgs" : "--Urls https://localhost:10080 --WireMockLogger WireMockConsoleLogger"}}} | json_instruct | {"type": "object", "properties": {"profiles": {"type": "object", "properties": {"WireMock.Net.StandAlone.NETCoreApp": {"type": "object", "properties": {"commandName": {"type": "string"}, "commandLineArgs": {"type": "string"}}, "required": ["commandName", "commandLineArgs"]}}, "required": ["WireMock.Net.StandAlone.NETCoreApp"]}}, "required": ["profiles"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id_3530": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_3530"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id_3530" : {"publicdate" : "2010-01-29 22:47:36", "title" : "The Light that Failed"}} | json_instruct | {"type": "object", "properties": {"id_3530": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_3530"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"900037759": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900037760": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900037761": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900037762": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900037759", "900037760", "900037761", "900037762"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"900037759" : {"nama" : "TPS 1", "dapil" : [1203, 11211, 2121103]}, "900037760" : {"nama" : "TPS 2", "dapil" : [1203, 11211, 2121103]}, "900037761" : {"nama" : "TPS 3", "dapil" : [1203, 11211, 2121103]}, "900037762" : {"nama" : "TPS 4", "dapil" : [1203, 11211, 2121103]}} | json_instruct | {"type": "object", "properties": {"900037759": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900037760": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900037761": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900037762": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900037759", "900037760", "900037761", "900037762"], "$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"}, "main": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "watch": {"type": "string"}, "prepublishOnly": {"type": "string"}}, "required": ["build", "watch", "prepublishOnly"]}, "types": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "devDependencies": {"type": "object", "properties": {"@rbxts/compiler-types": {"type": "string"}, "@rbxts/types": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-roblox-ts": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@rbxts/compiler-types", "@rbxts/types", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "eslint-plugin-roblox-ts", "typescript"]}, "packageManager": {"type": "string"}}, "required": ["name", "version", "main", "license", "author", "scripts", "types", "files", "publishConfig", "devDependencies", "packageManager"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@rbxts/semver", "version" : "1.0.0", "main" : "out/init.lua", "license" : "MIT", "author" : {"name" : "LetterN"}, "scripts" : {"build" : "rbxtsc", "watch" : "rbxtsc -w", "prepublishOnly" : "yarn run build"}, "types" : "out/index.d.ts", "files" : ["out"], "publishConfig" : {"access" : "public"}, "devDependencies" : {"@rbxts/compiler-types" : "^1.2.3-types.1", "@rbxts/types" : "^1.0.571", "@typescript-eslint/eslint-plugin" : "^5.10.1", "@typescript-eslint/parser" : "^5.10.1", "eslint" : "^8.7.0", "eslint-plugin-roblox-ts" : "^0.0.32", "typescript" : "^4.5.5"}, "packageManager" : "yarn@3.1.1"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "watch": {"type": "string"}, "prepublishOnly": {"type": "string"}}, "required": ["build", "watch", "prepublishOnly"]}, "types": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "devDependencies": {"type": "object", "properties": {"@rbxts/compiler-types": {"type": "string"}, "@rbxts/types": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-roblox-ts": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@rbxts/compiler-types", "@rbxts/types", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "eslint-plugin-roblox-ts", "typescript"]}, "packageManager": {"type": "string"}}, "required": ["name", "version", "main", "license", "author", "scripts", "types", "files", "publishConfig", "devDependencies", "packageManager"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1005", "provinceId" : "12", "regencyId" : "01", "districtId" : "20", "name" : "Pondok Batu"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id_3536": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "string"}, "genres": {"type": "string"}}, "required": ["title", "language", "totaltime", "url_librivox", "url_iarchive", "readers", "authors", "genres"]}}, "required": ["id_3536"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id_3536" : {"title" : "On Nothing & Kindred Subjects", "language" : "English", "totaltime" : "6:03:31", "url_librivox" : "http://librivox.org/on-nothing-kindred-subjects-by-hilaire-belloc/", "url_iarchive" : "http://www.archive.org/details/on_nothing_0912_librivox", "readers" : ["2162"], "authors" : "156", "genres" : "Essays & Short Works"}} | json_instruct | {"type": "object", "properties": {"id_3536": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "string"}, "genres": {"type": "string"}}, "required": ["title", "language", "totaltime", "url_librivox", "url_iarchive", "readers", "authors", "genres"]}}, "required": ["id_3536"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"homicidal_queen": {"type": "object", "properties": {"title": {"type": "string"}, "channel_id": {"type": "integer"}, "link": {"type": "string"}, "desc": {"type": "null"}, "plans": {"type": "object", "properties": {"$4.99": {"type": "string"}, "$9.99": {"type": "string"}, "$24.99": {"type": "string"}}, "required": ["$4.99", "$9.99", "$24.99"]}, "id": {"type": "string"}, "first_seen": {"type": "string"}, "badge": {"type": "null"}, "badge_starting": {"type": "null"}, "badge_3m": {"type": "null"}, "badge_6m": {"type": "null"}, "badge_12m": {"type": "null"}, "badge_24m": {"type": "null"}, "badges": {"type": "null"}, "bits_badges": {"type": "null"}, "cheermote1": {"type": "null"}, "cheermote100": {"type": "null"}, "cheermote1000": {"type": "null"}, "cheermote5000": {"type": "null"}, "cheermote10000": {"type": "null"}, "set": {"type": "integer"}, "emotes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "image_id": {"type": "integer"}, "set": {"type": "integer"}}, "required": ["code", "image_id", "set"]}}}, "required": ["title", "channel_id", "link", "desc", "plans", "id", "first_seen", "badge", "badge_starting", "badge_3m", "badge_6m", "badge_12m", "badge_24m", "badges", "bits_badges", "cheermote1", "cheermote100", "cheermote1000", "cheermote5000", "cheermote10000", "set", "emotes"]}}, "required": ["homicidal_queen"]}}, "required": ["template", "channels"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"template" : {"small" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/1.0", "medium" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/2.0", "large" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/3.0"}, "channels" : {"homicidal_queen" : {"title" : "Homicidal_Queen", "channel_id" : 92383000, "link" : "http://twitch.tv/homicidal_queen", "desc" : null, "plans" : {"$4.99" : "124909", "$9.99" : "124910", "$24.99" : "124911"}, "id" : "homicidal_queen", "first_seen" : "2017-07-02 18:35:04", "badge" : null, "badge_starting" : null, "badge_3m" : null, "badge_6m" : null, "badge_12m" : null, "badge_24m" : null, "badges" : null, "bits_badges" : null, "cheermote1" : null, "cheermote100" : null, "cheermote1000" : null, "cheermote5000" : null, "cheermote10000" : null, "set" : 124909, "emotes" : [{"code" : "homiciCrown", "image_id" : 258992, "set" : 124909}]}}} | json_instruct | {"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"homicidal_queen": {"type": "object", "properties": {"title": {"type": "string"}, "channel_id": {"type": "integer"}, "link": {"type": "string"}, "desc": {"type": "null"}, "plans": {"type": "object", "properties": {"$4.99": {"type": "string"}, "$9.99": {"type": "string"}, "$24.99": {"type": "string"}}, "required": ["$4.99", "$9.99", "$24.99"]}, "id": {"type": "string"}, "first_seen": {"type": "string"}, "badge": {"type": "null"}, "badge_starting": {"type": "null"}, "badge_3m": {"type": "null"}, "badge_6m": {"type": "null"}, "badge_12m": {"type": "null"}, "badge_24m": {"type": "null"}, "badges": {"type": "null"}, "bits_badges": {"type": "null"}, "cheermote1": {"type": "null"}, "cheermote100": {"type": "null"}, "cheermote1000": {"type": "null"}, "cheermote5000": {"type": "null"}, "cheermote10000": {"type": "null"}, "set": {"type": "integer"}, "emotes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "image_id": {"type": "integer"}, "set": {"type": "integer"}}, "required": ["code", "image_id", "set"]}}}, "required": ["title", "channel_id", "link", "desc", "plans", "id", "first_seen", "badge", "badge_starting", "badge_3m", "badge_6m", "badge_12m", "badge_24m", "badges", "bits_badges", "cheermote1", "cheermote100", "cheermote1000", "cheermote5000", "cheermote10000", "set", "emotes"]}}, "required": ["homicidal_queen"]}}, "required": ["template", "channels"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : {"id" : "t2_844ig", "name" : "bingbangboner"}, "date" : {"day" : 1619481600, "full" : 1619547670, "month" : 1617235200, "week" : 1619308800}, "id" : "t3_mzuz5j", "picture" : {"filesize" : 108137, "fullUrl" : "https://preview.redd.it/0537z3f6drv61.jpg?width=4032&format=pjpg&auto=webp&s=68662bea336067c06be3beb9afc28751a9b2bafe", "hash" : "5b979d46bd", "height" : 480, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAMABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAIF/8QAIxAAAgIBBAAHAAAAAAAAAAAAAQIDEQQABSExEhMUMkFRgf/EABQBAQAAAAAAAAAAAAAAAAAAAAX/xAAdEQABBAIDAAAAAAAAAAAAAAACAAEDBBEhYYGh/9oADAMBAAIRAxEAPwA24STZG4x4MLjFxmt0MUdsbFUST3fzqt8wWn2piSGmEICtIpShYAYnoiuOfvWtnwxJl4TlA3lt4QpJojujXY0zFX1MMWRkkzSexQ5sIo5AA/dFw5AGTFmsct0ohfnrT+L/2Q==", "url" : "https://preview.redd.it/0537z3f6drv61.jpg?width=640&crop=smart&auto=webp&s=33d97b03b235f7739be90c40362623129d0004bf", "width" : 640}, "score" : {"comments" : 8, "downs" : 0, "ratio" : 0.97, "ups" : 66, "value" : 66}, "subreddit" : {"id" : "t5_2xy5e", "name" : "TerrainBuilding"}, "tags" : [], "title" : "Cave/Mine Tile Set", "url" : "https://www.reddit.com/r/TerrainBuilding/comments/mzuz5j/cavemine_tile_set/"} | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0xf5a0da939f579a7b05b4c50e435a0fc4242b373f", "tool" : "slither", "start" : 1563686452.0334764, "end" : 1563686454.5932214, "duration" : 2.5597450733184814, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"year" : 1967, "sex" : "F", "n" : 5, "prop" : 2.91e-06}, {"year" : 1968, "sex" : "F", "n" : 5, "prop" : 2.92e-06}, {"year" : 1969, "sex" : "F", "n" : 10, "prop" : 5.67e-06}, {"year" : 1970, "sex" : "F", "n" : 5, "prop" : 2.73e-06}, {"year" : 1971, "sex" : "F", "n" : 6, "prop" : 3.42e-06}, {"year" : 1972, "sex" : "F", "n" : 10, "prop" : 6.2e-06}, {"year" : 1973, "sex" : "F", "n" : 12, "prop" : 7.72e-06}, {"year" : 1974, "sex" : "F", "n" : 5, "prop" : 3.19e-06}, {"year" : 1975, "sex" : "F", "n" : 8, "prop" : 5.13e-06}, {"year" : 1976, "sex" : "F", "n" : 11, "prop" : 7e-06}, {"year" : 1977, "sex" : "F", "n" : 9, "prop" : 5.47e-06}, {"year" : 1978, "sex" : "F", "n" : 7, "prop" : 4.26e-06}, {"year" : 1980, "sex" : "F", "n" : 8, "prop" : 4.49e-06}, {"year" : 1981, "sex" : "F", "n" : 7, "prop" : 3.91e-06}, {"year" : 1982, "sex" : "F", "n" : 7, "prop" : 3.86e-06}, {"year" : 1986, "sex" : "F", "n" : 10, "prop" : 5.42e-06}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "build", "start"]}, "dependencies": {"type": "object", "properties": {"@material-ui/core": {"type": "string"}, "@tinymce/tinymce-react": {"type": "string"}, "animate.css": {"type": "string"}, "axios": {"type": "string"}, "emoji-mart": {"type": "string"}, "emoji-picker-react": {"type": "string"}, "next": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-github-btn": {"type": "string"}, "react-github-corner": {"type": "string"}, "react-hot-toast": {"type": "string"}, "react-icons": {"type": "string"}}, "required": ["@material-ui/core", "@tinymce/tinymce-react", "animate.css", "axios", "emoji-mart", "emoji-picker-react", "next", "react", "react-dom", "react-github-btn", "react-github-corner", "react-hot-toast", "react-icons"]}, "devDependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "postcss": {"type": "string"}, "tailwindcss": {"type": "string"}}, "required": ["autoprefixer", "postcss", "tailwindcss"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "with-tailwindcss", "version" : "0.1.0", "private" : true, "scripts" : {"dev" : "next dev", "build" : "next build", "start" : "next start"}, "dependencies" : {"@material-ui/core" : "^4.11.4", "@tinymce/tinymce-react" : "^3.12.6", "animate.css" : "^4.1.1", "axios" : "^0.21.1", "emoji-mart" : "^3.0.1", "emoji-picker-react" : "^3.4.7", "next" : "latest", "react" : "^17.0.1", "react-dom" : "^17.0.1", "react-github-btn" : "^1.2.0", "react-github-corner" : "^2.5.0", "react-hot-toast" : "^1.0.2", "react-icons" : "^4.2.0"}, "devDependencies" : {"autoprefixer" : "^10.0.4", "postcss" : "^8.1.10", "tailwindcss" : "^2.1.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "build", "start"]}, "dependencies": {"type": "object", "properties": {"@material-ui/core": {"type": "string"}, "@tinymce/tinymce-react": {"type": "string"}, "animate.css": {"type": "string"}, "axios": {"type": "string"}, "emoji-mart": {"type": "string"}, "emoji-picker-react": {"type": "string"}, "next": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-github-btn": {"type": "string"}, "react-github-corner": {"type": "string"}, "react-hot-toast": {"type": "string"}, "react-icons": {"type": "string"}}, "required": ["@material-ui/core", "@tinymce/tinymce-react", "animate.css", "axios", "emoji-mart", "emoji-picker-react", "next", "react", "react-dom", "react-github-btn", "react-github-corner", "react-hot-toast", "react-icons"]}, "devDependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "postcss": {"type": "string"}, "tailwindcss": {"type": "string"}}, "required": ["autoprefixer", "postcss", "tailwindcss"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$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"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "ME Cylinder 12\u94c5\u5f84\u67aa\u53e3\u8f6c\u63a5\u5668", "ShortName" : "Cylinder ", "Description" : "Cylinder\u662f\u901a\u7528\u7684\u5916\u67aa\u53e3\u5185\u87ba\u7eb9\u8f6c\u63a5\u5668\u3002"} | 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 a JSON structure that matches this schema definition:
{"type": "object", "properties": {"notes": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "content": {"type": "string"}}, "required": ["title", "content"]}}}, "required": ["notes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"notes" : [{"title" : "Note with invalid title\na and b", "content" : "4th street"}]} | json_instruct | {"type": "object", "properties": {"notes": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "content": {"type": "string"}}, "required": ["title", "content"]}}}, "required": ["notes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"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" : 101890963, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "35b01d40f7852aa95aa5e70353045d69", "wof:id" : 101890963, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [-1.03792498644327, 46.22001676670465, -1.03132234699814, 46.23464640308714], "geometry" : {"coordinates" : [[[-1.03371158294038, 46.23464640308714], [-1.03315876683638, 46.2319783550696], [-1.03187503019387, 46.23211167384892], [-1.03132234699814, 46.22944360970791], [-1.03260602177892, 46.229310298587], [-1.03150074475133, 46.22397416022488], [-1.03278429009435, 46.22384084902814], [-1.03241588631545, 46.22206213381924], [-1.03369938469592, 46.22192881233809], [-1.03333097125341, 46.22015009846967], [-1.03461442267553, 46.22001676670465], [-1.03498287733913, 46.22179547546784], [-1.03754984541286, 46.22152875556145], [-1.03773412580438, 46.22241810342507], [-1.03645062402552, 46.22255147362597], [-1.03792498644327, 46.2296662430785], [-1.03664131400251, 46.22979961831805], [-1.03682562421483, 46.2306889628187], [-1.03554192541378, 46.23082232522069], [-1.03591052828494, 46.23260101650686], [-1.03462678250122, 46.23273436862428], [-1.03499537571167, 46.23451306125497], [-1.03371158294038, 46.23464640308714]]], "type" : "Polygon"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"messages": {"type": "object", "properties": {"": {"type": "object", "properties": {"domain": {"type": "string"}, "plural-forms": {"type": "string"}, "lang": {"type": "string"}}, "required": ["domain", "plural-forms", "lang"]}, "Untitled Reusable Block": {"type": "array", "items": {"type": "string"}}, "Block deleted.": {"type": "array", "items": {"type": "string"}}, "Block created.": {"type": "array", "items": {"type": "string"}}, "Remove from Reusable blocks": {"type": "array", "items": {"type": "string"}}, "Add to Reusable blocks": {"type": "array", "items": {"type": "string"}}}, "required": ["", "Untitled Reusable Block", "Block deleted.", "Block created.", "Remove from Reusable blocks", "Add to Reusable blocks"]}}, "required": ["messages"]}, "comment": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}}, "required": ["translation-revision-date", "generator", "domain", "locale_data", "comment"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"translation-revision-date" : "2020-12-04 06:19:32+0000", "generator" : "GlotPress/3.0.0-alpha.2", "domain" : "messages", "locale_data" : {"messages" : {"" : {"domain" : "messages", "plural-forms" : "nplurals=1; plural=0;", "lang" : "ja_JP"}, "Untitled Reusable Block" : ["\u7121\u984c\u306e\u518d\u5229\u7528\u30d6\u30ed\u30c3\u30af"], "Block deleted." : ["\u30d6\u30ed\u30c3\u30af\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002"], "Block created." : ["\u30d6\u30ed\u30c3\u30af\u3092\u4f5c\u6210\u3057\u307e\u3057\u305f\u3002"], "Remove from Reusable blocks" : ["\u518d\u5229\u7528\u30d6\u30ed\u30c3\u30af\u304b\u3089\u524a\u9664"], "Add to Reusable blocks" : ["\u518d\u5229\u7528\u30d6\u30ed\u30c3\u30af\u306b\u8ffd\u52a0"]}}, "comment" : {"reference" : "wp-includes/js/dist/reusable-blocks.js"}} | json_instruct | {"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"messages": {"type": "object", "properties": {"": {"type": "object", "properties": {"domain": {"type": "string"}, "plural-forms": {"type": "string"}, "lang": {"type": "string"}}, "required": ["domain", "plural-forms", "lang"]}, "Untitled Reusable Block": {"type": "array", "items": {"type": "string"}}, "Block deleted.": {"type": "array", "items": {"type": "string"}}, "Block created.": {"type": "array", "items": {"type": "string"}}, "Remove from Reusable blocks": {"type": "array", "items": {"type": "string"}}, "Add to Reusable blocks": {"type": "array", "items": {"type": "string"}}}, "required": ["", "Untitled Reusable Block", "Block deleted.", "Block created.", "Remove from Reusable blocks", "Add to Reusable blocks"]}}, "required": ["messages"]}, "comment": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}}, "required": ["translation-revision-date", "generator", "domain", "locale_data", "comment"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"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" : "emendatusenigmatica:block/lead_scoria_ore"}}} | 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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cSpell.words" : ["bgcolor", "hookform", "testid"]} | json_instruct | {"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0x81bad28d8c2f6a6cfbfea8a2310574dbc7706a44072979a218f9eb0416346c46", "parentHash" : "0x4a27ee6d6ad63be023489d10a1e9a5f8982f03e07e0c392b4915ada4d416dd41", "number" : 9183, "timestamp" : 1438324429, "nonce" : "0x21285b6d248c0cfd", "difficulty" : 540950303439, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xa5ae41B379Eed185cbf636352aCBa8a960946076", "extraData" : "0x476574682f76312e302e302f6c696e75782f676f312e342e32", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "mounter", "definition" : "1. One who mounts. 2. An animal mounted; a monture. [Obs.]"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0x219f58bdaaec17bd854e102b2266eae1f57e64f97145b202704659fa1c435899", "parentHash" : "0x58b2ad4beac722bc340b447766a5eb286132431901eb285ccf6ef40dd421bfcf", "number" : 87771, "timestamp" : 1439597224, "nonce" : "0x41f33375f9cce22c", "difficulty" : 3175613141564, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xe090Ffdced499691fA9379752a59F8A058c1eE4A", "extraData" : "0x476574682f76312e302e312f6c696e75782f676f312e342e32", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"load": {"type": "string"}}, "required": ["load"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"load" : "1.5"} | json_instruct | {"type": "object", "properties": {"load": {"type": "string"}}, "required": ["load"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1979, 6], [1980, 5], [1985, 5], [1988, 9], [1989, 7], [1990, 8], [1991, 17], [1992, 22], [1993, 11], [1994, 21], [1995, 14], [1996, 16], [1997, 19], [1998, 15], [1999, 10], [2000, 11], [2001, 7], [2002, 12], [2003, 6], [2006, 6]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"forge_marker": {"type": "integer"}, "defaults": {"type": "object", "properties": {"model": {"type": "string"}, "textures": {"type": "object", "properties": {"all": {"type": "string"}}, "required": ["all"]}, "transform": {"type": "string"}}, "required": ["model", "textures", "transform"]}, "variants": {"type": "object", "properties": {"half=top": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "integer"}, "uvlock": {"type": "boolean"}}, "required": ["x", "uvlock"]}}, "half=bottom": {"type": "array", "items": {"type": "object", "properties": {}, "required": []}}, "inventory": {"type": "array", "items": {"type": "object", "properties": {}, "required": []}}, "normal": {"type": "array", "items": {"type": "object", "properties": {}, "required": []}}}, "required": ["half=top", "half=bottom", "inventory", "normal"]}}, "required": ["forge_marker", "defaults", "variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"forge_marker" : 1, "defaults" : {"model" : "quark:frame_slab", "textures" : {"all" : "quark:blocks/frame"}, "transform" : "forge:default-block"}, "variants" : {"half=top" : [{"x" : 180, "uvlock" : true}], "half=bottom" : [{}], "inventory" : [{}], "normal" : [{}]}} | json_instruct | {"type": "object", "properties": {"forge_marker": {"type": "integer"}, "defaults": {"type": "object", "properties": {"model": {"type": "string"}, "textures": {"type": "object", "properties": {"all": {"type": "string"}}, "required": ["all"]}, "transform": {"type": "string"}}, "required": ["model", "textures", "transform"]}, "variants": {"type": "object", "properties": {"half=top": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "integer"}, "uvlock": {"type": "boolean"}}, "required": ["x", "uvlock"]}}, "half=bottom": {"type": "array", "items": {"type": "object", "properties": {}, "required": []}}, "inventory": {"type": "array", "items": {"type": "object", "properties": {}, "required": []}}, "normal": {"type": "array", "items": {"type": "object", "properties": {}, "required": []}}}, "required": ["half=top", "half=bottom", "inventory", "normal"]}}, "required": ["forge_marker", "defaults", "variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "item/generated", "textures" : {"layer0" : "dragonsurvival:item/beacon_magic_1"}} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"_id": {"type": "string"}, "_rev": {"type": "string"}, "title": {"type": "string"}, "feed": {"type": "string"}, "Peter": {"type": "string"}, "date": {"type": "string"}}, "required": ["_id", "_rev", "title", "feed", "Peter", "date"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : "6a3ec9724b917a63cd5c07a2640077ee", "_rev" : "1-6ce54b57ac17e2af9a1b3f8483cef4f0", "title" : "Demo", "feed" : "continuous", "Peter" : "Pan", "date" : "2021-07-18T09:51:54.378Z"} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "_rev": {"type": "string"}, "title": {"type": "string"}, "feed": {"type": "string"}, "Peter": {"type": "string"}, "date": {"type": "string"}}, "required": ["_id", "_rev", "title", "feed", "Peter", "date"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"version": {"type": "string"}, "name": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "_resolved": {"type": "string"}, "_integrity": {"type": "string"}, "_from": {"type": "string"}}, "required": ["version", "name", "main", "typings", "_resolved", "_integrity", "_from"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "0.0.2", "name" : "run-in-terminal", "main" : "lib/index.js", "typings" : "lib/index.d.ts", "_resolved" : "https://registry.npmjs.org/run-in-terminal/-/run-in-terminal-0.0.2.tgz", "_integrity" : "sha1-c/i0vxtZGuJf9YEl47Fx/Y5X+D0=", "_from" : "run-in-terminal@0.0.2"} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "name": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "_resolved": {"type": "string"}, "_integrity": {"type": "string"}, "_from": {"type": "string"}}, "required": ["version", "name", "main", "typings", "_resolved", "_integrity", "_from"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"naive_kernel0": {"type": "object", "properties": {"write": {"type": "object", "properties": {"device_start": {"type": "number"}, "host_queued_start": {"type": "number"}, "device_queued": {"type": "number"}, "device_end": {"type": "number"}, "host_queued_end": {"type": "number"}}, "required": ["device_start", "host_queued_start", "device_queued", "device_end", "host_queued_end"]}, "device": {"type": "string"}, "nd_range": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}, "cmdq": {"type": "integer"}, "read": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}}, "required": ["write", "device", "nd_range", "cmdq", "read"]}}, "required": ["naive_kernel0"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"naive_kernel0" : {"write" : {"device_start" : 1586200626.4381745, "host_queued_start" : 1586200709.49933, "device_queued" : 1586200626.4379232, "device_end" : 1586200626.4382706, "host_queued_end" : 1586200709.499683}, "device" : "gpu", "nd_range" : {"device_start" : 1586200626.4382734, "device_end" : 1586200626.4383352}, "cmdq" : 0, "read" : {"device_start" : 1586200626.4383385, "device_end" : 1586200626.438424}}} | json_instruct | {"type": "object", "properties": {"naive_kernel0": {"type": "object", "properties": {"write": {"type": "object", "properties": {"device_start": {"type": "number"}, "host_queued_start": {"type": "number"}, "device_queued": {"type": "number"}, "device_end": {"type": "number"}, "host_queued_end": {"type": "number"}}, "required": ["device_start", "host_queued_start", "device_queued", "device_end", "host_queued_end"]}, "device": {"type": "string"}, "nd_range": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}, "cmdq": {"type": "integer"}, "read": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}}, "required": ["write", "device", "nd_range", "cmdq", "read"]}}, "required": ["naive_kernel0"], "$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"}, "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": {"ghks1353": {"type": "string"}}, "required": ["ghks1353"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "swift_versions": {"type": "string"}, "source_files": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "default_subspecs": {"type": "string"}, "frameworks": {"type": "string"}, "subspecs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "source_files": {"type": "string"}}, "required": ["name", "source_files"]}}, "swift_version": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "swift_versions", "source_files", "platforms", "default_subspecs", "frameworks", "subspecs", "swift_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "LessUI", "version" : "0.1.4", "summary" : "Write super-simple UI code with LessUI", "description" : "Super-simple shortcut UI extension codes for swift.", "homepage" : "https://github.com/ghks1353/LessUI", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"ghks1353" : "ghks1353@gmail.com"}, "source" : {"git" : "https://github.com/ghks1353/LessUI.git", "tag" : "0.1.4"}, "swift_versions" : "5.0", "source_files" : "src/default/*", "platforms" : {"ios" : "9.0"}, "default_subspecs" : "Default", "frameworks" : "UIKit", "subspecs" : [{"name" : "Default", "source_files" : "src/default/*"}, {"name" : "Transition", "source_files" : "src/transition/*", "dependencies" : {"pop" : ["~> 1.0"]}}, {"name" : "Network", "source_files" : "src/network/*", "dependencies" : {"Alamofire" : ["~> 4.7"], "AlamofireImage" : ["~> 3.5"]}}], "swift_version" : "5.0"} | 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": {"ghks1353": {"type": "string"}}, "required": ["ghks1353"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "swift_versions": {"type": "string"}, "source_files": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "default_subspecs": {"type": "string"}, "frameworks": {"type": "string"}, "subspecs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "source_files": {"type": "string"}}, "required": ["name", "source_files"]}}, "swift_version": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "swift_versions", "source_files", "platforms", "default_subspecs", "frameworks", "subspecs", "swift_version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "image": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "image", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Preheat oven to 350 degrees F (175 degrees C).", "Heat a large nonstick skillet over medium-high heat. Stir in the ground beef, and cook until brown and crumbly. Pour off excess grease, then stir in garlic, onion, and tomatoes. Cook and stir until the onions soften just a bit, about 3 minutes. Stir the cheese into the mixture, and set aside.", "Cut the tops off of the peppers, and remove the veins and seeds. Fill each pepper with the ground beef mixture and pour in some of the chicken broth. Place into the cups of a muffin tin, and replace the tops.", "Bake in preheated oven 30 minutes."], "image" : "https://imagesvc.meredithcorp.io/v3/mm/image?q=85&c=sc&poi=face&w=960&h=503&url=https%3A%2F%2Fimages.media-allrecipes.com%2Fuserphotos%2F5071001.jpg", "ingredients" : ["1\u2009\u00bc pounds ground beef", "3 cloves garlic, minced", "1 onion, diced", "1 (15.5 ounce) can diced tomatoes", "1 cup shredded Cheddar cheese", "1\u2009\u00bd cups chicken broth", "6 red bell peppers"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Simple and Easy Stuffed Peppers", "url" : "http://allrecipes.com/recipe/105016/simple-and-easy-stuffed-peppers/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "image": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "image", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "extensions": {"type": "object", "properties": {"website": {"type": "string"}, "serumV3Usdc": {"type": "string"}}, "required": ["website", "serumV3Usdc"]}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags", "extensions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "The Last Stand", "symbol" : "TLS", "logoURI" : "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/Hfjgcs9ix17EwgXVVbKjo6NfMm2CXfr34cwty3xWARUm/logo.png", "decimals" : 0, "address" : "Hfjgcs9ix17EwgXVVbKjo6NfMm2CXfr34cwty3xWARUm", "chainId" : 101, "tags" : ["nft"], "extensions" : {"website" : "https://www.staratlas.com", "serumV3Usdc" : "AVHndcEDUjP9Liz5dfcvAPAMffADXG6KMPn8sWB1XhFQ"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "extensions": {"type": "object", "properties": {"website": {"type": "string"}, "serumV3Usdc": {"type": "string"}}, "required": ["website", "serumV3Usdc"]}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags", "extensions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nvar SoundFill = {\n name: 'sound',\n theme: 'fill',\n icon: {\n tag: 'svg',\n attrs: {\n viewBox: '64 64 896 896',\n focusable: false\n },\n children: [{\n tag: 'path',\n attrs: {\n d: 'M892.1 737.8l-110.3-63.7a15.9 15.9 0 0 0-21.7 5.9l-19.9 34.5c-4.4 7.6-1.8 17.4 5.8 21.8L856.3 800a15.9 15.9 0 0 0 21.7-5.9l19.9-34.5c4.4-7.6 1.7-17.4-5.8-21.8zM760 344a15.9 15.9 0 0 0 21.7 5.9L892 286.2c7.6-4.4 10.2-14.2 5.8-21.8L878 230a15.9 15.9 0 0 0-21.7-5.9L746 287.8a15.99 15.99 0 0 0-5.8 21.8L760 344zm174 132H806c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16h128c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16zM625.9 115c-5.9 0-11.9 1.6-17.4 5.3L254 352H90c-8.8 0-16 7.2-16 16v288c0 8.8 7.2 16 16 16h164l354.5 231.7c5.5 3.6 11.6 5.3 17.4 5.3 16.7 0 32.1-13.3 32.1-32.1V147.1c0-18.8-15.4-32.1-32.1-32.1z'\n }\n }]\n }\n};\nexports.default = SoundFill;", "map" : null, "metadata" : {}, "sourceType" : "script"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"372012": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "count": {"type": "integer"}, "359031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "435053": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "1721YY": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "311010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "559830": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "151199": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "272020": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "431011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "151121": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "533030": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "412022": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "472061": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "516031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["372012", "count", "359031", "435053", "1721YY", "311010", "559830", "151199", "272020", "431011", "151121", "N.A.//", "533030", "412022", "472061", "516031"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"372012" : {"count" : 1}, "count" : 31, "359031" : {"count" : 1}, "435053" : {"count" : 1}, "1721YY" : {"count" : 1}, "311010" : {"count" : 1}, "559830" : {"count" : 1}, "151199" : {"count" : 3}, "272020" : {"count" : 1}, "431011" : {"count" : 1}, "151121" : {"count" : 1}, "N.A.//" : {"count" : 13}, "533030" : {"count" : 3}, "412022" : {"count" : 1}, "472061" : {"count" : 1}, "516031" : {"count" : 1}} | json_instruct | {"type": "object", "properties": {"372012": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "count": {"type": "integer"}, "359031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "435053": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "1721YY": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "311010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "559830": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "151199": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "272020": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "431011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "151121": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "533030": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "412022": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "472061": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "516031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["372012", "count", "359031", "435053", "1721YY", "311010", "559830", "151199", "272020", "431011", "151121", "N.A.//", "533030", "412022", "472061", "516031"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"categories" : ["Data Management"], "desc" : "\n", "details" : {"authors" : "Raymond Camden", "format" : "pdf", "isbn-10" : "1491935111", "isbn-13" : "978-1491935118", "pages" : "118 pages", "publication date" : "January 3, 2016", "publisher" : "O'Reilly Media", "size" : "8.38Mb"}, "img" : "http://23.95.221.108/covers/7d/7dd2b2589b3a1983a35f2bfc478073c3.jpg", "link" : "https://rapidhosting.info/files/cmy", "title" : "Client-Side Data Storage: Keeping It Local"} | json_instruct | {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"msg": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"description": {"type": "object", "properties": {"moniker": {"type": "string"}, "identity": {"type": "string"}, "website": {"type": "string"}, "details": {"type": "string"}}, "required": ["moniker", "identity", "website", "details"]}, "commission": {"type": "object", "properties": {"rate": {"type": "string"}, "max_rate": {"type": "string"}, "max_change_rate": {"type": "string"}}, "required": ["rate", "max_rate", "max_change_rate"]}, "min_self_delegation": {"type": "string"}, "delegator_address": {"type": "string"}, "validator_address": {"type": "string"}, "pubkey": {"type": "string"}, "value": {"type": "object", "properties": {"denom": {"type": "string"}, "amount": {"type": "string"}}, "required": ["denom", "amount"]}}, "required": ["description", "commission", "min_self_delegation", "delegator_address", "validator_address", "pubkey", "value"]}}, "required": ["type", "value"]}}, "fee": {"type": "object", "properties": {"amount": {"type": "null"}, "gas": {"type": "string"}}, "required": ["amount", "gas"]}, "signatures": {"type": "array", "items": {"type": "object", "properties": {"pub_key": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "signature": {"type": "string"}}, "required": ["pub_key", "signature"]}}, "memo": {"type": "string"}}, "required": ["msg", "fee", "signatures", "memo"]}}, "required": ["type", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "auth/StdTx", "value" : {"msg" : [{"type" : "cosmos-sdk/MsgCreateValidator", "value" : {"description" : {"moniker" : "Staked", "identity" : "7B3A2EFE5B3FCDF8", "website" : "https://staked.us/", "details" : "Staked is the most trusted validator in crypto, delivering highly available and highly secure staking nodes."}, "commission" : {"rate" : "0.100000000000000000", "max_rate" : "0.200000000000000000", "max_change_rate" : "0.020000000000000000"}, "min_self_delegation" : "1", "delegator_address" : "cosmos1we6knm8qartmmh2r0qfpsz6pq0s7emv3um0vsa", "validator_address" : "cosmosvaloper1we6knm8qartmmh2r0qfpsz6pq0s7emv3e0meuw", "pubkey" : "cosmosvalconspub1zcjduepq6adydsk7nw3d63qtn30t5rexhfg56pq44sw4l9ld0tcj6jvnx30s5xw9ar", "value" : {"denom" : "uatom", "amount" : "4500000000"}}}], "fee" : {"amount" : null, "gas" : "200000"}, "signatures" : [{"pub_key" : {"type" : "tendermint/PubKeySecp256k1", "value" : "A4ox0f6xVNCbdP6xlzk2zkvoyTryEmaQp+vc+nWfUd2o"}, "signature" : "3xACydJ2/vq/aNQ4HH2oU2wVDn4zoPqJUvpzPXrSoj5T461QggzXi4aKKpqBupOcpYcCMvqjm63K5glucn0E/g=="}], "memo" : "71f9ed4d7a7adc737914c901396a7ba3aef22c37@100.97.62.209:26656"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"msg": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"description": {"type": "object", "properties": {"moniker": {"type": "string"}, "identity": {"type": "string"}, "website": {"type": "string"}, "details": {"type": "string"}}, "required": ["moniker", "identity", "website", "details"]}, "commission": {"type": "object", "properties": {"rate": {"type": "string"}, "max_rate": {"type": "string"}, "max_change_rate": {"type": "string"}}, "required": ["rate", "max_rate", "max_change_rate"]}, "min_self_delegation": {"type": "string"}, "delegator_address": {"type": "string"}, "validator_address": {"type": "string"}, "pubkey": {"type": "string"}, "value": {"type": "object", "properties": {"denom": {"type": "string"}, "amount": {"type": "string"}}, "required": ["denom", "amount"]}}, "required": ["description", "commission", "min_self_delegation", "delegator_address", "validator_address", "pubkey", "value"]}}, "required": ["type", "value"]}}, "fee": {"type": "object", "properties": {"amount": {"type": "null"}, "gas": {"type": "string"}}, "required": ["amount", "gas"]}, "signatures": {"type": "array", "items": {"type": "object", "properties": {"pub_key": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "signature": {"type": "string"}}, "required": ["pub_key", "signature"]}}, "memo": {"type": "string"}}, "required": ["msg", "fee", "signatures", "memo"]}}, "required": ["type", "value"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"country_name": {"type": "string"}, "country_synonyms": {"type": "array", "items": {"type": "string"}}, "regions": {"type": "array", "items": {"type": "object", "properties": {"region_name": {"type": "string"}, "region_synonyms": {"type": "array", "items": {"type": "string"}}, "cities": {"type": "array", "items": {"type": "object", "properties": {"city_name": {"type": "string"}, "city_synonyms": {"type": "array", "items": {"type": "string"}}}, "required": ["city_name", "city_synonyms"]}}}, "required": ["region_name", "region_synonyms", "cities"]}}}, "required": ["country_name", "country_synonyms", "regions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"country_name" : "Bahamas", "country_synonyms" : ["Bahamas"], "regions" : [{"region_name" : "Grand-Bahama", "region_synonyms" : ["Bahamas", "Grand Bahama"], "cities" : [{"city_name" : "Bahamas-City", "city_synonyms" : ["Bahamas", "Bahamas City"]}]}]} | json_instruct | {"type": "object", "properties": {"country_name": {"type": "string"}, "country_synonyms": {"type": "array", "items": {"type": "string"}}, "regions": {"type": "array", "items": {"type": "object", "properties": {"region_name": {"type": "string"}, "region_synonyms": {"type": "array", "items": {"type": "string"}}, "cities": {"type": "array", "items": {"type": "object", "properties": {"city_name": {"type": "string"}, "city_synonyms": {"type": "array", "items": {"type": "string"}}}, "required": ["city_name", "city_synonyms"]}}}, "required": ["region_name", "region_synonyms", "cities"]}}}, "required": ["country_name", "country_synonyms", "regions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"10145": {"type": "string"}}, "required": ["10145"]}, "timeto": {"type": "object", "properties": {"10145": {"type": "number"}}, "required": ["10145"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 10157, "title" : ["[Fethayl Bog, Lone Grave]"], "description" : ["Flourishing beautifully in the drier soil, a tall, sturdy swamp ash is disfigured along the trunk with an odd red moss. The tree overlooks a large muddy pond hedged by cattails and rushes. Sticking out from behind the tree, a small grave marker has sunken into the ground at an angle. The piercing song of a warbler echoes across the water, momentarily silencing the humming of dragonflies.", "Flourishing beautifully in the drier soil, a tall, sturdy swamp ash is disfigured along the trunk with an odd red moss. The tree overlooks a large muddy pond hedged by cattails and rushes. Sticking out from behind the tree, a small grave marker has sunken into the ground at an angle. The mournful song of a whippoorwill echoes across the water, momentarily silencing a chorus of croaking frogs."], "paths" : ["Obvious paths: down"], "location" : "Fethayl Bog", "wayto" : {"10145" : "down"}, "timeto" : {"10145" : 0.2}, "image" : "en-fearling-1264234799.png", "image_coords" : [1187, 441, 1197, 451], "tags" : ["murdroot", "wavepetal blossom", "bolmara lichen"]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"10145": {"type": "string"}}, "required": ["10145"]}, "timeto": {"type": "object", "properties": {"10145": {"type": "number"}}, "required": ["10145"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "'use strict'; // B.2.3.6 String.prototype.fixed()\n\nrequire('./_string-html')('fixed', function (createHTML) {\n return function fixed() {\n return createHTML(this, 'tt', '', '');\n };\n});", "map" : null, "metadata" : {}, "sourceType" : "script"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"allowed": {"type": "array", "items": {"type": "string"}}, "denied": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "reason": {"type": "string"}}, "required": ["key", "reason"]}}}, "required": ["allowed", "denied"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"allowed" : ["ARTICLE", "ASIDE", "AUDIO", "BDI", "CANVAS", "COMMAND", "DATA", "DATALIST", "DETAILS", "FIGCAPTION", "FIGURE", "FOOTER", "HEADER", "HGROUP", "MARK", "METER", "NAV", "NOBR", "OUTPUT", "PROGRESS", "SECTION", "SOURCE", "SUMMARY", "TIME", "TRACK", "VIDEO", "WBR"], "denied" : [{"key" : "DIALOG", "reason" : "can be displayed as a full-page modal dialog; needs further review"}, {"key" : "KEYGEN", "reason" : "needs further review"}, {"key" : "NOEMBED", "reason" : "rawtext elements are hazardous and should be avoided"}]} | json_instruct | {"type": "object", "properties": {"allowed": {"type": "array", "items": {"type": "string"}}, "denied": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "reason": {"type": "string"}}, "required": ["key", "reason"]}}}, "required": ["allowed", "denied"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"instructions": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "image": {"type": "string"}}, "required": ["instructions", "ingredients", "title", "image"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"instructions" : "MAKE THE PASTRY: In a food processor, pulse the 2 1/2 cups of flour with the sugar and salt. Add the butter and sour cream and pulse until the mixture resembles small peas. Sprinkle on the ice water and pulse until the pastry just comes together. Transfer the pastry to a sheet of plastic wrap and pat it into a disk. Wrap up the pastry and refrigerate for at least 30 minutes or overnight.\nMAKE THE FILLING: Preheat the oven to 400 degrees F. In a large bowl, gently toss the raspberries and blueberries with the granulated sugar, cornstarch and lemon juice until well combined.\nLine a rimmed baking sheet with parchment paper. On a lightly floured work surface, roll out the pastry to a 15-inch round, about 1/8 inch thick. Transfer the pastry to the prepared baking sheet. Spread the berry filling on the pastry, leaving a 1 1/2-inch border. Fold the pastry border up and over the berries, pinching together any cracks. Brush the pastry border with milk and bake the tart for 45 to 50 minutes, or until the pastry is golden and the fruit is bubbling. Let cool on the baking sheet for 20 minutes. Dust the cooled tart with confectioners' sugar. Carefully remove the tart from the baking sheet; it may stick. Transfer to a plate, cut into wedges and serve.", "ingredients" : ["Pastry", "2 1/2 cups all-purpose flour, plus extra for dusting", "1/4 cup sugar", "1/2 teaspoon kosher salt", "6 ounces cold unsalted butter, cut into 1/2-inch pieces", "3 tablespoons sour cream", "1/3 cup ice water", "Filling", "4 cups raspberries", "3 cups blueberries", "10 tablespoons granulated sugar", "3 tablespoons cornstarch plus", "1 teaspoon cornstarch", "2 tablespoons fresh lemon juice", "1 tablespoon milk", "Confectioners' sugar, for dusting"], "title" : "Blueberry-Raspberry Tart", "image" : "https://images.media-allrecipes.com/images/79591.png"} | json_instruct | {"type": "object", "properties": {"instructions": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "image": {"type": "string"}}, "required": ["instructions", "ingredients", "title", "image"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"blend": {"type": "object", "properties": {"func": {"type": "string"}, "srcrgb": {"type": "string"}, "dstrgb": {"type": "string"}}, "required": ["func", "srcrgb", "dstrgb"]}, "vertex": {"type": "string"}, "fragment": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "string"}}, "samplers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "uniforms": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "count": {"type": "integer"}, "values": {"type": "array", "items": {"type": "number"}}}, "required": ["name", "type", "count", "values"]}}}, "required": ["blend", "vertex", "fragment", "attributes", "samplers", "uniforms"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"blend" : {"func" : "add", "srcrgb" : "one", "dstrgb" : "zero"}, "vertex" : "blit", "fragment" : "avatarmod:fisheye", "attributes" : ["Position"], "samplers" : [{"name" : "DiffuseSampler"}], "uniforms" : [{"name" : "ProjMat", "type" : "matrix4x4", "count" : 16, "values" : [1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0]}, {"name" : "InSize", "type" : "float", "count" : 2, "values" : [1.0, 1.0]}, {"name" : "OutSize", "type" : "float", "count" : 2, "values" : [1.0, 1.0]}, {"name" : "Amount", "type" : "float", "count" : 1, "values" : [0.2]}, {"name" : "Zoom", "type" : "float", "count" : 1, "values" : [0.1]}]} | json_instruct | {"type": "object", "properties": {"blend": {"type": "object", "properties": {"func": {"type": "string"}, "srcrgb": {"type": "string"}, "dstrgb": {"type": "string"}}, "required": ["func", "srcrgb", "dstrgb"]}, "vertex": {"type": "string"}, "fragment": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "string"}}, "samplers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "uniforms": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "count": {"type": "integer"}, "values": {"type": "array", "items": {"type": "number"}}}, "required": ["name", "type", "count", "values"]}}}, "required": ["blend", "vertex", "fragment", "attributes", "samplers", "uniforms"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "8f84925e5199bb726b0d", "c" : {}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "imageName": {"type": "string"}, "nominations": {"type": "integer"}, "wins": {"type": "integer"}}, "required": ["id", "title", "year", "type", "imageName", "nominations", "wins"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 8842, "title" : "Parallel 59", "year" : 2000, "type" : "novel", "imageName" : "ndsc_parallel.jpg", "nominations" : 0, "wins" : -1}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "imageName": {"type": "string"}, "nominations": {"type": "integer"}, "wins": {"type": "integer"}}, "required": ["id", "title", "year", "type", "imageName", "nominations", "wins"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"radars": {"type": "string"}}, "required": ["radars"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"radars" : "Radars"} | json_instruct | {"type": "object", "properties": {"radars": {"type": "string"}}, "required": ["radars"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"EncryptionContext": {"type": "object", "properties": {"type": {"type": "string"}, "application": {"type": "string"}, "aws_service": {"type": "string"}, "usage": {"type": "string"}}, "required": ["type", "application", "aws_service", "usage"]}}, "required": ["EncryptionContext"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"EncryptionContext" : {"type" : "password", "application" : "core", "aws_service" : "rds", "usage" : "postgres"}} | json_instruct | {"type": "object", "properties": {"EncryptionContext": {"type": "object", "properties": {"type": {"type": "string"}, "application": {"type": "string"}, "aws_service": {"type": "string"}, "usage": {"type": "string"}}, "required": ["type", "application", "aws_service", "usage"]}}, "required": ["EncryptionContext"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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" : [-80.03, 38.52]}, "type" : "Feature", "id" : "26294", "properties" : {"other_cities" : "Mingo", "city" : "Valley Head", "state" : "WV", "county" : "Randolph 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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"organizationSlug": {"type": "string"}, "projectSlug": {"type": "string"}, "token": {"type": "string"}}, "required": ["organizationSlug", "projectSlug", "token"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"organizationSlug" : "acme", "projectSlug" : "app", "token" : "demotoken"} | json_instruct | {"type": "object", "properties": {"organizationSlug": {"type": "string"}, "projectSlug": {"type": "string"}, "token": {"type": "string"}}, "required": ["organizationSlug", "projectSlug", "token"], "$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" : "Barangay III, Hinigaran, Negros Occidental, Western Visayas (Region VI), PH", "locale" : "ph.western-visayas-region-vi.negros-occidental.hinigaran.barangay-iii", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "16", "region_reference" : "6", "region_name" : "Western Visayas (Region VI)", "province_id" : "51", "province_reference" : "51", "province_name" : "Negros Occidental", "city_id" : "525", "city_reference" : "1030", "city_name" : "Hinigaran", "barangay_id" : "14776", "barangay_reference" : "27233", "barangay_name" : "Barangay III"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[122.851212, 10.2723], [122.851059, 10.27166], [122.851021, 10.27119], [122.850578, 10.27043], [122.850487, 10.26995], [122.850456, 10.26993], [122.850594, 10.26905], [122.849838, 10.26907], [122.848984, 10.26897], [122.84819, 10.26896], [122.847366, 10.26905], [122.84668, 10.26933], [122.846039, 10.26954], [122.845032, 10.2698], [122.844627, 10.26993], [122.84465, 10.27022], [122.844643, 10.27064], [122.844841, 10.27124], [122.845001, 10.27203], [122.845123, 10.27237], [122.845154, 10.27302], [122.8452, 10.27319], [122.847412, 10.27277], [122.850304, 10.27238], [122.851212, 10.2723]]]]}} | 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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"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": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Br\u00e8ches", "circ" : "5\u00e8me circonscription", "dpt" : "Indre-et-Loire", "inscrits" : 199, "abs" : 116, "votants" : 83, "blancs" : 12, "nuls" : 5, "exp" : 66, "res" : [{"nuance" : "LR", "nom" : "M. Fabrice BOIGARD", "voix" : 37}, {"nuance" : "REM", "nom" : "Mme Sabine THILLAYE", "voix" : 29}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"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": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"class": {"type": "string"}, "superClass": {"type": "string"}, "acl": {"type": "object", "properties": {"schemaAdd": {"type": "object", "properties": {"/db/Role/1": {"type": "string"}}, "required": ["/db/Role/1"]}, "schemaReplace": {"type": "object", "properties": {"/db/Role/1": {"type": "string"}}, "required": ["/db/Role/1"]}, "schemaSubclass": {"type": "object", "properties": {"/db/Role/1": {"type": "string"}}, "required": ["/db/Role/1"]}}, "required": ["schemaAdd", "schemaReplace", "schemaSubclass"]}, "fields": {"type": "object", "properties": {"alt": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "order": {"type": "integer"}}, "required": ["name", "type", "order"]}, "copyright": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "order": {"type": "integer"}}, "required": ["name", "type", "order"]}, "height": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "order": {"type": "integer"}}, "required": ["name", "type", "order"]}, "locale": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "order": {"type": "integer"}}, "required": ["name", "type", "order"]}, "width": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "order": {"type": "integer"}}, "required": ["name", "type", "order"]}, "title": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "order": {"type": "integer"}}, "required": ["name", "type", "order"]}, "file": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "order": {"type": "integer"}}, "required": ["name", "type", "order"]}}, "required": ["alt", "copyright", "height", "locale", "width", "title", "file"]}}, "required": ["class", "superClass", "acl", "fields"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"class" : "/db/Image", "superClass" : "/db/Object", "acl" : {"schemaAdd" : {"/db/Role/1" : "allow"}, "schemaReplace" : {"/db/Role/1" : "allow"}, "schemaSubclass" : {"/db/Role/1" : "allow"}}, "fields" : {"alt" : {"name" : "alt", "type" : "/db/String", "order" : 0}, "copyright" : {"name" : "copyright", "type" : "/db/String", "order" : 1}, "height" : {"name" : "height", "type" : "/db/Integer", "order" : 2}, "locale" : {"name" : "locale", "type" : "/db/String", "order" : 3}, "width" : {"name" : "width", "type" : "/db/Integer", "order" : 4}, "title" : {"name" : "title", "type" : "/db/String", "order" : 5}, "file" : {"name" : "file", "type" : "/db/String", "order" : 6}}} | json_instruct | {"type": "object", "properties": {"class": {"type": "string"}, "superClass": {"type": "string"}, "acl": {"type": "object", "properties": {"schemaAdd": {"type": "object", "properties": {"/db/Role/1": {"type": "string"}}, "required": ["/db/Role/1"]}, "schemaReplace": {"type": "object", "properties": {"/db/Role/1": {"type": "string"}}, "required": ["/db/Role/1"]}, "schemaSubclass": {"type": "object", "properties": {"/db/Role/1": {"type": "string"}}, "required": ["/db/Role/1"]}}, "required": ["schemaAdd", "schemaReplace", "schemaSubclass"]}, "fields": {"type": "object", "properties": {"alt": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "order": {"type": "integer"}}, "required": ["name", "type", "order"]}, "copyright": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "order": {"type": "integer"}}, "required": ["name", "type", "order"]}, "height": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "order": {"type": "integer"}}, "required": ["name", "type", "order"]}, "locale": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "order": {"type": "integer"}}, "required": ["name", "type", "order"]}, "width": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "order": {"type": "integer"}}, "required": ["name", "type", "order"]}, "title": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "order": {"type": "integer"}}, "required": ["name", "type", "order"]}, "file": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "order": {"type": "integer"}}, "required": ["name", "type", "order"]}}, "required": ["alt", "copyright", "height", "locale", "width", "title", "file"]}}, "required": ["class", "superClass", "acl", "fields"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "330324113200", "text" : "\u516d\u9f99\u6751\u59d4\u4f1a"}, {"id" : "330324113202", "text" : "\u4e0b\u5e84\u6751\u59d4\u4f1a"}, {"id" : "330324113206", "text" : "\u6f58\u5b85\u6751\u59d4\u4f1a"}, {"id" : "330324113207", "text" : "\u5434\u5b85\u6751\u59d4\u4f1a"}, {"id" : "330324113208", "text" : "\u5766\u5934\u579f\u6751\u59d4\u4f1a"}, {"id" : "330324113209", "text" : "\u9f99\u5934\u6751\u59d4\u4f1a"}, {"id" : "330324113215", "text" : "\u6e56\u5e84\u6751\u59d4\u4f1a"}, {"id" : "330324113221", "text" : "\u8336\u4e00\u6751\u59d4\u4f1a"}, {"id" : "330324113226", "text" : "\u91cc\u6751\u6751\u59d4\u4f1a"}, {"id" : "330324113227", "text" : "\u9ec4\u5c71\u6751\u59d4\u4f1a"}, {"id" : "330324113229", "text" : "\u74ef\u6e20\u6751\u59d4\u4f1a"}, {"id" : "330324113232", "text" : "\u524d\u5c71\u6751\u59d4\u4f1a"}, {"id" : "330324113233", "text" : "\u5cad\u4e00\u6751\u59d4\u4f1a"}, {"id" : "330324113234", "text" : "\u91d1\u56ed\u6751\u59d4\u4f1a"}, {"id" : "330324113238", "text" : "\u897f\u6eaa\u6751\u59d4\u4f1a"}, {"id" : "330324113239", "text" : "\u971e\u7572\u6751\u59d4\u4f1a"}, {"id" : "330324113240", "text" : "\u6731\u7ae0\u6751\u59d4\u4f1a"}, {"id" : "330324113241", "text" : "\u76db\u7f57\u6751\u59d4\u4f1a"}, {"id" : "330324113242", "text" : "\u632f\u74ef\u6751\u59d4\u4f1a"}, {"id" : "330324113243", "text" : "\u7ea2\u5ca9\u6f08\u6751\u59d4\u4f1a"}, {"id" : "330324113244", "text" : "\u962e\u6731\u5c71\u6751\u59d4\u4f1a"}, {"id" : "330324113245", "text" : "\u8d75\u5b85\u6751\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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"backbone.projections.js": {"type": "string"}, "backbone.projections.min.js": {"type": "string"}}, "required": ["backbone.projections.js", "backbone.projections.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"backbone.projections.js" : "sha256-LTSYngbrF1t7ulZyPZuULJua2Wx9Ow7VWtUlq4tEAL0=", "backbone.projections.min.js" : "sha256-1Rd16vk+ZXe895Iq7Db8G+E3rq5eMoDoKyEQYnQFpEw="} | json_instruct | {"type": "object", "properties": {"backbone.projections.js": {"type": "string"}, "backbone.projections.min.js": {"type": "string"}}, "required": ["backbone.projections.js", "backbone.projections.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "type": {"type": "string"}, "scores": {"type": "array", "items": {"type": "number"}}, "scores_total": {"type": "number"}, "scores_state": {"type": "string"}, "scores_updated": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "voter": {"type": "string"}, "created": {"type": "integer"}, "choice": {"type": "integer"}, "space": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["id", "voter", "created", "choice", "space"]}}}, "required": ["id", "title", "body", "choices", "start", "end", "type", "scores", "scores_total", "scores_state", "scores_updated", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "0x0285a2198f43dea364878c8ebe13707d5752db1da40a3a8c9171b333ef1b37d1", "title" : "how many $Matic do you hold", "body" : "", "choices" : ["<100", "100 - 1000", ">1000"], "start" : 1638460800, "end" : 1639022400, "type" : "single-choice", "scores" : [102.20261622793032, 0, 0], "scores_total" : 102.20261622793033, "scores_state" : "final", "scores_updated" : 1639022414, "snapshot" : "22071912", "state" : "closed", "author" : "0xbf69b0a2754f392C2947d9A123f63498b892a3B6", "space" : {"id" : "zksyncv2.eth", "name" : "zksyncv2"}, "votes" : 5, "votes_data" : [{"id" : "0xbba4dc2d467403f0e2c290c1429c115e7930f86d3ccb9cbc7b98d19e88a66b27", "voter" : "0x0E68653ADf58705Ea0Fe7676e0B63A5b35Ba9832", "created" : 1638882253, "choice" : 1, "space" : {"id" : "zksyncv2.eth"}}, {"id" : "0x6f47d661b6b6889165a95c605f867f5290aecdc04dddebe49e4c5287c0dc775a", "voter" : "0x5A59d012937dBd123788533a850399A7960f1cad", "created" : 1638801624, "choice" : 1, "space" : {"id" : "zksyncv2.eth"}}, {"id" : "0x7ddce0b277626fe2a900a732e955e5565d2954160b13b3dc0dbeec164b8b3b74", "voter" : "0x17b69aa6914e22D4934630DAdd449591d27606ab", "created" : 1638801594, "choice" : 1, "space" : {"id" : "zksyncv2.eth"}}, {"id" : "0x89a70265bd0ae06be03a25d268eb19ff206e9deb771975e0275a7211d754360d", "voter" : "0x1c0adf1f864339D8a5055472F0693cC3Ac04A5b3", "created" : 1638515452, "choice" : 1, "space" : {"id" : "zksyncv2.eth"}}, {"id" : "0x6aeb00a09d8a23f196adbf83e5b845092467762b696d072209cf2badb76d97a7", "voter" : "0xbf69b0a2754f392C2947d9A123f63498b892a3B6", "created" : 1638498282, "choice" : 1, "space" : {"id" : "zksyncv2.eth"}}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "type": {"type": "string"}, "scores": {"type": "array", "items": {"type": "number"}}, "scores_total": {"type": "number"}, "scores_state": {"type": "string"}, "scores_updated": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "voter": {"type": "string"}, "created": {"type": "integer"}, "choice": {"type": "integer"}, "space": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["id", "voter", "created", "choice", "space"]}}}, "required": ["id", "title", "body", "choices", "start", "end", "type", "scores", "scores_total", "scores_state", "scores_updated", "snapshot", "state", "author", "space", "votes", "votes_data"], "$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": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"merged" : "/home/naren/Desktop/RocketChat/Rocket.Chat.Android-develop/player/build/intermediates/res/merged/release/layout-v21/notification_template_custom_big.xml", "source" : "/home/naren/.gradle/caches/transforms-2/files-2.1/af164f394b418f60c773c16855dfc8fa/core-1.0.1/res/layout-v21/notification_template_custom_big.xml"}, {"merged" : "/home/naren/Desktop/RocketChat/Rocket.Chat.Android-develop/player/build/intermediates/res/merged/release/layout-v21/notification_action_tombstone.xml", "source" : "/home/naren/.gradle/caches/transforms-2/files-2.1/af164f394b418f60c773c16855dfc8fa/core-1.0.1/res/layout-v21/notification_action_tombstone.xml"}, {"merged" : "/home/naren/Desktop/RocketChat/Rocket.Chat.Android-develop/player/build/intermediates/res/merged/release/layout-v21/notification_action.xml", "source" : "/home/naren/.gradle/caches/transforms-2/files-2.1/af164f394b418f60c773c16855dfc8fa/core-1.0.1/res/layout-v21/notification_action.xml"}, {"merged" : "/home/naren/Desktop/RocketChat/Rocket.Chat.Android-develop/player/build/intermediates/res/merged/release/layout-v21/notification_template_icon_group.xml", "source" : "/home/naren/.gradle/caches/transforms-2/files-2.1/af164f394b418f60c773c16855dfc8fa/core-1.0.1/res/layout-v21/notification_template_icon_group.xml"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"title": {"type": "string"}, "explanation": {"type": "string"}, "header": {"type": "object", "properties": {"today": {"type": "string"}, "all": {"type": "string"}}, "required": ["today", "all"]}}, "required": ["title", "explanation", "header"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "V\u00e4lm\u00e5ende", "explanation" : "V\u00e4lm\u00e5ende \u00e4r n\u00e5got vi prioriterar h\u00f6gt p\u00e5 I-sektionen. Vi har olika st\u00f6d f\u00f6r v\u00e4lm\u00e5ende i form av ett trygghetsr\u00e5d (kontakta skyddsombud@iare.nu) f\u00f6r bland annat incidenter relaterade till sektionsengagemenang, st\u00f6d fr\u00e5n KTH studenth\u00e4lsan samt denna sida f\u00f6r stresshantering. Vi vet att studietiden kan vara stressfull f\u00f6r m\u00e5nga, speciellt under tentaperioder. D\u00e4rf\u00f6r har vi i kontakt med forskare p\u00e5 Karolinska Institutet och Ume\u00e5 Universitet tillhandah\u00e5llit f\u00f6ljande tips f\u00f6r att hantera stress. Tanken \u00e4r att dessa tips ska f\u00f6ljas i turordning fr\u00e5n f\u00f6rsta till sista, exempelvis ett tips om dagen f\u00f6r att det ska hinna sjunka in. N\u00e4r du sedan har g\u00e5tt igenom alla tips kan du titta p\u00e5 dagens tips f\u00f6r att repetera. ", "header" : {"today" : "Dagens tips", "all" : "Alla tips"}} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "explanation": {"type": "string"}, "header": {"type": "object", "properties": {"today": {"type": "string"}, "all": {"type": "string"}}, "required": ["today", "all"]}}, "required": ["title", "explanation", "header"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"PERF-1.0": {"type": "object", "properties": {"latest": {"type": "object", "properties": {"centos7": {"type": "string"}}, "required": ["centos7"]}, "manifests": {"type": "object", "properties": {"1.0.6.0": {"type": "object", "properties": {"centos7": {"type": "string"}}, "required": ["centos7"]}}, "required": ["1.0.6.0"]}}, "required": ["latest", "manifests"]}}, "required": ["PERF-1.0"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"PERF-1.0" : {"latest" : {"centos7" : "http://public-repo-1.hortonworks.com/HDP/centos6/2.x/updates/2.6.2.0/"}, "manifests" : {"1.0.6.0" : {"centos7" : "../vdf.xml"}}}} | json_instruct | {"type": "object", "properties": {"PERF-1.0": {"type": "object", "properties": {"latest": {"type": "object", "properties": {"centos7": {"type": "string"}}, "required": ["centos7"]}, "manifests": {"type": "object", "properties": {"1.0.6.0": {"type": "object", "properties": {"centos7": {"type": "string"}}, "required": ["centos7"]}}, "required": ["1.0.6.0"]}}, "required": ["latest", "manifests"]}}, "required": ["PERF-1.0"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"@context": {"type": "string"}, "summary": {"type": "string"}, "type": {"type": "string"}, "content": {"type": "string"}, "generator": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}}, "required": ["type", "name"]}}, "required": ["@context", "summary", "type", "content", "generator"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"@context" : "https://www.w3.org/ns/activitystreams", "summary" : "A simple note", "type" : "Note", "content" : "This is all there is.", "generator" : {"type" : "Application", "name" : "Exampletron 3000"}} | json_instruct | {"type": "object", "properties": {"@context": {"type": "string"}, "summary": {"type": "string"}, "type": {"type": "string"}, "content": {"type": "string"}, "generator": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}}, "required": ["type", "name"]}}, "required": ["@context", "summary", "type", "content", "generator"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "uuid": {"type": "string"}, "user": {"type": "object", "properties": {"name": {"type": "string"}, "url_name": {"type": "string"}, "profile_image_url": {"type": "string"}}, "required": ["name", "url_name", "profile_image_url"]}, "title": {"type": "string"}, "body": {"type": "string"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "created_at_in_words": {"type": "string"}, "updated_at_in_words": {"type": "string"}, "tags": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url_name": {"type": "string"}, "icon_url": {"type": "string"}, "versions": {"type": "array", "items": {}}}, "required": ["name", "url_name", "icon_url", "versions"]}}, "stock_count": {"type": "integer"}, "stock_users": {"type": "array", "items": {}}, "comment_count": {"type": "integer"}, "url": {"type": "string"}, "gist_url": {"type": "null"}, "tweet": {"type": "boolean"}, "private": {"type": "boolean"}, "created_at_as_seconds": {"type": "integer"}}, "required": ["id", "uuid", "user", "title", "body", "created_at", "updated_at", "created_at_in_words", "updated_at_in_words", "tags", "stock_count", "stock_users", "comment_count", "url", "gist_url", "tweet", "private", "created_at_as_seconds"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 10884, "uuid" : "ac6577db608748bb3a78", "user" : {"name" : "YasuhiroTAKEDA \u6b66\u7530\u6cf0\u5f18", "url_name" : "chabashilah", "profile_image_url" : "https://si0.twimg.com/profile_images/1594697927/Screen_shot_2011-10-19_at_0.54.27_normal.png"}, "title" : "keyboardWasShown\u306b\u95a2\u3057\u3066", "body" : "<p>\u8a00\u8a9e\u306b\u3088\u3063\u3066\u547c\u3070\u308c\u308b\u56de\u6570\u304c\u7570\u306a\u308b\u3053\u3068\u304c\u3042\u308b\u3002\u5165\u529b\u306b\u5bfe\u3059\u308b\u30ef\u30fc\u30c9\u306e\u63a8\u6e2c\u306b\u95a2\u3057\u3066\u3082keyboardWasShown\u304c\u547c\u3070\u308c\u308b\u304b\u3089\u3060\u3068\u601d\u3046\u3002</p>\n", "created_at" : "2012-11-20 23:46:19 +0900", "updated_at" : "2012-11-20 23:46:19 +0900", "created_at_in_words" : "1\u65e5\u524d", "updated_at_in_words" : "1\u65e5\u524d", "tags" : [{"name" : "iOS", "url_name" : "iOS", "icon_url" : "http://qiita.com/system/tags/icons/000/000/247/thumb/File_Apple_iOS.png?1338257539", "versions" : []}], "stock_count" : 0, "stock_users" : [], "comment_count" : 0, "url" : "http://qiita.com/items/ac6577db608748bb3a78", "gist_url" : null, "tweet" : false, "private" : false, "created_at_as_seconds" : 1353422779}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "uuid": {"type": "string"}, "user": {"type": "object", "properties": {"name": {"type": "string"}, "url_name": {"type": "string"}, "profile_image_url": {"type": "string"}}, "required": ["name", "url_name", "profile_image_url"]}, "title": {"type": "string"}, "body": {"type": "string"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "created_at_in_words": {"type": "string"}, "updated_at_in_words": {"type": "string"}, "tags": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url_name": {"type": "string"}, "icon_url": {"type": "string"}, "versions": {"type": "array", "items": {}}}, "required": ["name", "url_name", "icon_url", "versions"]}}, "stock_count": {"type": "integer"}, "stock_users": {"type": "array", "items": {}}, "comment_count": {"type": "integer"}, "url": {"type": "string"}, "gist_url": {"type": "null"}, "tweet": {"type": "boolean"}, "private": {"type": "boolean"}, "created_at_as_seconds": {"type": "integer"}}, "required": ["id", "uuid", "user", "title", "body", "created_at", "updated_at", "created_at_in_words", "updated_at_in_words", "tags", "stock_count", "stock_users", "comment_count", "url", "gist_url", "tweet", "private", "created_at_as_seconds"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "feeds": {"type": "array", "items": {"type": "string"}}}, "required": ["key", "name", "feeds"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"key" : "CA", "name" : "Canada", "feeds" : ["https://www.cbc.ca/cmlink/rss-topstories", "https://www.ctvnews.ca/rss/ctvnews-ca-top-stories-public-rss-1.822009", "https://globalnews.ca/feed/", "https://www.thestar.com/content/thestar/feed.RSSManagerServlet.topstories.full.rss", "https://www.huffingtonpost.ca/feeds/index.xml", "https://torontosun.com/feed/", "https://feeds.feedburner.com/FP_TopStories", "https://vancouversun.com/feed/?x=1", "https://toronto.citynews.ca/feed/", "https://montrealgazette.com/feed/"]} | json_instruct | {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "feeds": {"type": "array", "items": {"type": "string"}}}, "required": ["key", "name", "feeds"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"linkedIn": {"type": "string"}, "github": {"type": "string"}, "portfolio": {"type": "string"}, "twitter": {"type": "string"}, "email": {"type": "string"}}, "required": ["linkedIn", "github", "portfolio", "twitter", "email"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"linkedIn" : "/images/linkedin-icon.svg", "github" : "/images/github-octocat.svg", "portfolio" : "/images/editorconfig.svg", "twitter" : "/images/twitter.svg", "email" : "/images/google-gmail.svg"} | json_instruct | {"type": "object", "properties": {"linkedIn": {"type": "string"}, "github": {"type": "string"}, "portfolio": {"type": "string"}, "twitter": {"type": "string"}, "email": {"type": "string"}}, "required": ["linkedIn", "github", "portfolio", "twitter", "email"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"sYsTeMcToP": {"type": "array", "items": {"type": "string"}}, "...MASTER...": {"type": "array", "items": {"type": "string"}}}, "required": ["sYsTeMcToP", "...MASTER..."], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sYsTeMcToP" : ["sYsTeMcToP", "ivVCS", "module"], "...MASTER..." : ["SIM", "amcQw", "module"]} | json_instruct | {"type": "object", "properties": {"sYsTeMcToP": {"type": "array", "items": {"type": "string"}}, "...MASTER...": {"type": "array", "items": {"type": "string"}}}, "required": ["sYsTeMcToP", "...MASTER..."], "$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"}, "do": {"type": "string"}, "dont": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "category": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "label": {"type": "string"}, "date": {"type": "string"}, "hasOutlined": {"type": "boolean"}, "dateOutlined": {"type": "string"}}, "required": ["name", "do", "dont", "tags", "category", "type", "label", "date", "hasOutlined", "dateOutlined"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "hardware", "do" : "", "dont" : "", "tags" : ["break", "construction", "hammer", "hardware", "nail", "repair", "tool"], "category" : ["maps"], "type" : "static", "label" : "None", "date" : "03/03/2021", "hasOutlined" : true, "dateOutlined" : "06/04/2021"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "do": {"type": "string"}, "dont": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "category": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "label": {"type": "string"}, "date": {"type": "string"}, "hasOutlined": {"type": "boolean"}, "dateOutlined": {"type": "string"}}, "required": ["name", "do", "dont", "tags", "category", "type", "label", "date", "hasOutlined", "dateOutlined"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"new": {"type": "array", "items": {"type": "integer"}}, "namespace": {"type": "array", "items": {"type": "integer"}}, "nested": {"type": "array", "items": {"type": "integer"}}}, "required": ["new", "namespace", "nested"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"new" : [131073, 196609, 393217, 589825, 720897, 1310721], "namespace" : [131074, 196610, 262146, 327681, 393218, 458754, 524290, 589826, 655362, 720898, 786433, 851970, 917505, 983042, 1048577, 1114113, 1179650, 1245185, 1310722, 1376258, 1441794, 1507329, 1572866, 1638402, 1703938, 1769474], "nested" : [196612, 589832, 1114113, 1376260, 1507331, 1638403]} | json_instruct | {"type": "object", "properties": {"new": {"type": "array", "items": {"type": "integer"}}, "namespace": {"type": "array", "items": {"type": "integer"}}, "nested": {"type": "array", "items": {"type": "integer"}}}, "required": ["new", "namespace", "nested"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["description", "homepage"]}, "versions": {"type": "object", "properties": {"0.19.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "13.0.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "13.0.0.0b2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "13.0.0.0b3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.19.0", "13.0.0", "13.0.0.0b2", "13.0.0.0b3"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"latest_version" : ["13.0.0"], "meta" : {"description" : "native lxd driver for openstack", "homepage" : "http://www.openstack.org/"}, "versions" : {"0.19.0" : {"sha256" : "12a7a9710825973484e0fe735fae63f61e0f7540d8b486c74f07aa2ad36e54b8", "url" : "https://files.pythonhosted.org/packages/95/df/fc413a616de51a2cd7514083a3e08bfb8b6666e702caa6b233216e59d6bc/nova-lxd-0.19.0.tar.gz"}, "13.0.0" : {"sha256" : "74878a6ed5afa26b6904d93b3cd74c348c22d2003a900b4ee9b106c15cb17824", "url" : "https://files.pythonhosted.org/packages/cc/0a/fb9e48c2c46586f4ba7cf328cab9baf29d0a803ca7293d122ff8bb7ce6e2/nova-lxd-13.0.0.tar.gz"}, "13.0.0.0b2" : {"sha256" : "de09afd6d32ca7a23708b31bd2c706e9723e46d64cf5ae5da077644e348c3c8d", "url" : "https://files.pythonhosted.org/packages/7f/a2/e3a6b8dc89162f21feeb8eb5185a70a5a57b8f1c892cc06486ad9ffdf5af/nova-lxd-13.0.0.0b2.tar.gz"}, "13.0.0.0b3" : {"sha256" : "0595647838987939bea4e22d547e9f41a508b989e212047a6b74845c85d02388", "url" : "https://files.pythonhosted.org/packages/6f/ac/836fbec0e91d88b2f4cc05a8d439f2b1d00e641233c037a82f665c04e8f6/nova-lxd-13.0.0.0b3.tar.gz"}}} | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["description", "homepage"]}, "versions": {"type": "object", "properties": {"0.19.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "13.0.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "13.0.0.0b2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "13.0.0.0b3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.19.0", "13.0.0", "13.0.0.0b2", "13.0.0.0b3"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"aggregate_function_based_on": {"type": "string"}, "color": {"type": "string"}, "creation": {"type": "string"}, "docstatus": {"type": "integer"}, "doctype": {"type": "string"}, "document_type": {"type": "string"}, "dynamic_filters_json": {"type": "string"}, "filters_json": {"type": "string"}, "function": {"type": "string"}, "idx": {"type": "integer"}, "is_public": {"type": "integer"}, "is_standard": {"type": "integer"}, "label": {"type": "string"}, "modified": {"type": "string"}, "modified_by": {"type": "string"}, "module": {"type": "string"}, "name": {"type": "string"}, "owner": {"type": "string"}, "report_function": {"type": "string"}, "show_percentage_stats": {"type": "integer"}, "stats_time_interval": {"type": "string"}, "type": {"type": "string"}}, "required": ["aggregate_function_based_on", "color", "creation", "docstatus", "doctype", "document_type", "dynamic_filters_json", "filters_json", "function", "idx", "is_public", "is_standard", "label", "modified", "modified_by", "module", "name", "owner", "report_function", "show_percentage_stats", "stats_time_interval", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"aggregate_function_based_on" : "", "color" : "#ECAD4B", "creation" : "2022-03-28 17:46:10.397010", "docstatus" : 0, "doctype" : "Number Card", "document_type" : "Quotation", "dynamic_filters_json" : "[]", "filters_json" : "[[\"Quotation\",\"unit_request\",\"is\",\"set\",false],[\"Quotation\",\"docstatus\",\"=\",\"1\",false],[\"Quotation\",\"status\",\"not in\",[\"Draft\",\"Cancelled\",\"Expired\",null],false]]", "function" : "Count", "idx" : 0, "is_public" : 0, "is_standard" : 1, "label" : "Valid Quotations", "modified" : "2022-04-16 15:37:10.940581", "modified_by" : "Administrator", "module" : "ECS PMS", "name" : "Valid Quotations", "owner" : "Administrator", "report_function" : "Sum", "show_percentage_stats" : 1, "stats_time_interval" : "Daily", "type" : "Document Type"} | json_instruct | {"type": "object", "properties": {"aggregate_function_based_on": {"type": "string"}, "color": {"type": "string"}, "creation": {"type": "string"}, "docstatus": {"type": "integer"}, "doctype": {"type": "string"}, "document_type": {"type": "string"}, "dynamic_filters_json": {"type": "string"}, "filters_json": {"type": "string"}, "function": {"type": "string"}, "idx": {"type": "integer"}, "is_public": {"type": "integer"}, "is_standard": {"type": "integer"}, "label": {"type": "string"}, "modified": {"type": "string"}, "modified_by": {"type": "string"}, "module": {"type": "string"}, "name": {"type": "string"}, "owner": {"type": "string"}, "report_function": {"type": "string"}, "show_percentage_stats": {"type": "integer"}, "stats_time_interval": {"type": "string"}, "type": {"type": "string"}}, "required": ["aggregate_function_based_on", "color", "creation", "docstatus", "doctype", "document_type", "dynamic_filters_json", "filters_json", "function", "idx", "is_public", "is_standard", "label", "modified", "modified_by", "module", "name", "owner", "report_function", "show_percentage_stats", "stats_time_interval", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"credentials": {"type": "object", "properties": {"oidc": {"type": "object", "properties": {"type": {"type": "string"}, "identifiers": {"type": "array", "items": {"type": "string"}}, "config": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "object", "properties": {"subject": {"type": "string"}, "provider": {"type": "string"}, "initial_id_token": {"type": "string"}, "initial_access_token": {"type": "string"}, "initial_refresh_token": {"type": "string"}}, "required": ["subject", "provider", "initial_id_token", "initial_access_token", "initial_refresh_token"]}}}, "required": ["providers"]}}, "required": ["type", "identifiers", "config"]}, "password": {"type": "object", "properties": {"type": {"type": "string"}, "identifiers": {"type": "array", "items": {"type": "string"}}, "config": {"type": "object", "properties": {}, "required": []}}, "required": ["type", "identifiers", "config"]}}, "required": ["oidc", "password"]}, "schema_id": {"type": "string"}, "state": {"type": "string"}, "traits": {"type": "object", "properties": {"email": {"type": "string"}}, "required": ["email"]}}, "required": ["credentials", "schema_id", "state", "traits"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"credentials" : {"oidc" : {"type" : "oidc", "identifiers" : ["google:import-2", "github:import-2"], "config" : {"providers" : [{"subject" : "import-2", "provider" : "google", "initial_id_token" : "", "initial_access_token" : "", "initial_refresh_token" : ""}, {"subject" : "import-2", "provider" : "github", "initial_id_token" : "", "initial_access_token" : "", "initial_refresh_token" : ""}]}}, "password" : {"type" : "password", "identifiers" : ["import-2@ory.sh"], "config" : {}}}, "schema_id" : "default", "state" : "active", "traits" : {"email" : "import-2@ory.sh"}} | json_instruct | {"type": "object", "properties": {"credentials": {"type": "object", "properties": {"oidc": {"type": "object", "properties": {"type": {"type": "string"}, "identifiers": {"type": "array", "items": {"type": "string"}}, "config": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "object", "properties": {"subject": {"type": "string"}, "provider": {"type": "string"}, "initial_id_token": {"type": "string"}, "initial_access_token": {"type": "string"}, "initial_refresh_token": {"type": "string"}}, "required": ["subject", "provider", "initial_id_token", "initial_access_token", "initial_refresh_token"]}}}, "required": ["providers"]}}, "required": ["type", "identifiers", "config"]}, "password": {"type": "object", "properties": {"type": {"type": "string"}, "identifiers": {"type": "array", "items": {"type": "string"}}, "config": {"type": "object", "properties": {}, "required": []}}, "required": ["type", "identifiers", "config"]}}, "required": ["oidc", "password"]}, "schema_id": {"type": "string"}, "state": {"type": "string"}, "traits": {"type": "object", "properties": {"email": {"type": "string"}}, "required": ["email"]}}, "required": ["credentials", "schema_id", "state", "traits"], "$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#"}
| ["cardboard", "fieldviewloader", "geobuf-to-grid", "geojson-cover", "geojson-to-image", "geojsonapp", "ldmap", "mapbox-gl-draw", "pelias-api", "pelias-api-libpostal", "pelias-quattroshapes", "quattroshapes"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"email": {"type": "string"}, "name": {"type": "string"}}, "required": ["email", "name"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"url": {"type": "string"}, "type": {"type": "string"}}, "required": ["url", "type"]}, "license": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/core": {"type": "string"}}, "required": ["@angular/common", "@angular/core"]}, "dependencies": {"type": "object", "properties": {"tslib": {"type": "string"}}, "required": ["tslib"]}}, "required": ["name", "description", "author", "keywords", "repository", "license", "private", "version", "peerDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@anexia/registry-loading-interceptor", "description" : "This library provides an interceptor which maps Http Requests to a Loading State.", "author" : {"email" : "sgraziani@anexia-it.com", "name" : "Sven Graziani"}, "keywords" : ["interceptor", "angular", "loading", "state", "tool", "dry", "anexia"], "repository" : {"url" : "https://github.com/svengraziani/loading-registry-interceptor", "type" : "git"}, "license" : "MIT", "private" : false, "version" : "12.1.0", "peerDependencies" : {"@angular/common" : ">=11.0.0", "@angular/core" : ">=11.0.0"}, "dependencies" : {"tslib" : "^2.3.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"email": {"type": "string"}, "name": {"type": "string"}}, "required": ["email", "name"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"url": {"type": "string"}, "type": {"type": "string"}}, "required": ["url", "type"]}, "license": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/core": {"type": "string"}}, "required": ["@angular/common", "@angular/core"]}, "dependencies": {"type": "object", "properties": {"tslib": {"type": "string"}}, "required": ["tslib"]}}, "required": ["name", "description", "author", "keywords", "repository", "license", "private", "version", "peerDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "filename": {"type": "string"}, "base64": {"type": "string"}}, "required": ["name", "url", "filename", "base64"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "msn-party-time", "url" : "/emojis/2618-msn-party-time/download", "filename" : "msn-party-time.gif", "base64" : "R0lGODlhEwATAPe0AP///4t40pl4JygAku/vQadMIcm/5PzqT/3dQfzpTsSykuX3//7kR/3mS/HDLv/hROLd9P379rGQQsW76NuSqvvlSvjPOVooFtOnTPnZP/jXPfveQ/C5JOSvJvzYOua8NvLBKr6ZRdGfKu25Jcq59fvaPv379/nRNPz69ePKlPvZPv3mSvPMNOq1JOHG+Na28PPKM8OxkfG7JfLGMerCU/vmStSi7MO55/3rUPzdQui+JvfQONid1uu+OvvcQvDBKNyt1tKO9MWwj/zeQ8j2//DVkP/kSPzfRfr49Pj28a+KLdmmIvLp1ODAdP7mSNbz/7u88bRkwbvA07aq4/zmSaKcxeOwJq1Vude298eWFsyp49+u9v7kSNi//Oa4NOi5+sFCguy1I9ux9vXONv3cQP79+//kRe69KvznS8OwkLCJLc3K/vDlz/z69O25J/rYPdGfI/fTOufgz8Wve92qGt+/c/3oTfnx3P3hQ5Neu/jv2OW1H8+eIsayhf3lSNOe3bFajP7ePrPG4de/heGyIXuhm+bfzf7lS9jAi72aRePLlu26J/TMNbSKJbSKKO3Umf/iRfvWOPzmStKUpOWxJvzoTf7fQ8iziIV8o//+/MmW1cGFMaPA39+48+y0Icewf//lS+6+K+y5KO3WnarM08So1uy1JcaJ+oqMuKeY3P789/z8+qGPz5N/yPS7IioCkejCR8e94DUPmPDGM////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQFMgC0ACwAAAAAEwATAAAI/wADCAwwAQKAgwgTIgyg6Q8ngTcUSgQQAJCWNSSwCEw1YeLBAJsIdAmyBcikgXpUSQxAgECpUzbE8KBAIcCHUW0UTmFJCsqLTl9cBBASSEeTCAkhBEBVRRCRBU8CpOHywAOhFGUSBsB0JYqUBQEUHGiAQIAADEy0FsoDRqACHAcqCDgoYJDWgTHsHEggacPcCwJCJOwBKkGlGlTQNDiS4a8ANQlp+HByaIUfI5ByaLBgtoOEhEVYmHnAgIElMirezAjFgc+chHe8REIwBE+JODAciBrhqZEcVggzPdpzYscYRg7OFAjjKkufWAOAH4xQh84PEG5aLJJRoMCrAa0GDCVIiEKRiCWUTFmB4+hSkvADDCg0wQZRIiUSPhlCctCAfI8AIhQQACH5BAUKALQALAoABwAJAAsAAAg0AGnRQuBBoEFaFQQIwHCwYUMNCjs4tGDBoUWLAASGKVBA4CoAGQ0OoGUAZEMDF2lllDUgIAAh+QQFCgC0ACwKAAcACQALAAAIKwBpCUQgsKDACghgGaS1QYCAhbQyCJwFkRaHihgxFgjjKqPHggMGQARAMiAAIfkEBQoAtAAsCgAHAAkADAAACC0AadESIECgwYEAABQ8KADAhYMCG15YyJAixIsYBYYpUCCjR4gGAFw0MCBjyYAAOw=="} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "filename": {"type": "string"}, "base64": {"type": "string"}}, "required": ["name", "url", "filename", "base64"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "37cd9c73fa8600b522cf562a5e03e33bb981db79"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"logging": {"type": "object", "properties": {"log_level": {"type": "string"}}, "required": ["log_level"]}, "streams": {"type": "object", "properties": {"connection_str": {"type": "string"}}, "required": ["connection_str"]}, "api": {"type": "object", "properties": {"docs_path": {"type": "string"}}, "required": ["docs_path"]}}, "required": ["logging", "streams", "api"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"logging" : {"log_level" : "DEBUG"}, "streams" : {"connection_str" : "redis://localhost:6379"}, "api" : {"docs_path" : "/api/docs"}} | json_instruct | {"type": "object", "properties": {"logging": {"type": "object", "properties": {"log_level": {"type": "string"}}, "required": ["log_level"]}, "streams": {"type": "object", "properties": {"connection_str": {"type": "string"}}, "required": ["connection_str"]}, "api": {"type": "object", "properties": {"docs_path": {"type": "string"}}, "required": ["docs_path"]}}, "required": ["logging", "streams", "api"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0x73b20034e531f385a59401bbda9a225be12b2fd42d7c21e4c3d11b3d7be34244", "parentHash" : "0x1af2b6c4d0eb975784441b0fdae7c99d603b1afcf03b18b0be2e8fd1190ae52c", "number" : 2000, "timestamp" : 1438274627, "nonce" : "0xc0bf334f31f0c22e", "difficulty" : 45207968317, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xB5EDD17d2582A94610ebf0C6832c1652EBBBe210", "extraData" : "0x476574682f76312e302e302d30636463373634372f6c696e75782f676f312e34", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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" : "3526_cam-image_array_.jpg", "user/angle" : 0.01, "user/throttle" : 0.504, "user/mode" : "user", "pos/pos_x" : 45.5451, "pos/pos_y" : 0.5550949, "pos/pos_z" : 12.05503, "pos/speed" : 9.996501, "pos/cte" : -4.382456, "milliseconds" : 190385} | 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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "symbol": {"type": "string"}, "type": {"type": "string"}, "decimals": {"type": "integer"}, "status": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "website", "description", "explorer", "symbol", "type", "decimals", "status", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "HVAM", "website" : "https://hvamcoins.com", "description" : "VAM is Our crypto currency has a project for the safe buying and selling industry between companies and individuals.", "explorer" : "https://bscscan.com/token/0x173B0Bb875df2A40EAbAca017C1A4746e3De9281", "symbol" : "HVAM", "type" : "BEP20", "decimals" : 18, "status" : "active", "id" : "0x173B0Bb875df2A40EAbAca017C1A4746e3De9281"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "symbol": {"type": "string"}, "type": {"type": "string"}, "decimals": {"type": "integer"}, "status": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "website", "description", "explorer", "symbol", "type", "decimals", "status", "id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"lodash": {"type": "string"}, "d3": {"type": "string"}, "jssha": {"type": "string"}, "mousetrap": {"type": "string"}}, "required": ["lodash", "d3", "jssha", "mousetrap"]}, "exportsOverride": {"type": "object", "properties": {"lodash": {"type": "object", "properties": {"js": {"type": "string"}}, "required": ["js"]}, "d3": {"type": "object", "properties": {"js": {"type": "string"}}, "required": ["js"]}, "jssha": {"type": "object", "properties": {"js": {"type": "string"}}, "required": ["js"]}, "mousetrap": {"type": "object", "properties": {"js": {"type": "string"}}, "required": ["js"]}}, "required": ["lodash", "d3", "jssha", "mousetrap"]}, "private": {"type": "boolean"}}, "required": ["name", "version", "ignore", "dependencies", "exportsOverride", "private"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "git-trainer", "version" : "0.0.1", "ignore" : ["node_modules", "bower_components"], "dependencies" : {"lodash" : "2.4.1", "d3" : "3.4.0", "jssha" : "1.5.0", "mousetrap" : "1.4.6"}, "exportsOverride" : {"lodash" : {"js" : "dist/lodash.min.js"}, "d3" : {"js" : "d3.min.js"}, "jssha" : {"js" : "src/sha1.js"}, "mousetrap" : {"js" : "mousetrap.min.js"}}, "private" : true} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"lodash": {"type": "string"}, "d3": {"type": "string"}, "jssha": {"type": "string"}, "mousetrap": {"type": "string"}}, "required": ["lodash", "d3", "jssha", "mousetrap"]}, "exportsOverride": {"type": "object", "properties": {"lodash": {"type": "object", "properties": {"js": {"type": "string"}}, "required": ["js"]}, "d3": {"type": "object", "properties": {"js": {"type": "string"}}, "required": ["js"]}, "jssha": {"type": "object", "properties": {"js": {"type": "string"}}, "required": ["js"]}, "mousetrap": {"type": "object", "properties": {"js": {"type": "string"}}, "required": ["js"]}}, "required": ["lodash", "d3", "jssha", "mousetrap"]}, "private": {"type": "boolean"}}, "required": ["name", "version", "ignore", "dependencies", "exportsOverride", "private"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "MultiPolygon", "coordinates" : [[[[-95.52381, 41.655567], [-95.51882, 41.655609], [-95.518828, 41.654925], [-95.518786, 41.653429], [-95.518793, 41.652955], [-95.518794, 41.652889], [-95.517678, 41.652897], [-95.516167, 41.65288], [-95.515876, 41.652878], [-95.514916, 41.652907], [-95.514462, 41.652926], [-95.513954, 41.652957], [-95.514029, 41.652069], [-95.513967, 41.647535], [-95.513912, 41.646994], [-95.514096, 41.646968], [-95.514827, 41.646859], [-95.515018, 41.646344], [-95.518038, 41.646254], [-95.518591, 41.646243], [-95.519114, 41.646234], [-95.521045, 41.646201], [-95.523559, 41.646158], [-95.523624, 41.64905], [-95.523789, 41.651102], [-95.52379, 41.652845], [-95.523795, 41.653489], [-95.52381, 41.655567]]]], "properties" : {"id" : "usa-ia-portsmouth-city", "type" : "city", "name" : "Portsmouth", "code" : "1964200"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"a": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}, "k": {"type": "string"}, "l": {"type": "string"}}, "required": ["x", "y", "k", "l"]}, "b": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}, "k": {"type": "string"}, "l": {"type": "string"}}, "required": ["x", "y", "k", "l"]}, "en_us": {"type": "object", "properties": {"cat": {"type": "string"}, "spoon": {"type": "string"}}, "required": ["cat", "spoon"]}, "de_de": {"type": "object", "properties": {"cat": {"type": "string"}, "spoon": {"type": "string"}}, "required": ["cat", "spoon"]}}, "required": ["a", "b", "en_us", "de_de"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"a" : {"x" : "1", "y" : "3", "k" : "\u0da3", "l" : "3"}, "b" : {"x" : "2", "y" : "4", "k" : "2", "l" : "\u0e1c"}, "en_us" : {"cat" : "Cat", "spoon" : ""}, "de_de" : {"cat" : "", "spoon" : "L\u00f6ffel"}} | json_instruct | {"type": "object", "properties": {"a": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}, "k": {"type": "string"}, "l": {"type": "string"}}, "required": ["x", "y", "k", "l"]}, "b": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}, "k": {"type": "string"}, "l": {"type": "string"}}, "required": ["x", "y", "k", "l"]}, "en_us": {"type": "object", "properties": {"cat": {"type": "string"}, "spoon": {"type": "string"}}, "required": ["cat", "spoon"]}, "de_de": {"type": "object", "properties": {"cat": {"type": "string"}, "spoon": {"type": "string"}}, "required": ["cat", "spoon"]}}, "required": ["a", "b", "en_us", "de_de"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : {"id" : "t2_4e4qzpsz", "name" : "Phtevenhotdunk"}, "date" : {"day" : 1575936000, "full" : 1576011453, "month" : 1575158400, "week" : 1575763200}, "id" : "t3_e8wlfl", "picture" : {"filesize" : 73047, "fullUrl" : "https://preview.redd.it/qx9zq0dndv341.jpg?auto=webp&s=34b7bccaa5e549ea05f27cbe8fcaa776d0d4aac5", "hash" : "2e4e661db2", "height" : 480, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAMABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQMG/8QAIRAAAgEDBAMBAAAAAAAAAAAAAQIDBAURAAYSIRMUQVH/xAAUAQEAAAAAAAAAAAAAAAAAAAAF/8QAGREAAgMBAAAAAAAAAAAAAAAAAQIABCED/9oADAMBAAIRAxEAPwBPc173FPXUVJbatI5hE86tGwVjxHEKW6AznWchum8pL9SiYtJUUkiTSp5EkCI2VOSD9BPWnaYt7HmDESpHgN9IP7qFupUoIysJZi6jm74LNkk9nRvS+7DYklJRgn//2Q==", "url" : "https://preview.redd.it/qx9zq0dndv341.jpg?width=640&crop=smart&auto=webp&s=e0aa41e78e2e4aee9dacc811e9b4bc692bc80445", "width" : 640}, "score" : {"comments" : 11, "downs" : 0, "ratio" : 1, "ups" : 203, "value" : 203}, "subreddit" : {"id" : "t5_2xy5e", "name" : "TerrainBuilding"}, "tags" : [], "title" : "My newest gate for Gaslands. Trying to keep my terrain thematic to my home town.", "url" : "https://www.reddit.com/r/TerrainBuilding/comments/e8wlfl/my_newest_gate_for_gaslands_trying_to_keep_my/"} | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "readmeFilename": {"type": "string"}, "dependencies": {"type": "object", "properties": {"restler": {"type": "string"}}, "required": ["restler"]}, "devDependencies": {"type": "object", "properties": {"waterline-adapter-tests": {"type": "string"}, "mocha": {"type": "string"}, "captains-log": {"type": "string"}}, "required": ["waterline-adapter-tests", "mocha", "captains-log"]}, "waterlineAdapter": {"type": "object", "properties": {"type": {"type": "string"}, "interfaces": {"type": "array", "items": {"type": "string"}}, "waterlineVersion": {"type": "string"}}, "required": ["type", "interfaces", "waterlineVersion"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "readmeFilename", "dependencies", "devDependencies", "waterlineAdapter"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "sails-restful", "version" : "0.1.0", "description" : "RESTful API adapter for Sails / Waterline", "main" : "adapter.js", "scripts" : {"test" : "node test/integration/runner -R spec -b"}, "repository" : {"type" : "git", "url" : "git://github.com/thisissoon/sails-restful.git"}, "keywords" : ["rest", "restful", "adapter", "sails", "waterline", "sails.js", "plugin"], "author" : "SOON_", "license" : "MIT", "readmeFilename" : "README.md", "dependencies" : {"restler" : "^3.3.0"}, "devDependencies" : {"waterline-adapter-tests" : "~0.10.0", "mocha" : "*", "captains-log" : "~0.11.0"}, "waterlineAdapter" : {"type" : "restful", "interfaces" : ["semantic"], "waterlineVersion" : "~0.10.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "readmeFilename": {"type": "string"}, "dependencies": {"type": "object", "properties": {"restler": {"type": "string"}}, "required": ["restler"]}, "devDependencies": {"type": "object", "properties": {"waterline-adapter-tests": {"type": "string"}, "mocha": {"type": "string"}, "captains-log": {"type": "string"}}, "required": ["waterline-adapter-tests", "mocha", "captains-log"]}, "waterlineAdapter": {"type": "object", "properties": {"type": {"type": "string"}, "interfaces": {"type": "array", "items": {"type": "string"}}, "waterlineVersion": {"type": "string"}}, "required": ["type", "interfaces", "waterlineVersion"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "readmeFilename", "dependencies", "devDependencies", "waterlineAdapter"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"coin_spends": {"type": "array", "items": {"type": "object", "properties": {"coin": {"type": "object", "properties": {"parent_coin_info": {"type": "string"}, "puzzle_hash": {"type": "string"}, "amount": {"type": "integer"}}, "required": ["parent_coin_info", "puzzle_hash", "amount"]}, "puzzle_reveal": {"type": "string"}, "solution": {"type": "string"}}, "required": ["coin", "puzzle_reveal", "solution"]}}, "aggregated_signature": {"type": "string"}}, "required": ["coin_spends", "aggregated_signature"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"coin_spends" : [{"coin" : {"parent_coin_info" : "", "puzzle_hash" : "", "amount" : 0}, "puzzle_reveal" : "", "solution" : ""}, {"coin" : {"parent_coin_info" : "", "puzzle_hash" : "", "amount" : 100}, "puzzle_reveal" : "", "solution" : ""}], "aggregated_signature" : ""} | json_instruct | {"type": "object", "properties": {"coin_spends": {"type": "array", "items": {"type": "object", "properties": {"coin": {"type": "object", "properties": {"parent_coin_info": {"type": "string"}, "puzzle_hash": {"type": "string"}, "amount": {"type": "integer"}}, "required": ["parent_coin_info", "puzzle_hash", "amount"]}, "puzzle_reveal": {"type": "string"}, "solution": {"type": "string"}}, "required": ["coin", "puzzle_reveal", "solution"]}}, "aggregated_signature": {"type": "string"}}, "required": ["coin_spends", "aggregated_signature"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"css/videojs.record.css": {"type": "string"}, "css/videojs.record.min.css": {"type": "string"}, "js/videojs.record.js": {"type": "string"}, "js/videojs.record.min.js": {"type": "string"}}, "required": ["css/videojs.record.css", "css/videojs.record.min.css", "js/videojs.record.js", "js/videojs.record.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"css/videojs.record.css" : "sha256-nAMEBpcbC0RJCAcHxUClOdByngSTXycObqN8Al+SmCA=", "css/videojs.record.min.css" : "sha256-M8sP0xV4DZKcXeMw9UU6pd1F+DJyOlcpH4sUeJRw39M=", "js/videojs.record.js" : "sha256-hTop3flzYzyETWFhQvoE1BzVop+TBTU72B//FZNzPis=", "js/videojs.record.min.js" : "sha256-6UuORY+DgrsmFbJpizB+i4uq1ViLiOneGjVlQ2BntWI="} | json_instruct | {"type": "object", "properties": {"css/videojs.record.css": {"type": "string"}, "css/videojs.record.min.css": {"type": "string"}, "js/videojs.record.js": {"type": "string"}, "js/videojs.record.min.js": {"type": "string"}}, "required": ["css/videojs.record.css", "css/videojs.record.min.css", "js/videojs.record.js", "js/videojs.record.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "telegram": {"type": "string"}, "reddit": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram", "reddit"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "inuyasha", "symbol" : "inuyasha", "name" : "Inuyasha", "platforms" : {"ethereum" : "0x5bddbfdc228e1bbdb9ef5ca1dc56b54c4d6d6621"}, "hashing_algorithm" : null, "categories" : [], "description" : {"en" : "The InuYasha ecosystem will exist as a decentralised vetting and donation program for promising new tokens. New teams will submit their soon to launch Protocol, Blockchain Game, Meme Token, or any project, charity, org that wishes to apply for a donation from our community.\r\n\r\nApplication by potential project \u2013 Decentralised vetting by InuYasha holders\r\nDonation recipient gives InuYasha holders pre sale access\r\nWinner receives a boost in donation and marketing by the InuYasha community\r\nInuYasha holders will get the earliest access to community vetted and 100% safe projects."}, "country_origin" : "", "genesis_date" : null, "contract_address" : "0x5bddbfdc228e1bbdb9ef5ca1dc56b54c4d6d6621", "url" : "http://InuYasha.io", "explorers" : ["https://etherscan.io/token/0x5bddbfdc228e1bbdb9ef5ca1dc56b54c4d6d6621", "https://ethplorer.io/address/0x5bddbfdc228e1bbdb9ef5ca1dc56b54c4d6d6621"], "twitter" : "inuyashatoken", "telegram" : "InuYashaOfficial", "reddit" : "inuyashaeth/"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "telegram": {"type": "string"}, "reddit": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram", "reddit"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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"}, "startparams": {"type": "string"}}, "required": ["baseurl", "startparams"]}, "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" : "adis", "city" : "Freiburg (Breisgau)", "country" : "Deutschland", "data" : {"baseurl" : "https://fbg.ibs-bw.de/aDISWeb/app", "startparams" : "service=direct/0/Home/%24DirectLink&sp=S127.0.0.1:23022"}, "geo" : [47.9935441, 7.8459496], "information" : "http://www.ub.uni-freiburg.de/index.php?id=zeiten", "library_id" : 8935, "state" : "Baden-W\u00fcrttemberg", "title" : "Unibibliothek"} | 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"}, "startparams": {"type": "string"}}, "required": ["baseurl", "startparams"]}, "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.