input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"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.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"latest_version" : ["0.1"], "meta" : {"description" : "A thin wrapper for accessing the Last.fm API with Twisted", "homepage" : "https://github.com/rockstar/txlastfmapi", "license" : "http://www.opensource.org/licenses/mit-license.php"}, "versions" : {"0.1" : {"sha256" : "812db6a8058e693bf2f2cb21fb7a855c6d967b4a20be2f504e4cec815ea7a612", "url" : "https://files.pythonhosted.org/packages/b3/73/898fd1d3979b354b21fda0d7db0c5c1f6615fe65895da6696870cc2882e1/txlastfmapi-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.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"$metric": {"type": "string"}, "$type": {"type": "string"}, "oid": {"type": "string"}}, "required": ["$metric", "$type", "oid"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$metric" : "CPU | Load | 1min", "$type" : "slot", "oid" : "1.3.6.1.4.1.2011.6.3.4.1.3.{{ hwSlotIndex }}"} | json_instruct | {"type": "object", "properties": {"$metric": {"type": "string"}, "$type": {"type": "string"}, "oid": {"type": "string"}}, "required": ["$metric", "$type", "oid"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"headerText": {"type": "string"}}, "required": ["headerText"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"headerText" : "`v-touch`\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6\u306b\u3088\u3063\u3066\u3001\u5404\u65b9\u5411\u306e\u30b9\u30ef\u30a4\u30d7\u306b\u5bfe\u3057\u3066\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002"} | json_instruct | {"type": "object", "properties": {"headerText": {"type": "string"}}, "required": ["headerText"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"category": {"type": "integer"}, "codes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}}, "required": ["code"]}}}, "required": ["category", "codes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"category" : 24, "codes" : [{"code" : "94531-1"}]} | json_instruct | {"type": "object", "properties": {"category": {"type": "integer"}, "codes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}}, "required": ["code"]}}}, "required": ["category", "codes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"elasticio-node": {"type": "string"}, "elasticio-sailor-nodejs": {"type": "string"}, "swagger-client": {"type": "string"}}, "required": ["elasticio-node", "elasticio-sailor-nodejs", "swagger-client"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "amazonaws-com-dax-connector", "version" : "2017.0.0", "description" : "DAX is a managed caching service engineered for Amazon DynamoDB. DAX dramatically speeds up database reads by caching frequently-accessed data from DynamoDB, so applications can access that data with sub-millisecond latency. You can create a DAX cluster easily, using the AWS Management Console. With a few simple modifications to your code, your application can begin taking advantage of the DAX cluster and realize significant improvements in read performance.", "main" : "component.json", "dependencies" : {"elasticio-node" : "0.0.9", "elasticio-sailor-nodejs" : "^2.2.1", "swagger-client" : "^3.8.22"}, "author" : {"name" : "Deutsche Telekom AG"}, "license" : "Apache-2.0"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"elasticio-node": {"type": "string"}, "elasticio-sailor-nodejs": {"type": "string"}, "swagger-client": {"type": "string"}}, "required": ["elasticio-node", "elasticio-sailor-nodejs", "swagger-client"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 404360495, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "58e5fa28ab4f33108536416f5b29c61f", "wof:id" : 404360495, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [-1.62853827607537, 48.50158572183628, -1.51778064817255, 48.56190103724774], "geometry" : {"coordinates" : [[[-1.57782966963133, 48.50194845378505], [-1.58789189493453, 48.50242498469679], [-1.60028765987544, 48.50785649975899], [-1.62853827607537, 48.50158572183628], [-1.61910551924762, 48.52533736401446], [-1.62148223806626, 48.54243806993119], [-1.58134471754112, 48.54930024732334], [-1.57326361324622, 48.55809062221351], [-1.55801155030746, 48.55643305908338], [-1.52717082763099, 48.56190103724774], [-1.53310982062892, 48.54943855562498], [-1.51976645659286, 48.53965712227327], [-1.51778064817255, 48.52984824746782], [-1.52279298856612, 48.52976558489132], [-1.53612548647862, 48.51985900435847], [-1.54627554314101, 48.52006549280584], [-1.55700972439433, 48.51294995190315], [-1.57188359201162, 48.51135081361724], [-1.57782966963133, 48.50194845378505]]], "type" : "Polygon"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"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" : "Mont-l'Etroit", "circ" : "5\u00e8me circonscription", "dpt" : "Meurthe-et-Moselle", "inscrits" : 65, "abs" : 30, "votants" : 35, "blancs" : 4, "nuls" : 1, "exp" : 30, "res" : [{"nuance" : "SOC", "nom" : "M. Dominique POTIER", "voix" : 18}, {"nuance" : "REM", "nom" : "Mme Marion BUCHET", "voix" : 12}]} | 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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"private": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "directory": {"type": "string"}}, "required": ["type", "url", "directory"]}, "scripts": {"type": "object", "properties": {"format": {"type": "string"}}, "required": ["format"]}, "dependencies": {"type": "object", "properties": {"@microsoft/eslint-plugin-sdl": {"type": "string"}, "@rnx-kit/eslint-plugin": {"type": "string"}, "eslint": {"type": "string"}}, "required": ["@microsoft/eslint-plugin-sdl", "@rnx-kit/eslint-plugin", "eslint"]}}, "required": ["private", "name", "version", "description", "homepage", "license", "files", "main", "repository", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"private" : "true", "name" : "@rnx-kit/eslint-config", "version" : "0.0.1", "description" : "Shareable ESLint config for @rnx-kit", "homepage" : "https://github.com/microsoft/rnx-kit/tree/main/packages/eslint-config#readme", "license" : "MIT", "files" : ["index.js"], "main" : "index.js", "repository" : {"type" : "git", "url" : "https://github.com/microsoft/rnx-kit", "directory" : "packages/eslint-config"}, "scripts" : {"format" : "rnx-kit-scripts format"}, "dependencies" : {"@microsoft/eslint-plugin-sdl" : "^0.1.9", "@rnx-kit/eslint-plugin" : "*", "eslint" : "^8.0.0"}} | json_instruct | {"type": "object", "properties": {"private": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "directory": {"type": "string"}}, "required": ["type", "url", "directory"]}, "scripts": {"type": "object", "properties": {"format": {"type": "string"}}, "required": ["format"]}, "dependencies": {"type": "object", "properties": {"@microsoft/eslint-plugin-sdl": {"type": "string"}, "@rnx-kit/eslint-plugin": {"type": "string"}, "eslint": {"type": "string"}}, "required": ["@microsoft/eslint-plugin-sdl", "@rnx-kit/eslint-plugin", "eslint"]}}, "required": ["private", "name", "version", "description", "homepage", "license", "files", "main", "repository", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"anncomplete": {"type": "boolean"}, "sources": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "name": {"type": "string"}, "id": {"type": "string"}}, "required": ["url", "name", "id"]}}, "entities": {"type": "array", "items": {"type": "object", "properties": {"classId": {"type": "string"}, "part": {"type": "string"}, "offsets": {"type": "array", "items": {"type": "object", "properties": {"start": {"type": "integer"}, "text": {"type": "string"}}, "required": ["start", "text"]}}, "confidence": {"type": "object", "properties": {"state": {"type": "string"}, "who": {"type": "array", "items": {"type": "string"}}, "prob": {"type": "number"}}, "required": ["state", "who", "prob"]}, "fields": {"type": "object", "properties": {}, "required": []}, "normalizations": {"type": "object", "properties": {}, "required": []}}, "required": ["classId", "part", "offsets", "confidence", "fields", "normalizations"]}}, "relations": {"type": "array", "items": {}}, "metas": {"type": "object", "properties": {}, "required": []}, "annotatable": {"type": "object", "properties": {"parts": {"type": "array", "items": {"type": "string"}}}, "required": ["parts"]}}, "required": ["anncomplete", "sources", "entities", "relations", "metas", "annotatable"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"anncomplete" : false, "sources" : [{"url" : "", "name" : "ORIG", "id" : "10634139"}, {"name" : "PMID", "id" : "10634139", "url" : "http://www.ncbi.nlm.nih.gov/pubmed/10634139"}], "entities" : [{"classId" : "e_2", "part" : "s1p1", "offsets" : [{"start" : 37, "text" : "S145C"}], "confidence" : {"state" : "", "who" : ["ml:nalaf"], "prob" : 0.8241020921618295}, "fields" : {}, "normalizations" : {}}, {"classId" : "e_2", "part" : "s1p1", "offsets" : [{"start" : 43, "text" : "L311V"}], "confidence" : {"state" : "", "who" : ["ml:nalaf"], "prob" : 0.9433161867095877}, "fields" : {}, "normalizations" : {}}, {"classId" : "e_2", "part" : "s1p2", "offsets" : [{"start" : 473, "text" : "substitutions of C with G at positions 434 and 931"}], "confidence" : {"state" : "", "who" : ["user:jmcejuela"], "prob" : 1}, "fields" : {}, "normalizations" : {}}, {"classId" : "e_2", "part" : "s1p2", "offsets" : [{"start" : 567, "text" : "Ser145 to Cys"}], "confidence" : {"state" : "", "who" : ["user:jmcejuela"], "prob" : 1}, "fields" : {}, "normalizations" : {}}, {"classId" : "e_2", "part" : "s1p2", "offsets" : [{"start" : 582, "text" : "S145C"}], "confidence" : {"state" : "", "who" : ["user:jmcejuela"], "prob" : 1}, "fields" : {}, "normalizations" : {}}, {"classId" : "e_2", "part" : "s1p2", "offsets" : [{"start" : 593, "text" : "Leu311 to Val"}], "confidence" : {"state" : "", "who" : ["ml:nalaf"], "prob" : 0.9778931908499755}, "fields" : {}, "normalizations" : {}}, {"classId" : "e_2", "part" : "s1p2", "offsets" : [{"start" : 608, "text" : "L311V"}], "confidence" : {"state" : "", "who" : ["ml:nalaf"], "prob" : 0.9619195308572067}, "fields" : {}, "normalizations" : {}}, {"classId" : "e_2", "part" : "s1p2", "offsets" : [{"start" : 920, "text" : "S145C"}], "confidence" : {"state" : "", "who" : ["user:jmcejuela"], "prob" : 1}, "fields" : {}, "normalizations" : {}}, {"classId" : "e_2", "part" : "s1p2", "offsets" : [{"start" : 926, "text" : "L311V"}], "confidence" : {"state" : "", "who" : ["ml:nalaf"], "prob" : 0.9502365466260206}, "fields" : {}, "normalizations" : {}}, {"classId" : "e_2", "part" : "s1p2", "offsets" : [{"start" : 1112, "text" : "S145C"}], "confidence" : {"state" : "", "who" : ["user:jmcejuela"], "prob" : 1}, "fields" : {}, "normalizations" : {}}], "relations" : [], "metas" : {}, "annotatable" : {"parts" : ["s1p1", "s1p2"]}} | json_instruct | {"type": "object", "properties": {"anncomplete": {"type": "boolean"}, "sources": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "name": {"type": "string"}, "id": {"type": "string"}}, "required": ["url", "name", "id"]}}, "entities": {"type": "array", "items": {"type": "object", "properties": {"classId": {"type": "string"}, "part": {"type": "string"}, "offsets": {"type": "array", "items": {"type": "object", "properties": {"start": {"type": "integer"}, "text": {"type": "string"}}, "required": ["start", "text"]}}, "confidence": {"type": "object", "properties": {"state": {"type": "string"}, "who": {"type": "array", "items": {"type": "string"}}, "prob": {"type": "number"}}, "required": ["state", "who", "prob"]}, "fields": {"type": "object", "properties": {}, "required": []}, "normalizations": {"type": "object", "properties": {}, "required": []}}, "required": ["classId", "part", "offsets", "confidence", "fields", "normalizations"]}}, "relations": {"type": "array", "items": {}}, "metas": {"type": "object", "properties": {}, "required": []}, "annotatable": {"type": "object", "properties": {"parts": {"type": "array", "items": {"type": "string"}}}, "required": ["parts"]}}, "required": ["anncomplete", "sources", "entities", "relations", "metas", "annotatable"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Preheat oven to 325 degrees F (165 degrees C). Line a jelly roll pan with aluminum foil and lightly brush with 1 teaspoon oil.", "Place wings in a single layer on the prepared pan, skin-side up, with a little space between each wing. Brush the top of each wing with the 1/3 cup oil. Brush hot sauce over the oil layer.", "Bake in the preheated oven, basting with pan juices a few times, until wings are browned, 1 1/2 to 1 3/4 hours. An instant-read thermometer inserted near the bone should read 165 degrees F (74 degrees C).", "Remove pan from oven and soak up excess grease with paper towels. Spread barbeque sauce over top side of wings.", "Return wings to oven and bake for 5 minutes. Spread a second layer of barbeque sauce over wings; bake for 5 minutes more."], "ingredients" : ["1 teaspoon vegetable oil", "32 frozen chicken wings (such as Costco\u00ae), defrosted", "1/3 cup vegetable oil", "2 tablespoons hot sauce (such as Frank's RedHot \u00ae) (optional)", "3/4 cup barbeque sauce, or more to taste"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Baked BBQ Chicken Wings", "url" : "http://allrecipes.com/recipe/256354/baked-bbq-chicken-wings/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "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 47o6", "symbol" : "47o6R", "decimals" : 6, "address" : "47o6Rv1CDNfUuBSUySU4tbsKMa6viR56h2Dxx5NTcSib", "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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"kinesisStreamConfigurations": {"type": "array", "items": {"type": "object", "properties": {"stream": {"type": "string"}}, "required": ["stream"]}}}, "required": ["kinesisStreamConfigurations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"kinesisStreamConfigurations" : [{"stream" : "K4EventStream-test"}]} | json_instruct | {"type": "object", "properties": {"kinesisStreamConfigurations": {"type": "array", "items": {"type": "object", "properties": {"stream": {"type": "string"}}, "required": ["stream"]}}}, "required": ["kinesisStreamConfigurations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"event": {"type": "object", "properties": {"msoRequest": {"type": "object", "properties": {"requestClientName": {"type": "string"}, "requestId": {"type": "string"}, "requestTime": {"type": "string"}, "sourceName": {"type": "string"}, "reason": {"type": "string"}, "action": {"type": "string"}, "workflowId": {"type": "string"}, "notification": {"type": "string"}}, "required": ["requestClientName", "requestId", "requestTime", "sourceName", "reason", "action", "workflowId", "notification"]}}, "required": ["msoRequest"]}}, "required": ["event"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"event" : {"msoRequest" : {"requestClientName" : "MSO", "requestId" : "abc123", "requestTime" : "test-time", "sourceName" : "source-name", "reason" : "reason", "action" : "Create Ticket", "workflowId" : "work-flow-Id", "notification" : "notification"}}} | json_instruct | {"type": "object", "properties": {"event": {"type": "object", "properties": {"msoRequest": {"type": "object", "properties": {"requestClientName": {"type": "string"}, "requestId": {"type": "string"}, "requestTime": {"type": "string"}, "sourceName": {"type": "string"}, "reason": {"type": "string"}, "action": {"type": "string"}, "workflowId": {"type": "string"}, "notification": {"type": "string"}}, "required": ["requestClientName", "requestId", "requestTime", "sourceName", "reason", "action", "workflowId", "notification"]}}, "required": ["msoRequest"]}}, "required": ["event"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"cppConfig": {"type": "object", "properties": {"watch": {"type": "array", "items": {"type": "object", "properties": {"dirs": {"type": "array", "items": {"type": "string"}}, "ignore": {"type": "string"}, "dest": {"type": "string"}, "keepPath": {"type": "boolean"}}, "required": ["dirs", "ignore", "dest", "keepPath"]}}, "copy": {"type": "array", "items": {"type": "object", "properties": {"dirs": {"type": "array", "items": {"type": "string"}}, "gz": {"type": "boolean"}, "br": {"type": "boolean"}, "dest": {"type": "string"}, "keepPath": {"type": "boolean"}}, "required": ["dirs", "gz", "br", "dest", "keepPath"]}}}, "required": ["watch", "copy"]}}, "required": ["cppConfig"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cppConfig" : {"watch" : [{"dirs" : ["src", "test"], "ignore" : ".ts", "dest" : "dist", "keepPath" : true}], "copy" : [{"dirs" : ["node_modules/muicss/dist/email/*.css"], "gz" : true, "br" : true, "dest" : "dist/src/services/templates", "keepPath" : false}]}} | json_instruct | {"type": "object", "properties": {"cppConfig": {"type": "object", "properties": {"watch": {"type": "array", "items": {"type": "object", "properties": {"dirs": {"type": "array", "items": {"type": "string"}}, "ignore": {"type": "string"}, "dest": {"type": "string"}, "keepPath": {"type": "boolean"}}, "required": ["dirs", "ignore", "dest", "keepPath"]}}, "copy": {"type": "array", "items": {"type": "object", "properties": {"dirs": {"type": "array", "items": {"type": "string"}}, "gz": {"type": "boolean"}, "br": {"type": "boolean"}, "dest": {"type": "string"}, "keepPath": {"type": "boolean"}}, "required": ["dirs", "gz", "br", "dest", "keepPath"]}}}, "required": ["watch", "copy"]}}, "required": ["cppConfig"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"accountDetails": {"type": "string"}, "balance": {"type": "string"}, "overview": {"type": "string"}, "address": {"type": "string"}, "rewardAddress": {"type": "string"}, "total": {"type": "string"}, "delegations": {"type": "string"}, "redelegations": {"type": "string"}, "unbondings": {"type": "string"}, "validator": {"type": "string"}, "amount": {"type": "string"}, "reward": {"type": "string"}, "commission": {"type": "string"}, "from": {"type": "string"}, "to": {"type": "string"}, "linkedUntil": {"type": "string"}, "scanForAddress": {"type": "string"}, "shareTo": {"type": "string"}, "transactions": {"type": "string"}, "balanceAvailable": {"type": "string"}, "balanceDelegate": {"type": "string"}, "balanceUnbonding": {"type": "string"}, "balanceReward": {"type": "string"}, "balanceCommission": {"type": "string"}, "otherTokens": {"type": "string"}, "token": {"type": "string"}, "available": {"type": "string"}, "connections": {"type": "string"}, "connectionsTitle": {"type": "string"}, "network": {"type": "string"}, "identifier": {"type": "string"}, "creationTime": {"type": "string"}, "bio": {"type": "string"}, "status": {"type": "string"}}, "required": ["accountDetails", "balance", "overview", "address", "rewardAddress", "total", "delegations", "redelegations", "unbondings", "validator", "amount", "reward", "commission", "from", "to", "linkedUntil", "scanForAddress", "shareTo", "transactions", "balanceAvailable", "balanceDelegate", "balanceUnbonding", "balanceReward", "balanceCommission", "otherTokens", "token", "available", "connections", "connectionsTitle", "network", "identifier", "creationTime", "bio", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"accountDetails" : "Account Details", "balance" : "Balance", "overview" : "Overview", "address" : "Address", "rewardAddress" : "Reward Address", "total" : "Total {{unit}}", "delegations" : "Delegations ({{num}})", "redelegations" : "Redelegations ({{num}})", "unbondings" : "Unbondings ({{num}})", "validator" : "Validator", "amount" : "Amount", "reward" : "Reward", "commission" : "Commission", "from" : "From", "to" : "To", "linkedUntil" : "Linked Until", "scanForAddress" : "Scan for address", "shareTo" : "Share to", "transactions" : "Transactions", "balanceAvailable" : "Available", "balanceDelegate" : "Delegate", "balanceUnbonding" : "Unbonding", "balanceReward" : "Reward", "balanceCommission" : "Commission", "otherTokens" : "Other Tokens", "token" : "Token", "available" : "Available", "connections" : "{{connections}} Connection(s)", "connectionsTitle" : "Connections", "network" : "Network", "identifier" : "Identifier", "creationTime" : "Creation Time", "bio" : "Bio", "status" : "Status"} | json_instruct | {"type": "object", "properties": {"accountDetails": {"type": "string"}, "balance": {"type": "string"}, "overview": {"type": "string"}, "address": {"type": "string"}, "rewardAddress": {"type": "string"}, "total": {"type": "string"}, "delegations": {"type": "string"}, "redelegations": {"type": "string"}, "unbondings": {"type": "string"}, "validator": {"type": "string"}, "amount": {"type": "string"}, "reward": {"type": "string"}, "commission": {"type": "string"}, "from": {"type": "string"}, "to": {"type": "string"}, "linkedUntil": {"type": "string"}, "scanForAddress": {"type": "string"}, "shareTo": {"type": "string"}, "transactions": {"type": "string"}, "balanceAvailable": {"type": "string"}, "balanceDelegate": {"type": "string"}, "balanceUnbonding": {"type": "string"}, "balanceReward": {"type": "string"}, "balanceCommission": {"type": "string"}, "otherTokens": {"type": "string"}, "token": {"type": "string"}, "available": {"type": "string"}, "connections": {"type": "string"}, "connectionsTitle": {"type": "string"}, "network": {"type": "string"}, "identifier": {"type": "string"}, "creationTime": {"type": "string"}, "bio": {"type": "string"}, "status": {"type": "string"}}, "required": ["accountDetails", "balance", "overview", "address", "rewardAddress", "total", "delegations", "redelegations", "unbondings", "validator", "amount", "reward", "commission", "from", "to", "linkedUntil", "scanForAddress", "shareTo", "transactions", "balanceAvailable", "balanceDelegate", "balanceUnbonding", "balanceReward", "balanceCommission", "otherTokens", "token", "available", "connections", "connectionsTitle", "network", "identifier", "creationTime", "bio", "status"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"title": {"type": "string"}, "credit": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "credit", "explanation", "date", "hdurl", "service_version", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Brown Dwarf Gliese 229B", "credit" : "R.H. Brown, D. Trilling (U. Arizona), C. Ftaclas (Michigan Tech), IRTF", "explanation" : "The spot near the bottom is an image of an unusual type of object: a brown dwarf. A brown dwarf is sometimes called a \"failed star\" because it does not have enough mass to shine by nuclear fusion. A brown dwarf is more massive than a planet, though, and thought to have formed through stellar-like nebular condensation. Brown dwarfs and planets are likely quite abundant, but usually difficult to see in the glare of brighter stars they orbit. New techniques, such as using coronagraphic masks to block the light of the bright star, are allowing the detection of these faint stellar companions. Above, much of the bright light of central Gliese 229A has been blocked and digitally subtracted, leaving the clearest image yet of Gliese 229B. Perfecting techniques like this increases ability to detect still dimmer Earth-type planets orbiting nearby stars.", "date" : "1999-03-24", "hdurl" : "https://apod.nasa.gov/apod/image/9903/gl229_irtf.jpg", "service_version" : "v1", "media_type" : "image", "url" : "https://apod.nasa.gov/apod/image/9903/gl229_irtf_big.jpg"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "credit": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "credit", "explanation", "date", "hdurl", "service_version", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"1.2.137": {"type": "object", "properties": {"com.google.external-dependency-manager/CHANGELOG.md": {"type": "string"}, "com.google.external-dependency-manager/ExternalDependencyManager": {"type": "string"}, "com.google.external-dependency-manager/ExternalDependencyManager/Editor": {"type": "string"}, "com.google.external-dependency-manager/LICENSE.md": {"type": "string"}, "com.google.external-dependency-manager/README.md": {"type": "string"}, "com.google.external-dependency-manager/package.json": {"type": "string"}}, "required": ["com.google.external-dependency-manager/CHANGELOG.md", "com.google.external-dependency-manager/ExternalDependencyManager", "com.google.external-dependency-manager/ExternalDependencyManager/Editor", "com.google.external-dependency-manager/LICENSE.md", "com.google.external-dependency-manager/README.md", "com.google.external-dependency-manager/package.json"]}, "1.2.166": {"type": "object", "properties": {"com.google.external-dependency-manager/ExternalDependencyManager/Editor/1.2.166": {"type": "string"}}, "required": ["com.google.external-dependency-manager/ExternalDependencyManager/Editor/1.2.166"]}, "1.2.167": {"type": "object", "properties": {"com.google.external-dependency-manager/ExternalDependencyManager/Editor/1.2.167": {"type": "string"}}, "required": ["com.google.external-dependency-manager/ExternalDependencyManager/Editor/1.2.167"]}, "1.2.168": {"type": "object", "properties": {"com.google.external-dependency-manager/ExternalDependencyManager/Editor/1.2.168": {"type": "string"}}, "required": ["com.google.external-dependency-manager/ExternalDependencyManager/Editor/1.2.168"]}}, "required": ["1.2.137", "1.2.166", "1.2.167", "1.2.168"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"1.2.137" : {"com.google.external-dependency-manager/CHANGELOG.md" : "dd6a29a412594aadb37d9698db325eca", "com.google.external-dependency-manager/ExternalDependencyManager" : "46f5870ddbde4a6091f50656dcd5573e", "com.google.external-dependency-manager/ExternalDependencyManager/Editor" : "1f23cd25474841f6ad7555705b4807e9", "com.google.external-dependency-manager/LICENSE.md" : "f61a1c8e753b496bb696e77d7eedfb95", "com.google.external-dependency-manager/README.md" : "cbbebcaa6ecb4b9582dce440a386de75", "com.google.external-dependency-manager/package.json" : "9bed450d5c03481d87e61b61431cf00a"}, "1.2.166" : {"com.google.external-dependency-manager/ExternalDependencyManager/Editor/1.2.166" : "9dfec94683154487ab08de0c50179674"}, "1.2.167" : {"com.google.external-dependency-manager/ExternalDependencyManager/Editor/1.2.167" : "75c93e39c49442c9a6c4aea09cc5b982"}, "1.2.168" : {"com.google.external-dependency-manager/ExternalDependencyManager/Editor/1.2.168" : "224d14327d134b0ea5ba8ce2deaa6768"}} | json_instruct | {"type": "object", "properties": {"1.2.137": {"type": "object", "properties": {"com.google.external-dependency-manager/CHANGELOG.md": {"type": "string"}, "com.google.external-dependency-manager/ExternalDependencyManager": {"type": "string"}, "com.google.external-dependency-manager/ExternalDependencyManager/Editor": {"type": "string"}, "com.google.external-dependency-manager/LICENSE.md": {"type": "string"}, "com.google.external-dependency-manager/README.md": {"type": "string"}, "com.google.external-dependency-manager/package.json": {"type": "string"}}, "required": ["com.google.external-dependency-manager/CHANGELOG.md", "com.google.external-dependency-manager/ExternalDependencyManager", "com.google.external-dependency-manager/ExternalDependencyManager/Editor", "com.google.external-dependency-manager/LICENSE.md", "com.google.external-dependency-manager/README.md", "com.google.external-dependency-manager/package.json"]}, "1.2.166": {"type": "object", "properties": {"com.google.external-dependency-manager/ExternalDependencyManager/Editor/1.2.166": {"type": "string"}}, "required": ["com.google.external-dependency-manager/ExternalDependencyManager/Editor/1.2.166"]}, "1.2.167": {"type": "object", "properties": {"com.google.external-dependency-manager/ExternalDependencyManager/Editor/1.2.167": {"type": "string"}}, "required": ["com.google.external-dependency-manager/ExternalDependencyManager/Editor/1.2.167"]}, "1.2.168": {"type": "object", "properties": {"com.google.external-dependency-manager/ExternalDependencyManager/Editor/1.2.168": {"type": "string"}}, "required": ["com.google.external-dependency-manager/ExternalDependencyManager/Editor/1.2.168"]}}, "required": ["1.2.137", "1.2.166", "1.2.167", "1.2.168"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"text": {"type": "string"}, "image": {"type": "string"}}, "required": ["text", "image"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : " 102 THE HISTORY book province of Bretica in <span class=\"place\" data-place-id=\"1027\" >Spain</span>, and was among the first that went over to Galba's interest. That emperor, to reward his zeal,-gave him the command of a legion in Ger- many; but finding, afterwards, that he had been guilty of embezzling the public money, he ordered him to he called to a strict account. Caecina was not of a tem- per to submit with patience. He resolved to embroil the state, and in the general confusion hoped to find a remedy for his own private afflictions. The seed-plots of rebellion were already laid in the army. In the war against Vindex they had taken the field, and, till they heard that Nero was no more, never declared in favour of Galba. Even in that act of submission, they showed no forward zeal, but suffered the legions on the Lower Rhine to take the lead. There was still another circum- stance that helped to sharpen their dis- content. The Treviri, the <span class=\"place\" data-place-id=\"177564\" >Lingones</span>, and other states, which had felt the severity of Galba's edicts, or had seen their territory reduced to narrower limits, lay contiguous to the winter-quarters of the legions. Hence frequent intercourse, cabals, and", "image" : "http://books.google.com/books?id=2X5KAAAAYAAJ&pg=PA102&img=1&zoom=3&hl=en&sig=ACfU3U0rMWJYjOUUWKagMuJDc_w_nCsk_w&ci=0%2C0%2C1000%2C2000&edge=0"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "image": {"type": "string"}}, "required": ["text", "image"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"derivation": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "outline": {"type": "string"}}, "required": ["derivation", "kjv_def", "lemma", "frequency", "strongs_def", "outline"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"derivation" : "apparently from (to parch;", "kjv_def" : "leg", "lemma" : "\u03c3\u03ba\u03ad\u03bb\u03bf\u03c2", "frequency" : 3, "strongs_def" : " through the idea of leanness); the leg (as lank)", "outline" : "<ol><li> the leg, from the hip to the toes inclusive</li></ol>"} | json_instruct | {"type": "object", "properties": {"derivation": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "outline": {"type": "string"}}, "required": ["derivation", "kjv_def", "lemma", "frequency", "strongs_def", "outline"], "$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": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"merged" : "/home/anoop/Visteon/StripePaymentSDK/stripe-appstore/cardverificationsheet/build/intermediates/merged_res/debug/drawable-watch-v20/abc_dialog_material_background.xml", "source" : "/home/anoop/.gradle/caches/transforms-3/a2820991a40229272e864e5b694869e1/transformed/appcompat-1.3.0/res/drawable-watch-v20/abc_dialog_material_background.xml"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"feedstocks" : ["flask-autoindex"]} | json_instruct | {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Bring a large pot of lightly salted water to a boil. Place pasta in the pot, cook for 8 to 10 minutes, until al dente, and drain.", "In a blender or food processor, blend the olive oil, white wine vinegar, basil, Parmesan cheese, salt, and pepper until smooth.", "In a large bowl, toss together the cooked pasta, dressing mixture, red bell pepper, yellow bell pepper, orange bell pepper, tomato, and olives. Top with mozzarella cheese to serve."], "ingredients" : ["1 (16 ounce) package tri-color pasta", "2/3 cup olive oil", "3 tablespoons white wine vinegar", "1/4 cup fresh basil leaves", "2 tablespoons grated Parmesan cheese", "1 1/4 teaspoons salt", "1/4 teaspoon ground black pepper", "1 red bell pepper, julienned", "1 yellow bell pepper, julienned", "1 orange bell pepper, julienned", "1 medium fresh tomato, chopped", "1 (2.25 ounce) can black olives, drained", "8 ounces mozzarella cheese, cubed"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Three Pepper Pasta Salad", "url" : "http://allrecipes.com/recipe/76423/three-pepper-pasta-salad/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"requires": {"type": "boolean"}, "lockfileVersion": {"type": "integer"}, "dependencies": {"type": "object", "properties": {"@types/base-64": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "@types/jquery": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"@types/sizzle": {"type": "string"}}, "required": ["@types/sizzle"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "@types/sizzle": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "@types/utf8": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "base-64": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "utf8": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "zlib": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["@types/base-64", "@types/jquery", "@types/sizzle", "@types/utf8", "base-64", "utf8", "zlib"]}}, "required": ["requires", "lockfileVersion", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"requires" : true, "lockfileVersion" : 1, "dependencies" : {"@types/base-64" : {"version" : "0.1.2", "resolved" : "https://registry.npmjs.org/@types/base-64/-/base-64-0.1.2.tgz", "integrity" : "sha1-Y6wxgwLNq7XwToripW5U1IMhB+I="}, "@types/jquery" : {"version" : "3.3.16", "resolved" : "https://registry.npmjs.org/@types/jquery/-/jquery-3.3.16.tgz", "integrity" : "sha512-K+G/9ZCunM0KV7ZR6fhYxyivJOhViTWLITCMHBBzwHT1EfxoIpDxgAQkI98sfj9PZJ2/fLYMqyyBpe3h31LQgA==", "requires" : {"@types/sizzle" : "2.3.2"}}, "@types/sizzle" : {"version" : "2.3.2", "resolved" : "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.2.tgz", "integrity" : "sha512-7EJYyKTL7tFR8+gDbB6Wwz/arpGa0Mywk1TJbNzKzHtzbwVmY4HR9WqS5VV7dsBUKQmPNr192jHr/VpBluj/hg=="}, "@types/utf8" : {"version" : "2.1.6", "resolved" : "https://registry.npmjs.org/@types/utf8/-/utf8-2.1.6.tgz", "integrity" : "sha512-pRs2gYF5yoKYrgSaira0DJqVg2tFuF+Qjp838xS7K+mJyY2jJzjsrl6y17GbIa4uMRogMbxs+ghNCvKg6XyNrA=="}, "base-64" : {"version" : "0.1.0", "resolved" : "https://registry.npmjs.org/base-64/-/base-64-0.1.0.tgz", "integrity" : "sha1-eAqZyE59YAJgNhURxId2E78k9rs="}, "utf8" : {"version" : "3.0.0", "resolved" : "https://registry.npmjs.org/utf8/-/utf8-3.0.0.tgz", "integrity" : "sha512-E8VjFIQ/TyQgp+TZfS6l8yp/xWppSAHzidGiRrqe4bK4XP9pTRyKFgGJpO3SN7zdX4DeomTrwaseCHovfpFcqQ=="}, "zlib" : {"version" : "1.0.5", "resolved" : "https://registry.npmjs.org/zlib/-/zlib-1.0.5.tgz", "integrity" : "sha1-bnyXL8NxxkWmr7A6sUdp3vEU/MA="}}} | json_instruct | {"type": "object", "properties": {"requires": {"type": "boolean"}, "lockfileVersion": {"type": "integer"}, "dependencies": {"type": "object", "properties": {"@types/base-64": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "@types/jquery": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"@types/sizzle": {"type": "string"}}, "required": ["@types/sizzle"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "@types/sizzle": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "@types/utf8": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "base-64": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "utf8": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "zlib": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["@types/base-64", "@types/jquery", "@types/sizzle", "@types/utf8", "base-64", "utf8", "zlib"]}}, "required": ["requires", "lockfileVersion", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"mainALGO": {"type": "string"}}, "required": ["mainALGO"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"mainALGO" : "import java.util.*;\nimport java.lang.*;\nimport java.io.*;\n\n\nclass Euclid\n{\n\tpublic static void main (String[] args) throws java.lang.Exception\n\t{\n\t\tint\ta = 30;\n\t\tint\tb = 105;\n\t\tint\tc = EuclidGCD(a,b);\n\t\tSystem.out.println(c);\n\t\t// prints 15\n\t\t// GCD of 30 and 105 is 15\n\t}\n\t\n\tpublic static int EuclidGCD(int a, int b)\n\t{\n\t\tif(b == 0)\n\t\t\treturn a;\n\t\telse\n\t\t\treturn EuclidGCD(b,a%b);\n\t}\n}"} | json_instruct | {"type": "object", "properties": {"mainALGO": {"type": "string"}}, "required": ["mainALGO"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "DOMONKOS", "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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["vertices"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vertices" : [[25, 58], [17, 60], [72, 26], [33, 64], [9, 61], [27, 64], [74, 23], [21, 65], [9, 66], [25, 71], [17, 70], [7, 57], [23, 60], [58, 61], [25, 62], [8, 62], [70, 57], [40, 128], [21, 59], [16, 61], [58, 82], [44, 127], [23, 77], [12, 73], [72, 39], [40, 22], [23, 40], [31, 34], [38, 26], [49, 101], [45, 103], [25, 53], [61, 70], [68, 66], [48, 121], [24, 45], [28, 37], [33, 28], [34, 25], [72, 47], [19, 50], [79, 43], [52, 95], [55, 101], [56, 118], [43, 80], [61, 124], [37, 73]]} | json_instruct | {"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["vertices"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 15848, "cartId" : "10586e90-90d0-40b1-8ec4-03d59ec182cb", "preferredProducts" : [595, 706, 4305, 4359, 3253, 4765], "productReviews" : []} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "regex": {"type": "string"}}, "required": ["type", "url", "regex"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "regex", "url" : "https://ci.appveyor.com/api/projects/gdkchan/ryujinx/branch/master", "regex" : "version\":\"(\\d+\\.\\d+\\.\\d+)\""} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "regex": {"type": "string"}}, "required": ["type", "url", "regex"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["152524203200", "\u547c\u5e03\u5c14\u560e\u67e5", "210", "0"], ["152524203201", "\u5e03\u65e5\u90fd\u560e\u67e5", "220", "0"], ["152524203202", "\u4e4c\u65e5\u6839\u9ad8\u52d2\u560e\u67e5", "220", "0"], ["152524203203", "\u989d\u5c14\u6566\u5b9d\u62c9\u683c\u560e\u67e5", "220", "0"], ["152524203204", "\u8d5b\u7f55\u9521\u529b\u560e\u67e5", "220", "0"], ["152524203205", "\u90fd\u5e0c\u4e4c\u62c9\u560e\u67e5", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "createdAt": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["id", "title", "createdAt", "author"]}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 57619, "info" : {"name" : "lostfilm better look(without ads)", "description" : "\u041e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u0444\u043e\u043d\u043e\u0432\u043e\u0433\u043e \u0440\u0438\u0441\u0443\u043d\u043a\u0430 \u0441 \u0440\u0435\u043a\u043b\u0430\u043c\u043e\u0439, \u043f\u0430\u043d\u0435\u043b\u0438 bogi \u0438 \u043f\u0440\u043e\u0447\u0435\u0439 \u043c\u0435\u0448\u0430\u044e\u0449\u0435\u0439 \u0434\u0440\u0435\u0431\u0435\u0434\u0435\u043d\u0438. \u041d\u0430\u0441\u043b\u0430\u0436\u0434\u0430\u0439\u0442\u0435\u0441\u044c \u0443\u0434\u043e\u0431\u0441\u0442\u0432\u043e\u043c.\r\n\u0422\u0435\u043f\u0435\u0440\u044c \u0438 \u0441 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u043e\u0439 \u0432\u0435\u0440\u0445\u043d\u0435\u0439 \u0440\u0435\u043a\u043b\u0430\u043c\u044b.", "additionalInfo" : null, "format" : "uso", "category" : "lostfilm", "createdAt" : "2011-12-07T18:21:46.000Z", "updatedAt" : "2016-12-07T23:46:45.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 20620, "name" : "Thunderbird"}}, "stats" : {"installs" : {"total" : 1778, "weekly" : 4}}, "screenshots" : {"main" : {"name" : "57619_after.jpeg", "archived" : true}}, "discussions" : {"stats" : {"discussionsCount" : 1, "commentsCount" : 0}, "data" : [{"id" : 66047, "title" : "Improvement for lostfilm better look(without ads)", "createdAt" : "2018-05-07T21:31:09.000Z", "author" : {"id" : 646569, "name" : "jMurr"}}]}, "style" : {"css" : "@-moz-document domain(\"lostfilm.tv\") {\r\n.wh \r\n{\r\ncolor: #fff !important;\r\n}\r\n.up\r\n{\r\nbackground-color: transparent !important;\r\n}\r\n\r\n#ta_link,.topbar-container, .logout-btn, a[href^=\"/shmrowse.php\"], a[href^=\"/browse.php\"] div\r\n{\r\ndisplay: none !important;\r\n}\r\n\r\nbody \r\n{\r\nbackground: #444 url(http://funkyimg.com/i/23Vpb.jpg) !important;\r\nbackground-attachment: fixed !important;\r\n}\r\n\r\n.prof\r\n{\r\n\r\npadding-top: 4px !important;\r\npadding-left: 4px !important;\r\ncolor: #fff !important;\r\nbackground: rgba(0,0,0,0.4) !important;\r\n}\r\n\r\n.logo\r\n{\r\n\r\nbackground: rgba(0,0,0,0.4) url(http://funkyimg.com/u2/1080/252/412693lf.png) no-repeat !important;\r\n}\r\n\r\n.left, .right\r\n{\r\n\r\npadding-top: 4px !important;\r\n}\r\n\r\n#MainDiv\r\n{\r\npadding-top: 20px !important;\r\n}\r\n\r\n.right a{color: #fff !important}\r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "createdAt": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["id", "title", "createdAt", "author"]}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/css/dashboard.css": {"type": "string"}, "/js/dashboard.js": {"type": "string"}, "/js/manifest.js": {"type": "string"}, "/js/vendor.js": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css", "/css/dashboard.css", "/js/dashboard.js", "/js/manifest.js", "/js/vendor.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"/js/app.js" : "/js/app.js?id=c1846edccd2d60355243", "/css/app.css" : "/css/app.css?id=fd0421d8bee43cb59d5e", "/css/dashboard.css" : "/css/dashboard.css?id=b9b4be26c9e6e3c15d64", "/js/dashboard.js" : "/js/dashboard.js?id=0daec4e215b2d810ca87", "/js/manifest.js" : "/js/manifest.js?id=41f053ba9a94d81b39f8", "/js/vendor.js" : "/js/vendor.js?id=309c59d8ba6fc0f354fc"} | json_instruct | {"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/css/dashboard.css": {"type": "string"}, "/js/dashboard.js": {"type": "string"}, "/js/manifest.js": {"type": "string"}, "/js/vendor.js": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css", "/css/dashboard.css", "/js/dashboard.js", "/js/manifest.js", "/js/vendor.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 101781193, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "330e1b1ff45f0c411bab42c5417c966a", "wof:id" : 101781193, "wof:repo" : "whosonfirst-data-admin-cz"}, "bbox" : [14.09093, 50.0097, 14.09093, 50.0097], "geometry" : {"coordinates" : [14.09093, 50.0097], "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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"state": {"type": "string"}, "agency": {"type": "string"}, "date_effective": {"type": "string"}, "date_expires": {"type": "string"}, "conformsTo": {"type": "string"}, "schema_version": {"type": "string"}, "documentation": {"type": "string"}, "species": {"type": "object", "properties": {"name": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "taxonomy": {"type": "string"}, "bova_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "aliases", "taxonomy", "bova_id", "url"]}, "seasons": {"type": "object", "properties": {"season": {"type": "object", "properties": {"method": {"type": "array", "items": {"type": "string"}}, "range": {"type": "array", "items": {"type": "object", "properties": {"places": {"type": "object", "properties": {"Virginia": {"type": "object", "properties": {"gnis_id": {"type": "integer"}, "fips_code": {"type": "integer"}}, "required": ["gnis_id", "fips_code"]}}, "required": ["Virginia"]}, "season": {"type": "object", "properties": {"date": {"type": "object", "properties": {"starts": {"type": "string"}, "ends": {"type": "string"}}, "required": ["starts", "ends"]}}, "required": ["date"]}}, "required": ["places", "season"]}}}, "required": ["method", "range"]}}, "required": ["season"]}}, "required": ["state", "agency", "date_effective", "date_expires", "conformsTo", "schema_version", "documentation", "species", "seasons"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"state" : "VA", "agency" : "Department of Game and Inland Fisheries", "date_effective" : "2014-07-01T00:00:00-05:00", "date_expires" : "2015-06-30T23:59:59-05:00", "conformsTo" : "http://rooseveltschema.org/schemas/1.0a/hunting.json", "schema_version" : "1.0a", "documentation" : "http://rooseveltschema.org/", "species" : {"name" : "pheasant", "aliases" : ["common pheasant", "ring-necked pheasant"], "taxonomy" : "Phasianus colchicus", "bova_id" : "40101", "url" : "http://www.dgif.virginia.gov/hunting/regulations/smallgame.asp"}, "seasons" : {"season" : {"method" : ["modern firearms", "muzzleloading firearms", "archery tackle"], "range" : [{"places" : {"Virginia" : {"gnis_id" : 1779803, "fips_code" : 51}}, "season" : {"date" : {"starts" : "2014-11-08", "ends" : "2015-01-31"}}}]}}} | json_instruct | {"type": "object", "properties": {"state": {"type": "string"}, "agency": {"type": "string"}, "date_effective": {"type": "string"}, "date_expires": {"type": "string"}, "conformsTo": {"type": "string"}, "schema_version": {"type": "string"}, "documentation": {"type": "string"}, "species": {"type": "object", "properties": {"name": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "taxonomy": {"type": "string"}, "bova_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "aliases", "taxonomy", "bova_id", "url"]}, "seasons": {"type": "object", "properties": {"season": {"type": "object", "properties": {"method": {"type": "array", "items": {"type": "string"}}, "range": {"type": "array", "items": {"type": "object", "properties": {"places": {"type": "object", "properties": {"Virginia": {"type": "object", "properties": {"gnis_id": {"type": "integer"}, "fips_code": {"type": "integer"}}, "required": ["gnis_id", "fips_code"]}}, "required": ["Virginia"]}, "season": {"type": "object", "properties": {"date": {"type": "object", "properties": {"starts": {"type": "string"}, "ends": {"type": "string"}}, "required": ["starts", "ends"]}}, "required": ["date"]}}, "required": ["places", "season"]}}}, "required": ["method", "range"]}}, "required": ["season"]}}, "required": ["state", "agency", "date_effective", "date_expires", "conformsTo", "schema_version", "documentation", "species", "seasons"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2f9\uc120\ud69f\uc218": {"type": "string"}, "\ub2f9\uc120\ub300\uc218": {"type": "string"}}, "required": ["\uc774\ub984", "\ud55c\ubb38\uba85", "\uc0dd\ub144\uc6d4\uc77c", "\uc815\ub2f9", "\uc120\uac70\uad6c", "\ub2f9\uc120\ud69f\uc218", "\ub2f9\uc120\ub300\uc218"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\uc774\ub984" : "\uc784\ucc44\uc815", "\ud55c\ubb38\uba85" : "\uf9f4\u91c7\u6b63", "\uc0dd\ub144\uc6d4\uc77c" : "1941-05-14", "\uc815\ub2f9" : "\uc0c8\uc815\uce58\uad6d\ubbfc\ud68c\uc758", "\uc120\uac70\uad6c" : "\uc11c\uc6b8\ud2b9\ubcc4\uc2dc \ub178\uc6d0\uad6c\uc744", "\ub2f9\uc120\ud69f\uc218" : "4\uc120", "\ub2f9\uc120\ub300\uc218" : "14, 15, 16, 17"} | json_instruct | {"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2f9\uc120\ud69f\uc218": {"type": "string"}, "\ub2f9\uc120\ub300\uc218": {"type": "string"}}, "required": ["\uc774\ub984", "\ud55c\ubb38\uba85", "\uc0dd\ub144\uc6d4\uc77c", "\uc815\ub2f9", "\uc120\uac70\uad6c", "\ub2f9\uc120\ud69f\uc218", "\ub2f9\uc120\ub300\uc218"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "description": {"type": "string"}, "races": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}, "subRaces": {"type": "array", "items": {}}}, "required": ["type", "id", "name", "url", "source", "description", "races", "subRaces"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "TRAIT", "id" : "darkvision", "name" : "Darkvision", "url" : "/traits/darkvision", "source" : "PHB", "description" : "You have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You cannot discern color in darkness, only shades of gray.", "races" : [{"name" : "Dwarf", "url" : "/races/dwarf"}, {"name" : "Elf", "url" : "/races/elf"}, {"name" : "Gnome", "url" : "/races/gnome"}, {"name" : "Half-elf", "url" : "/races/half-elf"}, {"name" : "Half-orc", "url" : "/races/half-orc"}, {"name" : "Tiefling", "url" : "/races/tiefling"}], "subRaces" : []} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "description": {"type": "string"}, "races": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}, "subRaces": {"type": "array", "items": {}}}, "required": ["type", "id", "name", "url", "source", "description", "races", "subRaces"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "laphicet_ \u30e1\u30e9\u30f3\u30b3\u30ea\u30c3\u30af ", "author" : "\u5996\u64d8", "description" : "\u70b9\u8fd9\u91cc\u7d20\u8d28\u4e09\u8fde\u4e00\u4e0b<aundefinedhref='https://www.bilibili.com/video/av34951266/'>https://www.bilibili.com/video/av34951266/</a><br>\u52a8\u4f5c&\u955c\u5934\uff1a\u5ee2\u6750undefinedav18236671\uff1b<br>\u6a21\u578b\uff1a\u4eca\u306f\u30b3\u30fc\u30d2\u30fc\u3055\u3093undefined<aundefinedhref='http://seiga.nicovideo.jp/seiga/im6181508'>http://seiga.nicovideo.jp/seiga/im6181508</a>\uff1b<br>\u821e\u53f0undefined\uff1a\u5fae\u51b7\u306e\u4e16\u754c\uff1b<br>\u97f3\u4e50\uff1a\u30e1\u30e9\u30f3\u30b3\u30ea\u30c3\u30af", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thumbnails/430570/thumbnail-430570_0002.jpg?itok=E_so3Y--", "download" : "https://www.iwara.tv/api/video/ere2eib8bosk80d1g", "origin" : "https://www.iwara.tv/videos/ere2eib8bosk80d1g"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "dolt", "definition" : "A heavy, stupid fellow; a blockhead; a numskull; an ignoramus; a dunce; a dullard. This Puck seems but a dreaming dolt. Drayton.\n\nTo behave foolishly. [Obs.]"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"static\\development\\pages\\register.js": {"type": "boolean"}}, "required": ["static\\development\\pages\\register.js"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "1d2d8753d4e6ee7d568e", "c" : {"static\\development\\pages\\register.js" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"static\\development\\pages\\register.js": {"type": "boolean"}}, "required": ["static\\development\\pages\\register.js"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"sources": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "type": {"type": "string"}, "size": {"type": "integer"}}, "required": ["src", "type", "size"]}}, "tracks": {"type": "array", "items": {}}, "posters": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "type"]}}, "season": {"type": "integer"}, "episode": {"type": "integer"}, "title": {"type": "string"}, "description": {"type": "string"}, "date": {"type": "integer"}, "duration": {"type": "integer"}}, "required": ["sources", "tracks", "posters", "season", "episode", "title", "description", "date", "duration"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sources" : [{"src" : "//cdn.unusann.us/00/007/2160.mp4", "type" : "video/mp4", "size" : 2160}, {"src" : "//cdn.unusann.us/00/007/1440.mp4", "type" : "video/mp4", "size" : 1440}, {"src" : "//cdn.unusann.us/00/007/1080.mp4", "type" : "video/mp4", "size" : 1080}, {"src" : "//cdn.unusann.us/00/007/720.mp4", "type" : "video/mp4", "size" : 720}, {"src" : "//cdn.unusann.us/00/007/480.mp4", "type" : "video/mp4", "size" : 480}, {"src" : "//cdn.unusann.us/00/007/360.mp4", "type" : "video/mp4", "size" : 360}, {"src" : "//cdn.unusann.us/00/007/240.mp4", "type" : "video/mp4", "size" : 240}], "tracks" : [], "posters" : [{"src" : "//cdn.unusann.us/thumbnails/00/007.webp", "type" : "image/webp"}, {"src" : "//cdn.unusann.us/thumbnails/00/007.jpg", "type" : "image/jpeg"}], "season" : 0, "episode" : 7, "title" : "The End is Here...", "description" : "It's been quite a year for Unus Annus. But a year is not forever... and time has finally run out. So join us Friday, November 13th for The End of Unus Annus and help us say goodbye one last time.", "date" : 1604689200000, "duration" : 110} | json_instruct | {"type": "object", "properties": {"sources": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "type": {"type": "string"}, "size": {"type": "integer"}}, "required": ["src", "type", "size"]}}, "tracks": {"type": "array", "items": {}}, "posters": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "type"]}}, "season": {"type": "integer"}, "episode": {"type": "integer"}, "title": {"type": "string"}, "description": {"type": "string"}, "date": {"type": "integer"}, "duration": {"type": "integer"}}, "required": ["sources", "tracks", "posters", "season", "episode", "title", "description", "date", "duration"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"COB": {"type": "string"}, "CYTB": {"type": "string"}, "MTCYB": {"type": "string"}, "Complex III subunit 3": {"type": "string"}, "Complex III subunit III": {"type": "string"}, "Cytochrome b-c1 complex subunit 3": {"type": "string"}, "Ubiquinol-cytochrome-c reductase complex cytochrome b subunit": {"type": "string"}, "Q36572": {"type": "string"}, "CYB_NYCHU": {"type": "string"}, "Cytochrome b": {"type": "string"}, "MT-CYB": {"type": "string"}}, "required": ["COB", "CYTB", "MTCYB", "Complex III subunit 3", "Complex III subunit III", "Cytochrome b-c1 complex subunit 3", "Ubiquinol-cytochrome-c reductase complex cytochrome b subunit", "Q36572", "CYB_NYCHU", "Cytochrome b", "MT-CYB"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"COB" : "Q36572", "CYTB" : "Q36572", "MTCYB" : "Q36572", "Complex III subunit 3" : "Q36572", "Complex III subunit III" : "Q36572", "Cytochrome b-c1 complex subunit 3" : "Q36572", "Ubiquinol-cytochrome-c reductase complex cytochrome b subunit" : "Q36572", "Q36572" : "Q36572", "CYB_NYCHU" : "Q36572", "Cytochrome b" : "Q36572", "MT-CYB" : "Q36572"} | json_instruct | {"type": "object", "properties": {"COB": {"type": "string"}, "CYTB": {"type": "string"}, "MTCYB": {"type": "string"}, "Complex III subunit 3": {"type": "string"}, "Complex III subunit III": {"type": "string"}, "Cytochrome b-c1 complex subunit 3": {"type": "string"}, "Ubiquinol-cytochrome-c reductase complex cytochrome b subunit": {"type": "string"}, "Q36572": {"type": "string"}, "CYB_NYCHU": {"type": "string"}, "Cytochrome b": {"type": "string"}, "MT-CYB": {"type": "string"}}, "required": ["COB", "CYTB", "MTCYB", "Complex III subunit 3", "Complex III subunit III", "Cytochrome b-c1 complex subunit 3", "Ubiquinol-cytochrome-c reductase complex cytochrome b subunit", "Q36572", "CYB_NYCHU", "Cytochrome b", "MT-CYB"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {"FormioService": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "members": {"type": "object", "properties": {"__ctor__": {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "parameters": {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "name": {"type": "string"}}, "required": ["__symbolic", "name"]}}}, "required": ["__symbolic", "parameters"]}}, "loadForm": {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}}, "loadSubmission": {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}}, "saveSubmission": {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}}, "loadSubmissions": {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}}}, "required": ["__ctor__", "loadForm", "loadSubmission", "saveSubmission", "loadSubmissions"]}}, "required": ["__symbolic", "members"]}}, "required": ["FormioService"]}}, "required": ["__symbolic", "version", "metadata"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"__symbolic" : "module", "version" : 3, "metadata" : {"FormioService" : {"__symbolic" : "class", "members" : {"__ctor__" : [{"__symbolic" : "constructor", "parameters" : [{"__symbolic" : "reference", "name" : "string"}]}], "loadForm" : [{"__symbolic" : "method"}], "loadSubmission" : [{"__symbolic" : "method"}], "saveSubmission" : [{"__symbolic" : "method"}], "loadSubmissions" : [{"__symbolic" : "method"}]}}}}, {"__symbolic" : "module", "version" : 1, "metadata" : {"FormioService" : {"__symbolic" : "class", "members" : {"__ctor__" : [{"__symbolic" : "constructor", "parameters" : [{"__symbolic" : "reference", "name" : "string"}]}], "loadForm" : [{"__symbolic" : "method"}], "loadSubmission" : [{"__symbolic" : "method"}], "saveSubmission" : [{"__symbolic" : "method"}], "loadSubmissions" : [{"__symbolic" : "method"}]}}}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {"FormioService": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "members": {"type": "object", "properties": {"__ctor__": {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "parameters": {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "name": {"type": "string"}}, "required": ["__symbolic", "name"]}}}, "required": ["__symbolic", "parameters"]}}, "loadForm": {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}}, "loadSubmission": {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}}, "saveSubmission": {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}}, "loadSubmissions": {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}}}, "required": ["__ctor__", "loadForm", "loadSubmission", "saveSubmission", "loadSubmissions"]}}, "required": ["__symbolic", "members"]}}, "required": ["FormioService"]}}, "required": ["__symbolic", "version", "metadata"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d373-80", "text" : "- 3 -\nAtlanta, Georgia Liller, Neal, Battle & Lindsey, Inc,\nSTEP program (Summer Time Employment Program) produced over-quota job\noffers. Activity' now: recruiting youth to fill the jobs. Good newspaper\npublicity, public service (weekly newspaper) advertising, radio and TV spots\nParticularly effective: script developed for telephone solicitation of small\nbusiness firms.\nMemphis, Tenn. Greenhaw & Rush, Inc.\n\"Take the High Road\" full-page newspaper advertisement spelled out\nthe area educational opportunities for high school graduates who weren\u2019t\ngoing to college. Nearly 5,000 young people attended Memphis Job Fair.\nGood media support for all phases of program. Community cooperation:\n20 miniparks built in 21 days \u2014 26 miniparks cleared in all.\nMilwaukee, Wis. Klau-Van Pietersom-Dunlap, Inc.\nMajor advertising and Public Relations firms recruited for long-range,\ncontinuing activity. Communications Coordinator sent 25 kits of advertising\nmaterial to businessmen asking them to pick the advertisements they wanted\nto sponsor. Milwaukee theme: Summer Action '68. Fifteen outdoor locations\nobtained for \"Give Jobs - Give Hope - Give A Damn\" postings. Bus cards and\npounter cards carry same theme. Tabloid newspaper on all opportunities for\nyouth to be published bi-weekly through the summer... staffed by inner-city\nyouth. Extensive coverage of major press conference on JOBS."} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"isValid": {"type": "string"}}, "required": ["isValid"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"class" : {}, "instance" : {"isValid" : "tb 1/18/2006 20:55"}} | json_instruct | {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"isValid": {"type": "string"}}, "required": ["isValid"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "name": {"type": "string"}, "title": {"type": "string"}, "status": {"type": "string"}, "compose": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "version": {"type": "string"}, "filter": {"type": "array", "items": {"type": "object", "properties": {"property": {"type": "string"}, "op": {"type": "string"}, "value": {"type": "string"}}, "required": ["property", "op", "value"]}}}, "required": ["system", "version", "filter"]}}}, "required": ["include"]}}, "required": ["resourceType", "id", "url", "name", "title", "status", "compose"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"resourceType" : "ValueSet", "id" : "U85", "url" : "http://hl7.org/fhir/sid/icd-10-gm/U85", "name" : "U85", "title" : "Resistenz gegen antineoplastische Medikamente", "status" : "draft", "compose" : {"include" : [{"system" : "http://hl7.org/fhir/sid/icd-10-gm", "version" : "2016", "filter" : [{"property" : "parent", "op" : "is-a", "value" : "U85"}]}]}} | json_instruct | {"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "name": {"type": "string"}, "title": {"type": "string"}, "status": {"type": "string"}, "compose": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "version": {"type": "string"}, "filter": {"type": "array", "items": {"type": "object", "properties": {"property": {"type": "string"}, "op": {"type": "string"}, "value": {"type": "string"}}, "required": ["property", "op", "value"]}}}, "required": ["system", "version", "filter"]}}}, "required": ["include"]}}, "required": ["resourceType", "id", "url", "name", "title", "status", "compose"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"version": {"type": "string"}, "firestore": {"type": "object", "properties": {"version": {"type": "string"}, "path": {"type": "string"}, "metadata_file": {"type": "string"}}, "required": ["version", "path", "metadata_file"]}, "database": {"type": "object", "properties": {"version": {"type": "string"}, "path": {"type": "string"}}, "required": ["version", "path"]}}, "required": ["version", "firestore", "database"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "9.16.2", "firestore" : {"version" : "1.13.1", "path" : "firestore_export", "metadata_file" : "firestore_export/firestore_export.overall_export_metadata"}, "database" : {"version" : "4.7.2", "path" : "database_export"}} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "firestore": {"type": "object", "properties": {"version": {"type": "string"}, "path": {"type": "string"}, "metadata_file": {"type": "string"}}, "required": ["version", "path", "metadata_file"]}, "database": {"type": "object", "properties": {"version": {"type": "string"}, "path": {"type": "string"}}, "required": ["version", "path"]}}, "required": ["version", "firestore", "database"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"ExponentPhpSDK\\": {"type": "string"}}, "required": ["ExponentPhpSDK\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "keywords", "type", "license", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "alymosul/exponent-server-sdk-php", "description" : "Server-side library for working with Expo push notifications using PHP", "keywords" : ["expo", "exponent", "push", "notifications"], "type" : "library", "license" : "MIT", "authors" : [{"name" : "Aly Suleiman", "email" : "alymosul@gmail.com"}], "require" : {"php" : ">=7.0"}, "autoload" : {"psr-4" : {"ExponentPhpSDK\\" : "lib"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"ExponentPhpSDK\\": {"type": "string"}}, "required": ["ExponentPhpSDK\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "keywords", "type", "license", "authors", "require", "autoload"], "$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"}, "values": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}, "enabled": {"type": "boolean"}}, "required": ["key", "value", "enabled"]}}, "_postman_variable_scope": {"type": "string"}, "_postman_exported_at": {"type": "string"}, "_postman_exported_using": {"type": "string"}}, "required": ["id", "name", "values", "_postman_variable_scope", "_postman_exported_at", "_postman_exported_using"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "c03a4b46-b6cf-42c3-a139-e64fc66d4d18", "name" : "Development", "values" : [{"key" : "host", "value" : "localhost", "enabled" : true}, {"key" : "port", "value" : "8080", "enabled" : true}, {"key" : "expectations_api_host", "value" : "localhost", "enabled" : true}, {"key" : "expectations_api_port", "value" : "3000", "enabled" : true}], "_postman_variable_scope" : "environment", "_postman_exported_at" : "2021-04-19T08:57:59.053Z", "_postman_exported_using" : "Postman/8.1.0"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "values": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}, "enabled": {"type": "boolean"}}, "required": ["key", "value", "enabled"]}}, "_postman_variable_scope": {"type": "string"}, "_postman_exported_at": {"type": "string"}, "_postman_exported_using": {"type": "string"}}, "required": ["id", "name", "values", "_postman_variable_scope", "_postman_exported_at", "_postman_exported_using"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"poem": {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "text": {"type": "string"}}, "required": ["title", "author", "text"]}}, "required": ["poem"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"poem" : {"title" : "Theory", "author" : "Peter McCarey", "text" : "A life on the ocean vague."}} | json_instruct | {"type": "object", "properties": {"poem": {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "text": {"type": "string"}}, "required": ["title", "author", "text"]}}, "required": ["poem"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "version_requirement": {"type": "string"}}, "required": ["name", "version_requirement"]}}, "types": {"type": "array", "items": {}}, "checksums": {"type": "object", "properties": {}, "required": []}, "source": {"type": "string"}, "project_page": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "summary", "author", "description", "dependencies", "types", "checksums", "source", "project_page", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "goran-web_server", "version" : "0.1.12", "summary" : "", "author" : "Goran Miskovic", "description" : "", "dependencies" : [{"name" : "jfryman/nginx", "version_requirement" : "= 0.2.2"}], "types" : [], "checksums" : {}, "source" : "https://github.com/schkovich/webserver.git", "project_page" : "", "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "version_requirement": {"type": "string"}}, "required": ["name", "version_requirement"]}}, "types": {"type": "array", "items": {}}, "checksums": {"type": "object", "properties": {}, "required": []}, "source": {"type": "string"}, "project_page": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "summary", "author", "description", "dependencies", "types", "checksums", "source", "project_page", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "withhold", "definition" : "1. To hold back; to restrain; to keep from action. Withhold, O sovereign prince, your hasty hand From knitting league with him. Spenser. 2. To retain; to keep back; not to grant; as, to withhold assent to a proposition. Forbid who will, none shall from me withhold Longer thy offered good. Milton. 3. To keep; to maintain; to retain. [Obs.] To withhold it the more easily in heart. Chaucer."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"makeID": {"type": "object", "properties": {"kind": {"type": "string"}, "type": {"type": "string"}, "loc": {"type": "object", "properties": {"file": {"type": "string"}, "line": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["file", "line", "column"]}, "id": {"type": "string"}, "signatures": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "params": {"type": "array", "items": {}}, "returns": {"type": "object", "properties": {"type": {"type": "string"}, "signatures": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "params": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "kind": {"type": "string"}, "typeParamSource": {"type": "string"}, "id": {"type": "string"}, "loc": {"type": "object", "properties": {"file": {"type": "string"}, "line": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["file", "line", "column"]}}, "required": ["name", "type", "kind", "typeParamSource", "id", "loc"]}}, "typeParams": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "kind": {"type": "string"}, "id": {"type": "string"}, "loc": {"type": "object", "properties": {"file": {"type": "string"}, "line": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["file", "line", "column"]}}, "required": ["name", "type", "kind", "id", "loc"]}}, "returns": {"type": "object", "properties": {"type": {"type": "string"}, "typeParamSource": {"type": "string"}}, "required": ["type", "typeParamSource"]}}, "required": ["type", "params", "typeParams", "returns"]}}}, "required": ["type", "signatures"]}}, "required": ["type", "params", "returns"]}}}, "required": ["kind", "type", "loc", "id", "signatures"]}}, "required": ["makeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"makeID" : {"kind" : "function", "type" : "Function", "loc" : {"file" : "parameterized_type.ts", "line" : 1, "column" : 0}, "id" : "makeID", "signatures" : [{"type" : "function", "params" : [], "returns" : {"type" : "Function", "signatures" : [{"type" : "function", "params" : [{"name" : "x", "type" : "T", "kind" : "parameter", "typeParamSource" : "makeID^returns^T", "id" : "makeID^returns^x", "loc" : {"file" : "parameterized_type.ts", "line" : 1, "column" : 30}}], "typeParams" : [{"name" : "T", "type" : "typeparam", "kind" : "typeparam", "id" : "makeID^returns^T", "loc" : {"file" : "parameterized_type.ts", "line" : 1, "column" : 27}}], "returns" : {"type" : "T", "typeParamSource" : "makeID^returns^T"}}]}}]}} | json_instruct | {"type": "object", "properties": {"makeID": {"type": "object", "properties": {"kind": {"type": "string"}, "type": {"type": "string"}, "loc": {"type": "object", "properties": {"file": {"type": "string"}, "line": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["file", "line", "column"]}, "id": {"type": "string"}, "signatures": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "params": {"type": "array", "items": {}}, "returns": {"type": "object", "properties": {"type": {"type": "string"}, "signatures": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "params": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "kind": {"type": "string"}, "typeParamSource": {"type": "string"}, "id": {"type": "string"}, "loc": {"type": "object", "properties": {"file": {"type": "string"}, "line": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["file", "line", "column"]}}, "required": ["name", "type", "kind", "typeParamSource", "id", "loc"]}}, "typeParams": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "kind": {"type": "string"}, "id": {"type": "string"}, "loc": {"type": "object", "properties": {"file": {"type": "string"}, "line": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["file", "line", "column"]}}, "required": ["name", "type", "kind", "id", "loc"]}}, "returns": {"type": "object", "properties": {"type": {"type": "string"}, "typeParamSource": {"type": "string"}}, "required": ["type", "typeParamSource"]}}, "required": ["type", "params", "typeParams", "returns"]}}}, "required": ["type", "signatures"]}}, "required": ["type", "params", "returns"]}}}, "required": ["kind", "type", "loc", "id", "signatures"]}}, "required": ["makeID"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"riot.js": {"type": "string"}, "riot.min.js": {"type": "string"}, "riot+compiler.js": {"type": "string"}, "riot+compiler.min.js": {"type": "string"}}, "required": ["riot.js", "riot.min.js", "riot+compiler.js", "riot+compiler.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"riot.js" : "sha256-tCiYOnJ1rNlUAZMZGaCsl9YLd7iTsn8gMGfaOtkhTdE=", "riot.min.js" : "sha256-M/wwHc5deF5xIAPWPbpRzmpIKNa8MRHTYSHLkrYFEqI=", "riot+compiler.js" : "sha256-KKhGxPvNu1++6mLLL9lrtkS+H2WQ1UwzbBYXMkjbGVc=", "riot+compiler.min.js" : "sha256-0v9lTmeqQtgDBPT2OJRz1WjPufA4YauHEhhLKmhNX1k="} | json_instruct | {"type": "object", "properties": {"riot.js": {"type": "string"}, "riot.min.js": {"type": "string"}, "riot+compiler.js": {"type": "string"}, "riot+compiler.min.js": {"type": "string"}}, "required": ["riot.js", "riot.min.js", "riot+compiler.js", "riot+compiler.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "7317062005", "district_id" : "7317062", "name" : "LAMPUARA"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"map": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "player": {"type": "object", "properties": {"position": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}, "velocity": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}, "turretDirection": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}, "required": ["position", "velocity", "turretDirection"]}, "enemyTanks": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "position": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}, "velocity": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}, "turretDirection": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}, "required": ["type", "position", "velocity", "turretDirection"]}}}, "required": ["map", "player", "enemyTanks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"map" : [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], "player" : {"position" : {"x" : 7, "y" : 29}, "velocity" : {"x" : 0, "y" : 0}, "turretDirection" : {"x" : 1, "y" : 0}}, "enemyTanks" : [{"type" : "Blue", "position" : {"x" : 25, "y" : 5}, "velocity" : {"x" : 0, "y" : 1}, "turretDirection" : {"x" : 0, "y" : 1}}, {"type" : "Blue", "position" : {"x" : 31, "y" : 19}, "velocity" : {"x" : -1, "y" : 0}, "turretDirection" : {"x" : -1, "y" : 0}}]} | json_instruct | {"type": "object", "properties": {"map": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "player": {"type": "object", "properties": {"position": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}, "velocity": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}, "turretDirection": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}, "required": ["position", "velocity", "turretDirection"]}, "enemyTanks": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "position": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}, "velocity": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}, "turretDirection": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}, "required": ["type", "position", "velocity", "turretDirection"]}}}, "required": ["map", "player", "enemyTanks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string"}, "not_after": {"type": "string"}}, "required": ["issuer_ca_id", "issuer_name", "name_value", "min_cert_id", "min_entry_timestamp", "not_before", "not_after"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"issuer_ca_id" : 16418, "issuer_name" : "C=US, O=Let's Encrypt, CN=Let's Encrypt Authority X3", "name_value" : "healthathome.217.172.12.182.nip.io", "min_cert_id" : 1194711024, "min_entry_timestamp" : "2019-02-11T18:32:01.493", "not_before" : "2019-02-11T17:32:01", "not_after" : "2019-05-12T17:32:01"} | json_instruct | {"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string"}, "not_after": {"type": "string"}}, "required": ["issuer_ca_id", "issuer_name", "name_value", "min_cert_id", "min_entry_timestamp", "not_before", "not_after"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "command": {"type": "string"}, "subscribers": {"type": "array", "items": {"type": "string"}}, "interval": {"type": "integer"}}, "required": ["id", "command", "subscribers", "interval"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "ssh", "command" : "check-banner.rb", "subscribers" : ["all"], "interval" : 60} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "command": {"type": "string"}, "subscribers": {"type": "array", "items": {"type": "string"}}, "interval": {"type": "integer"}}, "required": ["id", "command", "subscribers", "interval"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01031824": {"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": ["E01031824"]}, "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" : {"E01031824" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00162276", "LAD11CD" : "E07000229"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00162278", "LAD11CD" : "E07000229"}, "arcs" : [[4, -2, 5]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00162279", "LAD11CD" : "E07000229"}, "arcs" : [[-3, -5, 6, 7]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00162280", "LAD11CD" : "E07000229"}, "arcs" : [[-4, -8, 8]]}]}}, "arcs" : [[[615, 3814], [21, 1092], [669, 100], [-16, 874], [-515, 553], [83, 2614], [544, 245], [253, 707], [349, -1102], [-10, -1428], [320, -593], [845, 840], [731, -2023], [-337, -1662], [852, 24]], [[4404, 4055], [2, -524]], [[4406, 3531], [-468, -341], [449, -662], [-324, -171]], [[4063, 2357], [-3001, -375], [-161, 839], [1221, 167], [10, 880], [-1517, -54]], [[7541, 1931], [-781, 1180], [-2354, 420]], [[4404, 4055], [1183, -128], [-640, 1463], [-1, 680], [523, 248], [56, 616], [-637, -102], [-393, 793], [607, 1386], [859, -1031], [938, -249], [231, -249], [1937, -3614], [485, -769], [447, -747], [-2458, -421]], [[7541, 1931], [5, -936], [-463, -20], [-419, -173], [47, -498], [-411, -79], [-436, 675], [-336, -614], [-261, 616], [-481, -380], [4, 376], [-361, -8]], [[4429, 890], [-25, 607], [-438, 89], [97, 771]], [[4429, 890], [-392, -758], [-1816, -132], [-1087, 114], [0, 973], [-1134, 291], [9, 144], [26, 377], [398, 16], [182, 1899]]], "transform" : {"scale" : [1.5788595227325731e-06, 5.513957597573821e-07], "translate" : [-0.392234929892773, 50.82830345172981]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01031824": {"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": ["E01031824"]}, "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 an example JSON object that satisfies this schema:
{"type": "object", "properties": {"description": {"type": "string"}, "input_method": {"type": "string"}, "parameters": {"type": "object", "properties": {"certificate_name": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "api_version": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "error": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}}, "required": ["certificate_name", "api_version", "error"]}}, "required": ["description", "input_method", "parameters"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "The GetDeletedCertificate operation retrieves the deleted certificate information plus its attributes, such as retention interval, scheduled permanent deletion and the current deletion recovery level. This operation requires the certificates/get permission.", "input_method" : "stdin", "parameters" : {"certificate_name" : {"description" : "The name of the certificate", "type" : "Optional[String[1]]"}, "api_version" : {"description" : "Client API version.", "type" : "Optional[String[1]]"}, "error" : {"description" : "", "type" : "Optional[String[1]]"}}} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "input_method": {"type": "string"}, "parameters": {"type": "object", "properties": {"certificate_name": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "api_version": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "error": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}}, "required": ["certificate_name", "api_version", "error"]}}, "required": ["description", "input_method", "parameters"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"required": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"gadgets": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "readOnly": {"type": "boolean"}, "items": {"type": "object", "properties": {"required": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"moduleKey": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "readOnly": {"type": "boolean"}}, "required": ["type", "description", "readOnly"]}, "uri": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "readOnly": {"type": "boolean"}}, "required": ["type", "description", "readOnly"]}, "title": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "readOnly": {"type": "boolean"}}, "required": ["type", "description", "readOnly"]}}, "required": ["moduleKey", "uri", "title"]}, "additionalProperties": {"type": "boolean"}, "description": {"type": "string"}}, "required": ["required", "type", "properties", "additionalProperties", "description"]}}, "required": ["type", "description", "readOnly", "items"]}}, "required": ["gadgets"]}, "additionalProperties": {"type": "boolean"}, "description": {"type": "string"}}, "required": ["required", "type", "properties", "additionalProperties", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"required" : ["gadgets"], "type" : "object", "properties" : {"gadgets" : {"type" : "array", "description" : "The list of available gadgets.", "readOnly" : true, "items" : {"required" : ["title"], "type" : "object", "properties" : {"moduleKey" : {"type" : "string", "description" : "The module key of the gadget type.", "readOnly" : true}, "uri" : {"type" : "string", "description" : "The URI of the gadget type.", "readOnly" : true}, "title" : {"type" : "string", "description" : "The title of the gadget.", "readOnly" : true}}, "additionalProperties" : false, "description" : "The details of the available dashboard gadget."}}}, "additionalProperties" : false, "description" : "The list of available gadgets."} | json_instruct | {"type": "object", "properties": {"required": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"gadgets": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "readOnly": {"type": "boolean"}, "items": {"type": "object", "properties": {"required": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"moduleKey": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "readOnly": {"type": "boolean"}}, "required": ["type", "description", "readOnly"]}, "uri": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "readOnly": {"type": "boolean"}}, "required": ["type", "description", "readOnly"]}, "title": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "readOnly": {"type": "boolean"}}, "required": ["type", "description", "readOnly"]}}, "required": ["moduleKey", "uri", "title"]}, "additionalProperties": {"type": "boolean"}, "description": {"type": "string"}}, "required": ["required", "type", "properties", "additionalProperties", "description"]}}, "required": ["type", "description", "readOnly", "items"]}}, "required": ["gadgets"]}, "additionalProperties": {"type": "boolean"}, "description": {"type": "string"}}, "required": ["required", "type", "properties", "additionalProperties", "description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"tsconfig": {"type": "string"}, "project": {"type": "string"}, "languages": {"type": "string"}, "rules": {"type": "object", "properties": {"views": {"type": "string"}, "zombies": {"type": "string"}, "misprint": {"type": "string"}, "maxWarning": {"type": "string"}, "misprintCoefficient": {"type": "string"}, "ignoredKeys": {"type": "array", "items": {"type": "string"}}, "ignoredMisprintKeys": {"type": "array", "items": {}}, "ast": {"type": "object", "properties": {"isNgsTranslateImported": {"type": "string"}}, "required": ["isNgsTranslateImported"]}}, "required": ["views", "zombies", "misprint", "maxWarning", "misprintCoefficient", "ignoredKeys", "ignoredMisprintKeys", "ast"]}}, "required": ["tsconfig", "project", "languages", "rules"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"tsconfig" : "./", "project" : "./src/app/**/*.{html,ts}", "languages" : "./src/assets/i18n/en.json", "rules" : {"views" : "warning", "zombies" : "error", "misprint" : "warning", "maxWarning" : "0", "misprintCoefficient" : "0.9", "ignoredKeys" : ["_dir", "personal.select-language.introduction.am_ET", "personal.select-language.introduction.ar", "personal.select-language.introduction.en", "personal.select-language.introduction.es", "personal.select-language.introduction.fr", "personal.select-language.introduction.in", "personal.select-language.introduction.nl", "personal.select-language.introduction.ny_MW", "personal.select-language.introduction.om_ET", "personal.select-language.introduction.pt_BR", "personal.select-language.introduction.ru", "personal.select-language.introduction.saq_KE", "personal.select-language.introduction.ti", "personal.select-language.introduction.tl", "personal.select-language.introduction.tuv_KE", "personal.select-language.introduction.uk", "personal.select-language.language.am_ET", "personal.select-language.language.ar", "personal.select-language.language.en", "personal.select-language.language.es", "personal.select-language.language.fr", "personal.select-language.language.in", "personal.select-language.language.nl", "personal.select-language.language.ny_MW", "personal.select-language.language.om_ET", "personal.select-language.language.pt_BR", "personal.select-language.language.ru", "personal.select-language.language.saq_KE", "personal.select-language.language.ti", "personal.select-language.language.tl", "personal.select-language.language.tuv_KE", "personal.select-language.language.uk"], "ignoredMisprintKeys" : [], "ast" : {"isNgsTranslateImported" : "error"}}} | json_instruct | {"type": "object", "properties": {"tsconfig": {"type": "string"}, "project": {"type": "string"}, "languages": {"type": "string"}, "rules": {"type": "object", "properties": {"views": {"type": "string"}, "zombies": {"type": "string"}, "misprint": {"type": "string"}, "maxWarning": {"type": "string"}, "misprintCoefficient": {"type": "string"}, "ignoredKeys": {"type": "array", "items": {"type": "string"}}, "ignoredMisprintKeys": {"type": "array", "items": {}}, "ast": {"type": "object", "properties": {"isNgsTranslateImported": {"type": "string"}}, "required": ["isNgsTranslateImported"]}}, "required": ["views", "zombies", "misprint", "maxWarning", "misprintCoefficient", "ignoredKeys", "ignoredMisprintKeys", "ast"]}}, "required": ["tsconfig", "project", "languages", "rules"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"using": {"type": "array", "items": {"type": "integer"}}}, "required": ["using"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"using" : [262145, 327681]} | json_instruct | {"type": "object", "properties": {"using": {"type": "array", "items": {"type": "integer"}}}, "required": ["using"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id_hochschule": {"type": "integer"}, "id_studien": {"type": "integer"}, "name": {"type": "string"}, "steckbrief": {"type": "object", "properties": {"Hochschule": {"type": "string"}, "Hochschulleitung": {"type": "string"}, "": {"type": "string"}, "Hochschultyp": {"type": "string"}, "Bundesland": {"type": "string"}, "Tr\u00e4gerschaft": {"type": "string"}, "Promotionsrecht": {"type": "string"}, "Habilitationsrecht": {"type": "string"}, "Gr\u00fcndungsjahr": {"type": "string"}, "Studierendenzahl": {"type": "string"}, "Nationaler Kodex": {"type": "string"}}, "required": ["Hochschule", "Hochschulleitung", "", "Hochschultyp", "Bundesland", "Tr\u00e4gerschaft", "Promotionsrecht", "Habilitationsrecht", "Gr\u00fcndungsjahr", "Studierendenzahl", "Nationaler Kodex"]}, "anschrift": {"type": "object", "properties": {"Hausanschrift": {"type": "string"}, "E-Mail": {"type": "string"}, "Telefon": {"type": "string"}}, "required": ["Hausanschrift", "E-Mail", "Telefon"]}}, "required": ["id_hochschule", "id_studien", "name", "steckbrief", "anschrift"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id_hochschule" : 194, "id_studien" : 287, "name" : "Hochschule f\u00fcr Angewandte Wissenschaften Hof", "steckbrief" : {"Hochschule" : "Hochschule f\u00fcr Angewandte Wissenschaften Hof", "Hochschulleitung" : "Herr Prof. Dr. Dr. h.c. J\u00fcrgen Lehmann", "" : "", "Hochschultyp" : "Fachhochschulen / HAW", "Bundesland" : "Bayern", "Tr\u00e4gerschaft" : "\u00f6ffentlich-rechtlich", "Promotionsrecht" : "Nein", "Habilitationsrecht" : "Nein", "Gr\u00fcndungsjahr" : "1994", "Studierendenzahl" : "3464 (WS 2016/2017)", "Nationaler Kodex" : "Ja"}, "anschrift" : {"Hausanschrift" : "Alfons-Goppel-Platz 1, 95028 Hof", "E-Mail" : "mail(at)hof-university.de", "Telefon" : "09281 409-30 00"}} | json_instruct | {"type": "object", "properties": {"id_hochschule": {"type": "integer"}, "id_studien": {"type": "integer"}, "name": {"type": "string"}, "steckbrief": {"type": "object", "properties": {"Hochschule": {"type": "string"}, "Hochschulleitung": {"type": "string"}, "": {"type": "string"}, "Hochschultyp": {"type": "string"}, "Bundesland": {"type": "string"}, "Tr\u00e4gerschaft": {"type": "string"}, "Promotionsrecht": {"type": "string"}, "Habilitationsrecht": {"type": "string"}, "Gr\u00fcndungsjahr": {"type": "string"}, "Studierendenzahl": {"type": "string"}, "Nationaler Kodex": {"type": "string"}}, "required": ["Hochschule", "Hochschulleitung", "", "Hochschultyp", "Bundesland", "Tr\u00e4gerschaft", "Promotionsrecht", "Habilitationsrecht", "Gr\u00fcndungsjahr", "Studierendenzahl", "Nationaler Kodex"]}, "anschrift": {"type": "object", "properties": {"Hausanschrift": {"type": "string"}, "E-Mail": {"type": "string"}, "Telefon": {"type": "string"}}, "required": ["Hausanschrift", "E-Mail", "Telefon"]}}, "required": ["id_hochschule", "id_studien", "name", "steckbrief", "anschrift"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"status": {"type": "string"}, "totalResults": {"type": "integer"}, "articles": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "object", "properties": {"id": {"type": "null"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "author": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}, "urlToImage": {"type": "string"}, "publishedAt": {"type": "string"}, "content": {"type": "string"}}, "required": ["source", "author", "title", "description", "url", "urlToImage", "publishedAt", "content"]}}}, "required": ["status", "totalResults", "articles"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status" : "ok", "totalResults" : 1, "articles" : [{"source" : {"id" : null, "name" : "Lifehacker.com"}, "author" : "Jeff Somers", "title" : "Is the Crypto Bubble Going to Burst?", "description" : "Even if you aren\u2019t paying attention to Bitcoin", "url" : "https://lifehacker.com/is-the-crypto-bubble-going-to-burst-1848475768", "urlToImage" : "https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_675,pg_1,q_80,w_1200/976a59b09e0e681e692bd7517498e3f2.jpg", "publishedAt" : "2022-02-09T16:00:00Z", "content" : "Even if you arent paying attention to Bitcoin"}]} | json_instruct | {"type": "object", "properties": {"status": {"type": "string"}, "totalResults": {"type": "integer"}, "articles": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "object", "properties": {"id": {"type": "null"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "author": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}, "urlToImage": {"type": "string"}, "publishedAt": {"type": "string"}, "content": {"type": "string"}}, "required": ["source", "author", "title", "description", "url", "urlToImage", "publishedAt", "content"]}}}, "required": ["status", "totalResults", "articles"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"bugs": {"type": "array", "items": {"type": "object", "properties": {"history": {"type": "array", "items": {"type": "object", "properties": {"changes": {"type": "array", "items": {"type": "object", "properties": {"added": {"type": "string"}, "field_name": {"type": "string"}, "removed": {"type": "string"}}, "required": ["added", "field_name", "removed"]}}, "who": {"type": "string"}, "when": {"type": "string"}}, "required": ["changes", "who", "when"]}}, "id": {"type": "integer"}, "alias": {"type": "null"}}, "required": ["history", "id", "alias"]}}}, "required": ["bugs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"bugs" : [{"history" : [{"changes" : [{"added" : "crash", "field_name" : "keywords", "removed" : ""}], "who" : "mozilla-06@oliverklee.de", "when" : "2004-09-21T11:44:47Z"}, {"who" : "yairhr@yahoo.com", "when" : "2005-09-27T20:30:43Z", "changes" : [{"removed" : "UNCONFIRMED", "added" : "RESOLVED", "field_name" : "status"}, {"field_name" : "resolution", "added" : "INVALID", "removed" : ""}, {"removed" : "", "field_name" : "cf_last_resolved", "added" : "2005-09-27T20:30:43Z"}]}], "id" : 260716, "alias" : null}]} | json_instruct | {"type": "object", "properties": {"bugs": {"type": "array", "items": {"type": "object", "properties": {"history": {"type": "array", "items": {"type": "object", "properties": {"changes": {"type": "array", "items": {"type": "object", "properties": {"added": {"type": "string"}, "field_name": {"type": "string"}, "removed": {"type": "string"}}, "required": ["added", "field_name", "removed"]}}, "who": {"type": "string"}, "when": {"type": "string"}}, "required": ["changes", "who", "when"]}}, "id": {"type": "integer"}, "alias": {"type": "null"}}, "required": ["history", "id", "alias"]}}}, "required": ["bugs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "file_url": {"type": "string"}, "custom_fields": {"type": "object", "properties": {"edition": {"type": "integer"}, "date": {"type": "integer"}, "compiler": {"type": "string"}}, "required": ["edition", "date", "compiler"]}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["name", "description", "file_url", "custom_fields", "attributes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "OneForArt #1440 - Pale Leaf", "description" : "A Pale Leaf pixel.", "file_url" : "https://ipfs.io/ipfs/bafkreifh2zchfbvr5bdtt6lcihzlyhfxa3kv7zc4k7vch2i2khkm3u7uya", "custom_fields" : {"edition" : 1, "date" : 1642619894221, "compiler" : "HashLips Art Engine"}, "attributes" : [{"trait_type" : "name", "value" : "Pale Leaf"}, {"trait_type" : "color_id", "value" : "1440"}, {"trait_type" : "hex", "value" : "#C0D3B9"}, {"trait_type" : "rgb", "value" : "(192, 211, 185)"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "file_url": {"type": "string"}, "custom_fields": {"type": "object", "properties": {"edition": {"type": "integer"}, "date": {"type": "integer"}, "compiler": {"type": "string"}}, "required": ["edition", "date", "compiler"]}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["name", "description", "file_url", "custom_fields", "attributes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "title": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "subtitle": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}, "chapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["title", "chaptersection", "identifier", "catch_text"]}}, "required": ["text", "historical", "credits", "sections", "division", "title", "subtitle", "chapter", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : "", "historical" : "Legislative History of Laws\n\nFor D.C. Law 13-224, see notes following \u00a7 7-651.01.\n\nDC CODE \u00a7 7-651.13\n\nCurrent through December 11, 2012", "credits" : "(Apr. 3, 2001, D.C. Law 13-224, \u00a7 14, 48 DCR 27.)", "sections" : [{"prefix" : "a", "text" : " Withholding or withdrawing resuscitation from a patient in accordance with this chapter shall not constitute a suicide or a crime of assisting suicide."}, {"prefix" : "b", "text" : " The execution or issuance of a comfort care order pursuant to this chapter shall not affect the sale, procurement, or issuance of any life insurance policy, nor be deemed to modify the terms of an existing life insurance policy. No life insurance policy shall be legally impaired or invalidated because resuscitation is withheld from a patient in accordance with this chapter, notwithstanding terms of a life insurance policy to the contrary."}, {"prefix" : "c", "text" : " No physician, EMS personnel, health care provider, health facility, health service plan, health maintenance organization, insurer that issues disability insurance, self-insured employee, welfare benefit plan, nonprofit medical insurance corporation, or mutual nonprofit hospital service corporation shall require any person to execute a comfort care order as a condition of being insured for, or receiving, health care services."}], "division" : {"identifier" : "I", "text" : "Government of District."}, "title" : {"identifier" : "7", "text" : "Human Health Care and Safety. (Refs & Annos)"}, "subtitle" : {"prefix" : "A", "text" : " General."}, "chapter" : {"identifier" : "6A", "text" : "Non-Resuscitation Procedures for Emergency Medical Services."}, "heading" : {"title" : "7", "chaptersection" : "651", "identifier" : "7-651.13", "catch_text" : "Exclusion of suicide; insurance."}} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "title": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "subtitle": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}, "chapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["title", "chaptersection", "identifier", "catch_text"]}}, "required": ["text", "historical", "credits", "sections", "division", "title", "subtitle", "chapter", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "to": {"type": "string"}, "title": {"type": "string"}}, "required": ["id", "to", "title"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 1, "to" : "/customerinfoinquiry", "title" : "\u60c5\u5831\u7167\u4f1a"}, {"id" : 2, "to" : "/changeaddress", "title" : "\u4f4f\u6240\u5909\u66f4"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "to": {"type": "string"}, "title": {"type": "string"}}, "required": ["id", "to", "title"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"200703": {"type": "object", "properties": {"c": {"type": "string"}, "n": {"type": "string"}, "f": {"type": "string"}, "cr": {"type": "number"}, "ac": {"type": "integer"}, "ca": {"type": "integer"}, "pr": {"type": "array", "items": {}}, "co": {"type": "array", "items": {}}, "i": {"type": "array", "items": {"type": "object", "properties": {"tn": {"type": "string"}, "ta": {"type": "integer"}, "tc": {"type": "integer"}}, "required": ["tn", "ta", "tc"]}}, "ce": {"type": "integer"}, "p": {"type": "integer"}}, "required": ["c", "n", "f", "cr", "ac", "ca", "pr", "co", "i", "ce", "p"]}, "200803": {"type": "object", "properties": {"c": {"type": "string"}, "n": {"type": "string"}, "f": {"type": "string"}, "cr": {"type": "number"}, "ac": {"type": "integer"}, "ca": {"type": "integer"}, "pr": {"type": "array", "items": {}}, "co": {"type": "array", "items": {}}, "i": {"type": "array", "items": {"type": "object", "properties": {"tn": {"type": "string"}, "ta": {"type": "integer"}, "tc": {"type": "integer"}}, "required": ["tn", "ta", "tc"]}}, "ce": {"type": "integer"}, "p": {"type": "integer"}}, "required": ["c", "n", "f", "cr", "ac", "ca", "pr", "co", "i", "ce", "p"]}, "catList": {"type": "array", "items": {"type": "string"}}}, "required": ["200703", "200803", "catList"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"200703" : {"c" : "ITM 585", "n" : "Digital Marketing", "f" : "SOM", "cr" : 1.5, "ac" : 6, "ca" : 20, "pr" : [], "co" : [], "i" : [{"tn" : "Ronan Jouan de Kervenoael", "ta" : 6, "tc" : 20}], "ce" : 0, "p" : 51}, "200803" : {"c" : "ITM 585", "n" : "Digital Marketing", "f" : "SOM", "cr" : 1.5, "ac" : 8, "ca" : 20, "pr" : [], "co" : [], "i" : [{"tn" : "Ronan Jouan de Kervenoael", "ta" : 8, "tc" : 20}], "ce" : 0, "p" : 57}, "catList" : ["Marketers have been using electronic tools for many years, but the Internet and other information technologies have created a flood of interesting and innovative ways to provide better customer value, implement greater control over the supply chain and increase revenue. This course examines the main concepts related to digital marketing including the drivers of the new marketing environment, strategy and models, marketing planning issues, CRM, and e-marketing research, explaining how and why digital marketing provides creative potentials and challenges for IT professionals to understand and apply the new interactive medium."]} | json_instruct | {"type": "object", "properties": {"200703": {"type": "object", "properties": {"c": {"type": "string"}, "n": {"type": "string"}, "f": {"type": "string"}, "cr": {"type": "number"}, "ac": {"type": "integer"}, "ca": {"type": "integer"}, "pr": {"type": "array", "items": {}}, "co": {"type": "array", "items": {}}, "i": {"type": "array", "items": {"type": "object", "properties": {"tn": {"type": "string"}, "ta": {"type": "integer"}, "tc": {"type": "integer"}}, "required": ["tn", "ta", "tc"]}}, "ce": {"type": "integer"}, "p": {"type": "integer"}}, "required": ["c", "n", "f", "cr", "ac", "ca", "pr", "co", "i", "ce", "p"]}, "200803": {"type": "object", "properties": {"c": {"type": "string"}, "n": {"type": "string"}, "f": {"type": "string"}, "cr": {"type": "number"}, "ac": {"type": "integer"}, "ca": {"type": "integer"}, "pr": {"type": "array", "items": {}}, "co": {"type": "array", "items": {}}, "i": {"type": "array", "items": {"type": "object", "properties": {"tn": {"type": "string"}, "ta": {"type": "integer"}, "tc": {"type": "integer"}}, "required": ["tn", "ta", "tc"]}}, "ce": {"type": "integer"}, "p": {"type": "integer"}}, "required": ["c", "n", "f", "cr", "ac", "ca", "pr", "co", "i", "ce", "p"]}, "catList": {"type": "array", "items": {"type": "string"}}}, "required": ["200703", "200803", "catList"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"946983199710": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946983199900": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}, "946983200088": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946983200090": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946983211359": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946983211360": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946983211366": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946983213957": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946983213959": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946983223738": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946983223739": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946983223743": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["946983199710", "946983199900", "946983200088", "946983200090", "946983211359", "946983211360", "946983211366", "946983213957", "946983213959", "946983223738", "946983223739", "946983223743"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"946983199710" : {"type" : "st"}, "946983199900" : {"type" : "book open", "bookName" : "Epic%20Quest", "subjectName" : "school", "fName" : "users/MS0vYW5kcm9pZF9hc3NldC93d3cvc2Nob29sL0VwaWMlMjBRdWVzdC92YXJpYWJsZS1FUV9NYXBfdmlkZW9zLUVRX01hcF92aWRfcGVhY29jay5odG1sLWFuYWx5dGljcy05NDY5ODMxOTk4MzM=.json"}, "946983200088" : {"type" : "st"}, "946983200090" : {"type" : "ss"}, "946983211359" : {"type" : "st"}, "946983211360" : {"type" : "ss"}, "946983211366" : {"type" : "sf"}, "946983213957" : {"type" : "st"}, "946983213959" : {"type" : "ss"}, "946983223738" : {"type" : "st"}, "946983223739" : {"type" : "ss"}, "946983223743" : {"type" : "sf"}} | json_instruct | {"type": "object", "properties": {"946983199710": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946983199900": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}, "946983200088": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946983200090": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946983211359": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946983211360": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946983211366": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946983213957": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946983213959": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946983223738": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946983223739": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946983223743": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["946983199710", "946983199900", "946983200088", "946983200090", "946983211359", "946983211360", "946983211366", "946983213957", "946983213959", "946983223738", "946983223739", "946983223743"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"sensio/framework-extra-bundle": {"type": "string"}}, "required": ["sensio/framework-extra-bundle"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"NoxLogic\\Bundle\\MultiParamBundle": {"type": "string"}}, "required": ["NoxLogic\\Bundle\\MultiParamBundle"]}}, "required": ["psr-0"]}, "target-dir": {"type": "string"}}, "required": ["name", "description", "keywords", "type", "license", "authors", "require", "autoload", "target-dir"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "noxlogic/multiparam-bundle", "description" : "This bundle provides the multiParamConverter annotation for symfony2 projects", "keywords" : ["annotations"], "type" : "symfony-bundle", "license" : "MIT", "authors" : [{"name" : "Joshua Thijssen", "email" : "jthijssen@noxlogic.nl"}], "require" : {"sensio/framework-extra-bundle" : "2.1.x-dev"}, "autoload" : {"psr-0" : {"NoxLogic\\Bundle\\MultiParamBundle" : ""}}, "target-dir" : "NoxLogic/Bundle/MultiParamBundle"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"sensio/framework-extra-bundle": {"type": "string"}}, "required": ["sensio/framework-extra-bundle"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"NoxLogic\\Bundle\\MultiParamBundle": {"type": "string"}}, "required": ["NoxLogic\\Bundle\\MultiParamBundle"]}}, "required": ["psr-0"]}, "target-dir": {"type": "string"}}, "required": ["name", "description", "keywords", "type", "license", "authors", "require", "autoload", "target-dir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"2243-1-1": {"type": "string"}, "2243-1-2": {"type": "string"}, "2243-1-3": {"type": "string"}, "2243-3-1": {"type": "string"}, "2243-2-3": {"type": "string"}, "2243-3-3": {"type": "string"}, "2243-1-4": {"type": "string"}, "2243-2-4": {"type": "string"}, "2243-3-4": {"type": "string"}, "2243-4-1": {"type": "string"}, "2243-4-2": {"type": "string"}, "2243-4-3": {"type": "string"}, "2243-5-1": {"type": "string"}, "2243-5-2": {"type": "string"}, "2243-5-3": {"type": "string"}, "2243-6-1": {"type": "string"}, "2243-6-2": {"type": "string"}, "2243-7-1": {"type": "string"}, "2243-7-2": {"type": "string"}, "2243-8-1": {"type": "string"}, "2243-8-2": {"type": "string"}, "2243-8-3": {"type": "string"}, "2243-1-5": {"type": "string"}, "2243-1-6": {"type": "string"}, "2243-1-7": {"type": "string"}, "2243-1-8": {"type": "string"}, "2243-1-9": {"type": "string"}, "2243-2-8": {"type": "string"}, "2243-2-9": {"type": "string"}, "2243-3-8": {"type": "string"}, "2243-3-9": {"type": "string"}, "2243-4-8": {"type": "string"}, "2243-4-9": {"type": "string"}, "2243-5-8": {"type": "string"}, "2243-5-9": {"type": "string"}, "2243-6-8": {"type": "string"}, "2243-6-9": {"type": "string"}, "2243-7-8": {"type": "string"}, "2243-7-9": {"type": "string"}, "2243-8-8": {"type": "string"}, "2243-8-9": {"type": "string"}}, "required": ["2243-1-1", "2243-1-2", "2243-1-3", "2243-3-1", "2243-2-3", "2243-3-3", "2243-1-4", "2243-2-4", "2243-3-4", "2243-4-1", "2243-4-2", "2243-4-3", "2243-5-1", "2243-5-2", "2243-5-3", "2243-6-1", "2243-6-2", "2243-7-1", "2243-7-2", "2243-8-1", "2243-8-2", "2243-8-3", "2243-1-5", "2243-1-6", "2243-1-7", "2243-1-8", "2243-1-9", "2243-2-8", "2243-2-9", "2243-3-8", "2243-3-9", "2243-4-8", "2243-4-9", "2243-5-8", "2243-5-9", "2243-6-8", "2243-6-9", "2243-7-8", "2243-7-9", "2243-8-8", "2243-8-9"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"2243-1-1" : "\u5e8f\u865f", "2243-1-2" : "\u671f\uff0d\uff0f\u4e00\uff0f\u53e3H\uff0d\uff0ds\u6613\u4e00\uff0f\u8840\uff0f", "2243-1-3" : "e\uff0d\uff0d\u300f\u6536\u652f\u79d1\u76ee", "2243-3-1" : "2 ", "2243-2-3" : "\u4eba\u6c11\u5718\u9ad4\u63aa\u8d08\u6536", "2243-3-3" : "\u4eba\u6c11\u5718\u9ad4\u63aa\u8d08\u6536", "2243-1-4" : "\u6350\u8d08\u8005\uff0f\u652f\u51fa\u5c0d\u8c61\u8eab", "2243-2-4" : "\u4e2d\u83ef\u6c11\u570b\u4e2d\u91ab\u5e2b\u516c\u6703\u5168\u570b\u806f\u5408\u6703", "2243-3-4" : "\u57fa\u9686\u5e02\u4e2d\u91ab\u5e2b\u516c\u6703", "2243-4-1" : "3 I ", "2243-4-2" : "1001121\u7684\ufe31", "2243-4-3" : "\u4eba\u6c0f\u5718\u9ad4\u6905\u8d08\u6536", "2243-5-1" : "4 I ", "2243-5-2" : "10\u53ed\u53eb\ufe31", "2243-5-3" : "\u4eba\u6c11\u5718\u9ad4\u6350\u8d08\u6536", "2243-6-1" : "5 1", "2243-6-2" : "100/12/15 I ", "2243-7-1" : "6 I ", "2243-7-2" : "100;12/06 ", "2243-8-1" : "7 I ", "2243-8-2" : "100/11/08 I", "2243-8-3" : "\u4eba\u6c11", "2243-1-5" : "\u5206\u8b49\uff0f\u7d71\u4e00\u7de8\ufe31", "2243-1-6" : "\u6536\u5165\u91d1\u984d\ufe31", "2243-1-7" : "\u652f\u51fa\u91d1\u984d", "2243-1-8" : "\u91d1\u9322\u985e\ufe31", "2243-1-9" : "\u5730\u5740", "2243-2-8" : "\u662f\ufe31", "2243-2-9" : "\u53f0\u5317\u7e23\u677f\u6a4b\u5e02", "2243-3-8" : "\u662f", "2243-3-9" : "\u57fa\u9686\u5e02\u4e2d\u6b63\u5340", "2243-4-8" : "\u8302\u7530: ", "2243-4-9" : "\u4e2d\u6b63\u8def\u865f\uff0a\uff0a\uff0a\uff0a", "2243-5-8" : "\u662f", "2243-5-9" : "\u5f70\u5316\u7e23\u3001\u548c\u7f8e\u93ae", "2243-6-8" : "\u662f", "2243-6-9" : "\u53f0\u5317\u5e02\u4e2d\u6b63\u8655", "2243-7-8" : "\u53ea\u56de\u03b6 ", "2243-7-9" : "\u5f70\u5316\u5e02\u6cf0\u548c\u4e2d", "2243-8-8" : "\u662fl", "2243-8-9" : "\u9f13\u5c71\u5340\u5e72\u5149\u8def"} | json_instruct | {"type": "object", "properties": {"2243-1-1": {"type": "string"}, "2243-1-2": {"type": "string"}, "2243-1-3": {"type": "string"}, "2243-3-1": {"type": "string"}, "2243-2-3": {"type": "string"}, "2243-3-3": {"type": "string"}, "2243-1-4": {"type": "string"}, "2243-2-4": {"type": "string"}, "2243-3-4": {"type": "string"}, "2243-4-1": {"type": "string"}, "2243-4-2": {"type": "string"}, "2243-4-3": {"type": "string"}, "2243-5-1": {"type": "string"}, "2243-5-2": {"type": "string"}, "2243-5-3": {"type": "string"}, "2243-6-1": {"type": "string"}, "2243-6-2": {"type": "string"}, "2243-7-1": {"type": "string"}, "2243-7-2": {"type": "string"}, "2243-8-1": {"type": "string"}, "2243-8-2": {"type": "string"}, "2243-8-3": {"type": "string"}, "2243-1-5": {"type": "string"}, "2243-1-6": {"type": "string"}, "2243-1-7": {"type": "string"}, "2243-1-8": {"type": "string"}, "2243-1-9": {"type": "string"}, "2243-2-8": {"type": "string"}, "2243-2-9": {"type": "string"}, "2243-3-8": {"type": "string"}, "2243-3-9": {"type": "string"}, "2243-4-8": {"type": "string"}, "2243-4-9": {"type": "string"}, "2243-5-8": {"type": "string"}, "2243-5-9": {"type": "string"}, "2243-6-8": {"type": "string"}, "2243-6-9": {"type": "string"}, "2243-7-8": {"type": "string"}, "2243-7-9": {"type": "string"}, "2243-8-8": {"type": "string"}, "2243-8-9": {"type": "string"}}, "required": ["2243-1-1", "2243-1-2", "2243-1-3", "2243-3-1", "2243-2-3", "2243-3-3", "2243-1-4", "2243-2-4", "2243-3-4", "2243-4-1", "2243-4-2", "2243-4-3", "2243-5-1", "2243-5-2", "2243-5-3", "2243-6-1", "2243-6-2", "2243-7-1", "2243-7-2", "2243-8-1", "2243-8-2", "2243-8-3", "2243-1-5", "2243-1-6", "2243-1-7", "2243-1-8", "2243-1-9", "2243-2-8", "2243-2-9", "2243-3-8", "2243-3-9", "2243-4-8", "2243-4-9", "2243-5-8", "2243-5-9", "2243-6-8", "2243-6-9", "2243-7-8", "2243-7-9", "2243-8-8", "2243-8-9"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 404374933, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "3b6267488799176cd6eecd53798ff36c", "wof:id" : 404374933, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [-2.29858576501839, 47.57480715659067, -2.18874226410505, 47.6299262776035], "geometry" : {"coordinates" : [[[-2.20836181231355, 47.58665155866834], [-2.22906554192364, 47.58566131905231], [-2.24336065969781, 47.57604301555621], [-2.26347703440998, 47.57887084686769], [-2.28350000836485, 47.57480715659067], [-2.29858576501839, 47.58991880239129], [-2.29833629399451, 47.59908694712195], [-2.28254355759956, 47.60742671016572], [-2.27075562983456, 47.62636339712891], [-2.25641210578725, 47.62949149668218], [-2.2439522734202, 47.62695816772787], [-2.23157176191734, 47.62970620314706], [-2.22122449928865, 47.6299262776035], [-2.20870155239947, 47.6194899815813], [-2.19365603836903, 47.6170669432495], [-2.18874226410505, 47.60729089521084], [-2.19417143395056, 47.59045112076902], [-2.20214877346779, 47.59034792377251], [-2.20836181231355, 47.58665155866834]]], "type" : "Polygon"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1506010011", "district_id" : "1506010", "name" : "PANGKAL DURI"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"require": {"type": "object", "properties": {"mapon-com/client-api-php-sdk": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["mapon-com/client-api-php-sdk", "phpunit/phpunit"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"require" : {"mapon-com/client-api-php-sdk" : "^1.0", "phpunit/phpunit" : "^9.5"}} | json_instruct | {"type": "object", "properties": {"require": {"type": "object", "properties": {"mapon-com/client-api-php-sdk": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["mapon-com/client-api-php-sdk", "phpunit/phpunit"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "attribute": {"type": "string"}, "type": {"type": "string"}, "cmc": {"type": "integer"}, "racesOrTraits": {"type": "array", "items": {"type": "string"}}, "text": {"type": "string"}, "set": {"type": "string"}, "code": {"type": "string"}, "rarity": {"type": "string"}, "thumbnailImage": {"type": "string"}, "cardImage": {"type": "string"}}, "required": ["name", "attribute", "type", "cmc", "racesOrTraits", "text", "set", "code", "rarity", "thumbnailImage", "cardImage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Baby Dragon of Asakna", "attribute" : "Fire", "type" : "Resonator", "cmc" : 2, "racesOrTraits" : ["Dragon"], "text" : "Break: You may put a [Race:Dragon] resonator from your hand into your field.\nActivate. Banish this card: The free cost for [Race:Dragon] resonators in your hand is reduced by 2 until end of turn.", "set" : "The War of Valhalla", "code" : "2-027", "rarity" : "C", "thumbnailImage" : "../assets/img/cards/2/027.jpg", "cardImage" : "http://db.fowtcg.us/cards/2/027.jpg"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "attribute": {"type": "string"}, "type": {"type": "string"}, "cmc": {"type": "integer"}, "racesOrTraits": {"type": "array", "items": {"type": "string"}}, "text": {"type": "string"}, "set": {"type": "string"}, "code": {"type": "string"}, "rarity": {"type": "string"}, "thumbnailImage": {"type": "string"}, "cardImage": {"type": "string"}}, "required": ["name", "attribute", "type", "cmc", "racesOrTraits", "text", "set", "code", "rarity", "thumbnailImage", "cardImage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "Polyurethane", "definitions" : ["Coat with polyurethane paint or varnish."], "parts-of-speech" : "Verb"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"callbackUri": {"type": "string"}, "filter": {"type": "object", "properties": {"notificationTypes": {"type": "array", "items": {"type": "string"}}, "operationTypes": {"type": "array", "items": {"type": "string"}}, "operationStates": {"type": "array", "items": {"type": "string"}}}, "required": ["notificationTypes", "operationTypes", "operationStates"]}}, "required": ["callbackUri", "filter"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"callbackUri" : "http://aurl.com", "filter" : {"notificationTypes" : ["NsIdentifierDeletionNotification"], "operationTypes" : ["INSTANTIATE"], "operationStates" : ["STARTING"]}} | json_instruct | {"type": "object", "properties": {"callbackUri": {"type": "string"}, "filter": {"type": "object", "properties": {"notificationTypes": {"type": "array", "items": {"type": "string"}}, "operationTypes": {"type": "array", "items": {"type": "string"}}, "operationStates": {"type": "array", "items": {"type": "string"}}}, "required": ["notificationTypes", "operationTypes", "operationStates"]}}, "required": ["callbackUri", "filter"], "$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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/core": {"type": "string"}}, "required": ["@angular/common", "@angular/core"]}, "author": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "es2015": {"type": "string"}, "esm5": {"type": "string"}, "esm2015": {"type": "string"}, "fesm5": {"type": "string"}, "fesm2015": {"type": "string"}, "typings": {"type": "string"}, "metadata": {"type": "string"}, "sideEffects": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@angular/compiler": {"type": "string"}, "@angular/router": {"type": "string"}, "tslib": {"type": "string"}}, "required": ["@angular/compiler", "@angular/router", "tslib"]}, "devDependencies": {"type": "object", "properties": {"@angular/cli": {"type": "string"}}, "required": ["@angular/cli"]}}, "required": ["name", "version", "description", "keywords", "homepage", "peerDependencies", "author", "main", "module", "es2015", "esm5", "esm2015", "fesm5", "fesm2015", "typings", "metadata", "sideEffects", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ngx-navigation-with-data", "version" : "0.0.7", "description" : "This package is mainly for beginner of Angular developement,this help them to navigate through components with some data.", "keywords" : ["routing", "router", "routing with data", "angular", "navigate", "navigation", "data", "navigate with data", "Angular 2", "Angular 4", "Angular 5 and above"], "homepage" : "https://github.com/Virendra-Yadav/navigation-with-data#readme", "peerDependencies" : {"@angular/common" : "^13.2.4", "@angular/core" : "^13.2.4"}, "author" : "Virendra Yadav <virendra.yadav.1000@gmail.com> (https://www.linkedin.com/in/virendraayadav//)", "main" : "bundles/ngx-navigation-with-data.umd.js", "module" : "fesm5/ngx-navigation-with-data.js", "es2015" : "fesm2015/ngx-navigation-with-data.js", "esm5" : "esm5/ngx-navigation-with-data.js", "esm2015" : "esm2015/ngx-navigation-with-data.js", "fesm5" : "fesm5/ngx-navigation-with-data.js", "fesm2015" : "fesm2015/ngx-navigation-with-data.js", "typings" : "ngx-navigation-with-data.d.ts", "metadata" : "ngx-navigation-with-data.metadata.json", "sideEffects" : false, "dependencies" : {"@angular/compiler" : "^13.2.4", "@angular/router" : "13.2.4", "tslib" : "^1.9.0"}, "devDependencies" : {"@angular/cli" : "^13.2.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/core": {"type": "string"}}, "required": ["@angular/common", "@angular/core"]}, "author": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "es2015": {"type": "string"}, "esm5": {"type": "string"}, "esm2015": {"type": "string"}, "fesm5": {"type": "string"}, "fesm2015": {"type": "string"}, "typings": {"type": "string"}, "metadata": {"type": "string"}, "sideEffects": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@angular/compiler": {"type": "string"}, "@angular/router": {"type": "string"}, "tslib": {"type": "string"}}, "required": ["@angular/compiler", "@angular/router", "tslib"]}, "devDependencies": {"type": "object", "properties": {"@angular/cli": {"type": "string"}}, "required": ["@angular/cli"]}}, "required": ["name", "version", "description", "keywords", "homepage", "peerDependencies", "author", "main", "module", "es2015", "esm5", "esm2015", "fesm5", "fesm2015", "typings", "metadata", "sideEffects", "dependencies", "devDependencies"], "$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-12-25T22:00:00Z", "Temp" : 13.8, "RelHum" : 59, "WindSpeed" : 1.9, "WindDir" : 349} | 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#"} |
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-10-31T06:00:00Z", "Temp" : 23.8, "RelHum" : 76, "WindSpeed" : 1.4, "WindDir" : 276} | 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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 31320, "cartId" : "5ba74029-5b05-4c4a-a57b-e17f1b0fd4ab", "preferredProducts" : [817, 170, 4665, 2546, 4614, 959, 3614, 4566], "productReviews" : []} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"setVersion": {"type": "string"}, "updateYaml": {"type": "string"}, "updateGitIgnore": {"type": "string"}, "install": {"type": "string"}, "end": {"type": "string"}}, "required": ["setVersion", "updateYaml", "updateGitIgnore", "install", "end"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"setVersion" : "Set version", "updateYaml" : "Update yaml configuration", "updateGitIgnore" : "update gitignore", "install" : "Install dependencies", "end" : "Upgrade dependency complete"} | json_instruct | {"type": "object", "properties": {"setVersion": {"type": "string"}, "updateYaml": {"type": "string"}, "updateGitIgnore": {"type": "string"}, "install": {"type": "string"}, "end": {"type": "string"}}, "required": ["setVersion", "updateYaml", "updateGitIgnore", "install", "end"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "get-logger"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"213.120.234.66": {"type": "object", "properties": {"1h": {"type": "object", "properties": {"213.120.234.66": {"type": "number"}, "10.0.100.18": {"type": "number"}}, "required": ["213.120.234.66", "10.0.100.18"]}, "6h": {"type": "object", "properties": {"213.120.234.66": {"type": "number"}, "10.0.100.18": {"type": "number"}}, "required": ["213.120.234.66", "10.0.100.18"]}}, "required": ["1h", "6h"]}, "10.0.100.18": {"type": "object", "properties": {"1h": {"type": "object", "properties": {"213.120.234.66": {"type": "number"}, "10.0.100.18": {"type": "number"}}, "required": ["213.120.234.66", "10.0.100.18"]}, "6h": {"type": "object", "properties": {"213.120.234.66": {"type": "number"}, "10.0.100.18": {"type": "number"}}, "required": ["213.120.234.66", "10.0.100.18"]}}, "required": ["1h", "6h"]}}, "required": ["213.120.234.66", "10.0.100.18"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"213.120.234.66" : {"1h" : {"213.120.234.66" : 1.0, "10.0.100.18" : 1.0}, "6h" : {"213.120.234.66" : 1.0, "10.0.100.18" : 1.0}}, "10.0.100.18" : {"1h" : {"213.120.234.66" : 1.0, "10.0.100.18" : 1.0}, "6h" : {"213.120.234.66" : 1.0, "10.0.100.18" : 1.0}}} | json_instruct | {"type": "object", "properties": {"213.120.234.66": {"type": "object", "properties": {"1h": {"type": "object", "properties": {"213.120.234.66": {"type": "number"}, "10.0.100.18": {"type": "number"}}, "required": ["213.120.234.66", "10.0.100.18"]}, "6h": {"type": "object", "properties": {"213.120.234.66": {"type": "number"}, "10.0.100.18": {"type": "number"}}, "required": ["213.120.234.66", "10.0.100.18"]}}, "required": ["1h", "6h"]}, "10.0.100.18": {"type": "object", "properties": {"1h": {"type": "object", "properties": {"213.120.234.66": {"type": "number"}, "10.0.100.18": {"type": "number"}}, "required": ["213.120.234.66", "10.0.100.18"]}, "6h": {"type": "object", "properties": {"213.120.234.66": {"type": "number"}, "10.0.100.18": {"type": "number"}}, "required": ["213.120.234.66", "10.0.100.18"]}}, "required": ["1h", "6h"]}}, "required": ["213.120.234.66", "10.0.100.18"], "$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"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-contrib-clean": {"type": "string"}, "grunt-contrib-copy": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-nodeunit": {"type": "string"}, "grunt-mkdir": {"type": "string"}, "grunt-remove-html-comments": {"type": "string"}}, "required": ["grunt", "grunt-contrib-clean", "grunt-contrib-copy", "grunt-contrib-jshint", "grunt-contrib-nodeunit", "grunt-mkdir", "grunt-remove-html-comments"]}, "dependencies": {"type": "object", "properties": {"grunt-contrib-cssmin": {"type": "string"}, "grunt-contrib-uglify-es": {"type": "string"}, "grunt-injector": {"type": "string"}, "grunt-responsive-images": {"type": "string"}, "idb": {"type": "string"}}, "required": ["grunt-contrib-cssmin", "grunt-contrib-uglify-es", "grunt-injector", "grunt-responsive-images", "idb"]}}, "required": ["name", "version", "repository", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "reponsive-images", "version" : "0.1.0", "repository" : {"type" : "git", "url" : "https://github.com/stefanscherzer/Restaurant-Reviews-App.git"}, "devDependencies" : {"grunt" : "^0.4.5", "grunt-contrib-clean" : "~0.6.0", "grunt-contrib-copy" : "~0.8.0", "grunt-contrib-jshint" : "~0.10.0", "grunt-contrib-nodeunit" : "~0.4.1", "grunt-mkdir" : "~0.1.2", "grunt-remove-html-comments" : "^1.0.0"}, "dependencies" : {"grunt-contrib-cssmin" : "^2.2.1", "grunt-contrib-uglify-es" : "github:gruntjs/grunt-contrib-uglify#harmony", "grunt-injector" : "^1.1.0", "grunt-responsive-images" : "^0.1.6", "idb" : "^2.1.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-contrib-clean": {"type": "string"}, "grunt-contrib-copy": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-nodeunit": {"type": "string"}, "grunt-mkdir": {"type": "string"}, "grunt-remove-html-comments": {"type": "string"}}, "required": ["grunt", "grunt-contrib-clean", "grunt-contrib-copy", "grunt-contrib-jshint", "grunt-contrib-nodeunit", "grunt-mkdir", "grunt-remove-html-comments"]}, "dependencies": {"type": "object", "properties": {"grunt-contrib-cssmin": {"type": "string"}, "grunt-contrib-uglify-es": {"type": "string"}, "grunt-injector": {"type": "string"}, "grunt-responsive-images": {"type": "string"}, "idb": {"type": "string"}}, "required": ["grunt-contrib-cssmin", "grunt-contrib-uglify-es", "grunt-injector", "grunt-responsive-images", "idb"]}}, "required": ["name", "version", "repository", "devDependencies", "dependencies"], "$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"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "headmaster": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "fax", "phone", "website", "email", "headmaster", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Grundschule Ferdinandshof", "id" : "MV-75136206", "address" : "Friedrichstra\u00dfe 33a, 17379 Ferdinandshof", "school_type" : "Grundschule", "fax" : "039778/20693", "phone" : "039778/20693", "website" : "www.gs.ferdinandshof.de", "email" : "GS-Ferdinandshof@t-online.de", "headmaster" : " Gerold Seidler", "state" : "MV", "programs" : {"programs" : []}, "full_time_school" : false, "lon" : 13.891347, "lat" : 53.662592} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "headmaster": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "fax", "phone", "website", "email", "headmaster", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"terminal.integrated.env.windows": {"type": "object", "properties": {"PATH": {"type": "string"}, "PLATFORMIO_CALLER": {"type": "string"}}, "required": ["PATH", "PLATFORMIO_CALLER"]}}, "required": ["terminal.integrated.env.windows"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"terminal.integrated.env.windows" : {"PATH" : "C:\\Users\\coytb\\.platformio\\penv\\Scripts;C:\\Users\\coytb\\.platformio\\penv;C:\\Program Files (x86)\\Common Files\\Oracle\\Java\\javapath;C:\\Python37\\Scripts\\;C:\\Python37\\;C:\\ProgramData\\Anaconda3;C:\\ProgramData\\Anaconda3\\Library\\mingw-w64\\bin;C:\\ProgramData\\Anaconda3\\Library\\usr\\bin;C:\\ProgramData\\Anaconda3\\Library\\bin;C:\\ProgramData\\Anaconda3\\Scripts;C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\Program Files\\LLVM\\bin;C:\\ProgramData\\chocolatey\\bin;C:\\Program Files\\CMake\\bin;C:\\Program Files\\Git\\cmd;C:\\Program Files\\Nordic Semiconductor\\nrf5x\\bin\\;C:\\Program Files\\PuTTY\\;C:\\gnu_arm_embedded\\bin;C:\\Users\\coytb\\AppData\\Local\\Microsoft\\WindowsApps;D:\\Dropbox\\Shared Firmware Development;C:\\Users\\coytb\\AppData\\Local\\Programs\\Microsoft VS Code Insiders\\bin;C:\\Users\\coytb\\AppData\\Local\\Programs\\Microsoft VS Code\\bin;C:\\Program Files (x86)\\Common Files\\Oracle\\Java\\javapath;C:\\Python37\\Scripts\\;C:\\Python37\\;C:\\ProgramData\\Anaconda3;C:\\ProgramData\\Anaconda3\\Library\\mingw-w64\\bin;C:\\ProgramData\\Anaconda3\\Library\\usr\\bin;C:\\ProgramData\\Anaconda3\\Library\\bin;C:\\ProgramData\\Anaconda3\\Scripts;C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\Program Files\\LLVM\\bin;C:\\ProgramData\\chocolatey\\bin;C:\\Program Files\\CMake\\bin;C:\\Program Files\\Git\\cmd;C:\\Program Files\\Nordic Semiconductor\\nrf5x\\bin\\;C:\\Program Files\\PuTTY\\;C:\\gnu_arm_embedded\\bin;C:\\Users\\coytb\\AppData\\Local\\Microsoft\\WindowsApps;D:\\Dropbox\\Shared Firmware Development;C:\\Users\\coytb\\AppData\\Local\\Programs\\Microsoft VS Code Insiders\\bin;C:\\Users\\coytb\\AppData\\Local\\Programs\\Microsoft VS Code\\bin", "PLATFORMIO_CALLER" : "vscode"}} | json_instruct | {"type": "object", "properties": {"terminal.integrated.env.windows": {"type": "object", "properties": {"PATH": {"type": "string"}, "PLATFORMIO_CALLER": {"type": "string"}}, "required": ["PATH", "PLATFORMIO_CALLER"]}}, "required": ["terminal.integrated.env.windows"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"jssip.js": {"type": "string"}, "jssip.min.js": {"type": "string"}}, "required": ["jssip.js", "jssip.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"jssip.js" : "sha256-XsWpR9vWHmjKS34VqllK4rGVWs5K/PjWMESkV+1CqwI=", "jssip.min.js" : "sha256-+NlTuLNd9+6v+OfxLBQzNiVlU1nbWHqO0hC3apHqt/Y="} | json_instruct | {"type": "object", "properties": {"jssip.js": {"type": "string"}, "jssip.min.js": {"type": "string"}}, "required": ["jssip.js", "jssip.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 1817, "surahNumber" : "015", "ayatNumber" : "015", "arabic" : "\u0644\u064e\u0642\u064e\u0627\u0644\u064f\u0648\u0627 \u0625\u0650\u0646\u0651\u064e\u0645\u064e\u0627 \u0633\u064f\u0643\u0651\u0650\u0631\u064e\u062a\u0652 \u0623\u064e\u0628\u0652\u0635\u064e\u0627\u0631\u064f\u0646\u064e\u0627 \u0628\u064e\u0644\u0652 \u0646\u064e\u062d\u0652\u0646\u064f \u0642\u064e\u0648\u0652\u0645\u064c \u0645\u064e\u0633\u0652\u062d\u064f\u0648\u0631\u064f\u0648\u0646\u064e", "english" : "They would surely say: \"Our eyes have been (as if) dazzled. Nay, we are a people bewitched.\"", "bengali" : "\u09a4\u09ac\u09c1\u0993 \u0993\u09b0\u09be \u098f\u0995\u09a5\u09be\u0987 \u09ac\u09b2\u09ac\u09c7 \u09af\u09c7, \u0986\u09ae\u09be\u09a6\u09c7\u09b0 \u09a6\u09c3\u09b7\u09cd\u099f\u09bf\u09b0 \u09ac\u09bf\u09ad\u09cd\u09b0\u09be\u099f \u0998\u099f\u09be\u09a8\u09c7\u09be \u09b9\u09df\u09c7\u099b\u09c7 \u09a8\u09be \u09ac\u09b0\u0982 \u0986\u09ae\u09b0\u09be \u09af\u09be\u09a6\u09c1\u0997\u09cd\u09b0\u09b8\u09cd\u09a4 \u09b9\u09df\u09c7 \u09aa\u09dc\u09c7\u099b\u09bf\u0964"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"outDir": {"type": "string"}, "target": {"type": "string"}, "lib": {"type": "array", "items": {"type": "string"}}, "moduleResolution": {"type": "string"}, "esModuleInterop": {"type": "boolean"}, "isolatedModules": {"type": "boolean"}, "allowJs": {"type": "boolean"}, "declaration": {"type": "boolean"}, "skipLibCheck": {"type": "boolean"}, "forceConsistentCasingInFileNames": {"type": "boolean"}, "listFiles": {"type": "boolean"}, "jsx": {"type": "string"}}, "required": ["outDir", "target", "lib", "moduleResolution", "esModuleInterop", "isolatedModules", "allowJs", "declaration", "skipLibCheck", "forceConsistentCasingInFileNames", "listFiles", "jsx"]}, "typedocOptions": {"type": "object", "properties": {"entryPoints": {"type": "array", "items": {"type": "string"}}, "out": {"type": "string"}, "githubPages": {"type": "boolean"}, "validation": {"type": "object", "properties": {"invalidLink": {"type": "boolean"}}, "required": ["invalidLink"]}, "readme": {"type": "string"}, "name": {"type": "string"}, "includeVersion": {"type": "boolean"}, "sort": {"type": "array", "items": {"type": "string"}}}, "required": ["entryPoints", "out", "githubPages", "validation", "readme", "name", "includeVersion", "sort"]}, "include": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["compilerOptions", "typedocOptions", "include", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"compilerOptions" : {"outDir" : "build", "target" : "ES2021", "lib" : ["DOM", "ES2021"], "moduleResolution" : "Node", "esModuleInterop" : true, "isolatedModules" : true, "allowJs" : true, "declaration" : true, "skipLibCheck" : true, "forceConsistentCasingInFileNames" : true, "listFiles" : true, "jsx" : "react-jsx"}, "typedocOptions" : {"entryPoints" : ["src/index.ts"], "out" : "docs", "githubPages" : false, "validation" : {"invalidLink" : true}, "readme" : "none", "name" : "mantine-extras", "includeVersion" : true, "sort" : ["static-first", "visibility"]}, "include" : ["**/*.ts"], "exclude" : ["node_modules", "build", "dist", "docs"]} | json_instruct | {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"outDir": {"type": "string"}, "target": {"type": "string"}, "lib": {"type": "array", "items": {"type": "string"}}, "moduleResolution": {"type": "string"}, "esModuleInterop": {"type": "boolean"}, "isolatedModules": {"type": "boolean"}, "allowJs": {"type": "boolean"}, "declaration": {"type": "boolean"}, "skipLibCheck": {"type": "boolean"}, "forceConsistentCasingInFileNames": {"type": "boolean"}, "listFiles": {"type": "boolean"}, "jsx": {"type": "string"}}, "required": ["outDir", "target", "lib", "moduleResolution", "esModuleInterop", "isolatedModules", "allowJs", "declaration", "skipLibCheck", "forceConsistentCasingInFileNames", "listFiles", "jsx"]}, "typedocOptions": {"type": "object", "properties": {"entryPoints": {"type": "array", "items": {"type": "string"}}, "out": {"type": "string"}, "githubPages": {"type": "boolean"}, "validation": {"type": "object", "properties": {"invalidLink": {"type": "boolean"}}, "required": ["invalidLink"]}, "readme": {"type": "string"}, "name": {"type": "string"}, "includeVersion": {"type": "boolean"}, "sort": {"type": "array", "items": {"type": "string"}}}, "required": ["entryPoints", "out", "githubPages", "validation", "readme", "name", "includeVersion", "sort"]}, "include": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["compilerOptions", "typedocOptions", "include", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"extends": {"type": "string"}, "typeRoots": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "typeRoots"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"extends" : "./tsconfig.json", "typeRoots" : ["src/types/helpers.d.ts"]} | json_instruct | {"type": "object", "properties": {"extends": {"type": "string"}, "typeRoots": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "typeRoots"], "$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" : "0x0b08ebebce9531271574133d7b7116d1433380fa419200af3707918641ed82f3", "parentHash" : "0x09118a36cf272ba4ab6323f7339e943458bc85d9ab4e5167f13207d7ee60263e", "number" : 40491, "timestamp" : 1438822276, "nonce" : "0x0cfcca2e359241c5", "difficulty" : 1365509341415, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x3F98e477a361F777DA14611a7e419A75Fd238b6b", "extraData" : "0x476574682f76312e302e302f6c696e75782f676f312e342e32", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["netasqcomm"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$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": {"start": {"type": "string"}, "start-server": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "start-server", "test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "benchmark": {"type": "string"}, "benny": {"type": "string"}, "http-server": {"type": "string"}, "node-fetch": {"type": "string"}, "node-libcurl": {"type": "string"}, "request": {"type": "string"}, "superagent": {"type": "string"}}, "required": ["axios", "benchmark", "benny", "http-server", "node-fetch", "node-libcurl", "request", "superagent"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "http-request-libs-performance", "version" : "1.0.0", "description" : "Benchmark between Node.js http request libraries", "main" : "index.js", "scripts" : {"start" : "node index.js", "start-server" : "http-server . -p 8080 -s", "test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : ["axios", "libcurl", "superagent", "performance", "benchmark"], "author" : "Jonathan Cardoso Machado", "license" : "MIT", "devDependencies" : {"axios" : "^0.19.2", "benchmark" : "^2.1.4", "benny" : "^3.6.14", "http-server" : "^0.12.1", "node-fetch" : "^2.6.1", "node-libcurl" : "next", "request" : "^2.88.2", "superagent" : "^5.2.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "start-server": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "start-server", "test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "benchmark": {"type": "string"}, "benny": {"type": "string"}, "http-server": {"type": "string"}, "node-fetch": {"type": "string"}, "node-libcurl": {"type": "string"}, "request": {"type": "string"}, "superagent": {"type": "string"}}, "required": ["axios", "benchmark", "benny", "http-server", "node-fetch", "node-libcurl", "request", "superagent"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Id": {"type": "string"}, "Name": {"type": "string"}, "ISOCode2": {"type": "string"}, "ISOCode3": {"type": "string"}}, "required": ["Id", "Name", "ISOCode2", "ISOCode3"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Id" : "f5548ac2-958f-4b3d-8669-38b58735c517", "Name" : "Belize", "ISOCode2" : "BZ", "ISOCode3" : "BLZ"} | json_instruct | {"type": "object", "properties": {"Id": {"type": "string"}, "Name": {"type": "string"}, "ISOCode2": {"type": "string"}, "ISOCode3": {"type": "string"}}, "required": ["Id", "Name", "ISOCode2", "ISOCode3"], "$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"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "open": {"type": "string"}}, "required": ["start", "open"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "cytoscape": {"type": "string"}}, "required": ["axios", "cytoscape"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "http-server": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-plugin-import", "http-server"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "network-viz", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"start" : "npm run open", "open" : "start http://localhost:8080 && http-server -a localhost -p 8080"}, "author" : "", "license" : "ISC", "dependencies" : {"axios" : "^0.19.0", "cytoscape" : "^3.1.4"}, "devDependencies" : {"eslint" : "^4.3.0", "eslint-config-airbnb-base" : "^11.3.1", "eslint-plugin-import" : "^2.7.0", "http-server" : "^0.10.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "open": {"type": "string"}}, "required": ["start", "open"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "cytoscape": {"type": "string"}}, "required": ["axios", "cytoscape"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "http-server": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-plugin-import", "http-server"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"argon2": {"type": "string"}, "bootstrap": {"type": "string"}, "bootstrap-icons": {"type": "string"}, "electron": {"type": "string"}, "node-forge": {"type": "string"}, "sql.js": {"type": "string"}}, "required": ["argon2", "bootstrap", "bootstrap-icons", "electron", "node-forge", "sql.js"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "password-manager", "version" : "1.0.0", "description" : "", "main" : "main.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "electron ."}, "repository" : {"type" : "git", "url" : "git+https://github.com/RichCerone/password-manager.git"}, "keywords" : [], "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/RichCerone/password-manager/issues"}, "homepage" : "https://github.com/RichCerone/password-manager#readme", "dependencies" : {"argon2" : "^0.27.1", "bootstrap" : "^5.0.1", "bootstrap-icons" : "^1.4.1", "electron" : "^12.0.7", "node-forge" : "^0.10.0", "sql.js" : "^1.5.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"argon2": {"type": "string"}, "bootstrap": {"type": "string"}, "bootstrap-icons": {"type": "string"}, "electron": {"type": "string"}, "node-forge": {"type": "string"}, "sql.js": {"type": "string"}}, "required": ["argon2", "bootstrap", "bootstrap-icons", "electron", "node-forge", "sql.js"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "react/socket": {"type": "string"}}, "required": ["php", "react/socket"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "cboden/ratchet": {"type": "string"}}, "required": ["phpunit/phpunit", "cboden/ratchet"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"WebSocketClient\\": {"type": "string"}}, "required": ["WebSocketClient\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"WebSocketClient\\Tests\\": {"type": "array", "items": {"type": "string"}}}, "required": ["WebSocketClient\\Tests\\"]}}, "required": ["psr-4"]}}, "required": ["name", "type", "description", "keywords", "homepage", "license", "authors", "require", "require-dev", "autoload", "autoload-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "gabrielbull/websocket-client", "type" : "library", "description" : "A simple PHP WebSocket Client", "keywords" : ["WebSocket", "Client"], "homepage" : "https://github.com/gabrielbull/php-websocket-client", "license" : "MIT", "authors" : [{"name" : "Gabriel Bull", "email" : "me@gabrielbull.com"}], "require" : {"php" : ">=5.4.0", "react/socket" : "0.4.*"}, "require-dev" : {"phpunit/phpunit" : "~4", "cboden/ratchet" : "dev-master"}, "autoload" : {"psr-4" : {"WebSocketClient\\" : "src/WebSocketClient"}}, "autoload-dev" : {"psr-4" : {"WebSocketClient\\Tests\\" : ["tests/WebSocketClient/Tests", "tests/WebSocketClient/Tests/_includes"]}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "react/socket": {"type": "string"}}, "required": ["php", "react/socket"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "cboden/ratchet": {"type": "string"}}, "required": ["phpunit/phpunit", "cboden/ratchet"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"WebSocketClient\\": {"type": "string"}}, "required": ["WebSocketClient\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"WebSocketClient\\Tests\\": {"type": "array", "items": {"type": "string"}}}, "required": ["WebSocketClient\\Tests\\"]}}, "required": ["psr-4"]}}, "required": ["name", "type", "description", "keywords", "homepage", "license", "authors", "require", "require-dev", "autoload", "autoload-dev"], "$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"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "start-nodemon": {"type": "string"}}, "required": ["start", "start-nodemon"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "bunyan": {"type": "string"}, "bunyan-pretty": {"type": "string"}, "cookie-parser": {"type": "string"}, "cors": {"type": "string"}, "express": {"type": "string"}, "multichain-node": {"type": "string"}, "node-cron": {"type": "string"}, "nodemon": {"type": "string"}, "q": {"type": "string"}, "request": {"type": "string"}, "request-promise-any": {"type": "string"}}, "required": ["body-parser", "bunyan", "bunyan-pretty", "cookie-parser", "cors", "express", "multichain-node", "node-cron", "nodemon", "q", "request", "request-promise-any"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "private", "scripts", "dependencies", "engines", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "multichain-app", "version" : "0.0.1", "private" : true, "scripts" : {"start" : "docker-compose up ", "start-nodemon" : "nodemon ./app.js"}, "dependencies" : {"body-parser" : "~1.18.2", "bunyan" : "^1.8.12", "bunyan-pretty" : "0.0.1", "cookie-parser" : "~1.4.3", "cors" : "^2.8.5", "express" : "~4.16.4", "multichain-node" : "^2.2.0-version1.0.4", "node-cron" : "^2.0.3", "nodemon" : "^1.17.3", "q" : "^1.5.1", "request" : "^2.88.0", "request-promise-any" : "^1.0.7"}, "engines" : {"node" : "~11.12.0"}, "repository" : {"type" : "git", "url" : "git+https://github.com/gvko/multichain-db.git"}, "author" : "Galin Kostov <gvko@pm.me>", "license" : "ISC", "bugs" : {"url" : "https://github.com/gvko/multichain-db/issues"}, "homepage" : "https://github.com/gvko/multichain-db#readme"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "start-nodemon": {"type": "string"}}, "required": ["start", "start-nodemon"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "bunyan": {"type": "string"}, "bunyan-pretty": {"type": "string"}, "cookie-parser": {"type": "string"}, "cors": {"type": "string"}, "express": {"type": "string"}, "multichain-node": {"type": "string"}, "node-cron": {"type": "string"}, "nodemon": {"type": "string"}, "q": {"type": "string"}, "request": {"type": "string"}, "request-promise-any": {"type": "string"}}, "required": ["body-parser", "bunyan", "bunyan-pretty", "cookie-parser", "cors", "express", "multichain-node", "node-cron", "nodemon", "q", "request", "request-promise-any"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "private", "scripts", "dependencies", "engines", "repository", "author", "license", "bugs", "homepage"], "$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"}, "scripts": {"type": "object", "properties": {"prepublish": {"type": "string"}}, "required": ["prepublish"]}, "devDependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "postcss": {"type": "string"}, "postcss-cli": {"type": "string"}, "postcss-custom-media": {"type": "string"}, "postcss-custom-properties": {"type": "string"}, "postcss-import": {"type": "string"}}, "required": ["autoprefixer", "postcss", "postcss-cli", "postcss-custom-media", "postcss-custom-properties", "postcss-import"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "scripts", "devDependencies", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "grid-of10", "version" : "2.0.8", "description" : "Responsive columns based on a 10-column grid (so 5-columns as well) and compatible with Basscss.", "scripts" : {"prepublish" : "mkdir -p css && postcss index.css -u postcss-import -u postcss-custom-media -u postcss-custom-properties -u autoprefixer -o css/grid-of10.css"}, "devDependencies" : {"autoprefixer" : "^6.3.1", "postcss" : "^5.0.14", "postcss-cli" : "^2.5.0", "postcss-custom-media" : "^5.0.1", "postcss-custom-properties" : "^5.0.0", "postcss-import" : "^8.0.2"}, "repository" : {"type" : "git", "url" : "git+https://github.com/matochondrion/grid-of10.git"}, "keywords" : ["Basscss", "10-column", "5-column", "responsive"], "author" : "Mat Sachs <matochondrion@gmail.com> (http://www.matsachs.com)", "license" : "MIT", "bugs" : {"url" : "https://github.com/matochondrion/grid-of10/issues"}, "homepage" : "https://github.com/matochondrion/grid-of10#readme"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"prepublish": {"type": "string"}}, "required": ["prepublish"]}, "devDependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "postcss": {"type": "string"}, "postcss-cli": {"type": "string"}, "postcss-custom-media": {"type": "string"}, "postcss-custom-properties": {"type": "string"}, "postcss-import": {"type": "string"}}, "required": ["autoprefixer", "postcss", "postcss-cli", "postcss-custom-media", "postcss-custom-properties", "postcss-import"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "scripts", "devDependencies", "repository", "keywords", "author", "license", "bugs", "homepage"], "$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.