input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"symbol": {"type": "string"}, "company": {"type": "string"}, "price": {"type": "string"}, "change": {"type": "string"}, "volumne": {"type": "string"}}, "required": ["symbol", "company", "price", "change", "volumne"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"symbol" : "NCLH", "company" : "Norwegian Cruise Lin...", "price" : "19.58", "change" : "+13.51%", "volumne" : "2,516,305"}, {"symbol" : "CCL", "company" : "Carnival Corp", "price" : "19.63", "change" : "+12.56%", "volumne" : "2,110,052"}, {"symbol" : "RCL", "company" : "Royal Caribbean Crui...", "price" : "60.01", "change" : "+10.09%", "volumne" : "452,976"}, {"symbol" : "ALK", "company" : "Alaska Air Group Inc...", "price" : "39.05", "change" : "+9.72%", "volumne" : "79,860"}, {"symbol" : "DAL", "company" : "Delta Air Lines Inc", "price" : "29.75", "change" : "+9.38%", "volumne" : "1,167,052"}, {"symbol" : "OKE", "company" : "ONEOK Inc", "price" : "32.66", "change" : "-7.56%", "volumne" : "2,273,352"}, {"symbol" : "PVH", "company" : "PVH Corp", "price" : "51.50", "change" : "-2.31%", "volumne" : "28,016"}, {"symbol" : "CLX", "company" : "Clorox Co", "price" : "203.73", "change" : "-0.59%", "volumne" : "3,324"}, {"symbol" : "JCI", "company" : "Johnson Controls Int...", "price" : "33.57", "change" : "-0.15%", "volumne" : "125"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"symbol": {"type": "string"}, "company": {"type": "string"}, "price": {"type": "string"}, "change": {"type": "string"}, "volumne": {"type": "string"}}, "required": ["symbol", "company", "price", "change", "volumne"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"postal_code" : "99095", "place_name" : "Villas del Campestre", "place_type" : "Fraccionamiento", "county" : "Fresnillo", "state" : "Zacatecas", "city" : "Fresnillo"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "integer"}}, "required": ["id", "source", "verse_id", "verse_count", "reference", "title", "html", "audit"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 623, "source" : "gileadi", "verse_id" : 18730, "verse_count" : 3, "reference" : "54:6\u20138", "title" : "", "html" : " <p>Jehovah’s ancient covenant people, now received back, remarry their Redeemer whom they long repudiated. The account of his taking back his former spouse thus abounds in covenant language. Terms such as “loving compassion” and “everlasting charity” denote an unconditional and eternal covenant. The words “I forsook you, indeed, momentarily” and “in fleeting exasperation I hid my face from you” express justified actions, showing that consequences for transgression in the form of covenant curses are, in the end, designed to bring Jehovah’s people back into a blessed relationship with him. </p> ", "audit" : 1} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "integer"}}, "required": ["id", "source", "verse_id", "verse_count", "reference", "title", "html", "audit"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "7826b2dd6e5cd4c01279", "c" : {"0" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1958, 5], [1960, 6], [1970, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "MARC-PHILIPPE", "frequency" : 0, "gender" : "female"}] | 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#"} |
Please provide a valid JSON object following this 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": {"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" : "Joncy", "circ" : "2\u00e8me circonscription", "dpt" : "Sa\u00f4ne-et-Loire", "inscrits" : 345, "abs" : 184, "votants" : 161, "blancs" : 7, "nuls" : 2, "exp" : 152, "res" : [{"nuance" : "LR", "nom" : "Mme Josiane CORNELOUP", "voix" : 83}, {"nuance" : "REM", "nom" : "M. Vincent CHAUVET", "voix" : 69}]} | 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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"python.pythonPath": {"type": "string"}, "editor.formatOnType": {"type": "boolean"}, "workbench.colorTheme": {"type": "string"}}, "required": ["python.pythonPath", "editor.formatOnType", "workbench.colorTheme"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"python.pythonPath" : "/Library/Frameworks/Python.framework/Versions/3.6/bin/python3", "editor.formatOnType" : true, "workbench.colorTheme" : "One Dark Pro Vivid"} | json_instruct | {"type": "object", "properties": {"python.pythonPath": {"type": "string"}, "editor.formatOnType": {"type": "boolean"}, "workbench.colorTheme": {"type": "string"}}, "required": ["python.pythonPath", "editor.formatOnType", "workbench.colorTheme"], "$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"}, "author": {"type": "string"}, "summary": {"type": "string"}, "license": {"type": "string"}, "source": {"type": "string"}, "issues_url": {"type": "string"}, "project_page": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "operatingsystem_support": {"type": "array", "items": {"type": "object", "properties": {"operatingsystem": {"type": "string"}, "operatingsystemrelease": {"type": "array", "items": {"type": "string"}}}, "required": ["operatingsystem", "operatingsystemrelease"]}}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "version_requirement": {"type": "string"}}, "required": ["name", "version_requirement"]}}}, "required": ["name", "version", "author", "summary", "license", "source", "issues_url", "project_page", "tags", "operatingsystem_support", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "treydock-puppet-module-site_mysql", "version" : "0.0.1", "author" : "treydock", "summary" : "Site specific MySQL Puppet module", "license" : "Apache 2.0", "source" : "git://github.com/treydock/puppet-module-site_mysql.git", "issues_url" : "https://github.com/treydock/puppet-module-site_mysql/issues", "project_page" : "https://github.com/treydock/puppet-module-site_mysql", "tags" : ["mysql", "redhat", "centos"], "operatingsystem_support" : [{"operatingsystem" : "RedHat", "operatingsystemrelease" : ["6", "7"]}, {"operatingsystem" : "CentOS", "operatingsystemrelease" : ["6", "7"]}, {"operatingsystem" : "Scientific", "operatingsystemrelease" : ["6", "7"]}], "dependencies" : [{"name" : "puppetlabs-stdlib", "version_requirement" : ">= 3.2.0 <5.0.0"}, {"name" : "puppetlabs-lvm", "version_requirement" : ">= 0.4.0"}, {"name" : "puppetlabs-mysql", "version_requirement" : ">= 2.0.0"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "summary": {"type": "string"}, "license": {"type": "string"}, "source": {"type": "string"}, "issues_url": {"type": "string"}, "project_page": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "operatingsystem_support": {"type": "array", "items": {"type": "object", "properties": {"operatingsystem": {"type": "string"}, "operatingsystemrelease": {"type": "array", "items": {"type": "string"}}}, "required": ["operatingsystem", "operatingsystemrelease"]}}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "version_requirement": {"type": "string"}}, "required": ["name", "version_requirement"]}}}, "required": ["name", "version", "author", "summary", "license", "source", "issues_url", "project_page", "tags", "operatingsystem_support", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "DORATHY", "frequency" : 0, "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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"AWATER10": {"type": "integer"}, "CLASSFP10": {"type": "string"}, "ALAND10": {"type": "integer"}, "INTPTLAT10": {"type": "string"}, "FUNCSTAT10": {"type": "string"}, "ZCTA5CE10": {"type": "string"}, "MTFCC10": {"type": "string"}, "GEOID10": {"type": "string"}, "INTPTLON10": {"type": "string"}}, "required": ["AWATER10", "CLASSFP10", "ALAND10", "INTPTLAT10", "FUNCSTAT10", "ZCTA5CE10", "MTFCC10", "GEOID10", "INTPTLON10"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-86.506435, 39.071121], [-86.506263, 39.071123], [-86.505748, 39.071131], [-86.505577, 39.071134], [-86.505712, 39.07089], [-86.506119, 39.070159], [-86.506255, 39.069916], [-86.506431, 39.069601], [-86.506604, 39.069295], [-86.506669, 39.069252], [-86.506704, 39.069237], [-86.506734, 39.06923], [-86.50677, 39.069233], [-86.507042, 39.069326], [-86.507191, 39.069393], [-86.507283, 39.069419], [-86.507417, 39.069459], [-86.507621, 39.069544], [-86.507624, 39.069545], [-86.507636, 39.069548], [-86.50764, 39.069549], [-86.507664, 39.069555], [-86.507737, 39.069575], [-86.507762, 39.069582], [-86.507788, 39.069589], [-86.507869, 39.06961], [-86.507896, 39.069618], [-86.508168, 39.069711], [-86.508855, 39.069948], [-86.50886, 39.069989], [-86.508854, 39.07002], [-86.508821, 39.070077], [-86.508794, 39.070126], [-86.508707, 39.070266], [-86.50866, 39.070316], [-86.508621, 39.070386], [-86.50859, 39.070443], [-86.508495, 39.070595], [-86.508453, 39.070664], [-86.508401, 39.07075], [-86.508248, 39.07101], [-86.508197, 39.071097], [-86.508133, 39.071097], [-86.507943, 39.071098], [-86.50788, 39.071099], [-86.507714, 39.071101], [-86.507217, 39.071109], [-86.507052, 39.071113], [-86.507016, 39.071113], [-86.506908, 39.071114], [-86.506873, 39.071115], [-86.506785, 39.071116], [-86.506522, 39.071119], [-86.506435, 39.071121]]]}, "type" : "Feature", "properties" : {"AWATER10" : 0, "CLASSFP10" : "B5", "ALAND10" : 38770, "INTPTLAT10" : "+39.0703290", "FUNCSTAT10" : "S", "ZCTA5CE10" : "47458", "MTFCC10" : "G6350", "GEOID10" : "47458", "INTPTLON10" : "-086.5072268"}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"AWATER10": {"type": "integer"}, "CLASSFP10": {"type": "string"}, "ALAND10": {"type": "integer"}, "INTPTLAT10": {"type": "string"}, "FUNCSTAT10": {"type": "string"}, "ZCTA5CE10": {"type": "string"}, "MTFCC10": {"type": "string"}, "GEOID10": {"type": "string"}, "INTPTLON10": {"type": "string"}}, "required": ["AWATER10", "CLASSFP10", "ALAND10", "INTPTLAT10", "FUNCSTAT10", "ZCTA5CE10", "MTFCC10", "GEOID10", "INTPTLON10"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "ext_min": {"type": "string"}, "php_min": {"type": "string"}}, "required": ["name", "ext_min", "php_min"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "oci_get_implicit_resultset", "ext_min" : "2.0.0", "php_min" : "7.0.0"}, {"name" : "oci_register_taf_callback", "ext_min" : "2.1.7", "php_min" : "7.0.0"}, {"name" : "oci_unregister_taf_callback", "ext_min" : "2.1.7", "php_min" : "7.0.0"}, {"name" : "oci_set_db_operation", "ext_min" : "2.2.0", "php_min" : "7.0.0"}, {"name" : "oci_set_call_timeout", "ext_min" : "2.2.0", "php_min" : "7.0.0"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "ext_min": {"type": "string"}, "php_min": {"type": "string"}}, "required": ["name", "ext_min", "php_min"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"4*4*((J * (1 - J))*(r * (1 - r)))": {"type": "object", "properties": {"10": {"type": "object", "properties": {"compiler_version": {"type": "string"}, "flags": {"type": "string"}, "tapenade": {"type": "number"}, "tapenade_compile_time": {"type": "number"}, "tapenade_file_gen": {"type": "number"}, "us": {"type": "number"}, "us_compile_time": {"type": "number"}, "us_file_gen": {"type": "number"}, "wenzel_dynamic": {"type": "number"}, "wenzel_static": {"type": "number"}}, "required": ["compiler_version", "flags", "tapenade", "tapenade_compile_time", "tapenade_file_gen", "us", "us_compile_time", "us_file_gen", "wenzel_dynamic", "wenzel_static"]}}, "required": ["10"]}}, "required": ["4*4*((J * (1 - J))*(r * (1 - r)))"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"4*4*((J * (1 - J))*(r * (1 - r)))" : {"10" : {"compiler_version" : "", "flags" : "-ffast-math -O3", "tapenade" : 2.2e-06, "tapenade_compile_time" : 0.5388472080230713, "tapenade_file_gen" : 3.7155444622039795, "us" : 1.7e-06, "us_compile_time" : 0.6291768550872803, "us_file_gen" : 0.7844386100769043, "wenzel_dynamic" : 3.23e-05, "wenzel_static" : 1.5e-06}}} | json_instruct | {"type": "object", "properties": {"4*4*((J * (1 - J))*(r * (1 - r)))": {"type": "object", "properties": {"10": {"type": "object", "properties": {"compiler_version": {"type": "string"}, "flags": {"type": "string"}, "tapenade": {"type": "number"}, "tapenade_compile_time": {"type": "number"}, "tapenade_file_gen": {"type": "number"}, "us": {"type": "number"}, "us_compile_time": {"type": "number"}, "us_file_gen": {"type": "number"}, "wenzel_dynamic": {"type": "number"}, "wenzel_static": {"type": "number"}}, "required": ["compiler_version", "flags", "tapenade", "tapenade_compile_time", "tapenade_file_gen", "us", "us_compile_time", "us_file_gen", "wenzel_dynamic", "wenzel_static"]}}, "required": ["10"]}}, "required": ["4*4*((J * (1 - J))*(r * (1 - r)))"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "deps": {"type": "array", "items": {"type": "string"}}, "parser": {"type": "string"}, "args": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "deps", "parser", "args"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "gentoo-base", "deps" : [""], "parser" : "includejson", "args" : ["subtargets/gentoo-base.json", "patchtargets/gentoo-aarch64.json", "patchtargets/gentoo-openrc.json"]}, {"name" : "genpi64-lite-finalize", "deps" : ["gentoo-base"], "parser" : "includejson", "args" : ["subtargets/genpi64-lite-finalize.json"]}, {"name" : "echo-lite-banner", "deps" : ["genpi64-lite-finalize"], "parser" : "printf", "args" : ["############################\n# Build complete\n# To install your image on an SD card, run\n# dd if=/path/to/image of=/path/to/sdcard\n#############################\n"]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "deps": {"type": "array", "items": {"type": "string"}}, "parser": {"type": "string"}, "args": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "deps", "parser", "args"]}, "$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", "properties": {"errors": {"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "message": {"type": "string"}}, "required": ["line", "column", "message"]}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x1a8ad1257ba89e55fdbd71436931f9714dbfb9f6", "tool" : "osiris", "start" : 1564632367.8413165, "end" : 1564632371.7645657, "duration" : 3.9232492446899414, "analysis" : [{"errors" : [{"line" : 31, "column" : 13, "message" : "overflow_bugs"}, {"line" : 27, "column" : 13, "message" : "overflow_bugs"}], "file" : "/unique_chucks/39/0x1a8ad1257ba89e55fdbd71436931f9714dbfb9f6.sol", "name" : "PizzaPoll"}]} | 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", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "message": {"type": "string"}}, "required": ["line", "column", "message"]}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "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": {"TODO": {"type": "array", "items": {"type": "object", "properties": {"TODO": {"type": "string"}}, "required": ["TODO"]}}}, "required": ["TODO"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"TODO" : [{"TODO" : "Eligibility_1_OtherEligibility(Eligibility1OtherEligibility)"}]} | json_instruct | {"type": "object", "properties": {"TODO": {"type": "array", "items": {"type": "object", "properties": {"TODO": {"type": "string"}}, "required": ["TODO"]}}}, "required": ["TODO"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"consumed_commands": {"type": "integer"}, "energy": {"type": "integer"}, "engine_name": {"type": "string"}, "successful": {"type": "boolean"}}, "required": ["consumed_commands", "energy", "engine_name", "successful"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"consumed_commands" : 333555, "energy" : 7294816300604, "engine_name" : "unknown", "successful" : true} | json_instruct | {"type": "object", "properties": {"consumed_commands": {"type": "integer"}, "energy": {"type": "integer"}, "engine_name": {"type": "string"}, "successful": {"type": "boolean"}}, "required": ["consumed_commands", "energy", "engine_name", "successful"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 98598, "info" : {"name" : "clubt\u3000\u898b\u3084\u3059\u304f", "description" : ",", "additionalInfo" : null, "format" : "uso", "category" : "clubt", "createdAt" : "2014-02-26T07:59:25.000Z", "updatedAt" : "2014-02-26T07:59:25.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 256359, "name" : "uuueee"}}, "stats" : {"installs" : {"total" : 42, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "98598-after.png", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n@-moz-document domain(\"clubt.jp\") {\r\nbr,iframe,#footer\r\n{display:none !important;}\r\n\r\n*{\r\n margin:0 !important;\r\n padding:0 !important;\r\n line-height:1.1 !important;\r\n}\r\n#header{height:10px !important;}\r\n#item_table .cell1{height:10px !important;}\r\n}\r\n"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"webhook_not_internet_accessible": {"type": "string"}}, "required": ["webhook_not_internet_accessible"]}}, "required": ["abort"]}}, "required": ["config"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"config" : {"abort" : {"webhook_not_internet_accessible" : "\u05de\u05d5\u05e4\u05e2 \u05d4-Home Assistant \u05e9\u05dc\u05da \u05e6\u05e8\u05d9\u05da \u05dc\u05d4\u05d9\u05d5\u05ea \u05e0\u05d2\u05d9\u05e9 \u05de\u05d4\u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8 \u05db\u05d3\u05d9 \u05dc\u05e7\u05d1\u05dc \u05d4\u05d5\u05d3\u05e2\u05d5\u05ea webhook."}}} | json_instruct | {"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"webhook_not_internet_accessible": {"type": "string"}}, "required": ["webhook_not_internet_accessible"]}}, "required": ["abort"]}}, "required": ["config"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"ENV": {"type": "string"}, "PORT": {"type": "object", "properties": {"PUBLIC": {"type": "object", "properties": {"DEV": {"type": "integer"}, "PROD": {"type": "integer"}}, "required": ["DEV", "PROD"]}, "ADMIN": {"type": "object", "properties": {"DEV": {"type": "integer"}, "PROD": {"type": "integer"}}, "required": ["DEV", "PROD"]}, "MOBILE": {"type": "object", "properties": {"DEV": {"type": "integer"}, "PROD": {"type": "integer"}}, "required": ["DEV", "PROD"]}}, "required": ["PUBLIC", "ADMIN", "MOBILE"]}, "MONGO_URI": {"type": "object", "properties": {"DEVELOPMENT": {"type": "string"}}, "required": ["DEVELOPMENT"]}, "REDIS_SERVER": {"type": "object", "properties": {"DEVELOPMENT": {"type": "string"}, "PRODUCTION": {"type": "string"}}, "required": ["DEVELOPMENT", "PRODUCTION"]}, "SESSION_SECRET": {"type": "string"}, "_IMAGE_UPLOAD_PATH": {"type": "string"}, "IMAGE_UPLOAD_PATH": {"type": "string"}, "WATERMARK_PATH_STRING": {"type": "string"}, "BACK_IMAGE_WATERMARK_PATH_STRING": {"type": "string"}, "DEFAULT_LANGUAGE": {"type": "string"}}, "required": ["ENV", "PORT", "MONGO_URI", "REDIS_SERVER", "SESSION_SECRET", "_IMAGE_UPLOAD_PATH", "IMAGE_UPLOAD_PATH", "WATERMARK_PATH_STRING", "BACK_IMAGE_WATERMARK_PATH_STRING", "DEFAULT_LANGUAGE"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ENV" : "development", "PORT" : {"PUBLIC" : {"DEV" : 3000, "PROD" : 3000}, "ADMIN" : {"DEV" : 4000, "PROD" : 4000}, "MOBILE" : {"DEV" : 5000, "PROD" : 5000}}, "MONGO_URI" : {"DEVELOPMENT" : "mongodb://localhost:27017/boibazar"}, "REDIS_SERVER" : {"DEVELOPMENT" : "localhost", "PRODUCTION" : "localhost"}, "SESSION_SECRET" : "123123", "_IMAGE_UPLOAD_PATH" : "/home/nafeo/boibazar/uploads/", "IMAGE_UPLOAD_PATH" : "/usr/src/boibazar/uploads/", "WATERMARK_PATH_STRING" : "image Over 100,150,0,0 /usr/src/boibazar/server-resource/stamp.png", "BACK_IMAGE_WATERMARK_PATH_STRING" : "image Over 220,400,0,0 /usr/src/boibazar/server-resource/stamp.png", "DEFAULT_LANGUAGE" : "en"} | json_instruct | {"type": "object", "properties": {"ENV": {"type": "string"}, "PORT": {"type": "object", "properties": {"PUBLIC": {"type": "object", "properties": {"DEV": {"type": "integer"}, "PROD": {"type": "integer"}}, "required": ["DEV", "PROD"]}, "ADMIN": {"type": "object", "properties": {"DEV": {"type": "integer"}, "PROD": {"type": "integer"}}, "required": ["DEV", "PROD"]}, "MOBILE": {"type": "object", "properties": {"DEV": {"type": "integer"}, "PROD": {"type": "integer"}}, "required": ["DEV", "PROD"]}}, "required": ["PUBLIC", "ADMIN", "MOBILE"]}, "MONGO_URI": {"type": "object", "properties": {"DEVELOPMENT": {"type": "string"}}, "required": ["DEVELOPMENT"]}, "REDIS_SERVER": {"type": "object", "properties": {"DEVELOPMENT": {"type": "string"}, "PRODUCTION": {"type": "string"}}, "required": ["DEVELOPMENT", "PRODUCTION"]}, "SESSION_SECRET": {"type": "string"}, "_IMAGE_UPLOAD_PATH": {"type": "string"}, "IMAGE_UPLOAD_PATH": {"type": "string"}, "WATERMARK_PATH_STRING": {"type": "string"}, "BACK_IMAGE_WATERMARK_PATH_STRING": {"type": "string"}, "DEFAULT_LANGUAGE": {"type": "string"}}, "required": ["ENV", "PORT", "MONGO_URI", "REDIS_SERVER", "SESSION_SECRET", "_IMAGE_UPLOAD_PATH", "IMAGE_UPLOAD_PATH", "WATERMARK_PATH_STRING", "BACK_IMAGE_WATERMARK_PATH_STRING", "DEFAULT_LANGUAGE"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : 8172020005, "parent" : 8172020, "name" : "TAM NGURHIR", "latitude" : null, "longitude" : null, "postal" : [97621, 97613], "children" : []} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1997, 10], [2014, 7]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"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" : "Punta Flecha, Pitogo, Zamboanga del Sur, Zamboanga Peninsula (Region IX), PH", "locale" : "ph.zamboanga-peninsula-region-ix.zamboanga-del-sur.pitogo.punta-flecha", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "17", "region_reference" : "9", "region_name" : "Zamboanga Peninsula (Region IX)", "province_id" : "81", "province_reference" : "81", "province_name" : "Zamboanga del Sur", "city_id" : "1041", "city_reference" : "1621", "city_name" : "Pitogo", "barangay_id" : "29620", "barangay_reference" : "41250", "barangay_name" : "Punta Flecha"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[123.374847, 7.40434], [123.376213, 7.40283], [123.377327, 7.40215], [123.379501, 7.40181], [123.3815, 7.40157], [123.382111, 7.401], [123.38295, 7.39995], [123.384651, 7.39978], [123.385933, 7.39869], [123.387672, 7.39035], [123.383339, 7.39059], [123.383247, 7.39066], [123.381477, 7.39066], [123.38118, 7.39137], [123.380836, 7.39179], [123.379967, 7.39225], [123.378891, 7.39333], [123.378891, 7.39361], [123.378326, 7.39417], [123.378326, 7.39444], [123.377777, 7.395], [123.377777, 7.39583], [123.377502, 7.39611], [123.376869, 7.39703], [123.376747, 7.39721], [123.376122, 7.39818], [123.375504, 7.39881], [123.374733, 7.39936], [123.373619, 7.39964], [123.373283, 7.39964], [123.373268, 7.40117], [123.373863, 7.402], [123.374687, 7.40338], [123.374847, 7.40434]]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}, "bin": {"type": "object", "properties": {"macd": {"type": "string"}}, "required": ["macd"]}, "scripts": {"type": "object", "properties": {"macd": {"type": "string"}, "dev": {"type": "string"}, "build": {"type": "string"}, "release": {"type": "string"}, "test": {"type": "string"}}, "required": ["macd", "dev", "build", "release", "test"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/yargs": {"type": "string"}, "esno": {"type": "string"}, "rimraf": {"type": "string"}, "tsup": {"type": "string"}, "typescript": {"type": "string"}, "vitest": {"type": "string"}}, "required": ["@types/node", "@types/yargs", "esno", "rimraf", "tsup", "typescript", "vitest"]}, "dependencies": {"type": "object", "properties": {"yaml": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["yaml", "yargs"]}}, "required": ["name", "version", "description", "author", "license", "files", "keywords", "repository", "bugs", "main", "module", "types", "bin", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@olrtg/macd", "version" : "1.0.0-beta.3", "description" : "macOS defaults for humans", "author" : "Jos\u00e9 Ol\u00f3rtegui <jolortegui98@gmail.com>", "license" : "MIT", "files" : ["dist", "bin"], "keywords" : ["macOS", "cli", "dotfiles", "defaults"], "repository" : {"type" : "git", "url" : "git+https://github.com/olrtg/macd.git"}, "bugs" : {"url" : "https://github.com/olrtg/macd/issues"}, "main" : "dist/index.js", "module" : "dist/index.mjs", "types" : "dist/index.d.ts", "bin" : {"macd" : "bin/macd.js"}, "scripts" : {"macd" : "esno src/index.ts", "dev" : "esno src/index.ts", "build" : "rimraf dist && tsup src/index.ts --format cjs,esm --dts", "release" : "npx bumpp --commit --push --tag", "test" : "vitest"}, "devDependencies" : {"@types/node" : "^17.0.21", "@types/yargs" : "^17.0.8", "esno" : "^0.14.1", "rimraf" : "^3.0.2", "tsup" : "^5.11.13", "typescript" : "^4.6.2", "vitest" : "^0.5.9"}, "dependencies" : {"yaml" : "^1.10.2", "yargs" : "^17.3.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}, "bin": {"type": "object", "properties": {"macd": {"type": "string"}}, "required": ["macd"]}, "scripts": {"type": "object", "properties": {"macd": {"type": "string"}, "dev": {"type": "string"}, "build": {"type": "string"}, "release": {"type": "string"}, "test": {"type": "string"}}, "required": ["macd", "dev", "build", "release", "test"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/yargs": {"type": "string"}, "esno": {"type": "string"}, "rimraf": {"type": "string"}, "tsup": {"type": "string"}, "typescript": {"type": "string"}, "vitest": {"type": "string"}}, "required": ["@types/node", "@types/yargs", "esno", "rimraf", "tsup", "typescript", "vitest"]}, "dependencies": {"type": "object", "properties": {"yaml": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["yaml", "yargs"]}}, "required": ["name", "version", "description", "author", "license", "files", "keywords", "repository", "bugs", "main", "module", "types", "bin", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"label" : "Person", "normalizedVertices" : [{"x" : 0.45998457, "y" : 0.2758111}, {"x" : 0.60904336, "y" : 0.2758111}, {"x" : 0.60904336, "y" : 0.44086996}, {"x" : 0.45998457, "y" : 0.44086996}], "score" : 0.5575739}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"response": {"type": "object", "properties": {"status": {"type": "object", "properties": {"code": {"type": "integer"}, "message": {"type": "string"}}, "required": ["code", "message"]}, "count": {"type": "integer"}, "kind": {"type": "string"}, "items": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "balancerId": {"type": "string"}, "type": {"type": "string"}, "priority": {"type": "integer"}, "spec": {"type": "object", "properties": {"action": {"type": "string"}, "conditions": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "values"]}}}, "required": ["action", "conditions"]}, "tags": {"type": "array", "items": {}}, "updatedAt": {"type": "string"}, "createdAt": {"type": "string"}}, "required": ["id", "balancerId", "type", "priority", "spec", "tags", "updatedAt", "createdAt"]}}}, "required": ["status", "count", "kind", "items"]}}, "required": ["response"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"response" : {"status" : {"code" : 200, "message" : "OK"}, "count" : 2, "kind" : "spotinst:lb:middleware", "items" : [{"id" : "mw-01c4ec988f3d", "balancerId" : "lb-57e0dad0627c", "type" : "ACL", "priority" : 1, "spec" : {"action" : "ALLOW", "conditions" : [{"type" : "HTTP_REQUEST_IP", "values" : ["1.2.3.4", "1.2.3.5"]}]}, "tags" : [], "updatedAt" : "2017-06-26T06:06:38.000Z", "createdAt" : "2017-06-26T06:06:38.000Z"}, {"id" : "mw-01c4ec988f3s", "balancerId" : "lb-57e0dad0627c", "type" : "ACL", "priority" : 2, "spec" : {"action" : "DENY", "conditions" : [{"type" : "HTTP_REQUEST_COOKIE", "values" : ["username=John Doe"]}]}, "tags" : [], "updatedAt" : "2017-06-26T06:06:38.000Z", "createdAt" : "2017-06-26T06:06:38.000Z"}]}} | json_instruct | {"type": "object", "properties": {"response": {"type": "object", "properties": {"status": {"type": "object", "properties": {"code": {"type": "integer"}, "message": {"type": "string"}}, "required": ["code", "message"]}, "count": {"type": "integer"}, "kind": {"type": "string"}, "items": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "balancerId": {"type": "string"}, "type": {"type": "string"}, "priority": {"type": "integer"}, "spec": {"type": "object", "properties": {"action": {"type": "string"}, "conditions": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "values"]}}}, "required": ["action", "conditions"]}, "tags": {"type": "array", "items": {}}, "updatedAt": {"type": "string"}, "createdAt": {"type": "string"}}, "required": ["id", "balancerId", "type", "priority", "spec", "tags", "updatedAt", "createdAt"]}}}, "required": ["status", "count", "kind", "items"]}}, "required": ["response"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "context": {"type": "string"}}, "required": ["title", "context"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "\u7279\u522b\u653e\u9001\u5bfc\u8bfb | \u7814\u7a76 Vue \u5b98\u65b9\u751f\u6001\u7684\u5b9e\u73b0\u539f\u7406", "context" : "\n <p data-nodeid=\"57282\">\n Vue.js\n \u662f\u4e00\u4e2a\u6e10\u8fdb\u5f0f\u7684\u524d\u7aef\u6846\u67b6\uff0c\u9664\u4e86\u63d0\u4f9b\u597d\u7528\u7684\u6838\u5fc3\u5e93\u4e4b\u5916\uff0c\u5b98\u65b9\u8fd8\u63d0\u4f9b\u4e86\u524d\u7aef\u8def\u7531\u89e3\u51b3\u65b9\u6848\u3002\n </p>\n\n <p data-nodeid=\"57260\">\n \u5f53\u6211\u4eec\u5f00\u53d1\u5927\u578b\u5e94\u7528\u7684\u65f6\u5019\uff0c\u90fd\u79bb\u4e0d\u5f00\u524d\u7aef\u8def\u7531\uff0c\u56e0\u6b64\u4e86\u89e3\u5b83\u7684\u5b9e\u73b0\u539f\u7406\uff0c\u975e\u5e38\u6709\u52a9\u4e8e\u6211\u4eec\u66f4\u597d\u5730\u638c\u63e1\u548c\u5e94\u7528\uff0c\u5982\u679c\u5728\u4f7f\u7528\u8fc7\u7a0b\u4e2d\u51fa\u73b0\n Bug\uff0c\u5e0c\u671b\u4f60\u4e5f\u53ef\u4ee5\u4ece\u6e90\u7801\u5c42\u9762\u53bb\u627e\u5230\u95ee\u9898\u7684\u672c\u8d28\u3002\n </p>\n <p data-nodeid=\"57261\">\n \u90a3\u4e48\u63a5\u4e0b\u6765\uff0c\u5c31\u8ba9\u6211\u4eec\u4e00\u8d77\u6765\u63a2\u7a76\u5176\u5b9e\u73b0\u539f\u7406\u5427\u3002\n </p>\n "} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "context": {"type": "string"}}, "required": ["title", "context"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"generated_at" : "2017-01-27T09:37:26.117550", "required_by" : ["ztfy.i18n", "z3c.language.negotiator", "ztfy.myams"], "requires" : ["setuptools", "zope.app.generations", "zope.component", "zope.interface", "zope.publisher", "zope.session"], "package" : "z3c.language.session"} | json_instruct | {"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"defaultTitle": {"type": "string"}, "usingComponents": {"type": "object", "properties": {"tips-dialog": {"type": "string"}, "am-button": {"type": "string"}, "am-icon": {"type": "string"}, "list-item": {"type": "string"}, "input-item": {"type": "string"}}, "required": ["tips-dialog", "am-button", "am-icon", "list-item", "input-item"]}}, "required": ["defaultTitle", "usingComponents"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"defaultTitle" : "Tips", "usingComponents" : {"tips-dialog" : "../../../es/tips/tips-dialog/index", "am-button" : "../../../es/button/index", "am-icon" : "../../../es/am-icon/index", "list-item" : "../../../es/list/list-item/index", "input-item" : "../../../es/input-item/index"}} | json_instruct | {"type": "object", "properties": {"defaultTitle": {"type": "string"}, "usingComponents": {"type": "object", "properties": {"tips-dialog": {"type": "string"}, "am-button": {"type": "string"}, "am-icon": {"type": "string"}, "list-item": {"type": "string"}, "input-item": {"type": "string"}}, "required": ["tips-dialog", "am-button", "am-icon", "list-item", "input-item"]}}, "required": ["defaultTitle", "usingComponents"], "$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"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "decimals", "address", "chainId"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Token EhKc", "symbol" : "EhKcm", "decimals" : 6, "address" : "EhKcmiXoMwhmkuhjpf8bEiTbSQUrbX8wR3y4GBGtBL3L", "chainId" : 103} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "decimals", "address", "chainId"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "string"}, "accrediting_agency": {"type": "string"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Girne American University", "alt_name" : "Girne Amerikan \u00dcniversitesi \u2013 The American University, Girne-Cyprus (GAU)", "country" : "Turkey", "state" : null, "address" : {"street" : "University Drive", "city" : "Girne", "province" : "Mersin", "postal_code" : "10"}, "contact" : {"telephone" : "+90(392) 650-20-00", "website" : "http://www.gau.edu.tr", "email" : "info@gau.edu.tr; gau@gau.edu.tr", "fax" : "+90(392) 650 20-70"}, "funding" : "Private", "languages" : null, "academic_year" : "September to August. (September to January; February to June; June to August)", "accrediting_agency" : "Council of Higher Education (Y\u00d6K); Higher Education Planning, Evaluation, Accreditation and Coordination Council of North Cyprus (Y\u00d6DAK)"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "string"}, "accrediting_agency": {"type": "string"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"builds": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "builder_type": {"type": "string"}, "build_time": {"type": "integer"}, "files": {"type": "null"}, "artifact_id": {"type": "string"}, "packer_run_uuid": {"type": "string"}, "custom_data": {"type": "null"}}, "required": ["name", "builder_type", "build_time", "files", "artifact_id", "packer_run_uuid", "custom_data"]}}, "last_run_uuid": {"type": "string"}}, "required": ["builds", "last_run_uuid"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"builds" : [{"name" : "virtualbox-iso", "builder_type" : "virtualbox-iso", "build_time" : 1543776796, "files" : null, "artifact_id" : "", "packer_run_uuid" : "95b5be2d-7316-e652-7b9b-63be4a77e1c1", "custom_data" : null}, {"name" : "virtualbox-iso", "builder_type" : "virtualbox-iso", "build_time" : 1547877642, "files" : null, "artifact_id" : "", "packer_run_uuid" : "97885fba-3bc4-fcef-8657-1cbd5e963ba5", "custom_data" : null}, {"name" : "virtualbox-iso", "builder_type" : "virtualbox-iso", "build_time" : 1551750246, "files" : null, "artifact_id" : "", "packer_run_uuid" : "6a4e556e-19f0-b6d9-3c5d-b117841ac4ac", "custom_data" : null}, {"name" : "virtualbox-iso", "builder_type" : "virtualbox-iso", "build_time" : 1555965979, "files" : null, "artifact_id" : "", "packer_run_uuid" : "585fe34c-da7b-2c79-18ac-f692a8d9c559", "custom_data" : null}, {"name" : "virtualbox-iso", "builder_type" : "virtualbox-iso", "build_time" : 1557725257, "files" : null, "artifact_id" : "", "packer_run_uuid" : "eb54950e-9a1b-59a0-b2d8-78f45b49dc29", "custom_data" : null}, {"name" : "virtualbox-iso", "builder_type" : "virtualbox-iso", "build_time" : 1561625122, "files" : null, "artifact_id" : "", "packer_run_uuid" : "c21c8001-9624-dc60-2613-6242d8b9407f", "custom_data" : null}], "last_run_uuid" : "c21c8001-9624-dc60-2613-6242d8b9407f"} | json_instruct | {"type": "object", "properties": {"builds": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "builder_type": {"type": "string"}, "build_time": {"type": "integer"}, "files": {"type": "null"}, "artifact_id": {"type": "string"}, "packer_run_uuid": {"type": "string"}, "custom_data": {"type": "null"}}, "required": ["name", "builder_type", "build_time", "files", "artifact_id", "packer_run_uuid", "custom_data"]}}, "last_run_uuid": {"type": "string"}}, "required": ["builds", "last_run_uuid"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Lucas Ortis": {"type": "string"}}, "required": ["Lucas Ortis"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}, "source_files": {"type": "string"}}, "required": ["name", "version", "summary", "homepage", "description", "license", "authors", "source", "platforms", "requires_arc", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "VLRNotificationScheduler", "version" : "0.9.0", "summary" : "Simple notification scheduler using thresholds", "homepage" : "https://github.com/rezzza/VLRNotificationScheduler", "description" : "When you want to schedule actions in your app depending of an event count or some days ellapsed.", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"Lucas Ortis" : "lucas.ortis@verylastroom.com"}, "source" : {"git" : "https://github.com/rezzza/VLRNotificationScheduler.git", "tag" : "v0.9.0"}, "platforms" : {"ios" : "6.0"}, "requires_arc" : true, "source_files" : "VLRNotificationScheduler"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Lucas Ortis": {"type": "string"}}, "required": ["Lucas Ortis"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}, "source_files": {"type": "string"}}, "required": ["name", "version", "summary", "homepage", "description", "license", "authors", "source", "platforms", "requires_arc", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x103c3a209da59d3e7c4a89307e66521e081cfdf0", "tool" : "manticore", "start" : 1563918814.3241549, "end" : 1563920616.068918, "duration" : 1801.74476313591, "analysis" : [[], [], [{"name" : "INVALID instruction", "line" : 24, "code" : ""}], []]} | 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": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "urox", "definition" : "The aurochs."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.0.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.0.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"latest_version" : ["0.0.1"], "meta" : {"description" : "Automake of Native Client from Google", "homepage" : "http://alexchi.me/", "license" : "Creative Commons Attribution 3.0 Unported License"}, "versions" : {"0.0.1" : {"sha256" : "4247f371edf500f4c7365046c64817402598e4fc458a7077cf8cc7c32f3a8a53", "url" : "https://files.pythonhosted.org/packages/94/c2/c9691c9384eeb5629669eebed1a8d23e8275f2810300e61bc8293009d4fb/naclautomake-0.0.1.tar.gz"}}} | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.0.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.0.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"oq": {"type": "string"}, "q": {"type": "string"}, "rvnm": {"type": "string"}, "stcd": {"type": "string"}, "stnm": {"type": "string"}, "tm": {"type": "integer"}, "wptn": {"type": "string"}, "z": {"type": "string"}}, "required": ["oq", "q", "rvnm", "stcd", "stnm", "tm", "wptn", "z"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"oq" : "0", "q" : "5870", "rvnm" : "\u957f\u6c5f", "stcd" : "60105400", "stnm" : "\u5bf8\u6ee9", "tm" : 1606636800000, "wptn" : "4", "z" : "174.01"}, {"oq" : "0", "q" : "390", "rvnm" : "\u4e4c\u6c5f", "stcd" : "60803000", "stnm" : "\u6b66\u9686", "tm" : 1606636800000, "wptn" : "4", "z" : "173.93"}, {"oq" : "0", "q" : "6430", "rvnm" : "\u957f\u6c5f", "stcd" : "60107300", "stnm" : "\u5b9c\u660c", "tm" : 1606636800000, "wptn" : "6", "z" : "39.63"}, {"oq" : "0", "q" : "7080", "rvnm" : "\u957f\u6c5f", "stcd" : "60108300", "stnm" : "\u6c99\u5e02", "tm" : 1606636800000, "wptn" : "5", "z" : "30.43"}, {"oq" : "0", "q" : "0", "rvnm" : "\u957f\u6c5f", "stcd" : "60111200", "stnm" : "\u57ce\u9675\u77f6(\u83b2)", "tm" : 1606636800000, "wptn" : "6", "z" : "21.63"}, {"oq" : "0", "q" : "13600", "rvnm" : "\u957f\u6c5f", "stcd" : "60112200", "stnm" : "\u6c49\u53e3", "tm" : 1606636800000, "wptn" : "6", "z" : "16.09"}, {"oq" : "0", "q" : "15200", "rvnm" : "\u957f\u6c5f", "stcd" : "60113400", "stnm" : "\u4e5d\u6c5f", "tm" : 1606636800000, "wptn" : "5", "z" : "10.661"}, {"oq" : "0", "q" : "19200", "rvnm" : "\u957f\u6c5f", "stcd" : "60115000", "stnm" : "\u5927\u901a", "tm" : 1606636800000, "wptn" : "4", "z" : "6.42"}, {"oq" : "0", "q" : "4120", "rvnm" : "\u6d1e\u5ead\u6e56", "stcd" : "61512000", "stnm" : "\u57ce\u9675\u77f6(\u4e03)", "tm" : 1606636800000, "wptn" : "6", "z" : "21.66"}, {"oq" : "0", "q" : "1840", "rvnm" : "\u9131\u9633\u6e56", "stcd" : "62601600", "stnm" : "\u6e56\u53e3", "tm" : 1606636800000, "wptn" : "4", "z" : "9.77"}, {"oq" : "0", "q" : "0", "rvnm" : "\u957f\u6c5f", "stcd" : "60107000", "stnm" : "\u8305\u576a(\u4e8c)", "tm" : 1606636800000, "wptn" : "4", "z" : "173.914"}, {"oq" : "5730", "q" : "0", "rvnm" : "\u957f\u6c5f", "stcd" : "60106980", "stnm" : "\u4e09\u5ce1\u6c34\u5e93", "tm" : 1606633200000, "wptn" : "4", "z" : "173.92"}, {"oq" : "0", "q" : "0", "rvnm" : "\u6c49\u6c5f", "stcd" : "61802500", "stnm" : "\u9f99\u738b\u5e99", "tm" : 1606636800000, "wptn" : "6", "z" : "163.96"}, {"oq" : "752", "q" : "0", "rvnm" : "\u6c49\u6c5f", "stcd" : "61802700", "stnm" : "\u4e39\u6c5f\u53e3\u6c34\u5e93", "tm" : 1606633200000, "wptn" : "4", "z" : "163.96"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"oq": {"type": "string"}, "q": {"type": "string"}, "rvnm": {"type": "string"}, "stcd": {"type": "string"}, "stnm": {"type": "string"}, "tm": {"type": "integer"}, "wptn": {"type": "string"}, "z": {"type": "string"}}, "required": ["oq", "q", "rvnm", "stcd", "stnm", "tm", "wptn", "z"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "serve": {"type": "string"}}, "required": ["build", "serve"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/plugin-proposal-class-properties": {"type": "string"}, "@babel/plugin-transform-runtime": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "cssnano": {"type": "string"}, "parcel-bundler": {"type": "string"}}, "required": ["@babel/core", "@babel/plugin-proposal-class-properties", "@babel/plugin-transform-runtime", "@babel/preset-env", "cssnano", "parcel-bundler"]}, "dependencies": {"type": "object", "properties": {"@babel/runtime": {"type": "string"}, "@tweenjs/tween.js": {"type": "string"}, "es6-tween": {"type": "string"}, "three": {"type": "string"}}, "required": ["@babel/runtime", "@tweenjs/tween.js", "es6-tween", "three"]}}, "required": ["name", "version", "description", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "trumpyjumpy", "version" : "1.0.0", "description" : "Experimental JavaScript game made with ThreeJs", "scripts" : {"build" : "parcel build index.html assets/**/* --no-source-maps", "serve" : "parcel index.html assets/**/*"}, "repository" : {"type" : "git", "url" : "git+https://github.com/xi-osman/trumpyjumpy.git"}, "keywords" : ["ThreeJs", "Parcel", "Game", "Jump"], "author" : "Osvaldo Perez", "license" : "MIT", "bugs" : {"url" : "https://github.com/xi-osman/trumpyjumpy/issues"}, "homepage" : "https://github.com/xi-osman/trumpyjumpy#readme", "devDependencies" : {"@babel/core" : "^7.6.2", "@babel/plugin-proposal-class-properties" : "^7.5.5", "@babel/plugin-transform-runtime" : "^7.6.2", "@babel/preset-env" : "^7.6.2", "cssnano" : "^4.1.10", "parcel-bundler" : "^1.12.4"}, "dependencies" : {"@babel/runtime" : "^7.6.2", "@tweenjs/tween.js" : "^18.5.0", "es6-tween" : "^5.5.10", "three" : "^0.108.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "serve": {"type": "string"}}, "required": ["build", "serve"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/plugin-proposal-class-properties": {"type": "string"}, "@babel/plugin-transform-runtime": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "cssnano": {"type": "string"}, "parcel-bundler": {"type": "string"}}, "required": ["@babel/core", "@babel/plugin-proposal-class-properties", "@babel/plugin-transform-runtime", "@babel/preset-env", "cssnano", "parcel-bundler"]}, "dependencies": {"type": "object", "properties": {"@babel/runtime": {"type": "string"}, "@tweenjs/tween.js": {"type": "string"}, "es6-tween": {"type": "string"}, "three": {"type": "string"}}, "required": ["@babel/runtime", "@tweenjs/tween.js", "es6-tween", "three"]}}, "required": ["name", "version", "description", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"nom": {"type": "string"}, "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" : "Evricourt", "circ" : "6\u00e8me circonscription", "dpt" : "Oise", "inscrits" : 129, "abs" : 70, "votants" : 59, "blancs" : 1, "nuls" : 0, "exp" : 58, "res" : [{"nuance" : "FN", "nom" : "M. Michel GUINIOT", "voix" : 41}, {"nuance" : "REM", "nom" : "Mme Carole BUREAU-BONNARD", "voix" : 17}]} | 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": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Victor": {"type": "string"}}, "required": ["Victor"]}, "social_media_url": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "dependencies": {"type": "object", "properties": {"ReactiveCocoa": {"type": "array", "items": {"type": "string"}}, "Alamofire": {"type": "array", "items": {"type": "string"}}}, "required": ["ReactiveCocoa", "Alamofire"]}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "social_media_url", "platforms", "source", "source_files", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ReactiveAlamofire", "version" : "1.0.0-alpha.2", "summary" : "Alamofire 3 integration for ReactiveCocoa 4", "homepage" : "https://github.com/envoy/ReactiveAlamofire", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"Victor" : "victor@envoy.com"}, "social_media_url" : "http://twitter.com/victorlin", "platforms" : {"ios" : "8.0"}, "source" : {"git" : "https://github.com/envoy/ReactiveAlamofire.git", "tag" : "v1.0.0-alpha.2"}, "source_files" : "ReactiveAlamofire/*.swift", "dependencies" : {"ReactiveCocoa" : ["~> 4.0"], "Alamofire" : ["~> 3.0"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Victor": {"type": "string"}}, "required": ["Victor"]}, "social_media_url": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "dependencies": {"type": "object", "properties": {"ReactiveCocoa": {"type": "array", "items": {"type": "string"}}, "Alamofire": {"type": "array", "items": {"type": "string"}}}, "required": ["ReactiveCocoa", "Alamofire"]}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "social_media_url", "platforms", "source", "source_files", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}, "code": {"type": "string"}, "hash": {"type": "string"}}, "required": ["image", "attributes", "code", "hash"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"image" : "https://ipfs.infura.io/ipfs/QmSw49WZXGPMK9PkYYCsWZUZ9rKBH52SHEy3oMUNY3cVx7", "attributes" : [{"trait_type" : "Type", "value" : "Human"}, {"trait_type" : "Gender", "value" : "Female"}, {"trait_type" : "Hair Style", "value" : "Page Boy"}, {"trait_type" : "Sweater", "value" : "Knit Wrap"}, {"trait_type" : "Sweater Color", "value" : "Lilac"}, {"trait_type" : "Glasses", "value" : "Big"}, {"trait_type" : "Glasses Color", "value" : "Red"}, {"trait_type" : "Earrings", "value" : "Cluster"}, {"trait_type" : "Earrings Color", "value" : "Blue"}, {"trait_type" : "Lipstick", "value" : "Red"}, {"trait_type" : "Hair Color", "value" : "Gray"}], "code" : "hfssk1ha4#b2afafto17#c8a2c8gls1ear9", "hash" : "8a34e9bcc42cc89826f927be380e55e0b0433aadeec6eca9a37881c54f821e84"} | json_instruct | {"type": "object", "properties": {"image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}, "code": {"type": "string"}, "hash": {"type": "string"}}, "required": ["image", "attributes", "code", "hash"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"editor-style.css": {"type": "string"}, "main.css": {"type": "string"}, "modernizr.js": {"type": "string"}, "jquery.js": {"type": "string"}, "main.js": {"type": "string"}}, "required": ["editor-style.css", "main.css", "modernizr.js", "jquery.js", "main.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"editor-style.css" : "editor-style-05b2218a.css", "main.css" : "main-a6b0833e.css", "modernizr.js" : "modernizr-45f0e1f4.js", "jquery.js" : "jquery-cb5eadd1.js", "main.js" : "main-6d9c56fb.js"} | json_instruct | {"type": "object", "properties": {"editor-style.css": {"type": "string"}, "main.css": {"type": "string"}, "modernizr.js": {"type": "string"}, "jquery.js": {"type": "string"}, "main.js": {"type": "string"}}, "required": ["editor-style.css", "main.css", "modernizr.js", "jquery.js", "main.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"IdentityType": {"type": "string"}, "EventSource": {"type": "string"}, "UserName": {"type": "string"}, "ResourceId": {"type": "string"}, "ResourceName": {"type": "string"}, "EventTime": {"type": "string"}, "UserAgent": {"type": "string"}, "AWSRegion": {"type": "string"}, "EventId": {"type": "string"}, "Service": {"type": "string"}, "EventName": {"type": "string"}}, "required": ["IdentityType", "EventSource", "UserName", "ResourceId", "ResourceName", "EventTime", "UserAgent", "AWSRegion", "EventId", "Service", "EventName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"IdentityType" : "IAMUser", "EventSource" : "redshift.amazonaws.com", "UserName" : "test001@test.com", "ResourceId" : "arn:aws:redshift:us-east-1:999999999999:cluster:redshift-cluster-1", "ResourceName" : "redshift-cluster-1", "EventTime" : "2021-06-24T12:19:40Z", "UserAgent" : "aws-internal/3 aws-sdk-java/1.11.965 Linux/4.9.230-0.1.ac.224.84.332.metal1.x86_64 OpenJDK_64-Bit_Server_VM/25.282-b08 java/1.8.0_282 vendor/Oracle_Corporation", "AWSRegion" : "us-east-1", "EventId" : "54677ea0-d177-495e-b418-5d7a84942d70", "Service" : "Cluster", "EventName" : "CreateCluster"} | json_instruct | {"type": "object", "properties": {"IdentityType": {"type": "string"}, "EventSource": {"type": "string"}, "UserName": {"type": "string"}, "ResourceId": {"type": "string"}, "ResourceName": {"type": "string"}, "EventTime": {"type": "string"}, "UserAgent": {"type": "string"}, "AWSRegion": {"type": "string"}, "EventId": {"type": "string"}, "Service": {"type": "string"}, "EventName": {"type": "string"}}, "required": ["IdentityType", "EventSource", "UserName", "ResourceId", "ResourceName", "EventTime", "UserAgent", "AWSRegion", "EventId", "Service", "EventName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"parts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "hooks": {"type": "object", "properties": {"clientVars": {"type": "string"}, "eejsBlock_scripts": {"type": "string"}}, "required": ["clientVars", "eejsBlock_scripts"]}, "client_hooks": {"type": "object", "properties": {"aceInitialized": {"type": "string"}}, "required": ["aceInitialized"]}}, "required": ["name", "hooks", "client_hooks"]}}}, "required": ["parts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parts" : [{"name" : "chat_always_on_screen_and_tokbox_link", "hooks" : {"clientVars" : "ep_chat_always_on_screen_and_tokbox_link/index:clientVars", "eejsBlock_scripts" : "ep_chat_always_on_screen_and_tokbox_link/index:eejsBlock_scripts"}, "client_hooks" : {"aceInitialized" : "ep_chat_always_on_screen_and_tokbox_link/static/js/init"}}]} | json_instruct | {"type": "object", "properties": {"parts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "hooks": {"type": "object", "properties": {"clientVars": {"type": "string"}, "eejsBlock_scripts": {"type": "string"}}, "required": ["clientVars", "eejsBlock_scripts"]}, "client_hooks": {"type": "object", "properties": {"aceInitialized": {"type": "string"}}, "required": ["aceInitialized"]}}, "required": ["name", "hooks", "client_hooks"]}}}, "required": ["parts"], "$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": {"id": {"type": "string"}, "longname": {"type": "string"}, "name": {"type": "string"}, "scope": {"type": "string"}, "kind": {"type": "string"}, "description": {"type": "string"}, "properties": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "object", "properties": {"names": {"type": "array", "items": {"type": "string"}}}, "required": ["names"]}, "description": {"type": "string"}, "name": {"type": "string"}}, "required": ["type", "description", "name"]}}, "meta": {"type": "object", "properties": {"lineno": {"type": "integer"}, "filename": {"type": "string"}, "path": {"type": "string"}}, "required": ["lineno", "filename", "path"]}, "order": {"type": "integer"}}, "required": ["id", "longname", "name", "scope", "kind", "description", "properties", "meta", "order"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "personality", "longname" : "personality", "name" : "personality", "scope" : "global", "kind" : "namespace", "description" : "A personality object, documented using the more concise `@property` notation.", "properties" : [{"type" : {"names" : ["object"]}, "description" : "openness", "name" : "openness"}, {"type" : {"names" : ["object"]}, "description" : "conscientiousness", "name" : "conscientiousness"}, {"type" : {"names" : ["*"]}, "description" : "extraversion", "name" : "extraversion"}, {"type" : {"names" : ["object"]}, "description" : "agreeableness", "name" : "agreeableness"}, {"type" : {"names" : ["object"]}, "description" : "neuroticism", "name" : "neuroticism"}], "meta" : {"lineno" : 11, "filename" : "0-src.js", "path" : "C:\\Users\\IEUser\\Documents\\testbed\\build-win32\\jsdoc\\global\\property2"}, "order" : 0}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "longname": {"type": "string"}, "name": {"type": "string"}, "scope": {"type": "string"}, "kind": {"type": "string"}, "description": {"type": "string"}, "properties": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "object", "properties": {"names": {"type": "array", "items": {"type": "string"}}}, "required": ["names"]}, "description": {"type": "string"}, "name": {"type": "string"}}, "required": ["type", "description", "name"]}}, "meta": {"type": "object", "properties": {"lineno": {"type": "integer"}, "filename": {"type": "string"}, "path": {"type": "string"}}, "required": ["lineno", "filename", "path"]}, "order": {"type": "integer"}}, "required": ["id", "longname", "name", "scope", "kind", "description", "properties", "meta", "order"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"getAllItems": {"type": "object", "properties": {"SAMPLE_TABLE": {"type": "string"}}, "required": ["SAMPLE_TABLE"]}, "getById": {"type": "object", "properties": {"SAMPLE_TABLE": {"type": "string"}}, "required": ["SAMPLE_TABLE"]}, "putItem": {"type": "object", "properties": {"SAMPLE_TABLE": {"type": "string"}}, "required": ["SAMPLE_TABLE"]}}, "required": ["getAllItems", "getById", "putItem"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"getAllItems" : {"SAMPLE_TABLE" : "<TABLE-NAME>"}, "getById" : {"SAMPLE_TABLE" : "<TABLE-NAME>"}, "putItem" : {"SAMPLE_TABLE" : "<TABLE-NAME>"}} | json_instruct | {"type": "object", "properties": {"getAllItems": {"type": "object", "properties": {"SAMPLE_TABLE": {"type": "string"}}, "required": ["SAMPLE_TABLE"]}, "getById": {"type": "object", "properties": {"SAMPLE_TABLE": {"type": "string"}}, "required": ["SAMPLE_TABLE"]}, "putItem": {"type": "object", "properties": {"SAMPLE_TABLE": {"type": "string"}}, "required": ["SAMPLE_TABLE"]}}, "required": ["getAllItems", "getById", "putItem"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Graph Clustering With Missing Data: Convex Algorithms and Analysis.", "fields" : ["matrix norm", "contextual image classification", "regularization", "clustering coefficient", "stochastic block model"], "abstract" : "We consider the problem of finding clusters in an unweighted graph, when the graph is partially observed. We analyze two programs, one which works for dense graphs and one which works for both sparse and dense graphs, but requires some a priori knowledge of the total cluster size, that are based on the convex optimization approach for low-rank matrix recovery using nuclear norm minimization. For the commonly used Stochastic Block Model, we obtain explicit bounds on the parameters of the problem (size and sparsity of clusters, the amount of observed data) and the regularization parameter characterize the success and failure of the programs. We corroborate our theoretical findings through extensive simulations. We also run our algorithm on a real data set obtained from crowdsourcing an image classification task on the Amazon Mechanical Turk, and observe significant performance improvement over traditional methods such as k-means.", "citation" : "Citations (11)", "year" : "2014", "departments" : ["California Institute of Technology", "California Institute of Technology", "California Institute of Technology"], "conf" : "nips", "authors" : ["Ramya Korlakai Vinayak.....http://dblp.org/pers/hd/v/Vinayak:Ramya_Korlakai", "Samet Oymak.....http://dblp.org/pers/hd/o/Oymak:Samet", "Babak Hassibi.....http://dblp.org/pers/hd/h/Hassibi:Babak"], "pages" : 9} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1991, 7], [1992, 7], [1995, 6], [1996, 17], [1997, 15], [1998, 22], [1999, 24], [2000, 22], [2001, 36], [2002, 41], [2003, 44], [2004, 49], [2005, 64], [2006, 52], [2007, 64], [2008, 71], [2009, 57], [2010, 42], [2011, 51], [2012, 59], [2013, 38], [2014, 47]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "homepage"]}}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ezsystems/ezpublish-kernel": {"type": "string"}, "gregwar/captcha-bundle": {"type": "string"}}, "required": ["php", "ezsystems/ezpublish-kernel", "gregwar/captcha-bundle"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"pvr\\EzCommentBundle": {"type": "string"}}, "required": ["pvr\\EzCommentBundle"]}}, "required": ["psr-0"]}, "target-dir": {"type": "string"}}, "required": ["name", "description", "keywords", "homepage", "license", "authors", "minimum-stability", "prefer-stable", "require", "autoload", "target-dir"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "dspe/pvrezcommentbundle", "description" : "pvr EzComemnt Bundle", "keywords" : ["symfony2", "comment", "pvr", "ezpublish"], "homepage" : "https://github.com/dspe/pvrEzCommentBundle", "license" : "MIT", "authors" : [{"name" : "Philippe Vincent-Royol", "homepage" : "http://www.pheelit.fr/"}], "minimum-stability" : "dev", "prefer-stable" : true, "require" : {"php" : ">=5.4", "ezsystems/ezpublish-kernel" : ">=6.6.0", "gregwar/captcha-bundle" : "^2.0"}, "autoload" : {"psr-0" : {"pvr\\EzCommentBundle" : ""}}, "target-dir" : "pvr/EzCommentBundle"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "homepage"]}}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ezsystems/ezpublish-kernel": {"type": "string"}, "gregwar/captcha-bundle": {"type": "string"}}, "required": ["php", "ezsystems/ezpublish-kernel", "gregwar/captcha-bundle"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"pvr\\EzCommentBundle": {"type": "string"}}, "required": ["pvr\\EzCommentBundle"]}}, "required": ["psr-0"]}, "target-dir": {"type": "string"}}, "required": ["name", "description", "keywords", "homepage", "license", "authors", "minimum-stability", "prefer-stable", "require", "autoload", "target-dir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "nominations": {"type": "integer"}, "wins": {"type": "integer"}}, "required": ["id", "title", "year", "type", "nominations", "wins"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 27963, "title" : "Pan-Humanism: Hope and Pragmatics", "year" : 2017, "type" : "novelette", "nominations" : 0, "wins" : -1}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "nominations": {"type": "integer"}, "wins": {"type": "integer"}}, "required": ["id", "title", "year", "type", "nominations", "wins"]}, "$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" : "511321243200", "text" : "\u7ea2\u82b1\u6751\u6751\u59d4\u4f1a"}, {"id" : "511321243201", "text" : "\u9ad8\u6cb3\u6751\u6751\u59d4\u4f1a"}, {"id" : "511321243202", "text" : "\u82f1\u96c4\u6751\u6751\u59d4\u4f1a"}, {"id" : "511321243203", "text" : "\u5357\u5c71\u6751\u6751\u59d4\u4f1a"}, {"id" : "511321243204", "text" : "\u897f\u6c34\u6751\u6751\u59d4\u4f1a"}, {"id" : "511321243205", "text" : "\u524d\u8fdb\u6751\u6751\u59d4\u4f1a"}, {"id" : "511321243206", "text" : "\u5148\u950b\u6751\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#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 404348455, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "a05d60719a656d06497ea59622365530", "wof:id" : 404348455, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [0.3, 43.72056, 0.3, 43.72056], "geometry" : {"coordinates" : [0.3, 43.72056], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"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" : "Saud, Pagudpud, Ilocos Norte, Ilocos Region (Region I), PH", "locale" : "ph.ilocos-region-region-i.ilocos-norte.pagudpud.saud", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "11", "region_reference" : "1", "region_name" : "Ilocos Region (Region I)", "province_id" : "34", "province_reference" : "34", "province_name" : "Ilocos Norte", "city_id" : "960", "city_reference" : "603", "city_name" : "Pagudpud", "barangay_id" : "27390", "barangay_reference" : "14439", "barangay_name" : "Saud"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[120.783272, 18.595341], [120.784271, 18.59561], [120.785049, 18.595739], [120.785637, 18.595869], [120.786186, 18.595791], [120.787201, 18.595249], [120.787781, 18.59478], [120.788094, 18.59366], [120.789551, 18.59271], [120.791878, 18.594669], [120.792976, 18.596239], [120.795982, 18.59717], [120.797073, 18.598], [120.798813, 18.599621], [120.800751, 18.60132], [120.804321, 18.603121], [120.808311, 18.60153], [120.810059, 18.59984], [120.81147, 18.597639], [120.813118, 18.59362], [120.8097, 18.590691], [120.80854, 18.59207], [120.806679, 18.59236], [120.805313, 18.594219], [120.805183, 18.595779], [120.804314, 18.596069], [120.801437, 18.591961], [120.797752, 18.591419], [120.797417, 18.58914], [120.796837, 18.585751], [120.792953, 18.58267], [120.788643, 18.582781], [120.784988, 18.58341], [120.784843, 18.583441], [120.785004, 18.583611], [120.785004, 18.583891], [120.785278, 18.584169], [120.785278, 18.58444], [120.785004, 18.584721], [120.785004, 18.58556], [120.785278, 18.585831], [120.785278, 18.586109], [120.785553, 18.58639], [120.785553, 18.589451], [120.785278, 18.58972], [120.785278, 18.59111], [120.785553, 18.591391], [120.785278, 18.591669], [120.785278, 18.592779], [120.785004, 18.59306], [120.785004, 18.593611], [120.783272, 18.595341]]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "category": {"type": "string"}, "games": {"type": "object", "properties": {"nl": {"type": "object", "properties": {"orderable": {"type": "boolean"}, "sources": {"type": "array", "items": {"type": "string"}}}, "required": ["orderable", "sources"]}}, "required": ["nl"]}}, "required": ["id", "name", "category", "games"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "rotten-apple", "name" : "Rotten Apple", "category" : "Fruit", "games" : {"nl" : {"orderable" : false, "sources" : ["Dying perfect apple tree", "rotten apple tree"]}}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "category": {"type": "string"}, "games": {"type": "object", "properties": {"nl": {"type": "object", "properties": {"orderable": {"type": "boolean"}, "sources": {"type": "array", "items": {"type": "string"}}}, "required": ["orderable", "sources"]}}, "required": ["nl"]}}, "required": ["id", "name", "category", "games"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01021399": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01021399"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Topology", "objects" : {"E01021399" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00108692", "LAD11CD" : "E07000067"}, "arcs" : [[0, 1]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00108695", "LAD11CD" : "E07000067"}, "arcs" : [[2, 3, 4]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00108697", "LAD11CD" : "E07000067"}, "arcs" : [[5, -2, 6, -4, 7]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00108699", "LAD11CD" : "E07000067"}, "arcs" : [[8, 9]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00108702", "LAD11CD" : "E07000067"}, "arcs" : [[-9, 10, -8, -3, 11]]}]}}, "arcs" : [[[4930, 7555], [-1390, 1267], [2071, 951], [1717, 226], [131, -751], [262, -96], [-657, -370]], [[7064, 8782], [-629, -409], [159, -264], [-1664, -554]], [[5687, 3629], [-402, 201]], [[5285, 3830], [1008, 664], [-856, 556], [608, 740], [-69, 639], [576, 160], [471, -150], [172, 292]], [[7195, 6731], [236, 42], [267, -342], [660, -29], [154, -250], [-369, -355], [125, -563], [-369, -50], [-786, -755], [-304, 84], [423, -444], [-1545, -440]], [[1138, 4047], [643, 750], [2114, 578], [-75, 503], [-415, 169], [1525, 1508]], [[7064, 8782], [-385, -680], [762, -146], [-739, -81], [609, -834], [-336, -140], [220, -170]], [[5285, 3830], [-609, 269], [-353, -305], [-3185, 253]], [[6195, 923], [-946, 465], [-1262, 209], [-171, 289], [352, 946], [418, 300], [-117, 233], [1141, 63], [2000, -1458], [1039, 58]], [[8649, 2028], [322, -342], [-2776, -763]], [[6195, 923], [-1056, -316], [-99, 141], [-1359, -748], [-915, 740], [-510, -123], [-2256, 1091], [637, 1082], [-64, 907], [565, 350]], [[5687, 3629], [1543, -584], [1898, 562], [279, -255], [592, -305], [-338, 26], [174, -226], [-713, -216], [-473, -603]]], "transform" : {"scale" : [1.3958702074217344e-06, 1.4102554688062831e-06], "translate" : [0.579756695256825, 51.970772816176925]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01021399": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01021399"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"run_scripts": {"type": "object", "properties": {"run_servers": {"type": "string"}}, "required": ["run_servers"]}, "should_compile": {"type": "boolean"}, "compile_profile": {"type": "string"}, "compress": {"type": "boolean"}, "deploy_location": {"type": "string"}, "build_configuration": {"type": "string"}, "build_platform": {"type": "string"}, "build_command": {"type": "string"}, "build_flags": {"type": "array", "items": {"type": "string"}}}, "required": ["run_scripts", "should_compile", "compile_profile", "compress", "deploy_location", "build_configuration", "build_platform", "build_command", "build_flags"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"run_scripts" : {"run_servers" : "start %~dp0WindowsNoEditor/DriftMMOPlugin.exe /Game/Maps/Map_Red_P?listen -port=20000 -nullRHI -log \n start %~dp0WindowsNoEditor/DriftMMOPlugin.exe /Game/Maps/Map_Blue_P?listen -port=20001 -nullRHI -log"}, "should_compile" : true, "compile_profile" : "default_source", "compress" : false, "deploy_location" : "", "build_configuration" : "Development", "build_platform" : "Win64", "build_command" : "BuildCookRun", "build_flags" : ["cook", "iterate", "nop4", "nocompileeditor", "build", "stage", "archive", "pak", "prereqs"]} | json_instruct | {"type": "object", "properties": {"run_scripts": {"type": "object", "properties": {"run_servers": {"type": "string"}}, "required": ["run_servers"]}, "should_compile": {"type": "boolean"}, "compile_profile": {"type": "string"}, "compress": {"type": "boolean"}, "deploy_location": {"type": "string"}, "build_configuration": {"type": "string"}, "build_platform": {"type": "string"}, "build_command": {"type": "string"}, "build_flags": {"type": "array", "items": {"type": "string"}}}, "required": ["run_scripts", "should_compile", "compile_profile", "compress", "deploy_location", "build_configuration", "build_platform", "build_command", "build_flags"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"stove": {"type": "object", "properties": {"sideall": {"type": "string"}, "sidey+": {"type": "string"}, "sidey-": {"type": "string"}}, "required": ["sideall", "sidey+", "sidey-"]}, "grindstone": {"type": "object", "properties": {"sideall": {"type": "string"}, "sidey+": {"type": "string"}}, "required": ["sideall", "sidey+"]}, "chickencoop": {"type": "object", "properties": {"sideall": {"type": "string"}, "sidey+": {"type": "string"}, "sidex+": {"type": "string"}}, "required": ["sideall", "sidey+", "sidex+"]}, "beehive": {"type": "object", "properties": {"sideall": {"type": "string"}, "sidey+": {"type": "string"}, "sidey-": {"type": "string"}}, "required": ["sideall", "sidey+", "sidey-"]}, "npcshop": {"type": "object", "properties": {"sideall": {"type": "string"}}, "required": ["sideall"]}, "straw": {"type": "object", "properties": {"sidex+": {"type": "string"}, "sidex-": {"type": "string"}, "sidez+": {"type": "string"}, "sidez-": {"type": "string"}}, "required": ["sidex+", "sidex-", "sidez+", "sidez-"]}, "workbench": {"type": "object", "properties": {"sidey+": {"type": "string"}, "sidey-": {"type": "string"}, "sidex+": {"type": "string"}, "sidex-": {"type": "string"}, "sidez+": {"type": "string"}, "sidez-": {"type": "string"}}, "required": ["sidey+", "sidey-", "sidex+", "sidex-", "sidez+", "sidez-"]}, "logtaiga": {"type": "object", "properties": {"sideall": {"type": "string"}, "sidey+": {"type": "string"}, "sidey-": {"type": "string"}}, "required": ["sideall", "sidey+", "sidey-"]}, "logtemperate": {"type": "object", "properties": {"sideall": {"type": "string"}, "sidey+": {"type": "string"}, "sidey-": {"type": "string"}}, "required": ["sideall", "sidey+", "sidey-"]}}, "required": ["stove", "grindstone", "chickencoop", "beehive", "npcshop", "straw", "workbench", "logtaiga", "logtemperate"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stove" : {"sideall" : "stoveside", "sidey+" : "stovetop", "sidey-" : "stovebottom"}, "grindstone" : {"sideall" : "planks", "sidey+" : "grindstone"}, "chickencoop" : {"sideall" : "chickencoopside", "sidey+" : "chickencooptop", "sidex+" : "chickencoopfront"}, "beehive" : {"sideall" : "SELF", "sidey+" : "beehivetop", "sidey-" : "beehiveBottom"}, "npcshop" : {"sideall" : "SELF"}, "straw" : {"sidex+" : "strawSide", "sidex-" : "strawSide", "sidez+" : "strawSide", "sidez-" : "strawSide"}, "workbench" : {"sidey+" : "workbenchtop", "sidey-" : "workbenchBottom", "sidex+" : "workbenchSide", "sidex-" : "workbenchSide", "sidez+" : "workbenchSide", "sidez-" : "workbenchSide"}, "logtaiga" : {"sideall" : "SELF", "sidey+" : "logtaigaEnd", "sidey-" : "logtaigaEnd"}, "logtemperate" : {"sideall" : "SELF", "sidey+" : "logtemperateEnd", "sidey-" : "logtemperateEnd"}} | json_instruct | {"type": "object", "properties": {"stove": {"type": "object", "properties": {"sideall": {"type": "string"}, "sidey+": {"type": "string"}, "sidey-": {"type": "string"}}, "required": ["sideall", "sidey+", "sidey-"]}, "grindstone": {"type": "object", "properties": {"sideall": {"type": "string"}, "sidey+": {"type": "string"}}, "required": ["sideall", "sidey+"]}, "chickencoop": {"type": "object", "properties": {"sideall": {"type": "string"}, "sidey+": {"type": "string"}, "sidex+": {"type": "string"}}, "required": ["sideall", "sidey+", "sidex+"]}, "beehive": {"type": "object", "properties": {"sideall": {"type": "string"}, "sidey+": {"type": "string"}, "sidey-": {"type": "string"}}, "required": ["sideall", "sidey+", "sidey-"]}, "npcshop": {"type": "object", "properties": {"sideall": {"type": "string"}}, "required": ["sideall"]}, "straw": {"type": "object", "properties": {"sidex+": {"type": "string"}, "sidex-": {"type": "string"}, "sidez+": {"type": "string"}, "sidez-": {"type": "string"}}, "required": ["sidex+", "sidex-", "sidez+", "sidez-"]}, "workbench": {"type": "object", "properties": {"sidey+": {"type": "string"}, "sidey-": {"type": "string"}, "sidex+": {"type": "string"}, "sidex-": {"type": "string"}, "sidez+": {"type": "string"}, "sidez-": {"type": "string"}}, "required": ["sidey+", "sidey-", "sidex+", "sidex-", "sidez+", "sidez-"]}, "logtaiga": {"type": "object", "properties": {"sideall": {"type": "string"}, "sidey+": {"type": "string"}, "sidey-": {"type": "string"}}, "required": ["sideall", "sidey+", "sidey-"]}, "logtemperate": {"type": "object", "properties": {"sideall": {"type": "string"}, "sidey+": {"type": "string"}, "sidey-": {"type": "string"}}, "required": ["sideall", "sidey+", "sidey-"]}}, "required": ["stove", "grindstone", "chickencoop", "beehive", "npcshop", "straw", "workbench", "logtaiga", "logtemperate"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "4c2ce79f4c4d37f50fc8", "c" : {"app" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "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": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"de": {"type": "string"}, "en": {"type": "string"}, "fr": {"type": "string"}, "jp": {"type": "string"}}, "required": ["de", "en", "fr", "jp"]}, "quote": {"type": "object", "properties": {"de": {"type": "string"}, "en": {"type": "string"}, "fr": {"type": "string"}, "jp": {"type": "string"}}, "required": ["de", "en", "fr", "jp"]}, "summon": {"type": "object", "properties": {"de": {"type": "string"}, "en": {"type": "string"}, "fr": {"type": "string"}, "jp": {"type": "string"}}, "required": ["de", "en", "fr", "jp"]}, "img": {"type": "string"}, "sound": {"type": "boolean"}}, "required": ["id", "info", "quote", "summon", "img", "sound"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 98, "info" : {"de" : "Der Legende zufolge l\u00e4sst er ein Gewichtsst\u00fcck der Harmonie auf Sophias Waage fallen, wann immer das Gleichgewicht der Welt in Gefahr ist. Es hei\u00dft, beim Auftreffen des Gewichts werde ein neuer Held geboren.", "en" : "History tells us that disruption in balance 'twixt good and evil will invariably result in suffering. The noble lanner serves to restore that balance by placing upon the goddess Sophia's scales the weights of equilibrium\u2500\nmost commonly depicted\nas our heroes of legend.", "fr" : "D'apr\u00e8s la l\u00e9gende, lorsque le monde a sombr\u00e9 dans le chaos, la divinit\u00e9 Sophia a envoy\u00e9 un oiseau divin afin de rapporter l'\u00e9quilibre. On dit que les h\u00e9ros seraient les poids dont elle s'est servie pour ajuster la balance.", "jp" : "\u5973\u795e\u300c\u30bd\u30d5\u30a3\u30a2\u300d\u306b\u3088\u308b\u795d\u798f\u3092\u53d7\u3051\u3001\u795e\u3005\u3057\u3044\u6c17\u3092\u307e\u3068\u3063\u305f\u5927\u96bc\u3002\u4f1d\u8aac\u306b\u3088\u308b\u3068\u3001\u4e16\u304c\u4e71\u308c\u308b\u3068\u5973\u795e\u306f\u795e\u9ce5\u3092\u4f7f\u308f\u3057\u3001\u5929\u79e4\u306b\u5206\u9285\u3092\u843d\u3068\u3057\u3066\u5747\u8861\u3092\u4fdd\u3064\u3068\u3044\u3046\u3002\u305d\u3057\u3066\u3001\u3053\u306e\u5206\u9285\u3053\u305d\u304c\u4eba\u306e\u4e16\u306b\u751f\u307e\u308c\u308b\u300c\u82f1\u96c4\u300d\u306a\u306e\u3060\u3068\u8a9e\u3089\u308c\u3066\u3044\u308b"}, "quote" : {"de" : "\u201eEndg\u00fcltige Gerechtigkeit erfahren wir weder im Licht noch in der Dunkelheit. Gerecht ist alles, was uns vor dem Untergang bewahrt.\u201e\nKapitel 3: Sophia", "en" : "\u201cA heartbeat without harmony\nIs moonlight without dark.\u201d\n - From The Sophic Canticles", "fr" : ".....", "jp" : "\u2026\u2026\u2026\u2026"}, "summon" : {"de" : "Rufe den Sophia-Lanner herbei. Ein goldenes Licht umh\u00fcllt diesen erhabenen Falken, der den Segen Sophias empfing.", "en" : "Summon forth your Sophic lanner. A once faithful servant to a fickle goddess.", "fr" : "Vous appelez votre monture faucon sophique, b\u00e9ni par la divinit\u00e9 Sophia.", "jp" : "\u30b4\u30c3\u30c7\u30b9\u30e9\u30ca\u30fc\u306b\u9a0e\u4e57\u3059\u308b\u3002\n\u5973\u795e\u306b\u795d\u798f\u3055\u308c\u305f\u5927\u96bc\u3002\u5929\u79e4\u306b\u8abf\u548c\u306e\u5206\u9285\u3092\u843d\u3068\u3059\u3068\u3044\u3046"}, "img" : "068000/068471.png", "sound" : true} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"de": {"type": "string"}, "en": {"type": "string"}, "fr": {"type": "string"}, "jp": {"type": "string"}}, "required": ["de", "en", "fr", "jp"]}, "quote": {"type": "object", "properties": {"de": {"type": "string"}, "en": {"type": "string"}, "fr": {"type": "string"}, "jp": {"type": "string"}}, "required": ["de", "en", "fr", "jp"]}, "summon": {"type": "object", "properties": {"de": {"type": "string"}, "en": {"type": "string"}, "fr": {"type": "string"}, "jp": {"type": "string"}}, "required": ["de", "en", "fr", "jp"]}, "img": {"type": "string"}, "sound": {"type": "boolean"}}, "required": ["id", "info", "quote", "summon", "img", "sound"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"431224100": {"type": "string"}, "431224101": {"type": "string"}, "431224102": {"type": "string"}, "431224103": {"type": "string"}, "431224104": {"type": "string"}, "431224105": {"type": "string"}, "431224106": {"type": "string"}, "431224107": {"type": "string"}, "431224108": {"type": "string"}, "431224109": {"type": "string"}, "431224110": {"type": "string"}, "431224111": {"type": "string"}, "431224112": {"type": "string"}, "431224113": {"type": "string"}, "431224114": {"type": "string"}, "431224115": {"type": "string"}, "431224116": {"type": "string"}, "431224117": {"type": "string"}, "431224204": {"type": "string"}, "431224213": {"type": "string"}, "431224219": {"type": "string"}, "431224222": {"type": "string"}, "431224223": {"type": "string"}, "431224224": {"type": "string"}, "431224230": {"type": "string"}}, "required": ["431224100", "431224101", "431224102", "431224103", "431224104", "431224105", "431224106", "431224107", "431224108", "431224109", "431224110", "431224111", "431224112", "431224113", "431224114", "431224115", "431224116", "431224117", "431224204", "431224213", "431224219", "431224222", "431224223", "431224224", "431224230"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"431224100" : "\u5362\u5cf0\u9547", "431224101" : "\u5927\u6c5f\u53e3\u9547", "431224102" : "\u4f4e\u5e84\u9547", "431224103" : "\u6865\u6c5f\u9547", "431224104" : "\u9f99\u6f6d\u9547", "431224105" : "\u5747\u576a\u9547", "431224106" : "\u89c2\u97f3\u9601\u9547", "431224107" : "\u53cc\u4e95\u9547", "431224108" : "\u6c34\u4e1c\u9547", "431224109" : "\u4e24\u4e2b\u576a\u9547", "431224110" : "\u9ec4\u8305\u56ed\u9547", "431224111" : "\u7956\u5e02\u6bbf\u9547", "431224112" : "\u845b\u7af9\u576a\u9547", "431224113" : "\u6df1\u5b50\u6e56\u9547", "431224114" : "\u601d\u8499\u9547", "431224115" : "\u4e09\u6c5f\u9547", "431224116" : "\u7edf\u6eaa\u6cb3\u9547", "431224117" : "\u5317\u6597\u6eaa\u9547", "431224204" : "\u8212\u6eb6\u6eaa\u4e61", "431224213" : "\u6cb9\u6d0b\u4e61", "431224219" : "\u5c0f\u6a2a\u5785\u4e61", "431224222" : "\u6dd8\u91d1\u576a\u4e61", "431224223" : "\u4e2d\u90fd\u4e61", "431224224" : "\u6cbf\u6eaa\u4e61", "431224230" : "\u9f99\u5e84\u6e7e\u4e61"} | json_instruct | {"type": "object", "properties": {"431224100": {"type": "string"}, "431224101": {"type": "string"}, "431224102": {"type": "string"}, "431224103": {"type": "string"}, "431224104": {"type": "string"}, "431224105": {"type": "string"}, "431224106": {"type": "string"}, "431224107": {"type": "string"}, "431224108": {"type": "string"}, "431224109": {"type": "string"}, "431224110": {"type": "string"}, "431224111": {"type": "string"}, "431224112": {"type": "string"}, "431224113": {"type": "string"}, "431224114": {"type": "string"}, "431224115": {"type": "string"}, "431224116": {"type": "string"}, "431224117": {"type": "string"}, "431224204": {"type": "string"}, "431224213": {"type": "string"}, "431224219": {"type": "string"}, "431224222": {"type": "string"}, "431224223": {"type": "string"}, "431224224": {"type": "string"}, "431224230": {"type": "string"}}, "required": ["431224100", "431224101", "431224102", "431224103", "431224104", "431224105", "431224106", "431224107", "431224108", "431224109", "431224110", "431224111", "431224112", "431224113", "431224114", "431224115", "431224116", "431224117", "431224204", "431224213", "431224219", "431224222", "431224223", "431224224", "431224230"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Time" : "2020-09-02T00:00:00Z", "Temp" : 25.9, "RelHum" : 86, "WindSpeed" : 1.6, "WindDir" : 269} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"message": {"type": "string"}, "token": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "accountType": {"type": "string"}, "email": {"type": "string"}, "firstName": {"type": "string"}, "lastName": {"type": "string"}, "phoneNumber": {"type": "string"}, "stripeUUID": {"type": "null"}, "streetAddress": {"type": "string"}, "streetAddress2": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "zip": {"type": "string"}, "profilePicture": {"type": "string"}, "bannerImage": {"type": "string"}, "creationDate": {"type": "string"}, "userRating": {"type": "integer"}, "userRatingTotal": {"type": "integer"}}, "required": ["id", "accountType", "email", "firstName", "lastName", "phoneNumber", "stripeUUID", "streetAddress", "streetAddress2", "city", "state", "zip", "profilePicture", "bannerImage", "creationDate", "userRating", "userRatingTotal"]}}, "required": ["message", "token", "user"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"message" : "user created successfully", "token" : "Auth token", "user" : {"id" : 1, "accountType" : "client", "email" : "testing.testing@testing.testing", "firstName" : "testing", "lastName" : "testingson", "phoneNumber" : "1234567890", "stripeUUID" : null, "streetAddress" : "1051 Market St", "streetAddress2" : "APT 240", "city" : "San Francisco", "state" : "CA", "zip" : "94103", "profilePicture" : "some url", "bannerImage" : "some url", "creationDate" : "date", "userRating" : 4, "userRatingTotal" : 1}} | json_instruct | {"type": "object", "properties": {"message": {"type": "string"}, "token": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "accountType": {"type": "string"}, "email": {"type": "string"}, "firstName": {"type": "string"}, "lastName": {"type": "string"}, "phoneNumber": {"type": "string"}, "stripeUUID": {"type": "null"}, "streetAddress": {"type": "string"}, "streetAddress2": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "zip": {"type": "string"}, "profilePicture": {"type": "string"}, "bannerImage": {"type": "string"}, "creationDate": {"type": "string"}, "userRating": {"type": "integer"}, "userRatingTotal": {"type": "integer"}}, "required": ["id", "accountType", "email", "firstName", "lastName", "phoneNumber", "stripeUUID", "streetAddress", "streetAddress2", "city", "state", "zip", "profilePicture", "bannerImage", "creationDate", "userRating", "userRatingTotal"]}}, "required": ["message", "token", "user"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"appid" : 6420, "name" : "Nexus: The Jupiter Incident", "windows" : true, "mac" : false, "linux" : false, "early_access" : false, "lookup_time" : 1490962713} | json_instruct | {"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$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"}, "name": {"type": "string"}, "qualified_name": {"type": "string"}, "examine": {"type": "string"}, "members": {"type": "boolean"}, "release_date": {"type": "string"}, "quest": {"type": "boolean"}, "weight": {"type": "number"}, "value": {"type": "integer"}, "alchemy": {"type": "object", "properties": {"high": {"type": "integer"}, "low": {"type": "integer"}}, "required": ["high", "low"]}, "tradeable": {"type": "boolean"}, "stackable": {"type": "boolean"}, "noteable": {"type": "boolean"}, "equipable": {"type": "boolean"}, "tradeable_ge": {"type": "boolean"}, "icon": {"type": "string"}, "wiki_url": {"type": "string"}}, "required": ["id", "name", "qualified_name", "examine", "members", "release_date", "quest", "weight", "value", "alchemy", "tradeable", "stackable", "noteable", "equipable", "tradeable_ge", "icon", "wiki_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 10960, "name" : "Green gloop soup", "qualified_name" : "Green gloop soup", "examine" : "Thick and tasty soup.", "members" : true, "release_date" : "2007-03-20", "quest" : false, "weight" : 0.001, "value" : 10, "alchemy" : {"high" : 6, "low" : 4}, "tradeable" : false, "stackable" : false, "noteable" : false, "equipable" : false, "tradeable_ge" : false, "icon" : "iVBORw0KGgoAAAANSUhEUgAAACQAAAAgCAYAAAB6kdqOAAACT0lEQVR4Xu2WTW8SURSGmX/AajZs+hPcddGNiYmaWE0tRAJ0lJZUvspHgWKr9AtpamM1ak0XxoWJq/7KI++ZnMvhTkvsSCEm8yZv5vPe83DOuXeIxSJFmoscut4z1Sjwftali6pLV28T9KOZoA8Fl3ZS8VmAjSAQ9FcnQd6DuPHGo5Hx7EvJZdg7AnPosuZS5n7c+CYYGwzjButTBXN4wuRS7FYw2r+7Ptj5aw0WGs4vkQBpmMq7DLvay1JxN83GtQ2kwdBnADvyBO5WcnggYGBASGAJXullqDw8rm+lKd98ThvtJG12U+YdG0qMue8tLLDtqBPkryIBQiAEhPfPm0M3qHaQpfrRGu0MSvSqmmQobQHUmUX5BMiOOEF+qZCh5cVxIAQ6+d6l/rc2wzT6Hltnb+swNwYlRqNj3lBAaGbACJDAIODp5S69v+gwSOskb0BwvT14SfXjNXqx+TgABaAQ5XJ4H5HswF7t2RjQTW6f5o1RxlThoYFCQ2sgO+oEObwS0D8ClKssB2BKe2kuY6GVGj5/yvfenBXYKGlnCFTuepQrrnCGAYQfGgIIcniZS6Y00MGnBh1+3uYjDDDYK6+OAWMMDBh8XgAUolxa/gYGMEyIZtxLxzlI/2uHm7r3sW72I7t8meIT0382kB3pr+UPdsySxcSysSGgZA49hnPcg/EejCUungrQSH629F4iYMiaZOBny7f+7sEy/h/KFZRkC5YdV29419kGmRqMloDZn4OZgwQVhEITzwFES/+duIM+CSOdjbnDRIoU6X/WH5A3ybMNBdJfAAAAAElFTkSuQmCC", "wiki_url" : "https://oldschool.runescape.wiki/w/Green_gloop_soup"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "qualified_name": {"type": "string"}, "examine": {"type": "string"}, "members": {"type": "boolean"}, "release_date": {"type": "string"}, "quest": {"type": "boolean"}, "weight": {"type": "number"}, "value": {"type": "integer"}, "alchemy": {"type": "object", "properties": {"high": {"type": "integer"}, "low": {"type": "integer"}}, "required": ["high", "low"]}, "tradeable": {"type": "boolean"}, "stackable": {"type": "boolean"}, "noteable": {"type": "boolean"}, "equipable": {"type": "boolean"}, "tradeable_ge": {"type": "boolean"}, "icon": {"type": "string"}, "wiki_url": {"type": "string"}}, "required": ["id", "name", "qualified_name", "examine", "members", "release_date", "quest", "weight", "value", "alchemy", "tradeable", "stackable", "noteable", "equipable", "tradeable_ge", "icon", "wiki_url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"640423100": {"type": "string"}, "640423101": {"type": "string"}, "640423102": {"type": "string"}, "640423200": {"type": "string"}, "640423201": {"type": "string"}, "640423202": {"type": "string"}, "640423203": {"type": "string"}, "640423204": {"type": "string"}, "640423205": {"type": "string"}, "640423206": {"type": "string"}, "640423207": {"type": "string"}, "640423208": {"type": "string"}, "640423209": {"type": "string"}}, "required": ["640423100", "640423101", "640423102", "640423200", "640423201", "640423202", "640423203", "640423204", "640423205", "640423206", "640423207", "640423208", "640423209"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"640423100" : "\u57ce\u5173\u9547", "640423101" : "\u6c99\u5858\u9547", "640423102" : "\u8054\u8d22\u9547", "640423200" : "\u9648\u9773\u4e61", "640423201" : "\u597d\u6c34\u4e61", "640423202" : "\u89c2\u5e84\u4e61", "640423203" : "\u6768\u6cb3\u4e61", "640423204" : "\u795e\u6797\u4e61", "640423205" : "\u5f20\u7a0b\u4e61", "640423206" : "\u51e4\u5cad\u4e61", "640423207" : "\u5c71\u6cb3\u4e61", "640423208" : "\u6e29\u5821\u4e61", "640423209" : "\u5960\u5b89\u4e61"} | json_instruct | {"type": "object", "properties": {"640423100": {"type": "string"}, "640423101": {"type": "string"}, "640423102": {"type": "string"}, "640423200": {"type": "string"}, "640423201": {"type": "string"}, "640423202": {"type": "string"}, "640423203": {"type": "string"}, "640423204": {"type": "string"}, "640423205": {"type": "string"}, "640423206": {"type": "string"}, "640423207": {"type": "string"}, "640423208": {"type": "string"}, "640423209": {"type": "string"}}, "required": ["640423100", "640423101", "640423102", "640423200", "640423201", "640423202", "640423203", "640423204", "640423205", "640423206", "640423207", "640423208", "640423209"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"status_code": {"type": "integer"}, "data": {"type": "object", "properties": {"AccountAliases": {"type": "array", "items": {"type": "string"}}, "IsTruncated": {"type": "boolean"}, "ResponseMetadata": {"type": "object", "properties": {"RetryAttempts": {"type": "integer"}, "HTTPStatusCode": {"type": "integer"}, "RequestId": {"type": "string"}, "HTTPHeaders": {"type": "object", "properties": {"x-amzn-requestid": {"type": "string"}, "date": {"type": "string"}, "content-length": {"type": "string"}, "content-type": {"type": "string"}}, "required": ["x-amzn-requestid", "date", "content-length", "content-type"]}}, "required": ["RetryAttempts", "HTTPStatusCode", "RequestId", "HTTPHeaders"]}}, "required": ["AccountAliases", "IsTruncated", "ResponseMetadata"]}}, "required": ["status_code", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status_code" : 200, "data" : {"AccountAliases" : ["custodian-skunkworks"], "IsTruncated" : false, "ResponseMetadata" : {"RetryAttempts" : 0, "HTTPStatusCode" : 200, "RequestId" : "8acdf90b-a9d2-11e7-b33d-135e5714e9a5", "HTTPHeaders" : {"x-amzn-requestid" : "8acdf90b-a9d2-11e7-b33d-135e5714e9a5", "date" : "Thu, 05 Oct 2017 13:38:59 GMT", "content-length" : "403", "content-type" : "text/xml"}}}} | json_instruct | {"type": "object", "properties": {"status_code": {"type": "integer"}, "data": {"type": "object", "properties": {"AccountAliases": {"type": "array", "items": {"type": "string"}}, "IsTruncated": {"type": "boolean"}, "ResponseMetadata": {"type": "object", "properties": {"RetryAttempts": {"type": "integer"}, "HTTPStatusCode": {"type": "integer"}, "RequestId": {"type": "string"}, "HTTPHeaders": {"type": "object", "properties": {"x-amzn-requestid": {"type": "string"}, "date": {"type": "string"}, "content-length": {"type": "string"}, "content-type": {"type": "string"}}, "required": ["x-amzn-requestid", "date", "content-length", "content-type"]}}, "required": ["RetryAttempts", "HTTPStatusCode", "RequestId", "HTTPHeaders"]}}, "required": ["AccountAliases", "IsTruncated", "ResponseMetadata"]}}, "required": ["status_code", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"set": {"type": "string"}, "cell_size": {"type": "integer"}, "width": {"type": "integer"}, "cells": {"type": "array", "items": {"type": "integer"}}}, "required": ["set", "cell_size", "width", "cells"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"set" : "ca79570a-0438-4728-95a6-1b42ba327c3b", "cell_size" : 1, "width" : 10, "cells" : [0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1]} | json_instruct | {"type": "object", "properties": {"set": {"type": "string"}, "cell_size": {"type": "integer"}, "width": {"type": "integer"}, "cells": {"type": "array", "items": {"type": "integer"}}}, "required": ["set", "cell_size", "width", "cells"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "homepage": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@tensorflow/tfjs": {"type": "string"}, "@tensorflow/tfjs-node": {"type": "string"}, "@material/snackbar": {"type": "string"}, "jimp": {"type": "string"}}, "required": ["@tensorflow/tfjs", "@tensorflow/tfjs-node", "@material/snackbar", "jimp"]}, "devDependencies": {"type": "object", "properties": {"electron-builder": {"type": "string"}, "electron-prebuilt-compile": {"type": "string"}}, "required": ["electron-builder", "electron-prebuilt-compile"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "build": {"type": "object", "properties": {"linux": {"type": "object", "properties": {"target": {"type": "array", "items": {"type": "object", "properties": {"target": {"type": "string"}, "arch": {"type": "array", "items": {"type": "string"}}}, "required": ["target", "arch"]}}}, "required": ["target"]}}, "required": ["linux"]}}, "required": ["name", "author", "homepage", "version", "description", "license", "repository", "dependencies", "devDependencies", "main", "scripts", "build"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "tfjs-examples-electron", "author" : {"name" : "TensorFlow.js Team", "email" : "package@tensorflow.org"}, "homepage" : "https://js.tensorflow.org", "version" : "0.1.0", "description" : "An example for deploying TensorFlow.js models in an Electron.js-based desktop app", "license" : "Apache-2.0", "repository" : "https://github.com/tensorflow/tfjs-examples", "dependencies" : {"@tensorflow/tfjs" : "^1.3.2", "@tensorflow/tfjs-node" : "^1.3.2", "@material/snackbar" : "^3.0.0", "jimp" : "^0.6.4"}, "devDependencies" : {"electron-builder" : "^20.44.4", "electron-prebuilt-compile" : "^4.0.0"}, "main" : "main.js", "scripts" : {"start" : "electron ."}, "build" : {"linux" : {"target" : [{"target" : "deb", "arch" : ["x64"]}]}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "homepage": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@tensorflow/tfjs": {"type": "string"}, "@tensorflow/tfjs-node": {"type": "string"}, "@material/snackbar": {"type": "string"}, "jimp": {"type": "string"}}, "required": ["@tensorflow/tfjs", "@tensorflow/tfjs-node", "@material/snackbar", "jimp"]}, "devDependencies": {"type": "object", "properties": {"electron-builder": {"type": "string"}, "electron-prebuilt-compile": {"type": "string"}}, "required": ["electron-builder", "electron-prebuilt-compile"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "build": {"type": "object", "properties": {"linux": {"type": "object", "properties": {"target": {"type": "array", "items": {"type": "object", "properties": {"target": {"type": "string"}, "arch": {"type": "array", "items": {"type": "string"}}}, "required": ["target", "arch"]}}}, "required": ["target"]}}, "required": ["linux"]}}, "required": ["name", "author", "homepage", "version", "description", "license", "repository", "dependencies", "devDependencies", "main", "scripts", "build"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "http://data.doremus.org/performance/f95b5678-fdaf-38a3-acca-4993f70c2ae2", "expression" : [{"id" : "http://data.doremus.org/expression/1a251910-31e8-3d0a-aeb2-b7a3007bcf20"}, {"id" : "http://data.doremus.org/expression/d2b0bf2b-cf45-3e22-a0cf-af4579cbe157"}, {"id" : "http://data.doremus.org/expression/ddb2dfa6-c989-31e0-a2af-43c5c2d5aadc"}, {"id" : "http://data.doremus.org/expression/6e59b629-674b-354f-ab97-0339bbfdf279"}, {"id" : "http://data.doremus.org/expression/db85447c-1cb0-3a54-b8a6-ef3e73c02704"}, {"id" : "http://data.doremus.org/expression/e3d62dbe-5a7e-35b0-9518-c7dd180e19f2"}, {"id" : "http://data.doremus.org/expression/1860cd04-0559-3e42-b608-fe0c7072a69c"}, {"id" : "http://data.doremus.org/expression/b89ccd08-ffd8-304a-a1e6-35dcbe367528"}, {"id" : "http://data.doremus.org/expression/5b646e07-052c-3060-a025-b6764f4a66fb"}, {"id" : "http://data.doremus.org/expression/006365dd-5fdd-3e5c-8a77-ba50558b03f9"}, {"id" : "http://data.doremus.org/expression/c0a2bd9d-bf7d-3b56-9383-cdc3b4f878b9"}, {"id" : "http://data.doremus.org/expression/52ad991f-7f53-3583-a0f1-31c5b5985da3"}, {"id" : "http://data.doremus.org/expression/891a2423-3ac4-38e0-9a79-2b25cacea990"}, {"id" : "http://data.doremus.org/expression/0c5be9f3-62e3-3d3d-9b5f-2ce02aa1c26f"}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "projectId": {"type": "string"}, "projectRef": {"type": "string"}, "projectName": {"type": "string"}, "projectDescription": {"type": "string"}, "startDate": {"type": "string"}, "endDate": {"type": "string"}}, "required": ["id", "projectId", "projectRef", "projectName", "projectDescription", "startDate", "endDate"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 1, "projectId" : "PRJ-19-000001", "projectRef" : "DEMO-Tech_01", "projectName" : "Demo 1", "projectDescription" : "Project for demo nubmer one", "startDate" : "2019-3-15", "endDate" : "2019-11-15"}, {"id" : 2, "projectId" : "PRJ-19-000002", "projectRef" : "DEMO-Tech_02", "projectName" : "Demo 2", "projectDescription" : "Project for demo nubmer two", "startDate" : "2019-8-15", "endDate" : "2019-9-15"}, {"id" : 3, "projectId" : "PRJ-19-000003", "projectRef" : "DEMO-Tech_03", "projectName" : "Demo 3", "projectDescription" : "Project for demo nubmer Three", "startDate" : "2019-4-15", "endDate" : "2019-10-15"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "projectId": {"type": "string"}, "projectRef": {"type": "string"}, "projectName": {"type": "string"}, "projectDescription": {"type": "string"}, "startDate": {"type": "string"}, "endDate": {"type": "string"}}, "required": ["id", "projectId", "projectRef", "projectName", "projectDescription", "startDate", "endDate"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 74410, "cartId" : "eaece1f6-e5a3-4fa1-9eff-e56a32ddc1e4", "preferredProducts" : [], "productReviews" : [{"productId" : 2005, "reviewText" : "My co-worker Mitchell has one of these. He says it looks dry.", "reviewDate" : "2018-07-01T11:14:05.5326282+03:00"}, {"productId" : 3702, "reviewText" : "i use it once in a while when i'm in my ring.", "reviewDate" : "2016-10-19T08:46:18.2988538+03:00"}, {"productId" : 3729, "reviewText" : "The box this comes in is 5 kilometer by 5 inch and weights 13 kilogram!!!", "reviewDate" : "2017-02-13T21:28:39.932613+02:00"}, {"productId" : 697, "reviewText" : "My tiger loves to play with it.", "reviewDate" : "2019-09-01T04:11:37.5444363+03:00"}, {"productId" : 917, "reviewText" : "My porcupine loves to play with it.", "reviewDate" : "2020-03-30T16:03:31.0278868+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"title": {"type": "string"}, "duration": {"type": "integer"}, "collect_project": {"type": "boolean"}, "collect_project_number": {"type": "boolean"}, "collect_region": {"type": "boolean"}, "collect_billing_account": {"type": "boolean"}, "region_type": {"type": "string"}, "region_default": {"type": "string"}, "collect_zone": {"type": "boolean"}, "hard_settings": {"type": "object", "properties": {"basename": {"type": "string"}}, "required": ["basename"]}}, "required": ["title", "duration", "collect_project", "collect_project_number", "collect_region", "collect_billing_account", "region_type", "region_default", "collect_zone", "hard_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "TODO", "duration" : 9, "collect_project" : true, "collect_project_number" : true, "collect_region" : true, "collect_billing_account" : false, "region_type" : "run", "region_default" : "us-central1", "collect_zone" : true, "hard_settings" : {"basename" : "todo"}} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "duration": {"type": "integer"}, "collect_project": {"type": "boolean"}, "collect_project_number": {"type": "boolean"}, "collect_region": {"type": "boolean"}, "collect_billing_account": {"type": "boolean"}, "region_type": {"type": "string"}, "region_default": {"type": "string"}, "collect_zone": {"type": "boolean"}, "hard_settings": {"type": "object", "properties": {"basename": {"type": "string"}}, "required": ["basename"]}}, "required": ["title", "duration", "collect_project", "collect_project_number", "collect_region", "collect_billing_account", "region_type", "region_default", "collect_zone", "hard_settings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"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" : "Chapelle-des-Bois", "circ" : "5\u00e8me circonscription", "dpt" : "Doubs", "inscrits" : 223, "abs" : 71, "votants" : 152, "blancs" : 2, "nuls" : 0, "exp" : 150, "res" : [{"nuance" : "LR", "nom" : "Mme Annie GENEVARD", "voix" : 46}, {"nuance" : "REM", "nom" : "Mme Sylvie LE HIR", "voix" : 44}, {"nuance" : "FI", "nom" : "Mme Martine LUDI", "voix" : 30}, {"nuance" : "ECO", "nom" : "M. Anthony POULIN", "voix" : 18}, {"nuance" : "COM", "nom" : "Mme Evelyne TERNANT", "voix" : 7}, {"nuance" : "FN", "nom" : "M. J\u00e9r\u00e9my NAVION", "voix" : 3}, {"nuance" : "ECO", "nom" : "M. Jean-Marie PIETOUKHOFF", "voix" : 2}, {"nuance" : "EXG", "nom" : "Mme Myriam SPRINGAUX", "voix" : 0}, {"nuance" : "DIV", "nom" : "M. Yannick ARDIET", "voix" : 0}, {"nuance" : "DIV", "nom" : "M. Emmanuel CHABEUF", "voix" : 0}]} | 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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"measurement_node": {"type": "string"}, "peer_cloud_server": {"type": "string"}, "data_flow_direction": {"type": "string"}, "link_type": {"type": "string"}, "data_source_url": {"type": "string"}, "config": {"type": "object", "properties": {"uplink": {"type": "object", "properties": {"bottleneck_bandwidth": {"type": "integer"}, "buffer_size_bytes": {"type": "integer"}, "buffer_size_packets": {"type": "integer"}, "propagation_delay": {"type": "integer"}, "cross_traffic_pattern": {"type": "array", "items": {"type": "integer"}}}, "required": ["bottleneck_bandwidth", "buffer_size_bytes", "buffer_size_packets", "propagation_delay", "cross_traffic_pattern"]}, "downlink": {"type": "object", "properties": {"bottleneck_bandwidth": {"type": "integer"}, "buffer_size_bytes": {"type": "integer"}, "buffer_size_packets": {"type": "integer"}, "propagation_delay": {"type": "integer"}, "cross_traffic_pattern": {"type": "array", "items": {}}}, "required": ["bottleneck_bandwidth", "buffer_size_bytes", "buffer_size_packets", "propagation_delay", "cross_traffic_pattern"]}, "__comment": {"type": "string"}}, "required": ["uplink", "downlink", "__comment"]}}, "required": ["measurement_node", "peer_cloud_server", "data_flow_direction", "link_type", "data_source_url", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"measurement_node" : "stanford", "peer_cloud_server" : "aws california", "data_flow_direction" : "upload", "link_type" : "cellular", "data_source_url" : "https://pantheon.stanford.edu/result/549/", "config" : {"uplink" : {"bottleneck_bandwidth" : 14904, "buffer_size_bytes" : 315020, "buffer_size_packets" : 210, "propagation_delay" : 71, "cross_traffic_pattern" : [0, 0, 0, 1729, 2669, 1577, 2208, 1825, 1535, 2552, 2104, 315, 726, 1014, 1154, 1388, 1319, 1011, 1898, 1388, 862, 1013, 316, 749, 1774, 1833, 865, 2342, 1945, 116]}, "downlink" : {"bottleneck_bandwidth" : 100000, "buffer_size_bytes" : 15000000, "buffer_size_packets" : 10000, "propagation_delay" : 0, "cross_traffic_pattern" : []}, "__comment" : "bottleneck_bandwidth is in kbps, buffer_size_packets is in number of MTU sized packets, propagation_delay is in ms, and the cross_traffic_pattern is a 30s long timeseries with each entry in kbps"}} | json_instruct | {"type": "object", "properties": {"measurement_node": {"type": "string"}, "peer_cloud_server": {"type": "string"}, "data_flow_direction": {"type": "string"}, "link_type": {"type": "string"}, "data_source_url": {"type": "string"}, "config": {"type": "object", "properties": {"uplink": {"type": "object", "properties": {"bottleneck_bandwidth": {"type": "integer"}, "buffer_size_bytes": {"type": "integer"}, "buffer_size_packets": {"type": "integer"}, "propagation_delay": {"type": "integer"}, "cross_traffic_pattern": {"type": "array", "items": {"type": "integer"}}}, "required": ["bottleneck_bandwidth", "buffer_size_bytes", "buffer_size_packets", "propagation_delay", "cross_traffic_pattern"]}, "downlink": {"type": "object", "properties": {"bottleneck_bandwidth": {"type": "integer"}, "buffer_size_bytes": {"type": "integer"}, "buffer_size_packets": {"type": "integer"}, "propagation_delay": {"type": "integer"}, "cross_traffic_pattern": {"type": "array", "items": {}}}, "required": ["bottleneck_bandwidth", "buffer_size_bytes", "buffer_size_packets", "propagation_delay", "cross_traffic_pattern"]}, "__comment": {"type": "string"}}, "required": ["uplink", "downlink", "__comment"]}}, "required": ["measurement_node", "peer_cloud_server", "data_flow_direction", "link_type", "data_source_url", "config"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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"}, "github_org": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram", "github_org"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "idl-token", "symbol" : "idl", "name" : "IDL Token", "platforms" : {"ethereum" : "0x6febd6be8fa45be6a5eeb61a17c82d33b9addd41"}, "hashing_algorithm" : null, "categories" : [], "description" : {"en" : "DeFi protocol that users get governance token IDL by staking Uniswap LP tokens"}, "country_origin" : "KR", "genesis_date" : null, "contract_address" : "0x6febd6be8fa45be6a5eeb61a17c82d33b9addd41", "url" : "https://idlswap.io/", "explorers" : ["https://etherscan.io/token/0x6febd6be8fa45be6a5eeb61a17c82d33b9addd41", "https://ethplorer.io/address/0x6febd6be8fa45be6a5eeb61a17c82d33b9addd41"], "twitter" : "idlswap", "telegram" : "IDLSwapEnglish", "github_org" : "IDLSwap"} | 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"}, "github_org": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram", "github_org"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-115.315476, 36.144404], [-115.306703, 36.144406], [-115.305865, 36.136649], [-115.306532, 36.133702], [-115.306202, 36.129833], [-115.315185, 36.129836], [-115.315476, 36.144404]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 38724}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"angular-mapboxgl-directive.css": {"type": "string"}, "angular-mapboxgl-directive.js": {"type": "string"}, "angular-mapboxgl-directive.min.css": {"type": "string"}, "angular-mapboxgl-directive.min.js": {"type": "string"}}, "required": ["angular-mapboxgl-directive.css", "angular-mapboxgl-directive.js", "angular-mapboxgl-directive.min.css", "angular-mapboxgl-directive.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"angular-mapboxgl-directive.css" : "sha512-U3GlLZ5zzwVSz40ijAcNFAt8ZFAC3OWuV+/Vba0sJGz3culJr2mxen+CloNtV1KxgxCzN8N+N8lGX+bew8PetQ==", "angular-mapboxgl-directive.js" : "sha512-+L0YxndzQ4bjiom8hzyA/ZhKgKMwX1nLnM5OssZBTceSiKxJ8Lf5ii6MUBGlEzqfMIoHHIhYL427tFbUTFuzBA==", "angular-mapboxgl-directive.min.css" : "sha512-At3Sr1B7V7yrKeZxDGY5kZhtZuMOIeHohyaD4gjxx9Z75mGoLfekH+tXQBa3//dd5pMO1X9F6DiHJwkI7ne9gg==", "angular-mapboxgl-directive.min.js" : "sha512-LxNLDMsy4Nazxfjn49pN0XtwFhRzF5bb1uTRKYeQvU8WgzYjhxAk0DMw6Ji3vnJsI6ieTC25htnLqV26dNbexA=="} | json_instruct | {"type": "object", "properties": {"angular-mapboxgl-directive.css": {"type": "string"}, "angular-mapboxgl-directive.js": {"type": "string"}, "angular-mapboxgl-directive.min.css": {"type": "string"}, "angular-mapboxgl-directive.min.js": {"type": "string"}}, "required": ["angular-mapboxgl-directive.css", "angular-mapboxgl-directive.js", "angular-mapboxgl-directive.min.css", "angular-mapboxgl-directive.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "start", "build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "proxy": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "formik": {"type": "string"}, "jwt-decode": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["axios", "formik", "jwt-decode", "react", "react-dom"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/preset-react": {"type": "string"}, "autoprefixer": {"type": "string"}, "babel-loader": {"type": "string"}, "css-loader": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "postcss": {"type": "string"}, "postcss-loader": {"type": "string"}, "postcss-preset-env": {"type": "string"}, "style-loader": {"type": "string"}, "tailwindcss": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "@babel/preset-react", "autoprefixer", "babel-loader", "css-loader", "html-webpack-plugin", "postcss", "postcss-loader", "postcss-preset-env", "style-loader", "tailwindcss", "webpack", "webpack-cli", "webpack-dev-server"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "proxy", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "client", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "webpack serve --mode=development --open --hot", "build" : "webpack --mode=production"}, "author" : "", "license" : "ISC", "proxy" : "http://localhost:5000", "dependencies" : {"axios" : "^0.21.1", "formik" : "^2.2.9", "jwt-decode" : "^3.1.2", "react" : "^17.0.2", "react-dom" : "^17.0.2"}, "devDependencies" : {"@babel/core" : "^7.14.3", "@babel/preset-env" : "^7.14.2", "@babel/preset-react" : "^7.13.13", "autoprefixer" : "^10.2.5", "babel-loader" : "^8.2.2", "css-loader" : "^5.2.5", "html-webpack-plugin" : "^5.3.1", "postcss" : "^8.3.0", "postcss-loader" : "^5.3.0", "postcss-preset-env" : "^6.7.0", "style-loader" : "^2.0.0", "tailwindcss" : "^2.1.2", "webpack" : "^5.37.1", "webpack-cli" : "^4.7.0", "webpack-dev-server" : "^3.11.2"}} | 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"}, "build": {"type": "string"}}, "required": ["test", "start", "build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "proxy": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "formik": {"type": "string"}, "jwt-decode": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["axios", "formik", "jwt-decode", "react", "react-dom"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/preset-react": {"type": "string"}, "autoprefixer": {"type": "string"}, "babel-loader": {"type": "string"}, "css-loader": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "postcss": {"type": "string"}, "postcss-loader": {"type": "string"}, "postcss-preset-env": {"type": "string"}, "style-loader": {"type": "string"}, "tailwindcss": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "@babel/preset-react", "autoprefixer", "babel-loader", "css-loader", "html-webpack-plugin", "postcss", "postcss-loader", "postcss-preset-env", "style-loader", "tailwindcss", "webpack", "webpack-cli", "webpack-dev-server"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "proxy", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "group": {"type": "string"}, "ingredient": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}, "result": {"type": "string"}, "experience": {"type": "integer"}, "cookingtime": {"type": "integer"}}, "required": ["type", "group", "ingredient", "result", "experience", "cookingtime"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "smelting", "group" : "tea", "ingredient" : {"tag" : "imfeelinglucky:evaporating_tea"}, "result" : "minecraft:glass_bottle", "experience" : 0, "cookingtime" : 100} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "group": {"type": "string"}, "ingredient": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}, "result": {"type": "string"}, "experience": {"type": "integer"}, "cookingtime": {"type": "integer"}}, "required": ["type", "group", "ingredient", "result", "experience", "cookingtime"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"status": {"type": "string"}, "chunks": {"type": "object", "properties": {"kolibri.core.frontend_head_assets": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "path": {"type": "string"}}, "required": ["name", "path"]}}}, "required": ["kolibri.core.frontend_head_assets"]}, "messages": {"type": "boolean"}}, "required": ["status", "chunks", "messages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status" : "done", "chunks" : {"kolibri.core.frontend_head_assets" : [{"name" : "kolibri.core.frontend_head_assets-0.14.3.js", "path" : "/kolibri/kolibri/core/static/kolibri.core.frontend_head_assets/kolibri.core.frontend_head_assets-0.14.3.js"}, {"name" : "kolibri.core.frontend_head_assets-0.14.3.js.map", "path" : "/kolibri/kolibri/core/static/kolibri.core.frontend_head_assets/kolibri.core.frontend_head_assets-0.14.3.js.map"}]}, "messages" : false} | json_instruct | {"type": "object", "properties": {"status": {"type": "string"}, "chunks": {"type": "object", "properties": {"kolibri.core.frontend_head_assets": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "path": {"type": "string"}}, "required": ["name", "path"]}}}, "required": ["kolibri.core.frontend_head_assets"]}, "messages": {"type": "boolean"}}, "required": ["status", "chunks", "messages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "integer"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["id", "image", "attributes"]}, "attributeRarities": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}, "count": {"type": "integer"}, "ratio": {"type": "number"}, "ratioScore": {"type": "number"}}, "required": ["trait_type", "value", "count", "ratio", "ratioScore"]}}, "rarityScore": {"type": "number"}, "rank": {"type": "integer"}}, "required": ["nft", "attributeRarities", "rarityScore", "rank"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nft" : {"id" : 5864, "image" : "ipfs://QmS7vBnAUnPEFEETcEQxyvR5VciVzdgtshhDeumCntHag9", "attributes" : [{"trait_type" : "Clothes", "value" : "Caveman Pelt"}, {"trait_type" : "Fur", "value" : "Red"}, {"trait_type" : "Eyes", "value" : "Coins"}, {"trait_type" : "Background", "value" : "Aquamarine"}, {"trait_type" : "Mouth", "value" : "Discomfort"}, {"trait_type" : "Trait Count", "value" : "5"}, {"trait_type" : "Hat", "value" : "[Missing]"}, {"trait_type" : "Earring", "value" : "[Missing]"}]}, "attributeRarities" : [{"trait_type" : "Clothes", "value" : "Caveman Pelt", "count" : 163, "ratio" : 0.0163, "ratioScore" : 61.34969325153375}, {"trait_type" : "Fur", "value" : "Red", "count" : 474, "ratio" : 0.0474, "ratioScore" : 21.09704641350211}, {"trait_type" : "Eyes", "value" : "Coins", "count" : 479, "ratio" : 0.0479, "ratioScore" : 20.876826722338205}, {"trait_type" : "Background", "value" : "Aquamarine", "count" : 1266, "ratio" : 0.1266, "ratioScore" : 7.8988941548183265}, {"trait_type" : "Mouth", "value" : "Discomfort", "count" : 208, "ratio" : 0.0208, "ratioScore" : 48.07692307692308}, {"trait_type" : "Trait Count", "value" : "5", "count" : 2540, "ratio" : 0.254, "ratioScore" : 3.937007874015748}, {"trait_type" : "Hat", "value" : "[Missing]", "count" : 2256, "ratio" : 0.2256, "ratioScore" : 4.432624113475177}, {"trait_type" : "Earring", "value" : "[Missing]", "count" : 7023, "ratio" : 0.7023, "ratioScore" : 1.4238929232521713}], "rarityScore" : 169.0929085298586, "rank" : 4425} | json_instruct | {"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "integer"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["id", "image", "attributes"]}, "attributeRarities": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}, "count": {"type": "integer"}, "ratio": {"type": "number"}, "ratioScore": {"type": "number"}}, "required": ["trait_type", "value", "count", "ratio", "ratioScore"]}}, "rarityScore": {"type": "number"}, "rank": {"type": "integer"}}, "required": ["nft", "attributeRarities", "rarityScore", "rank"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 29591, "cartId" : "542746b1-0ab0-464d-8729-b0176671c2c0", "preferredProducts" : [2963, 4016, 878, 4858, 3763, 328], "productReviews" : [{"productId" : 4173, "reviewText" : "This relationships works extremely well. It wetly improves my tennis by a lot.", "reviewDate" : "2018-02-06T05:02:09.857679+02:00"}, {"productId" : 3503, "reviewText" : "I saw one of these in Barbados and I bought one.", "reviewDate" : "2019-03-16T16:40:54.5595373+02:00"}, {"productId" : 2340, "reviewText" : "This Hill works outstandingly well. It beautifully improves my basketball by a lot.", "reviewDate" : "2018-07-06T11:19:25.4920792+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d55-106", "text" : "\"T^RTvERS 1 TY OF CHICAGO SUBMISSIONS\nSCORE CARD - NETWORK ACCEPTANCE COMMITTEE * DATE\nHAMS OF PROGRAM\nSferect\nB3f\nHalyard\nAbbot\nDawson\nHill\nHolmberg\nPinal\nJ apa ne se Poe try\nNo\nYes\nNo\nYes\nNo\nT*S. El 1io 11 \u2014His Poetry\nYes\nYes\nYes\nYes\nYes\nPoetry of 18th Century\nNo\nYes\nNo\nYes\nNo\nIntellectual Idea-Ancient Ma\n1\nYes\nYes\nYes\nYes\nYes\nSome American Worthies\nYes\nYes\nYes\nYes\nYes\nThe Turn of the Screw\nYes\nNo\nNo\nNo\nNo\nEthan F rome\nNo\nNo\nNo\nNo\nNo\nSt\u2022 Agnes Eve\nNo\nNo\nNo\nNo\nNo\nChicago Poe t s\nNo\nNo\nNo\nNo\nNO\nModern French Poetry\nNo\nNo\nNo\nNo\nNo\nTwo Greek Poets\nNo\nNo\nNo\nNo\nNo\nReflection-Geo* Orwell\nNo\nNo\nNo\nNo\nNo\nThe Writer at Work\nYes\nNo\nNo\nNo\nNo\nEncore\nYes\nYes\nNo\nYes\nYes\nEgois t in Tragedy\nYes\nYes\nYes\nYes\nYes\nFour Ages Japan\nNo\ntfes\nNo\nYes\nNo\nWhat is Modern Poetry\nYes\nYes\nNo\nYes\nYes"} | json_instruct | {"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": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 29503, "cartId" : "66a92829-c474-492d-9e5c-c23fa10cac81", "preferredProducts" : [1947, 3183, 3933, 3043, 4925, 1972, 3436, 4661, 1540, 2298], "productReviews" : [{"productId" : 264, "reviewText" : "this groupware is top-notch.", "reviewDate" : "2017-10-04T17:39:36.097349+03:00"}, {"productId" : 2844, "reviewText" : "I saw one of these in Saint Pierre and Miquelon and I bought one.", "reviewDate" : "2016-11-12T22:25:42.0432059+02:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "type": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Official Made Beaver; The traditional Metis Currency", "symbol" : "MB", "address" : "0x6daaf4cfcda1605519d331d35e7a978ee71327cf", "decimals" : 4, "type" : "ERC20"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "type": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0x60a547f24eb7b8196d23c09aa925575399f029c702a13e034aba292727f63ce6", "parentHash" : "0xe4483eb3a89efad156791f48822827e3a0be36113015ef18aa1711549cd8e9fb", "number" : 42732, "timestamp" : 1438861210, "nonce" : "0xd3127c2916b315dc", "difficulty" : 1356506572278, "gasLimit" : {"_hex" : "0x1798"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x4F85e43F44D2B0e6f57C9355806cE3e1B3F40Ab8", "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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"create-nextjs-starter": {"type": "string"}}, "required": ["create-nextjs-starter"]}, "files": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "engines": {"type": "object", "properties": {"npm": {"type": "string"}, "node": {"type": "string"}}, "required": ["npm", "node"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "bin", "files", "homepage", "repository", "bugs", "engines", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "create-nextjs-starter", "version" : "1.0.0", "description" : "Clone NextJS Starter Project", "main" : "index.js", "bin" : {"create-nextjs-starter" : "./index.js"}, "files" : ["index.js"], "homepage" : "https://github.com/shandysiswandi/create-nextjs-starter", "repository" : {"type" : "git", "url" : "git+https://github.com/shandysiswandi/create-nextjs-starter.git"}, "bugs" : {"url" : "https://github.com/shandysiswandi/create-nextjs-starter/issues"}, "engines" : {"npm" : ">=6.14.13", "node" : ">=14.17.1"}, "keywords" : ["NextJS", "Typescript", "NodeJS", "ReactJS", "Tailwindcss", "Jest", "Testing Framework"], "author" : "Shandy Siswandi", "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"create-nextjs-starter": {"type": "string"}}, "required": ["create-nextjs-starter"]}, "files": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "engines": {"type": "object", "properties": {"npm": {"type": "string"}, "node": {"type": "string"}}, "required": ["npm", "node"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "bin", "files", "homepage", "repository", "bugs", "engines", "keywords", "author", "license"], "$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"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "express": {"type": "string"}, "google": {"type": "string"}, "request": {"type": "string"}, "request-promise": {"type": "string"}, "ws": {"type": "string"}}, "required": ["axios", "express", "google", "request", "request-promise", "ws"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mtpb", "version" : "0.0.1", "description" : "Murder Trivia Party Bot! Invite me and I'll play the game with you.", "main" : "index.js", "scripts" : {"test" : "test"}, "repository" : {"type" : "git", "url" : "git+https://github.com/loganripplinger/mtpb.git"}, "keywords" : ["jackbox", "murder", "trivia", "party", "bot"], "author" : "Logan Ripplinger", "license" : "No License", "bugs" : {"url" : "https://github.com/loganripplinger/mtpb/issues"}, "homepage" : "https://github.com/loganripplinger/mtpb#readme", "dependencies" : {"axios" : "^0.16.2", "express" : "^4.16.3", "google" : "^2.1.0", "request" : "^2.85.0", "request-promise" : "^4.2.2", "ws" : "^5.1.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"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "express": {"type": "string"}, "google": {"type": "string"}, "request": {"type": "string"}, "request-promise": {"type": "string"}, "ws": {"type": "string"}}, "required": ["axios", "express", "google", "request", "request-promise", "ws"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "premises": {"type": "array", "items": {"type": "string"}}}, "required": ["citations", "argumentText", "conclusion", "language", "lookupTerms", "metaLanguage", "premises"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"citations" : [{"textCitation" : "[See entr on Metamath](http://us.metamath.org/mpegif/entr.html)"}], "argumentText" : "ARGUMENT\n\n| Step | Hyp | Ref | Expression |\n|---|---|---|---|\n\n| 1 | | #P_ener | |- ~~ Er _V |\n| 2 | 1 | #P_a1i | |- ( T. -> ~~ Er _V ) |\n| 3 | 2 | #P_ertr | |- ( T. -> ( ( A ~~ B /\\ B ~~ C ) -> A ~~ C ) ) |\n| 4 | 3 | #P_trud | |- ( ( A ~~ B /\\ B ~~ C ) -> A ~~ C ) |", "conclusion" : "#P_entr", "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cen", "#T_wer", "#T_cvv", "#T_wtru", "#T_wi", "#T_cen", "#T_wer", "#T_cvv", "#T_wtru", "#T_wi", "#T_cA.wceq", "#T_cen", "#T_cB.wceq", "#T_wa", "#T_cB.wceq", "#T_cen", "#T_cC", "#T_wi", "#T_cA.wceq", "#T_cen", "#T_cC", "#T_cA", "#T_cen", "#T_cB", "#T_wa", "#T_cB", "#T_cen", "#T_cC", "#T_wi", "#T_cA", "#T_cen", "#T_cC"], "metaLanguage" : "METAMATH", "premises" : ["#P_ener", "#P_trud", "#P_ertr", "#P_a1i"]} | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "premises": {"type": "array", "items": {"type": "string"}}}, "required": ["citations", "argumentText", "conclusion", "language", "lookupTerms", "metaLanguage", "premises"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {}, "required": []}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": "object", "properties": {"17e5ywk9sEK5uXWzMMJVsjhnxtcE6B8tcy": {"type": "string"}}, "required": ["17e5ywk9sEK5uXWzMMJVsjhnxtcE6B8tcy"]}, "user": {"type": "array", "items": {"type": "object", "properties": {"avatar": {"type": "string"}, "date_added": {"type": "integer"}, "hub": {"type": "string"}, "intro": {"type": "string"}, "user_name": {"type": "string"}}, "required": ["avatar", "date_added", "hub", "intro", "user_name"]}}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs", "user"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"address" : "1UDbADib99KE9d3qZ87NqJF2QLTHmMkoV", "cert_auth_type" : "web", "cert_sign" : "G3Rl88lgdGehiH+oCkQYbzMaao8Pa/nTHRAv2GjcO+T09Mm3E92Kj9Youc6V2Ln5MkwPTw8IjDKugNXKNX/zF/Q=", "cert_user_id" : "sp1ke77@zeroid.bit", "files" : {}, "inner_path" : "data/userdb/17e5ywk9sEK5uXWzMMJVsjhnxtcE6B8tcy/content.json", "modified" : 1489203370, "signs" : {"17e5ywk9sEK5uXWzMMJVsjhnxtcE6B8tcy" : "G1MjXBrjrvPNYyXOsSe9QdtZQAX5EVD2JMbY91FMvs4wHwZHkzhmBPCzziJzSimgv9lQjPmVbe438mp2t/SKYB8="}, "user" : [{"avatar" : "jpg", "date_added" : 1489203370, "hub" : "1oranGeS2xsKZ4jVsu9SVttzgkYXu4k9v", "intro" : "Random ZeroNet user", "user_name" : "Sp1ke77"}]} | 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": "object", "properties": {"17e5ywk9sEK5uXWzMMJVsjhnxtcE6B8tcy": {"type": "string"}}, "required": ["17e5ywk9sEK5uXWzMMJVsjhnxtcE6B8tcy"]}, "user": {"type": "array", "items": {"type": "object", "properties": {"avatar": {"type": "string"}, "date_added": {"type": "integer"}, "hub": {"type": "string"}, "intro": {"type": "string"}, "user_name": {"type": "string"}}, "required": ["avatar", "date_added", "hub", "intro", "user_name"]}}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs", "user"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"" : {"model" : "chipped:block/magenta_concrete_17"}}} | 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#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[2006, 6], [2009, 7]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"black": {"type": "string"}, "white": {"type": "string"}, "winner": {"type": "string"}, "playedAt": {"type": "string"}, "location": {"type": "string"}, "event": {"type": "string"}, "moves": {"type": "string"}}, "required": ["black", "white", "winner", "playedAt", "location", "event", "moves"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"black" : "Rapport,R", "white" : "Radjabov,T", "winner" : "Draw", "playedAt" : "2017.11.25", "location" : "Palma de Mallorca ESP", "event" : "Palma De Mallorca GP 2017", "moves" : "pgn1. d4 d5 2. c4 c6 3. Nf3 e6 4. Bg5 Be7 5. Bxe7 Qxe7 6. Nbd2 Nf6 7. g3 O-O\n8. Bg2 b6 9. O-O Bb7 10. Ne5 Nbd7 11. Nxd7 Nxd7 12. Rc1 Rfd8 13. Qb3 Rab8\n14. Rfd1 Nf6 15. Qa4 Ba8 16. b3 a5 17. c5 Nd7 18. cxb6 Qb4 19. Qxb4 axb4\n20. e3 Rxb6 21. Nf3 Bb7 22. Rc2 Ra8 23. Bf1 Kf8 24. Rdc1 Ke7 25. Ne1 Ra5\n26. Kg2 Kd6 27. Nd3 Ba6 28. Nc5 Bxf1+ 29. Kxf1 Kc7 30. Nd3 Ra8 31. f4 Kd6\n32. g4 Rc8 33. h4 Nf6 34. Ne5 Rc7 35. Kg2 Ne4 36. Kf3 1/2-1/2\n"} | json_instruct | {"type": "object", "properties": {"black": {"type": "string"}, "white": {"type": "string"}, "winner": {"type": "string"}, "playedAt": {"type": "string"}, "location": {"type": "string"}, "event": {"type": "string"}, "moves": {"type": "string"}}, "required": ["black", "white", "winner", "playedAt", "location", "event", "moves"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"hello": {"type": "string"}}, "required": ["hello"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hello" : "https://23294_49615.adobeioruntime.net/api/v1/web/JaegerHackathon-0.0.1/hello"} | json_instruct | {"type": "object", "properties": {"hello": {"type": "string"}}, "required": ["hello"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"identifier": {"type": "string"}, "url": {"type": "string"}}, "required": ["identifier", "url"]}, "url": {"type": "string"}, "hash": {"type": "string"}, "installer": {"type": "object", "properties": {"script": {"type": "string"}}, "required": ["script"]}, "post_install": {"type": "string"}, "bin": {"type": "string"}, "shortcuts": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "checkver": {"type": "object", "properties": {"url": {"type": "string"}, "jsonpath": {"type": "string"}}, "required": ["url", "jsonpath"]}, "autoupdate": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["version", "description", "homepage", "license", "url", "hash", "installer", "post_install", "bin", "shortcuts", "checkver", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "6.2.17", "description" : "NoSQLBooster for MongoDB (formerly MongoBooster) is a shell-centric cross-platform GUI tool for MongoDB v2.6-4.4, which provides comprehensive server monitoring tools, fluent query builder, SQL query, query code, task schedulingserver monitoring tools, ESNext support, and true IntelliSense experience.", "homepage" : "https://nosqlbooster.com/", "license" : {"identifier" : "EULA", "url" : "https://nosqlbooster.com/eula"}, "url" : "https://s3.mongobooster.com/download/releasesv6/nosqlbooster4mongo-6.2.17.exe#/dl.7z", "hash" : "ddcc17f0897d20ed79bc6e05106f0aebf0db5badc657c3381518d8d02a43f55c", "installer" : {"script" : "Expand-7zipArchive \"$dir\\`$PLUGINSDIR\\app-64.7z\" \"$dir\""}, "post_install" : "Remove-Item \"$dir\\`$PLUGINSDIR\" -Force -Recurse", "bin" : "NoSQLBooster for MongoDB.exe", "shortcuts" : [["NoSQLBooster for MongoDB.exe", "NoSQLBooster for MongoDB"]], "checkver" : {"url" : "https://www.nosqlbooster.com/nosqlbooster4mongo/latestversion/", "jsonpath" : "$.version"}, "autoupdate" : {"url" : "https://s3.mongobooster.com/download/releasesv6/nosqlbooster4mongo-$version.exe#/dl.7z"}} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"identifier": {"type": "string"}, "url": {"type": "string"}}, "required": ["identifier", "url"]}, "url": {"type": "string"}, "hash": {"type": "string"}, "installer": {"type": "object", "properties": {"script": {"type": "string"}}, "required": ["script"]}, "post_install": {"type": "string"}, "bin": {"type": "string"}, "shortcuts": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "checkver": {"type": "object", "properties": {"url": {"type": "string"}, "jsonpath": {"type": "string"}}, "required": ["url", "jsonpath"]}, "autoupdate": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["version", "description", "homepage", "license", "url", "hash", "installer", "post_install", "bin", "shortcuts", "checkver", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"900621321": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900621322": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900621323": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900621324": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900621325": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900621326": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900621327": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900621328": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900621329": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900621321", "900621322", "900621323", "900621324", "900621325", "900621326", "900621327", "900621328", "900621329"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"900621321" : {"nama" : "TPS 1", "dapil" : [5101, 15105, 2510805]}, "900621322" : {"nama" : "TPS 2", "dapil" : [5101, 15105, 2510805]}, "900621323" : {"nama" : "TPS 3", "dapil" : [5101, 15105, 2510805]}, "900621324" : {"nama" : "TPS 4", "dapil" : [5101, 15105, 2510805]}, "900621325" : {"nama" : "TPS 5", "dapil" : [5101, 15105, 2510805]}, "900621326" : {"nama" : "TPS 6", "dapil" : [5101, 15105, 2510805]}, "900621327" : {"nama" : "TPS 7", "dapil" : [5101, 15105, 2510805]}, "900621328" : {"nama" : "TPS 8", "dapil" : [5101, 15105, 2510805]}, "900621329" : {"nama" : "TPS 9", "dapil" : [5101, 15105, 2510805]}} | json_instruct | {"type": "object", "properties": {"900621321": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900621322": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900621323": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900621324": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900621325": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900621326": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900621327": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900621328": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900621329": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900621321", "900621322", "900621323", "900621324", "900621325", "900621326", "900621327", "900621328", "900621329"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "number"}}, "required": ["xmin", "width", "ymin", "height"]}, "relativeKeypoints": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "number"}, "x": {"type": "number"}}, "required": ["y", "x"]}}, "format": {"type": "string"}}, "required": ["relativeBoundingBox", "relativeKeypoints", "format"]}, "score": {"type": "array", "items": {"type": "number"}}, "label": {"type": "array", "items": {"type": "string"}}}, "required": ["locationData", "score", "label"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"locationData" : {"relativeBoundingBox" : {"xmin" : 0.6504294, "width" : 0.07389122, "ymin" : 0.6102045, "height" : 0.09236418}, "relativeKeypoints" : [{"y" : 0.62175465, "x" : 0.66703993}, {"y" : 0.67795455, "x" : 0.7105621}, {"y" : 0.68923724, "x" : 0.69031006}, {"y" : 0.6965691, "x" : 0.67216754}, {"y" : 0.70063204, "x" : 0.65635884}, {"y" : 0.6183519, "x" : 0.6941438}, {"y" : 0.64745617, "x" : 0.7185875}], "format" : "RELATIVE_BOUNDING_BOX"}, "score" : [0.9998785], "label" : ["Palm"]} | json_instruct | {"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "number"}}, "required": ["xmin", "width", "ymin", "height"]}, "relativeKeypoints": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "number"}, "x": {"type": "number"}}, "required": ["y", "x"]}}, "format": {"type": "string"}}, "required": ["relativeBoundingBox", "relativeKeypoints", "format"]}, "score": {"type": "array", "items": {"type": "number"}}, "label": {"type": "array", "items": {"type": "string"}}}, "required": ["locationData", "score", "label"], "$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"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 119519, "info" : {"name" : "forum.ncis.ir", "description" : "\u0628\u0639\u062f \u0627\u0632 \u0644\u0627\u06af\u06cc\u0646 \u0628\u0647 \u0641\u0631\u0648\u0645\u060c \u067e\u0633\u062a \u0647\u0627\u06cc \u0637\u0648\u0644\u0627\u0646\u06cc \u0646\u0627\u0642\u0635 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u0645\u06cc\u0634\u0646. \u0641\u0639\u0644\u0627\u064b \u0627\u06cc\u0646 \u06cc\u06a9 \u0641\u06cc\u06a9\u0633 \u0645\u0648\u0642\u062a \u0647\u0633\u062a \u062a\u0627 \u0627\u062f\u0645\u06cc\u0646 \u0633\u0627\u06cc\u062a \u0641\u06a9\u0631\u06cc \u0628\u0647 \u062d\u0627\u0644\u0634 \u0628\u06a9\u0646\u0647.", "additionalInfo" : null, "format" : "uso", "category" : "ncis", "createdAt" : "2015-10-08T08:47:06.000Z", "updatedAt" : "2015-10-08T08:47:06.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 300093, "name" : "bobsilon"}}, "stats" : {"installs" : {"total" : 69, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "119519_after.jpeg", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document domain('forum.ncis.ir') {\r\n .post_content {\r\n \tmargin-bottom: 0;\r\n padding: 0 1% 5px 1%;\r\n }\r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"static/development/pages/index.js": {"type": "boolean"}}, "required": ["static/development/pages/index.js"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "1272ebb8fe2f644b94b3", "c" : {"static/development/pages/index.js" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"static/development/pages/index.js": {"type": "boolean"}}, "required": ["static/development/pages/index.js"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"version": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "shapes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "points": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "group_id": {"type": "integer"}, "shape_type": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}}, "required": ["label", "points", "group_id", "shape_type", "flags"]}}, "imagePath": {"type": "string"}, "imageData": {"type": "string"}, "imageHeight": {"type": "integer"}, "imageWidth": {"type": "integer"}}, "required": ["version", "flags", "shapes", "imagePath", "imageData", "imageHeight", "imageWidth"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "4.5.7", "flags" : {}, "shapes" : [{"label" : "null", "points" : [[542.0, 295.0], [1897.0, 157.0], [1941.0, 615.0], [490.0, 730.0]], "group_id" : 0, "shape_type" : "polygon", "flags" : {}}, {"label" : "null", "points" : [[2295.0, 462.0], [2584.4155844155844, 448.11688311688306], [2588.0, 599.0], [2301.2987012987014, 609.1558441558442]], "group_id" : 0, "shape_type" : "polygon", "flags" : {}}, {"label" : "null", "points" : [[2710.0, 444.0], [2987.0129870129867, 418.2467532467532], [2984.0, 568.0], [2698.0, 584.0]], "group_id" : 0, "shape_type" : "polygon", "flags" : {}}, {"label" : "null", "points" : [[3096.0, 400.0], [3531.0, 375.0], [3539.0, 538.0], [3082.608695652174, 553.695652173913]], "group_id" : 0, "shape_type" : "polygon", "flags" : {}}, {"label" : "null", "points" : [[3576.0, 375.0], [4009.0, 354.0], [4012.0, 493.0], [3568.0, 513.0]], "group_id" : 2, "shape_type" : "polygon", "flags" : {}}, {"label" : "null", "points" : [[4062.0, 351.0], [4421.0, 326.0], [4429.0, 457.0], [4054.0, 483.0]], "group_id" : 2, "shape_type" : "polygon", "flags" : {}}], "imagePath" : "img_2941.jpg", "imageData" : "null", "imageHeight" : 1023, "imageWidth" : 5022} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "shapes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "points": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "group_id": {"type": "integer"}, "shape_type": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}}, "required": ["label", "points", "group_id", "shape_type", "flags"]}}, "imagePath": {"type": "string"}, "imageData": {"type": "string"}, "imageHeight": {"type": "integer"}, "imageWidth": {"type": "integer"}}, "required": ["version", "flags", "shapes", "imagePath", "imageData", "imageHeight", "imageWidth"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.