input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"description": {"type": "string"}, "favorite": {"type": "string"}, "length": {"type": "string"}, "likes": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "stri... | {"description" : "Continuous Delivery (CD) ist in aller Munde. Zu Recht, denn neben der M\u00f6glichkeit, sehr fr\u00fchzeitig Feedback zu neuen Entwicklungen zu erhalten, erlaubt CD durch Automatisierung von Build-, Deploy- und Testprozessen schnell, zuverl\u00e4ssig und wiederholbar Software auszuliefern, qualitativ ... | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "favorite": {"type": "string"}, "length": {"type": "string"}, "likes": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {}}, "thumbnail_url": {"type": "s... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "keywor... | {"name" : "rollup-plugin-copy-md-based-on-frontmatter", "version" : "0.0.1", "description" : "Rollup plugin to copy markdown files to the bundle. The destination of the markdown files is determined by what is in the frontmatter. A function can be supplied by the developer to determine the destination, or they can use t... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"typ... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"cpcivm_monitoring_loading": {"type": "string"}, "cpcivm_monitoring_title": {"type": "string"}, "cpcivm_monitoring_cpu_title": {"type": "string"}, "cpcivm_monitoring_ram_title": {"type": "string"}, "cpcivm_monit... | {"cpcivm_monitoring_loading" : "Carregamento dos gr\u00e1ficos.", "cpcivm_monitoring_title" : "Monitoring", "cpcivm_monitoring_cpu_title" : "CPU", "cpcivm_monitoring_ram_title" : "RAM", "cpcivm_monitoring_hd_title" : "Disco", "cpcivm_monitoring_bandwidth_title" : "Tr\u00e1fego", "cpcivm_monitoring_comingSoon" : "Dispon... | json_instruct | {"type": "object", "properties": {"cpcivm_monitoring_loading": {"type": "string"}, "cpcivm_monitoring_title": {"type": "string"}, "cpcivm_monitoring_cpu_title": {"type": "string"}, "cpcivm_monitoring_ram_title": {"type": "string"}, "cpcivm_monitoring_hd_title": {"type": "string"}, "cpcivm_monitoring_bandwidth_title": {... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter",... | {"width" : 0.17667776, "rotation" : 2.9357219, "xCenter" : 0.8625277, "yCenter" : 0.72515726, "height" : 0.2208472} | json_instruct | {"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"tld": {"type": "string"}, "port": {"type": "integer"}, "domains": {"type": "object", "properties": {}, "required": []}}, "required": ["tld", "port", "domains"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"tld" : "wip", "port" : 7080, "domains" : {}} | json_instruct | {"type": "object", "properties": {"tld": {"type": "string"}, "port": {"type": "integer"}, "domains": {"type": "object", "properties": {}, "required": []}}, "required": ["tld", "port", "domains"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"max": {"type": "array", "items": {"type": "number"}}, "centroid": {"type": "array", "items": {"type": "number"}}, "id": {"type": "string"}, "numVertices": {"type": "integer"}, "min": {"type": "array", "items": ... | {"max" : [101.903, 22.0626, 64.5052], "centroid" : [76.17383768188596, 7.433100288509769, 24.731227205217944], "id" : "d605a53c0917acada80799ffaf21ea7d", "numVertices" : 7972, "min" : [50.4448, 3.5195, 1.40405]} | json_instruct | {"type": "object", "properties": {"max": {"type": "array", "items": {"type": "number"}}, "centroid": {"type": "array", "items": {"type": "number"}}, "id": {"type": "string"}, "numVertices": {"type": "integer"}, "min": {"type": "array", "items": {"type": "number"}}}, "required": ["max", "centroid", "id", "numVertices", ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers... | {"user" : "JVenberg", "repos" : 1, "login" : "JVenberg", "id" : 8976558, "avatar_url" : "https://avatars0.githubusercontent.com/u/8976558?v=3", "url" : "https://api.github.com/users/JVenberg", "html_url" : "https://github.com/JVenberg", "followers_url" : "https://api.github.com/users/JVenberg/followers", "following_url... | json_instruct | {"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gist... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"success": {"type": "boolean"}, "code": {"type": "string"}, "data": {"type": "object", "properties": {"aggregated": {"type": "object", "properties": {"registeredUsers": {"type": "integer"}, "appOpens": {"type": "int... | {"success" : true, "code" : "SUCCESS", "data" : {"aggregated" : {"registeredUsers" : 66891, "appOpens" : 362497}, "usersByDevice" : [{"brand" : "Xiaomi", "count" : 19602, "percentage" : 0.29304390725209667}, {"brand" : "Vivo", "count" : 10442, "percentage" : 0.1561047076587284}, {"brand" : "Samsung", "count" : 10090, "... | json_instruct | {"type": "object", "properties": {"success": {"type": "boolean"}, "code": {"type": "string"}, "data": {"type": "object", "properties": {"aggregated": {"type": "object", "properties": {"registeredUsers": {"type": "integer"}, "appOpens": {"type": "integer"}}, "required": ["registeredUsers", "appOpens"]}, "usersByDevice":... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id... | {"id" : 1126054245, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "3f4e25865974c82db791b35daf181fc3", "wof:id" : 1126054245, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [0.20996, 48.88297, 0.20996, 48.88297], "geometry" : {"coordinates" : [0.20996, 48.8829... | 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": ["... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "string"}, "strongs_def": {"type": "string"}, "xlit"... | {"derivation" : "from H1121 (\u05d1\u05bc\u05b5\u05df) and H2105 (\u05d6\u05d5\u05b9\u05d7\u05b5\u05ea); son of Zocheth;", "pron" : "ben-zo-khayth'", "outline" : "", "kjv_def" : "Ben-zoketh.", "lemma" : "\u05d1\u05bc\u05b6\u05df\u05be\u05d6\u05d5\u05b9\u05d7\u05b5\u05ea", "frequency" : "", "strongs_def" : "Ben-Zocheth,... | json_instruct | {"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "string"}, "strongs_def": {"type": "string"}, "xlit": {"type": "string"}}, "required": ["derivation", "pron", "... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {}}}, "required": ["e_id", "title", ... | [{"e_id" : "14870", "title" : "\u6211\u79d1\u5b66\u5bb6\u53d1\u73b0\u6838\u53cd\u5e94\u5806\u4e2d\u5fae\u5b50\u6d88\u5931\u73b0\u8c61", "content" : "\n\u00a0\u00a0\u00a0\u00a02002\u5e7412\u67086\u65e5(\u519c\u53862002\u5e7411\u67083\u65e5)\uff0c\u6211\u79d1\u5b66\u5bb6\u53d1\u73b0\u6838\u53cd\u5e94\u5806\u4e2d\u5fae\u5... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {}}}, "required": ["e_id", "title", "content", "picNo", "picUrl"]}, "$schema": "http://json-schema.org/dr... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "modified": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "object", "... | {"name" : "jquery-ui-timepicker-addon", "title" : "jQuery Timepicker Addon", "description" : "A timepicker addon for jQueryUI datepicker.", "version" : "1.5.2", "modified" : "2015-03-15", "homepage" : "http://trentrichardson.com/examples/timepicker", "author" : {"name" : "Trent Richardson", "email" : "trentdrichardson@... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "modified": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "strin... | {"name" : "flexiblegs-postcss", "version" : "5.5.3", "homepage" : "http://flexible.gs", "description" : "Flexible Grid System PostCSS", "keywords" : ["css", "postcss", "cssnext", "grid", "responsive", "framework", "flexible", "flexbox", "flex"], "main" : "flexiblegs-postcss.css", "author" : "@dnomak", "license" : "MIT"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "ignore": {... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}... | {"name" : "bitbucket-pullr", "version" : "1.0.4", "description" : "CLI for creating Bitbucket pull request", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/julien-langlois/bitbucket-pr.git"}, "keywords" : ["bitbu... | 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": "s... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"index.html": {"type": "string"}, "index.ts": {"type": "string"}}, "required": ["index.html", "index.ts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"index.html" : "<html><head><link href=\"https://cdn.syncfusion.com/ej2/material.css\" rel=\"stylesheet\">\n\n <link href=\"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css\" rel=\"stylesheet\">\n\n <style>\n body{\n touch-action:none;\n }\n </styl... | json_instruct | {"type": "object", "properties": {"index.html": {"type": "string"}, "index.ts": {"type": "string"}}, "required": ["index.html", "index.ts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"... | {"name" : "voope/laravel-admin", "license" : "MIT", "description" : "Laravel Admin Panel", "keywords" : ["laravel", "admin", "laravel admin", "laravel admin panel"], "authors" : [{"name" : "Paulo Rodrigues", "email" : "paulinhojrodrigues@gmail.com", "homepage" : ""}], "require" : {"php" : ">=5.5.9", "illuminate/support... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "ho... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"table": {"type": "array", "items": {"type": "object", "properties": {"firstname": {"type": "string"}, "lastname": {"type": "string"}, "date_stopped": {"type": "string"}}, "required": ["firstname", "lastname", "date_stopped"]}}... | {"table" : [{"firstname" : "Suhas", "lastname" : "Manjunath", "date_stopped" : "02/06/2017"}, {"firstname" : "Shruthi", "lastname" : "Shashidhar", "date_stopped" : "02/04/2019"}]} | json_instruct | {"type": "object", "properties": {"table": {"type": "array", "items": {"type": "object", "properties": {"firstname": {"type": "string"}, "lastname": {"type": "string"}, "date_stopped": {"type": "string"}}, "required": ["firstname", "lastname", "date_stopped"]}}}, "required": ["table"], "$schema": "http://json-schema.or... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"sn56.65:0.1": {"type": "string"}, "sn56.65:0.2": {"type": "string"}, "sn56.65:0.3": {"type": "string"}, "sn56.65:1.1": {"type": "string"}, "sn56.65:1.2": {"type": "string"}}, "required": ["sn56.65:0.1", "sn56.65:0.2"... | {"sn56.65:0.1" : "Sa\u1e41yutta Nik\u0101ya 56 ", "sn56.65:0.2" : "7. Pa\u1e6dhama\u0101makadha\u00f1\u00f1apeyy\u0101lavagga ", "sn56.65:0.3" : "65. Odakasutta ", "sn56.65:1.1" : "\u2026 \u201cEvameva kho, bhikkhave, appak\u0101 te satt\u0101 ye thalaj\u0101; atha kho eteva bahutar\u0101 satt\u0101 ye udakaj\u0101. Ta... | json_instruct | {"type": "object", "properties": {"sn56.65:0.1": {"type": "string"}, "sn56.65:0.2": {"type": "string"}, "sn56.65:0.3": {"type": "string"}, "sn56.65:1.1": {"type": "string"}, "sn56.65:1.2": {"type": "string"}}, "required": ["sn56.65:0.1", "sn56.65:0.2", "sn56.65:0.3", "sn56.65:1.1", "sn56.65:1.2"], "$schema": "http://js... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "strin... | {"name" : "frontend-store", "version" : "0.1.0", "private" : true, "scripts" : {"dev" : "next dev", "build" : "next build", "start" : "next start -p 3001"}, "dependencies" : {"@material-ui/core" : "^4.11.4", "@material-ui/icons" : "^4.11.2", "axios" : "^0.21.1", "date-fns" : "^2.22.1", "next" : "10.2.3", "react" : "17.... | 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":... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "... | {"nom" : "Boston", "dpt" : "Fran\u00e7ais \u00e9tablis hors de France", "inscrits" : 7158, "abs" : 4000, "votants" : 3158, "blancs" : 11, "nuls" : 14, "exp" : 3133, "res" : [{"panneau" : "3", "voix" : 1725}, {"panneau" : "11", "voix" : 694}, {"panneau" : "9", "voix" : 343}, {"panneau" : "4", "voix" : 210}, {"panneau" :... | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"feedstocks" : ["mpltern"]} | json_instruct | {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "str... | {"name" : "ng-busy", "version" : "12.0.2", "description" : "Show busy/loading indicators on any promise or subscription", "author" : "victos", "license" : "MIT", "repository" : {"type" : "git", "url" : "git+https://github.com/victos/angular-opensource.git"}, "homepage" : "https://github.com/victos/angular-opensource/tr... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"__type__": {"type": "string"}, "content": {"type": "object", "properties": {"name": {"type": "string"}, "texture": {"type": "string"}, "rect": {"type": "array", "items": {"type": "integer"}}, "offset": {"type": "array", "it... | {"__type__" : "cc.SpriteFrame", "content" : {"name" : "\u514d\u8d39\u91d1\u5e01", "texture" : "1eM9RCBtZMsKr9jvngd5nO", "rect" : [8, 0, 213, 94], "offset" : [4, 0], "originalSize" : [221, 94], "capInsets" : [0, 0, 0, 0]}} | json_instruct | {"type": "object", "properties": {"__type__": {"type": "string"}, "content": {"type": "object", "properties": {"name": {"type": "string"}, "texture": {"type": "string"}, "rect": {"type": "array", "items": {"type": "integer"}}, "offset": {"type": "array", "items": {"type": "integer"}}, "originalSize": {"type": "array", ... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"css.styleSheets": {"type": "array", "items": {"type": "string"}}}, "required": ["css.styleSheets"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"css.styleSheets" : ["https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"]} | json_instruct | {"type": "object", "properties": {"css.styleSheets": {"type": "array", "items": {"type": "string"}}}, "required": ["css.styleSheets"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"__default__": {"type": "object", "properties": {"queue": {"type": "string"}, "virtual_free": {"type": "string"}, "h_rt": {"type": "string"}, "email": {"type": "string"}, "notify": {"type": "string"}, "err": {"type... | {"__default__" : {"queue" : "rg-el7,short-sl7", "virtual_free" : "8G", "h_rt" : "08:00:00", "email" : "raziel.amador@crg.eu", "notify" : "abe", "err" : "{workflow.basedir}/qsub_logs/", "out" : "{workflow.basedir}/qsub_logs/", "node" : "!node-hp0310.linux.crg.es", "threads" : ""}} | json_instruct | {"type": "object", "properties": {"__default__": {"type": "object", "properties": {"queue": {"type": "string"}, "virtual_free": {"type": "string"}, "h_rt": {"type": "string"}, "email": {"type": "string"}, "notify": {"type": "string"}, "err": {"type": "string"}, "out": {"type": "string"}, "node": {"type": "string"}, "th... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/s... | [{"name" : "SINNARAJAH", "frequency" : 6, "gender" : "male"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "firstName": {"type": "string"}, "lastName": {"type": "string"}, "email": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "organisations": {"type": "arra... | {"id" : "b78a33ad-150b-47af-bd90-c81fe9d00be5", "firstName" : "Delphia", "lastName" : "Walter", "email" : "delphia.walter-11340@example.com", "username" : "delphia.walter-11340@example.com", "password" : "bat", "organisations" : [{"id" : "926804ac-be7a-4f0a-97f9-a26a5f5f032a", "code" : "S84", "name" : "University of Su... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "firstName": {"type": "string"}, "lastName": {"type": "string"}, "email": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "organisations": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"alfredsnippet": {"type": "object", "properties": {"snippet": {"type": "string"}, "uid": {"type": "string"}, "name": {"type": "string"}, "keyword": {"type": "string"}}, "required": ["snippet", "uid", "name", "keyword"]}}, "r... | {"alfredsnippet" : {"snippet" : "with np.printoptions(precision=2,suppress=True):\n print({cursor})", "uid" : "047CC879-A540-450A-B72B-564133601019", "name" : "numpy print option", "keyword" : "npp2"}} | json_instruct | {"type": "object", "properties": {"alfredsnippet": {"type": "object", "properties": {"snippet": {"type": "string"}, "uid": {"type": "string"}, "name": {"type": "string"}, "keyword": {"type": "string"}}, "required": ["snippet", "uid", "name", "keyword"]}}, "required": ["alfredsnippet"], "$schema": "http://json-schema.or... |
Generate a valid JSON object that conforms to the following schema:
{"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": {"t... | {"nom" : "Benque", "circ" : "8\u00e8me circonscription", "dpt" : "Haute-Garonne", "inscrits" : 129, "abs" : 69, "votants" : 60, "blancs" : 3, "nuls" : 4, "exp" : 53, "res" : [{"nuance" : "REM", "nom" : "M. Michel MONTSARRAT", "voix" : 29}, {"nuance" : "SOC", "nom" : "M. Jo\u00ebl AVIRAGNET", "voix" : 24}]} | 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"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"python.pythonPath": {"type": "string"}}, "required": ["python.pythonPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"python.pythonPath" : "/home/rudolph/src/python-env/chris_env/bin/python"} | json_instruct | {"type": "object", "properties": {"python.pythonPath": {"type": "string"}}, "required": ["python.pythonPath"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id_4946": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_4946"], "$schema": "http://json-schema.org/draft-07/schema#... | {"id_4946" : {"publicdate" : "2013-11-27 17:54:29", "title" : "Thoughts Are Things"}} | json_instruct | {"type": "object", "properties": {"id_4946": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_4946"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "id": {"type": "string"}, "decimals": {"type": "integer"}, "coingecko_url": {"type": "string"}, "market_cap_usd": {"type": "integer"}, "market_cap_rank": {"type": "integ... | {"name" : "Baguette Token", "symbol" : "BGTT", "id" : "0x7a545Ed3863221A974F327199Ac22F7f12535F11", "decimals" : 18, "coingecko_url" : "https://www.coingecko.com/en/coins/baguette-token", "market_cap_usd" : 84893, "market_cap_rank" : 3198, "24_hr_volume_usd" : 13840.45, "logoURI" : "https://raw.githubusercontent.com/po... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "id": {"type": "string"}, "decimals": {"type": "integer"}, "coingecko_url": {"type": "string"}, "market_cap_usd": {"type": "integer"}, "market_cap_rank": {"type": "integer"}, "24_hr_volume_usd": {"type": "number"}, "logoURI": {"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "refs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}... | {"kind" : "Property", "name" : "CSSPseudoElement.element", "href" : "https://developer.mozilla.org/en-US/docs/Web/API/CSSPseudoElement/element", "description" : "The element read-only property of the CSSPseudoElement interface returns a reference to the originating element of the pseudo-element, in other words its pare... | json_instruct | {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "refs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}}, "requi... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "ite... | {"version" : 1.2, "people" : [{"pose_keypoints_2d" : [486.013, 206.729, 0.919679, 518.68, 256.303, 0.874049, 482.111, 256.279, 0.850622, 469.047, 318.958, 0.731849, 463.761, 372.493, 0.877499, 557.862, 256.299, 0.787559, 577.344, 329.403, 0.747944, 560.421, 398.588, 0.815747, 487.348, 403.827, 0.584344, 0, 0, 0, 0, 0, ... | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "han... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"Cotacao": {"type": "number"}, "Cresc. Rec.5a": {"type": "number"}, "Div.Brut/ Patrim.": {"type": "number"}, "Div.Yield": {"type": "number"}, "EV/EBIT": {"type": "number"}, "EV/EBITDA": {"type": "number"}, "Li... | {"Cotacao" : 966.14, "Cresc. Rec.5a" : 0.1049, "Div.Brut/ Patrim." : 0.05, "Div.Yield" : 0.0, "EV/EBIT" : 20.23, "EV/EBITDA" : 20.23, "Liq. Corr." : 1.69, "Liq.2meses" : 0.0, "Mrg Ebit" : 0.0652, "Mrg. Liq." : 0.0918, "P/Ativ Circ.Liq" : 14.45, "P/Ativo" : 1.353, "P/Cap.Giro" : 8.18, "P/EBIT" : 21.56, "P/L" : 15.31, "P... | json_instruct | {"type": "object", "properties": {"Cotacao": {"type": "number"}, "Cresc. Rec.5a": {"type": "number"}, "Div.Brut/ Patrim.": {"type": "number"}, "Div.Yield": {"type": "number"}, "EV/EBIT": {"type": "number"}, "EV/EBITDA": {"type": "number"}, "Liq. Corr.": {"type": "number"}, "Liq.2meses": {"type": "number"}, "Mrg Ebit": ... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"editor.fontFamily": {"type": "string"}, "python.linting.pylintEnabled": {"type": "boolean"}}, "required": ["editor.fontFamily", "python.linting.pylintEnabled"], "$schema": "http://json-schema.org/draft-07/schem... | {"editor.fontFamily" : "Consolas, Fira Code", "python.linting.pylintEnabled" : false} | json_instruct | {"type": "object", "properties": {"editor.fontFamily": {"type": "string"}, "python.linting.pylintEnabled": {"type": "boolean"}}, "required": ["editor.fontFamily", "python.linting.pylintEnabled"], "$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"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"t... | {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Jubang, Dapa, Surigao del Norte, Caraga (Region XIII), PH", "locale" : "ph.caraga-region-xiii.surigao-del-norte.dapa.jubang", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "5", "region_refe... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"sass": {"type": "string"}, "sass-min": {"type":... | {"name" : "oh_my_food", "version" : "0.1.0", "description" : "p3_oc", "main" : "index.html", "scripts" : {"sass" : "sass --watch ./assets/styles/scss/main.scss:./assets/styles/style.css", "sass-min" : "sass --watch ./assets/styles/scss/main.scss:./assets/styles/style.min.css --style compressed", "prefix" : "postcss ./a... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"sass": {"type": "string"}, "sass-min": {"type": "string"}, "prefix": {"type": "string"}}, "required": ["sass", "sass-m... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "FantasticQrCodeReader", "displayName" : "Fantastic Qr Code Reader"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"plugin/wavesurfer.elan.js": {"type": "string"}, "plugin/wavesurfer.elan.min.js": {"type": "string"}, "plugin/wavesurfer.microphone.js": {"type": "string"}, "plugin/wavesurfer.microphone.min.js": {"type": "string"}, "plugin/... | {"plugin/wavesurfer.elan.js" : "sha512-ET0aropbcixo5h2IrbUWmdsRz5botbVt5Pwd4TItzCiDQRId6arIA7PlS/seB+IbvHFgCfimOild0EPkK2CO/Q==", "plugin/wavesurfer.elan.min.js" : "sha512-UWGb2l601KQ/k1G3Kt/5f1PNHnYU1Qio9Je3mpkiYPrr5cNK9JzR1js2yUr4hTxkIe7V7bjVuSSrqCznbrQX1w==", "plugin/wavesurfer.microphone.js" : "sha512-yiyamqSCOWtJr... | json_instruct | {"type": "object", "properties": {"plugin/wavesurfer.elan.js": {"type": "string"}, "plugin/wavesurfer.elan.min.js": {"type": "string"}, "plugin/wavesurfer.microphone.js": {"type": "string"}, "plugin/wavesurfer.microphone.min.js": {"type": "string"}, "plugin/wavesurfer.regions.js": {"type": "string"}, "plugin/wavesurfer... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "411381118201", "text" : "\u6587\u6e20\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "411381118202", "text" : "\u8001\u8857\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "411381118203", "text" : "\u6bb7\u6d3c\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "411381118204", "text" : "\u6c64\u5e84\u6751\u6c11\u59d4\u5458\u4f1a"},... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"org": {"type": "string"}, "label": {"type": "string"}, "description": {"type": "string"}, "documentation": {"type": "string"}, "url": {"type": "string"}, "version": {"type": "string"}, "arch": {"type": "null"}, "public": {"... | {"org" : "dcmartin@us.ibm.com", "label" : "mqtt", "description" : "Provide MQTT service", "documentation" : "https://github.com/dcmartin/open-horizon/mqtt/README.md", "url" : "com.github.dcmartin.open-horizon.mqtt", "version" : "0.0.2", "arch" : null, "public" : true, "sharable" : "singleton", "requiredServices" : [], ... | json_instruct | {"type": "object", "properties": {"org": {"type": "string"}, "label": {"type": "string"}, "description": {"type": "string"}, "documentation": {"type": "string"}, "url": {"type": "string"}, "version": {"type": "string"}, "arch": {"type": "null"}, "public": {"type": "boolean"}, "sharable": {"type": "string"}, "requiredSe... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"t... | {"timestamp" : "2020-09-30T01:59:21Z", "data" : [{"data_type" : "pm10", "value" : "0.23", "max" : "1.00", "min" : "0.00", "sd" : "0.66"}, {"data_type" : "pm2.5", "value" : "0.23", "max" : "1.00", "min" : "0.00", "sd" : "0.66"}, {"data_type" : "pm1", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00"}, {"da... | json_instruct | {"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max",... |
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#"}
| [[1989, 6], [1990, 6], [1991, 8], [1995, 5], [1997, 8], [1998, 16], [1999, 5], [2000, 10], [2002, 5], [2005, 6]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "int... | {"nom" : "Saint-Ail", "dpt" : "Meurthe-et-Moselle", "inscrits" : 283, "abs" : 33, "votants" : 250, "blancs" : 7, "nuls" : 1, "exp" : 242, "res" : [{"panneau" : "2", "voix" : 78}, {"panneau" : "3", "voix" : 59}, {"panneau" : "9", "voix" : 36}, {"panneau" : "11", "voix" : 30}, {"panneau" : "1", "voix" : 18}, {"panneau" :... | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object"... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["description", "homepage"]}, "versi... | {"latest_version" : ["1.0.2"], "meta" : {"description" : "A Python implementation of the GlobAlbedo prior calculations", "homepage" : "http://github.com/jgomezdans/globalbedo_prior/"}, "versions" : {"1.0.0" : {"sha256" : "6f4f578e0576743cf0ad68cb2dcd8f16758126d2d1d54dcefbe22651cccca20d", "url" : "https://files.pythonho... | 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": {"1.0.0": {"type": "obj... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"demoName": {"type": "string"}, "protocol": {"type": "string"}, "url": {"type": "string"}, "tileUrl": {"type": "string"}, "subdomains": {"type": "array", "items": {"type": "string"}}, "database": {"type": "string"}... | {"demoName" : "companies-br", "protocol" : "http://", "url" : "api.gogeo.io/1.0", "tileUrl" : "{s}.gogeo.io/1.0", "subdomains" : ["m1", "m2", "m3", "m4"], "database" : "demos", "collection" : "brazilian_companies", "dashboardGeoAgg" : "state", "stylename" : "gogeo_many_points", "mapkey" : "dc837a69-c74f-4641-a79d-2bf6e... | json_instruct | {"type": "object", "properties": {"demoName": {"type": "string"}, "protocol": {"type": "string"}, "url": {"type": "string"}, "tileUrl": {"type": "string"}, "subdomains": {"type": "array", "items": {"type": "string"}}, "database": {"type": "string"}, "collection": {"type": "string"}, "dashboardGeoAgg": {"type": "string"... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"window": {"type": "object", "properties": {"width": {"type": "string"}, "height": {"type": "string"}}, "required": ["width", "height"]}, "player": {"type": "object", "properties": {"width": {"type": "string"}, ... | {"window" : {"width" : "800", "height" : "600"}, "player" : {"width" : "64", "height" : "64"}, "invader" : {"width" : "64", "height" : "64"}} | json_instruct | {"type": "object", "properties": {"window": {"type": "object", "properties": {"width": {"type": "string"}, "height": {"type": "string"}}, "required": ["width", "height"]}, "player": {"type": "object", "properties": {"width": {"type": "string"}, "height": {"type": "string"}}, "required": ["width", "height"]}, "invader":... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "numb... | {"id" : "58758807", "name" : "Eider Close", "nodes" : [{"type" : "node", "id" : 728226918, "lat" : 52.2662723, "lon" : -1.1596259}, {"type" : "node", "id" : 728226944, "lat" : 52.2662002, "lon" : -1.1599681}, {"type" : "node", "id" : 728226946, "lat" : 52.2662134, "lon" : -1.1604938}], "volunteer_postcode" : "NN11 0XE"... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunte... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"canonicalName": {"type": "string"}, "groups": {"type": "array", "items": {"type": "string"}}, "alternateNames": {"type": "array", "items": {"type": "string"}}}, "required": ["canonicalName", "groups", "alternateNam... | {"canonicalName" : "adductor-longus", "groups" : ["quads", "lower-body", "legs"], "alternateNames" : ["adductor longus"]} | json_instruct | {"type": "object", "properties": {"canonicalName": {"type": "string"}, "groups": {"type": "array", "items": {"type": "string"}}, "alternateNames": {"type": "array", "items": {"type": "string"}}}, "required": ["canonicalName", "groups", "alternateNames"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"packagerPort": {"type": "integer"}, "packagerPid": {"type": "null"}, "devToolsPort": {"type": "integer"}, "expoServerPort": {"type": "null"}, "expoServerNgrokUrl": {"type": "string"}, "packagerNgrokUrl": {"type": "s... | {"packagerPort" : 19000, "packagerPid" : null, "devToolsPort" : 19002, "expoServerPort" : null, "expoServerNgrokUrl" : "https://au-k7q.oviniciusrosa.react-native-boilerplate.exp.direct", "packagerNgrokUrl" : "https://packager.au-k7q.oviniciusrosa.react-native-boilerplate.exp.direct", "ngrokPid" : 25744, "webpackServerP... | json_instruct | {"type": "object", "properties": {"packagerPort": {"type": "integer"}, "packagerPid": {"type": "null"}, "devToolsPort": {"type": "integer"}, "expoServerPort": {"type": "null"}, "expoServerNgrokUrl": {"type": "string"}, "packagerNgrokUrl": {"type": "string"}, "ngrokPid": {"type": "integer"}, "webpackServerPort": {"type"... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "informatory", "definition" : "Full of, or conveying, information; instructive. [R.] London Spectator."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "bc6873ca674a3fddb2be9b6eec5c93de5ab9d8c7"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "pr... | {"contract" : "0x4445364230c931e321533c54882f76d9d1fe4737", "tool" : "honeybadger", "start" : 1565850877.9942262, "end" : 1565850931.0474048, "duration" : 53.053178548812866, "analysis" : [{"errors" : [], "file" : "/unique_chucks/10/0x4445364230c931e321533c54882f76d9d1fe4737.sol", "name" : "DurioToken"}, {"errors" : []... | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "strin... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kecamatan": {"type": "string"}, "name": {"type": "string... | {"code" : "200", "messages" : "Successfully received data", "value" : [{"id" : "9102572001", "id_kecamatan" : "910257", "name" : "Tagineri"}, {"id" : "9102572002", "id_kecamatan" : "910257", "name" : "Injuta"}, {"id" : "9102572003", "id_kecamatan" : "910257", "name" : "Binibaga"}, {"id" : "9102572004", "id_kecamatan" :... | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kecamatan": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "id_kecamatan", "name"]}}}, "required": ["code... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"Hello": {"type": "string"}, "Hello %s %s": {"type": "string"}, "%d cat": {"type": "object", "properties": {"one": {"type": "string"}, "other": {"type": "string"}}, "required": ["one", "other"]}, "%d %s cat": {"type... | {"Hello" : "Hello!", "Hello %s %s" : "Hello %s %s", "%d cat" : {"one" : "%d cat", "other" : "%d cats"}, "%d %s cat" : {"one" : "%d %s cat", "other" : "%d %s cats"}, "There is one monkey in the %s" : {"one" : "There is one monkey in the %s", "other" : "There are %d monkeys in the %s"}} | json_instruct | {"type": "object", "properties": {"Hello": {"type": "string"}, "Hello %s %s": {"type": "string"}, "%d cat": {"type": "object", "properties": {"one": {"type": "string"}, "other": {"type": "string"}}, "required": ["one", "other"]}, "%d %s cat": {"type": "object", "properties": {"one": {"type": "string"}, "other": {"type"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "advanced_reborn:block/charge_pad"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type":... | {"name" : "md-menu-collapse", "homepage" : "https://github.com/WesleyMarques/md-menu-collapse", "authors" : ["Wesley <wesley.nmtorres@gmail.com>"], "description" : "Collapse menu with material design", "main" : "md-menu-collapse.js", "keywords" : ["angular", "material"], "license" : "MIT", "ignore" : ["**/.*", "node_mo... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"t... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1802032004", "district_id" : "1802032", "name" : "SIDOMULYO"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"value" : "1971-11-24"} | json_instruct | {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"1": {"type": "boolean"}}, "required": ["1"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "5cc797c3270ee11fbd08", "c" : {"1" : false}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"1": {"type": "boolean"}}, "required": ["1"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"format_version": {"type": "string"}, "package_name": {"type": "string"}, "install_mode": {"type": "string"}, "files": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "... | {"format_version" : "1.1", "package_name" : "skia/tools/goldctl/mac-amd64", "install_mode" : "copy", "files" : [{"name" : "goldctl", "size" : 21602220, "executable" : true, "hash" : "3vpJZk4dBrgcLlCjaPHa4lOlOdjPz5TvBAvS0HpGDb0C"}]} | json_instruct | {"type": "object", "properties": {"format_version": {"type": "string"}, "package_name": {"type": "string"}, "install_mode": {"type": "string"}, "files": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "executable": {"type": "boolean"}, "hash": {"type... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"base64url": {"type": "string"}}, "required": ["base64url"]}, "scr... | {"name" : "base64url", "version" : "1.0.6", "description" : "For encoding to/from base64urls", "main" : "index.js", "bin" : {"base64url" : "./bin/base64url"}, "scripts" : {"test" : "./node_modules/.bin/tap test/*.test.js"}, "repository" : {"type" : "git", "url" : "git://github.com/brianloveswords/base64url.git"}, "keyw... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"base64url": {"type": "string"}}, "required": ["base64url"]}, "scripts": {"type": "object", "properties": {"test": {"type":... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "pr... | {"contract" : "0xedbbb686a3b2ee4134b88ebbd788ca16e1f733ab", "tool" : "osiris", "start" : 1564621345.1013846, "end" : 1564621407.7008538, "duration" : 62.59946918487549, "analysis" : [{"errors" : [{"line" : 62, "column" : 13, "message" : "overflow_bugs"}], "file" : "/unique_chucks/15/0xedbbb686a3b2ee4134b88ebbd788ca16e1... | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {"type": "object", "properti... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"runjs": {"type": "string"}, "runts": {"type": "string"}, "te... | {"name" : "tsdemo", "version" : "1.0.0", "main" : "index.js", "license" : "MIT", "scripts" : {"runjs" : "babel-node", "runts" : "ts-node", "testts" : "mocha -r ts-node/register --extension ts", "testjs" : "mocha -r @babel/register", "ppt" : "gulp --cwd presentations --gulpfile presentations/build.js dev", "ppt-export" ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"runjs": {"type": "string"}, "runts": {"type": "string"}, "testts": {"type": "string"}, "testjs": {"type": "string"}, "ppt"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "techreborn:block/machines/tier1_machines/wire_mill"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"primitiveParsing": {"type": "string"}}, "required": ["primitiveParsing"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"primitiveParsing" : "LENIENT"} | json_instruct | {"type": "object", "properties": {"primitiveParsing": {"type": "string"}}, "required": ["primitiveParsing"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured_device": {"type": "string"}, "cannot_connect": {"type": "string"}, "no_unconfigured_devices": {"type": "str... | {"config" : {"abort" : {"already_configured_device" : "Apparaat is al geconfigureerd", "cannot_connect" : "Kan geen verbinding maken", "no_unconfigured_devices" : "Geen niet-geconfigureerde apparaten gevonden.", "switchbot_unsupported_type" : "Niet-ondersteund Switchbot-type.", "unknown" : "Onverwachte fout"}, "flow_ti... | json_instruct | {"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured_device": {"type": "string"}, "cannot_connect": {"type": "string"}, "no_unconfigured_devices": {"type": "string"}, "switchbot_unsupported_type": {"type": "string"}, "unknown": {"ty... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"probe_id": {"type": "integer"}, "resolvers": {"type": "array", "items": {"type": "object", "properties": {"ipv4_tcp": {"type": "boolean"}, "internal": {"type": "string"}, "resolver_asn": {"type": "integer"}, "resolve... | {"probe_id" : 29157, "resolvers" : [{"ipv4_tcp" : true, "internal" : "192.168.1.1", "resolver_asn" : 6713, "resolver_net" : "62.251.224.0/19"}]} | json_instruct | {"type": "object", "properties": {"probe_id": {"type": "integer"}, "resolvers": {"type": "array", "items": {"type": "object", "properties": {"ipv4_tcp": {"type": "boolean"}, "internal": {"type": "string"}, "resolver_asn": {"type": "integer"}, "resolver_net": {"type": "string"}}, "required": ["ipv4_tcp", "internal", "re... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "7503011002", "district_id" : "7503011", "name" : "DUDEWULO"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}}, "required": ["main.css", "main.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"main.css" : "static/css/main.d41d8cd9.css", "main.js" : "static/js/main.e558674f.js"} | json_instruct | {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}}, "required": ["main.css", "main.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "tex... | {"author" : "Maria Hummel", "classification" : "", "keywords" : [], "period" : "", "reference" : "http://www.poetryfoundation.org/poetrymagazine/poem/239936", "region" : "", "text" : ["Days you are sick, we get dressed slow,", "find our hats, and ride the train.", "We pass a junkyard and the bay,", "then a dark tunnel,... | json_instruct | {"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "background": {"type": "object", "properties": {"service_worker": {"type":... | {"name" : "ResearchMark", "description" : "Saves all the tabs in a window, for users who want to save all their research pages.", "version" : "1.0", "manifest_version" : 3, "background" : {"service_worker" : "background.js"}, "permissions" : ["storage", "activeTab", "scripting", "bookmarks", "contextMenus"], "action" :... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "background": {"type": "object", "properties": {"service_worker": {"type": "string"}}, "required": ["service_worker"]}, "permissions": {"type": "array"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"file_name": {"type": "string"}, "guid": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}, "exports": {"t... | {"file_name" : "FactoryGame/Content/FactoryGame/Interface/UI/Audio/Codex/Play_UI_CodexMessage_Blip.uasset", "guid" : {"a" : 1634517612, "b" : 1231710388, "c" : 2746605749, "d" : 3368516559}, "exports" : [{"name" : "Play_UI_CodexMessage_Blip", "class" : {"package" : "/Script/AkAudio", "name" : "AkAudioEvent"}, "super" :... | json_instruct | {"type": "object", "properties": {"file_name": {"type": "string"}, "guid": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}, "exports": {"type": "array", "items": {"type": "object", "properties": ... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"managementPassword": {"type": "string"}, "serverName": {"type": "string"}, "port": {"type": "integer"}, "poolSize": {"type": "integer"}}, "required": ["managementPassword", "serverName", "port", "poolSize"], "$schema": "http:/... | {"managementPassword" : "password", "serverName" : "Hello World", "port" : 8080, "poolSize" : 2} | json_instruct | {"type": "object", "properties": {"managementPassword": {"type": "string"}, "serverName": {"type": "string"}, "port": {"type": "integer"}, "poolSize": {"type": "integer"}}, "required": ["managementPassword", "serverName", "port", "poolSize"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-sch... | {"word" : "Elemental", "definitions" : ["A supernatural entity or force thought to be physically manifested by occult means."], "parts-of-speech" : "Noun"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, "license": {"... | {"name" : "e2h-epitech-header", "main" : "./lib/e2h-epitech-header", "version" : "0.2.0", "description" : "Epitech Headers auto insertion based on a template", "keywords" : ["Epitech"], "repository" : "https://github.com/QLaille/e2h-epitech-header", "license" : "MIT", "engines" : {"atom" : ">=1.0.0 <2.0.0"}, "dependenc... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properti... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"vorgangId": {"type": "string"}, "VORGANG": {"type": "object", "properties": {"WAHLPERIODE": {"type": "string"}, "VORGANGSTYP": {"type": "string"}, "TITEL": {"type": "string"}, "AKTUELLER_STAND": {"type": "string"}, "SIGNATUR":... | {"vorgangId" : "101379", "VORGANG" : {"WAHLPERIODE" : "14", "VORGANGSTYP" : "Besetzung externer Gremien durch BT", "TITEL" : "Wahl des Abg Christian Simmert (B90/GR) zum stellvertretenden Mitglied des Kuratoriums der Stiftung \"Erinnerung, Verantwortung und Zukunft\" als Nachfolger des ausgeschiedenen Abg G\u00fcnter S... | json_instruct | {"type": "object", "properties": {"vorgangId": {"type": "string"}, "VORGANG": {"type": "object", "properties": {"WAHLPERIODE": {"type": "string"}, "VORGANGSTYP": {"type": "string"}, "TITEL": {"type": "string"}, "AKTUELLER_STAND": {"type": "string"}, "SIGNATUR": {"type": "string"}, "GESTA_ORDNUNGSNUMMER": {"type": "stri... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}... | {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[141.0, 29.333333333333332], [141.0, 29.416666666666668], [141.125, 29.416666666666668], [141.125, 29.333333333333332], [141.0, 29.333333333333332]]]}, "properties" : {"code" : 444100, "url" : "http://madefor.github.io/0410/api/v1/444100.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": "ob... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {}, "required": []}, "inner_path": {"type": "stri... | {"address" : "1UDbADib99KE9d3qZ87NqJF2QLTHmMkoV", "cert_auth_type" : "web", "cert_sign" : "G9ftMgT3UXYSSs7r0pRo1m2m7ecYuXVzxYe7j7u24aaDoJFPODv/1/Irk1K7buxW9iW4lHnkBONhwp3AHdvfmJY=", "cert_user_id" : "0ouroboros0@zeroid.bit", "files" : {}, "inner_path" : "data/userdb/1JjALPFC3xqngMvrrfPiwf2ff4xe6rddS5/content.json", "mo... | json_instruct | {"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {}, "required": []}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": ... |
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": ["t... | {"name" : "ep_tables4", "version" : "1.0.5", "description" : "Insert tables into your Etherpad documents", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/WC2-Foundation/ep_tables4.git"}, "keywords" : ["etherpad-l... | 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": "s... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"objfunc": {"type": "string"}, "evatrials": {"type": "integer"}, "trial_runs": {"type": "integer"}, "r_val": {"type": "number"}, "metric": {"type": "string"}, "initial_objs": {"type": "array", "items": {"type": "array", "items"... | {"objfunc" : "ZDT1", "evatrials" : 222, "trial_runs" : 1, "r_val" : 0.999, "metric" : "ones", "initial_objs" : [[]], "initial_params" : [[0.12519307, 0.92327596, 0.90659523, 0.35615036, 0.87201232, 0.33806262, 0.00786898, 0.63141019, 0.96851024, 0.75354514, 0.86159084, 0.54991199, 0.57053675, 0.14343799, 0.17565052, 0.... | json_instruct | {"type": "object", "properties": {"objfunc": {"type": "string"}, "evatrials": {"type": "integer"}, "trial_runs": {"type": "integer"}, "r_val": {"type": "number"}, "metric": {"type": "string"}, "initial_objs": {"type": "array", "items": {"type": "array", "items": {}}}, "initial_params": {"type": "array", "items": {"type... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"brief" : "female perfumer", "long" : "<i>Meaning:</i> a \"female perfumer\".<br/><i>Usage:</i> confectioner.<br/><i>Source:</i> feminine of \"H7547\";"} | json_instruct | {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"css/dvf.css": {"type": "string"}, "css/dvf.min.css": {"type": "string"}, "data/countryData.min.js": {"type": "string"}, "data/stateData.min.js": {"type": "string"}, "leaflet-dvf.js": {"type": "string"}, "leaflet-dvf... | {"css/dvf.css" : "sha256-0qiN/Gmjg1i8TBTqwsR8Qnw/ghEz9xDfrC1DGQT2NFo=", "css/dvf.min.css" : "sha256-NiiwxuAaZUcuxw7GHUHxNIgI2aZWvQE/tEl+dPIYlwE=", "data/countryData.min.js" : "sha256-Wh+0FDl1VjKnmM7r5hM3EI8HnOWWF8f7uKLxz2eChSQ=", "data/stateData.min.js" : "sha256-hYVTfStgbDoMfE7Jm1I64XaRAuexW5S350xmVFKR2pw=", "leaflet-... | json_instruct | {"type": "object", "properties": {"css/dvf.css": {"type": "string"}, "css/dvf.min.css": {"type": "string"}, "data/countryData.min.js": {"type": "string"}, "data/stateData.min.js": {"type": "string"}, "leaflet-dvf.js": {"type": "string"}, "leaflet-dvf.markers.js": {"type": "string"}, "leaflet-dvf.markers.min.js": {"type... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "3201100008", "district_id" : "3201100", "name" : "BITUNG SARI"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "utterances": {"type": "object", "properties": {"en": {"type": "array", "items": {"type": "string"}}}, "required": ["en"]}, "slots": {"type": "array", "items": {}}, "contexts": {"type": "ar... | {"name" : "collection", "utterances" : {"en" : ["Collection", "What is a collection?", "How to create a collection?", "Why is needed a collection?", "How to delete a collection?", "Collection Example", "Can I add a collection?", "Where to find a collection?", "What are the types of collection?", "About collections", "C... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "utterances": {"type": "object", "properties": {"en": {"type": "array", "items": {"type": "string"}}}, "required": ["en"]}, "slots": {"type": "array", "items": {}}, "contexts": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "utterances... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"asset_id": {"type": "string"}, "contract": {"type": "object", "properties": {"entity": {"type": "object", "properties": {"domain": {"type": "string"}}, "required": ["domain"]}, "issuer_pubkey": {"type": "string"}, "name": {... | {"asset_id" : "62739643f18a6acbc2bd134c9b4ac6d449ef94df598d495f9f3413d149e4713f", "contract" : {"entity" : {"domain" : "store.blockstream.com"}, "issuer_pubkey" : "023c239fd39ae5fc8b88454fe36cae6a65a10c5b637a28dbcbc423d1e7f3bcc25e", "name" : "Blockstream Tee", "nonce" : "37809", "precision" : 0, "ticker" : "TEE", "vers... | json_instruct | {"type": "object", "properties": {"asset_id": {"type": "string"}, "contract": {"type": "object", "properties": {"entity": {"type": "object", "properties": {"domain": {"type": "string"}}, "required": ["domain"]}, "issuer_pubkey": {"type": "string"}, "name": {"type": "string"}, "nonce": {"type": "string"}, "precision": {... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"str00A\u098f": {"type": "string"}, "str10-\u098f": {"type": "string"}, "str20\u0990": {"type": "string"}, "str01A\u0993": {"type": "string"}, "str11-\u099d": {"type": "string"}, "str21\u09a8": {"type": "string"}, "str02A\u09aa... | {"str00A\u098f" : "a", "str10-\u098f" : "b", "str20\u0990" : "c", "str01A\u0993" : "a", "str11-\u099d" : "b", "str21\u09a8" : "c", "str02A\u09aa" : "a", "str12-\u09ad" : "b", "str22\u09b0" : "c", "str03A\u09b2" : "a", "str04A\u09b6" : "a", "str14-\u09b7" : "b", "str24\u09b9" : "c", "str05A\u09dc" : "a", "str15-\u09dc" ... | json_instruct | {"type": "object", "properties": {"str00A\u098f": {"type": "string"}, "str10-\u098f": {"type": "string"}, "str20\u0990": {"type": "string"}, "str01A\u0993": {"type": "string"}, "str11-\u099d": {"type": "string"}, "str21\u09a8": {"type": "string"}, "str02A\u09aa": {"type": "string"}, "str12-\u09ad": {"type": "string"}, ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lo... | {"id" : "60264043", "name" : "West Leys Court", "nodes" : [{"type" : "node", "id" : 748865863, "lat" : 52.2801606, "lon" : -0.8552456}, {"type" : "node", "id" : 748865916, "lat" : 52.2805544, "lon" : -0.8550632}], "volunteer_postcode" : "NN3 7HJ", "closest_distance" : 263} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunte... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"1": {"type": "boolean"}}, "required": ["1"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "94da5f6dc707ddd5d0a0", "c" : {"1" : false}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"1": {"type": "boolean"}}, "required": ["1"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "date": {"type": "string"}, "season": {"type": "string"}, "formats": {"type": "array", "items": {"type": "string"}}, "medium": {"type": "string"}, "id": {"type": "string"}, "location": {"... | {"type" : "Nationals - South Africa", "date" : "August 27-28, 2011", "season" : "2011", "formats" : ["Standard", "Booster Draft"], "medium" : "Tabletop", "id" : "nationals-south-africa-2011", "location" : "Johannesburg, South Africa", "logo" : "nationals", "name" : "Nationals South Africa 2011", "standings" : [{"name" ... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "date": {"type": "string"}, "season": {"type": "string"}, "formats": {"type": "array", "items": {"type": "string"}}, "medium": {"type": "string"}, "id": {"type": "string"}, "location": {"type": "string"}, "logo": {"type": "string"}, "name": {"type": "string"... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "r... | {"name" : "server", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "nodemon app.js"}, "author" : "ppsari <poppymighty@gmail.com> (https://github.com/ppsari/)", "license" : "ISC", "dependencies" : {"body-parser" : "^1.18.1", "c... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "author": {"type": "string"},... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Entries": {"type": "array", "items": {}}, "Variables": {"type": "object", "properties": {"DateTimeOffsetNow": {"type": "string"}, "RandomSeed": {"type": "string"}}, "required": ["DateTimeOffsetNow", "RandomSeed... | {"Entries" : [], "Variables" : {"DateTimeOffsetNow" : "2022-06-08T13:51:15.8285695-04:00", "RandomSeed" : "585790924"}} | json_instruct | {"type": "object", "properties": {"Entries": {"type": "array", "items": {}}, "Variables": {"type": "object", "properties": {"DateTimeOffsetNow": {"type": "string"}, "RandomSeed": {"type": "string"}}, "required": ["DateTimeOffsetNow", "RandomSeed"]}}, "required": ["Entries", "Variables"], "$schema": "http://json-schema.... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "src": {"type": "string"}}, "required": ["name", "src"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "Cannes Radio 91.5", "src" : "https://cannesradio.ice.infomaniak.ch/cannesradio-128.mp3?t=1526273013"}, {"name" : "Clin d'oeil FM", "src" : "http://clindoeilfm1061.ice.infomaniak.ch:80/clindoeilfm1061-128?t=1526273015"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "src": {"type": "string"}}, "required": ["name", "src"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "node": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "nameCN": {"type": "string"}, "image": {"type": "string"},... | {"id" : 156145, "node" : [{"id" : 156145, "name" : "\u30b9\u30bf\u30df\u30e5", "nameCN" : "\u9ad8\u6821\u661f\u6b4c\u5267", "image" : "//lain.bgm.tv/pic/cover/m/b5/7e/156145_jp.jpg", "date" : "2015-11-20"}, {"id" : 212952, "name" : "\u30b9\u30bf\u30df\u30e5 Stardust\u2019s Dream", "nameCN" : "\u9ad8\u6821\u661f\u6b4c\u... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "node": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "nameCN": {"type": "string"}, "image": {"type": "string"}, "date": {"type": "string"}}, "required": ["id", "name", "nameCN", "image", "... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"Tools": {"type": "array", "items": {"type": "object", "properties": {"Repository": {"type": "string"}, "Commit": {"type": "string"}}, "required": ["Repository", "Commit"]}}, "RetoolVersion": {"type": "string"}}, "r... | {"Tools" : [{"Repository" : "github.com/golang/protobuf/protoc-gen-go", "Commit" : "7716a980bceefe9a0213654823d9ea62d23b87a2"}, {"Repository" : "github.com/kisielk/errcheck", "Commit" : "db0ca22445717d1b2c51ac1034440e0a2a2de645"}, {"Repository" : "github.com/gogo/protobuf/protoc-gen-gofast", "Commit" : "30433562cfbf487... | json_instruct | {"type": "object", "properties": {"Tools": {"type": "array", "items": {"type": "object", "properties": {"Repository": {"type": "string"}, "Commit": {"type": "string"}}, "required": ["Repository", "Commit"]}}, "RetoolVersion": {"type": "string"}}, "required": ["Tools", "RetoolVersion"], "$schema": "http://json-schema.or... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"mySQA": {"type": "object", "properties": {"domain": {"type": "string"}, "url": {"type": "string"}, "contact": {"type": "object", "properties": {"facebook": {"type": "string"}, "twitter": {"type": "string"}}, "requir... | {"mySQA" : {"domain" : "mysqa.org.uk", "url" : "https://www.mysqa.org.uk/", "contact" : {"facebook" : "ScottishQualificationsAuthority", "twitter" : "sqanews"}, "keywords" : ["education"], "regions" : ["gb"]}} | json_instruct | {"type": "object", "properties": {"mySQA": {"type": "object", "properties": {"domain": {"type": "string"}, "url": {"type": "string"}, "contact": {"type": "object", "properties": {"facebook": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["facebook", "twitter"]}, "keywords": {"type": "array", "items": ... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "author": {"type": "st... | {"name" : "smtp", "version" : "0.0.1", "description" : "Mock SMTP server", "scripts" : {"start" : "fake-smtp-server"}, "author" : "Cilean Liliana Florina", "license" : "Apache-2.0", "dependencies" : {"fake-smtp-server" : "^0.8.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "numb... | {"id" : "58884320", "name" : "Northwood Road", "nodes" : [{"type" : "node", "id" : 710892554, "lat" : 52.2555435, "lon" : -0.8632774}, {"type" : "node", "id" : 729665048, "lat" : 52.2566863, "lon" : -0.8625899}, {"type" : "node", "id" : 729665049, "lat" : 52.2570875, "lon" : -0.8623502}, {"type" : "node", "id" : 768668... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunte... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/... | [{"package" : "ucsc-hggoldgapgl", "downloads" : 2800, "count" : 2560}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$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.