input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"AWATER10": {"type": "integer"}, "CLASSFP10": {"type": "string"}, "ALAND10": {"type": "integer"}, "INTPTLAT10": {"type": "string"}, "FUNCSTAT10": {"type": "string"}, "ZCTA5CE10": {"type": "string"}, "MTFCC10": {"type": "string"}, "GEOID10": {"type": "string"}, "INTPTLON10": {"type": "string"}}, "required": ["AWATER10", "CLASSFP10", "ALAND10", "INTPTLAT10", "FUNCSTAT10", "ZCTA5CE10", "MTFCC10", "GEOID10", "INTPTLON10"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-83.597033, 39.341099], [-83.599345, 39.341095], [-83.599687, 39.341106], [-83.600521, 39.341286], [-83.600909, 39.341457], [-83.603471, 39.341773], [-83.604901, 39.342175], [-83.605826, 39.342706], [-83.606128, 39.343158], [-83.606173, 39.34336], [-83.605979, 39.343404], [-83.605799, 39.343437], [-83.605364, 39.344899], [-83.605507, 39.345437], [-83.603587, 39.345891], [-83.603811, 39.346158], [-83.603682, 39.346197], [-83.603381, 39.346258], [-83.603194, 39.346289], [-83.602609, 39.346398], [-83.600667, 39.346734], [-83.599276, 39.346982], [-83.598991, 39.347019], [-83.598931, 39.346819], [-83.59662, 39.347115], [-83.596155, 39.345354], [-83.596007, 39.344795], [-83.595118, 39.341113], [-83.595291, 39.341078], [-83.597033, 39.341099]]]}, "type" : "Feature", "properties" : {"AWATER10" : 0, "CLASSFP10" : "B5", "ALAND10" : 475921, "INTPTLAT10" : "+39.3439195", "FUNCSTAT10" : "S", "ZCTA5CE10" : "45132", "MTFCC10" : "G6350", "GEOID10" : "45132", "INTPTLON10" : "-083.6002573"}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"AWATER10": {"type": "integer"}, "CLASSFP10": {"type": "string"}, "ALAND10": {"type": "integer"}, "INTPTLAT10": {"type": "string"}, "FUNCSTAT10": {"type": "string"}, "ZCTA5CE10": {"type": "string"}, "MTFCC10": {"type": "string"}, "GEOID10": {"type": "string"}, "INTPTLON10": {"type": "string"}}, "required": ["AWATER10", "CLASSFP10", "ALAND10", "INTPTLAT10", "FUNCSTAT10", "ZCTA5CE10", "MTFCC10", "GEOID10", "INTPTLON10"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"environments": {"type": "array", "items": {}}, "components": {"type": "array", "items": {}}, "data": {"type": "array", "items": {"type": "object", "properties": {"script": {"type": "string"}, "data_yamls": {"type": "array", "items": {"type": "string"}}}, "required": ["script", "data_yamls"]}}}, "required": ["environments", "components", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"environments" : [], "components" : [], "data" : [{"script" : "fetch_boston.py", "data_yamls" : ["data_boston_test.yaml", "data_boston_train.yaml"]}]} | json_instruct | {"type": "object", "properties": {"environments": {"type": "array", "items": {}}, "components": {"type": "array", "items": {}}, "data": {"type": "array", "items": {"type": "object", "properties": {"script": {"type": "string"}, "data_yamls": {"type": "array", "items": {"type": "string"}}}, "required": ["script", "data_yamls"]}}}, "required": ["environments", "components", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : "phpmyadmin.139.59.134.94.nip.io", "min_cert_id" : 1113540601, "min_entry_timestamp" : "2019-01-15T16:57:26.549", "not_before" : "2019-01-15T15:57:26", "not_after" : "2019-04-15T15:57:26"} | 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 a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01013056": {"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": ["E01013056"]}, "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" : {"E01013056" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00065878", "LAD11CD" : "E06000011"}, "arcs" : [[0, 1, 2, 3, 4, 5]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00065879", "LAD11CD" : "E06000011"}, "arcs" : [[6, -3, 7]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00065880", "LAD11CD" : "E06000011"}, "arcs" : [[8, -6, 9]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00065881", "LAD11CD" : "E06000011"}, "arcs" : [[-9, 10, -1]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00065883", "LAD11CD" : "E06000011"}, "arcs" : [[11, -4, -7]]}]}}, "arcs" : [[[2894, 5769], [-65, 1342], [1063, 1981]], [[3892, 9092], [123, -22], [652, -762], [128, 1273], [474, -182]], [[5269, 9399], [531, -1307], [-1036, -866]], [[4764, 7226], [-2248, -2876], [2362, -1202], [-446, -1896]], [[4432, 1252], [-356, 491], [-715, -72], [-933, 1660], [-616, 96]], [[1812, 3427], [0, 1923], [663, -169], [419, 588]], [[8663, 6174], [-1450, -702], [-336, -1269], [-644, 112], [-1561, 1563], [391, 682], [-299, 666]], [[5269, 9399], [87, 443], [803, 157], [193, -84], [230, -720], [797, 32], [-1095, -835], [833, -2210], [2723, 1637], [159, -665], [-556, -614], [-495, 187], [-285, -553]], [[431, 8673], [309, -424], [490, 276], [-158, -521], [590, -864], [220, 1164], [197, -1883], [297, 201], [518, -853]], [[1812, 3427], [-77, -564], [-514, 75], [-502, 1443], [523, 606], [-810, 240], [-300, 809], [725, 1197], [-857, 247], [431, 1193]], [[431, 8673], [808, 786], [537, -745], [471, 850], [262, -476], [1383, 4]], [[8663, 6174], [638, -1556], [-1064, -614], [-66, -835], [540, -382], [-908, 13], [-762, -692], [352, -755], [-1569, -1353], [-1048, 172], [-344, 1080]]], "transform" : {"scale" : [1.249548745311441e-06, 5.82846846704613e-07], "translate" : [-0.780297459173883, 53.92753769494068]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01013056": {"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": ["E01013056"]}, "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": {"three.js": {"type": "string"}, "three.min.js": {"type": "string"}, "three.module.js": {"type": "string"}}, "required": ["three.js", "three.min.js", "three.module.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"three.js" : "sha256-eowb6mNlBpUobaM+KF2NpeDCyjr0pF3ka0p5z3Bn9SQ=", "three.min.js" : "sha256-Wua0LsQkGDEeIkbmBNjj9wcThJh5uCD6R8+5YQhXveQ=", "three.module.js" : "sha256-pC+/XsksCq/O5sXKcut5Yq7yWZV2nnCav68LgW7cLwk="} | json_instruct | {"type": "object", "properties": {"three.js": {"type": "string"}, "three.min.js": {"type": "string"}, "three.module.js": {"type": "string"}}, "required": ["three.js", "three.min.js", "three.module.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"version": {"type": "string"}, "configurations": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "request": {"type": "string"}, "name": {"type": "string"}, "program": {"type": "string"}, "args": {"type": "array", "items": {"type": "string"}}, "console": {"type": "string"}, "internalConsoleOptions": {"type": "string"}, "env": {"type": "object", "properties": {"NO_COVERAGE": {"type": "string"}}, "required": ["NO_COVERAGE"]}, "windows": {"type": "object", "properties": {"program": {"type": "string"}}, "required": ["program"]}}, "required": ["type", "request", "name", "program", "args", "console", "internalConsoleOptions", "env", "windows"]}}}, "required": ["version", "configurations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "0.2.0", "configurations" : [{"type" : "node", "request" : "launch", "name" : "Jest / Current File / Run Once", "program" : "${workspaceFolder}/node_modules/.bin/jest", "args" : ["${relativeFile}"], "console" : "integratedTerminal", "internalConsoleOptions" : "neverOpen", "env" : {"NO_COVERAGE" : "1"}, "windows" : {"program" : "${workspaceFolder}/node_modules/jest/bin/jest"}}, {"type" : "node", "request" : "launch", "name" : "Jest / Current File / Watch", "program" : "${workspaceFolder}/node_modules/.bin/jest", "args" : ["${relativeFile}", "--watch=true"], "console" : "integratedTerminal", "internalConsoleOptions" : "neverOpen", "env" : {"NO_COVERAGE" : "1"}, "windows" : {"program" : "${workspaceFolder}/node_modules/jest/bin/jest"}}]} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "configurations": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "request": {"type": "string"}, "name": {"type": "string"}, "program": {"type": "string"}, "args": {"type": "array", "items": {"type": "string"}}, "console": {"type": "string"}, "internalConsoleOptions": {"type": "string"}, "env": {"type": "object", "properties": {"NO_COVERAGE": {"type": "string"}}, "required": ["NO_COVERAGE"]}, "windows": {"type": "object", "properties": {"program": {"type": "string"}}, "required": ["program"]}}, "required": ["type", "request", "name", "program", "args", "console", "internalConsoleOptions", "env", "windows"]}}}, "required": ["version", "configurations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "dt": {"type": "integer"}, "ar": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "al": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "picUrl": {"type": "string"}}, "required": ["id", "name", "picUrl"]}}, "required": ["id", "name", "dt", "ar", "al"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 1417895158, "name" : "\u0e2b\u0e22\u0e32\u0e14\u0e1d\u0e19\u0e41\u0e25\u0e30\u0e04\u0e27\u0e32\u0e21\u0e17\u0e23\u0e07\u0e08\u0e33 (Instrumental)", "dt" : 274366, "ar" : {"id" : 185692, "name" : "Love Letter"}, "al" : {"id" : 85099098, "name" : "\u0e2b\u0e22\u0e32\u0e14\u0e1d\u0e19\u0e41\u0e25\u0e30\u0e04\u0e27\u0e32\u0e21\u0e17\u0e23\u0e07\u0e08\u0e33", "picUrl" : "https://p2.music.126.net/7bKzWkoWMCyKd271z-oBiQ==/109951164640762171.jpg"}}, {"id" : 1417900040, "name" : "\u0e2b\u0e22\u0e32\u0e14\u0e1d\u0e19\u0e41\u0e25\u0e30\u0e04\u0e27\u0e32\u0e21\u0e17\u0e23\u0e07\u0e08\u0e33", "dt" : 275012, "ar" : {"id" : 185692, "name" : "Love Letter"}, "al" : {"id" : 85099098, "name" : "\u0e2b\u0e22\u0e32\u0e14\u0e1d\u0e19\u0e41\u0e25\u0e30\u0e04\u0e27\u0e32\u0e21\u0e17\u0e23\u0e07\u0e08\u0e33", "picUrl" : "https://p1.music.126.net/7bKzWkoWMCyKd271z-oBiQ==/109951164640762171.jpg"}}, {"id" : 1417893012, "name" : "Wanna Be Zombie", "dt" : 247352, "ar" : {"id" : 185692, "name" : "Love Letter"}, "al" : {"id" : 85099085, "name" : "Wanna Be Zombie", "picUrl" : "https://p2.music.126.net/iFdS8jIAv7fJkW60lWKDpA==/109951164640752429.jpg"}}, {"id" : 1417893013, "name" : "Wanna be Zombie (Instrumental)", "dt" : 247352, "ar" : {"id" : 185692, "name" : "Love Letter"}, "al" : {"id" : 85099085, "name" : "Wanna Be Zombie", "picUrl" : "https://p1.music.126.net/iFdS8jIAv7fJkW60lWKDpA==/109951164640752429.jpg"}}, {"id" : 1449116990, "name" : "Tenshi Ka yo!", "dt" : 230400, "ar" : {"id" : 185692, "name" : "Love Letter"}, "al" : {"id" : 89625625, "name" : "Tenshi Ka yo!", "picUrl" : "https://p1.music.126.net/5kon1oMex3YKeAoLNI5WIA==/109951164998430163.jpg"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "dt": {"type": "integer"}, "ar": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "al": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "picUrl": {"type": "string"}}, "required": ["id", "name", "picUrl"]}}, "required": ["id", "name", "dt", "ar", "al"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["120112001000", "\u53cc\u65b0\u8857\u9053\u529e\u4e8b\u5904", "4", "1"], ["120112002000", "\u53cc\u6797\u8857\u9053\u529e\u4e8b\u5904", "4", "1"], ["120112100000", "\u54b8\u6c34\u6cbd\u9547", "4", "1"], ["120112101000", "\u845b\u6cbd\u9547", "4", "1"], ["120112102000", "\u5c0f\u7ad9\u9547", "4", "1"], ["120112103000", "\u53cc\u6e2f\u9547", "4", "1"], ["120112104000", "\u8f9b\u5e84\u9547", "4", "1"], ["120112106000", "\u53cc\u6865\u6cb3\u9547", "4", "1"], ["120112107000", "\u516b\u91cc\u53f0\u9547", "4", "1"], ["120112108000", "\u5317\u95f8\u53e3\u9547", "4", "1"], ["120112401000", "\u94c1\u8def\u5341\u516b\u5c40", "4", "1"], ["120112403000", "\u957f\u9752\u529e\u4e8b\u5904", "4", "1"], ["120112404000", "\u6d25\u5357\u5f00\u53d1\u533a\u4e1c\u533a", "4", "1"], ["120112405000", "\u6d25\u5357\u5f00\u53d1\u533a\u897f\u533a", "4", "1"], ["120112407000", "\u6d77\u6cb3\u6559\u80b2\u56ed\u533a", "4", "1"], ["120112500000", "\u53cc\u6797\u519c\u573a", "4", "1"], ["120112501000", "\u6d25\u5357\u56fd\u5bb6\u519c\u4e1a\u56ed\u533a", "4", "1"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"__type__": {"type": "string"}, "content": {"type": "object", "properties": {"name": {"type": "string"}, "texture": {"type": "string"}, "rect": {"type": "array", "items": {"type": "integer"}}, "offset": {"type": "array", "items": {"type": "integer"}}, "originalSize": {"type": "array", "items": {"type": "integer"}}}, "required": ["name", "texture", "rect", "offset", "originalSize"]}}, "required": ["__type__", "content"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"__type__" : "cc.SpriteFrame", "content" : {"name" : "result_dogfall_icon", "texture" : "b6RQ+501ZNfo3z3vF2DkLf", "rect" : [0, 0, 217, 215], "offset" : [0, 0], "originalSize" : [217, 215]}} | json_instruct | {"type": "object", "properties": {"__type__": {"type": "string"}, "content": {"type": "object", "properties": {"name": {"type": "string"}, "texture": {"type": "string"}, "rect": {"type": "array", "items": {"type": "integer"}}, "offset": {"type": "array", "items": {"type": "integer"}}, "originalSize": {"type": "array", "items": {"type": "integer"}}}, "required": ["name", "texture", "rect", "offset", "originalSize"]}}, "required": ["__type__", "content"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "var compact=function compact(flat){// flat = flat.map(e => [e]);\nvar _compact=function _compact(arr){if(arr.length<=2)return arr;var newArray=[];while(arr.length>0){newArray.push(arr.splice(0,2));}return _compact(newArray);};flat=_compact(flat);return flat;};export default compact;", "map" : {"version" : 3, "sources" : ["/home/jordi/Documents/ETHZ/Chair_of_systems_design/rippleproto/static/src/utils/compact.js"], "names" : ["compact", "flat", "_compact", "arr", "length", "newArray", "push", "splice"], "mappings" : "AAAA,GAAMA,CAAAA,OAAO,CAAG,QAAVA,CAAAA,OAAU,CAAAC,IAAI,CAAI,CACvB;AACA,GAAMC,CAAAA,QAAQ,CAAG,QAAXA,CAAAA,QAAW,CAAAC,GAAG,CAAI,CACvB,GAAIA,GAAG,CAACC,MAAJ,EAAc,CAAlB,CAAqB,MAAOD,CAAAA,GAAP,CACrB,GAAIE,CAAAA,QAAQ,CAAG,EAAf,CACA,MAAOF,GAAG,CAACC,MAAJ,CAAa,CAApB,EAAuBC,QAAQ,CAACC,IAAT,CAAcH,GAAG,CAACI,MAAJ,CAAW,CAAX,CAAc,CAAd,CAAd,EAAvB,CACA,MAAOL,CAAAA,QAAQ,CAACG,QAAD,CAAf,CACA,CALD,CAOAJ,IAAI,CAAGC,QAAQ,CAACD,IAAD,CAAf,CACA,MAAOA,CAAAA,IAAP,CACA,CAXD,CAaA,cAAeD,CAAAA,OAAf", "sourcesContent" : ["const compact = flat => {\r\n\t// flat = flat.map(e => [e]);\r\n\tconst _compact = arr => {\r\n\t\tif (arr.length <= 2) return arr;\r\n\t\tlet newArray = [];\r\n\t\twhile (arr.length > 0) newArray.push(arr.splice(0, 2));\r\n\t\treturn _compact(newArray);\r\n\t};\r\n\r\n\tflat = _compact(flat);\r\n\treturn flat;\r\n};\r\n\r\nexport default compact;\r\n"]}, "metadata" : {}, "sourceType" : "module"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0x1e68689829d6046b9114db8db4cc29268aef230772fd5c5c73b3cc5b769648f9", "parentHash" : "0xab7d2543bd38d97e6a6339f0a2a969f77eec885e4da3df575d8998ccd292c76f", "number" : 107174, "timestamp" : 1439917549, "nonce" : "0x55a6ddb8f117655a", "difficulty" : 4452740588685, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xe6A7a1d47ff21B6321162AEA7C6CB457D5476Bca", "extraData" : "0x476574682f76312e302e312d38326566323666362f6c696e75782f676f312e34", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"localities" : ["Dodge Center, MN", "Wasioja, MN"], "state" : "MN", "postal_code" : "55927", "locality" : "Dodge Center, MN", "lat" : 44.036469, "region" : {"fips" : "27", "abbr" : "MN", "name" : "Minnesota"}, "city" : "Dodge Center", "type" : "STANDARD", "lng" : -92.870923, "counties" : [{"fips" : "039", "name" : "Dodge County"}]} | json_instruct | {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"pk": {"type": "integer"}, "model": {"type": "string"}, "fields": {"type": "object", "properties": {"domain": {"type": "string"}, "name": {"type": "string"}}, "required": ["domain", "name"]}}, "required": ["pk", "model", "fields"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"pk" : 1, "model" : "sites.site", "fields" : {"domain" : "localhost:8000", "name" : "Eatogether [localhost]"}}, {"pk" : 2, "model" : "sites.site", "fields" : {"domain" : "et.noisyfox.cn", "name" : "Eatogether"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"pk": {"type": "integer"}, "model": {"type": "string"}, "fields": {"type": "object", "properties": {"domain": {"type": "string"}, "name": {"type": "string"}}, "required": ["domain", "name"]}}, "required": ["pk", "model", "fields"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"lineId": {"type": "integer"}, "name": {"type": "string"}, "stations": {"type": "array", "items": {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}}, "required": ["stationId", "stationGroupId"]}}}, "required": ["lineId", "name", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"lineId" : 28006, "name" : "\u6771\u4eac\u30e1\u30c8\u30ed\u6709\u697d\u753a\u7dda", "stations" : [{"stationId" : 2800601, "stationGroupId" : 2100111}, {"stationId" : 2800602, "stationGroupId" : 2100110}, {"stationId" : 2800603, "stationGroupId" : 2100109}, {"stationId" : 2800604, "stationGroupId" : 2800604}, {"stationId" : 2800605, "stationGroupId" : 2800605}, {"stationId" : 2800606, "stationGroupId" : 2200301}, {"stationId" : 2800607, "stationGroupId" : 2800607}, {"stationId" : 2800608, "stationGroupId" : 2800608}, {"stationId" : 2800609, "stationGroupId" : 1130212}, {"stationId" : 2800610, "stationGroupId" : 2800610}, {"stationId" : 2800611, "stationGroupId" : 2800611}, {"stationId" : 2800612, "stationGroupId" : 2800612}, {"stationId" : 2800613, "stationGroupId" : 1131316}, {"stationId" : 2800614, "stationGroupId" : 1131315}, {"stationId" : 2800615, "stationGroupId" : 2800615}, {"stationId" : 2800616, "stationGroupId" : 2800115}, {"stationId" : 2800617, "stationGroupId" : 2800617}, {"stationId" : 2800618, "stationGroupId" : 1130225}, {"stationId" : 2800619, "stationGroupId" : 2800619}, {"stationId" : 2800620, "stationGroupId" : 2800620}, {"stationId" : 2800621, "stationGroupId" : 2800621}, {"stationId" : 2800622, "stationGroupId" : 2800622}, {"stationId" : 2800623, "stationGroupId" : 2800623}, {"stationId" : 2800624, "stationGroupId" : 1132605}]} | json_instruct | {"type": "object", "properties": {"lineId": {"type": "integer"}, "name": {"type": "string"}, "stations": {"type": "array", "items": {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}}, "required": ["stationId", "stationGroupId"]}}}, "required": ["lineId", "name", "stations"], "$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"}, "short_name": {"type": "string"}, "start_url": {"type": "string"}, "scope": {"type": "string"}, "display": {"type": "string"}, "background_color": {"type": "string"}, "theme_color": {"type": "string"}, "description": {"type": "string"}, "orientation": {"type": "string"}, "prefer_related_applications": {"type": "boolean"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}}, "required": ["name", "short_name", "start_url", "scope", "display", "background_color", "theme_color", "description", "orientation", "prefer_related_applications", "icons"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Simple Calculator", "short_name" : "clc", "start_url" : ".", "scope" : ".", "display" : "standalone", "background_color" : "#fff", "theme_color" : "#0175C2", "description" : "Simple Calculator", "orientation" : "portrait-primary", "prefer_related_applications" : false, "icons" : [{"src" : "icons/clc-192.png", "sizes" : "192x192", "type" : "image/png"}, {"src" : "icons/clc-512.png", "sizes" : "512x512", "type" : "image/png"}, {"src" : "icons/clc-maskable-192.png", "sizes" : "192x192", "type" : "image/png", "purpose" : "maskable"}, {"src" : "icons/clc-maskable-512.png", "sizes" : "512x512", "type" : "image/png", "purpose" : "maskable"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "short_name": {"type": "string"}, "start_url": {"type": "string"}, "scope": {"type": "string"}, "display": {"type": "string"}, "background_color": {"type": "string"}, "theme_color": {"type": "string"}, "description": {"type": "string"}, "orientation": {"type": "string"}, "prefer_related_applications": {"type": "boolean"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}}, "required": ["name", "short_name", "start_url", "scope", "display", "background_color", "theme_color", "description", "orientation", "prefer_related_applications", "icons"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"pages/index": {"type": "boolean"}}, "required": ["pages/index"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "a62b04715f57795374e8", "c" : {"pages/index" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"pages/index": {"type": "boolean"}}, "required": ["pages/index"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"" : {"model" : "chipped:block/brown_carpet_7"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Aria", "description" : "A set of scales with tracking.", "url" : "http://www.fitbit.com/au/aria"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "null"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : null, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[-62.37452533520863, -38.84755625], [-62.37447, -38.8476099], [-62.3744, -38.8474], [-62.37452533520863, -38.84755625]]], [[[-62.37447, -38.8476099], [-62.374, -38.847], [-62.37513, -38.84697], [-62.37447, -38.8476099]]], [[[-62.37513, -38.84697], [-62.375, -38.8475], [-62.37447, -38.8476099], [-62.37513, -38.84697]]]]}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "null"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"cors": {"type": "string"}, "dotenv-flow": {"type": "string"}, "express": {"type": "string"}, "express-basic-auth": {"type": "string"}, "express-rate-limit": {"type": "string"}, "node-fetch": {"type": "string"}}, "required": ["cors", "dotenv-flow", "express", "express-basic-auth", "express-rate-limit", "node-fetch"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "vcs-realtime-sdk-demo-backend", "version" : "0.3.2", "description" : "Express app to create rooms and host static vue app", "main" : "index.js", "scripts" : {"start" : "node index.js"}, "keywords" : [], "author" : "roger.urscheler@atos.net", "license" : "Apache-2.0", "dependencies" : {"cors" : "2.8.5", "dotenv-flow" : "3.2.0", "express" : "4.17.1", "express-basic-auth" : "1.2.0", "express-rate-limit" : "5.2.6", "node-fetch" : "2.6.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"cors": {"type": "string"}, "dotenv-flow": {"type": "string"}, "express": {"type": "string"}, "express-basic-auth": {"type": "string"}, "express-rate-limit": {"type": "string"}, "node-fetch": {"type": "string"}}, "required": ["cors", "dotenv-flow", "express", "express-basic-auth", "express-rate-limit", "node-fetch"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"type=bottom": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "type=double": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "type=top": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["type=bottom", "type=double", "type=top"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"type=bottom" : {"model" : "sand_dust:block/cut_brown_stained_sandstone_slab"}, "type=double" : {"model" : "sand_dust:block/cut_brown_stained_sandstone"}, "type=top" : {"model" : "sand_dust:block/cut_brown_stained_sandstone_slab_top"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"type=bottom": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "type=double": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "type=top": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["type=bottom", "type=double", "type=top"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "funores:block/piglin_ore"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"ROP": {"type": "string"}, "SPN": {"type": "string"}}, "required": ["ROP", "SPN"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ROP" : "Rota", "SPN" : "Saipan"} | json_instruct | {"type": "object", "properties": {"ROP": {"type": "string"}, "SPN": {"type": "string"}}, "required": ["ROP", "SPN"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"SuperGullible": {"type": "array", "items": {"type": "string"}}}, "required": ["SuperGullible"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"SuperGullible" : ["TheDitz", "TheIngenue", "TheDitz", "EasilyImpressed", "GenreBlindness", "HorribleJudgeOfCharacter", "GullibleLemmings", "TheParanoiac", "AccidentalPervert", "Magitek", "FallenAngel", "NiceGirl", "CuriousAsAMonkey", "IdiotHero", "TrueCompanions", "PaperThinDisguise", "GoldfishPoopGang", "GenderBender", "PaperThinDisguise", "NoSenseOfDirection", "WhoWouldBeStupidEnough", "Expy", "JustFollowingOrders", "MoralGuardians", "BlatantLies", "PlayedForLaughs", "ThePaladin", "GMPC", "ExtremeDoormat", "HenpeckedHusband", "ShadyRealEstateAgent", "Justified", "ObviouslyEvil", "MyCard", "PlayedForDrama", "ScatterbrainedSenior", "StarfishAliens", "BigBad", "BreakTheCutie", "LivingLieDetector", "StarfishAliens", "EasilyImpressed", "BrutallyHonest", "BreakTheCutie", "MeaningfulName", "NoIndoorVoice", "CampStraight", "AxCrazy", "StupidGood", "CampStraight", "AxCrazy", "TheSixStats", "SkillScoresAndPerks", "Heavyworlder", "PsychopathicManchild", "GodEmperor", "BeliefMakesYouStupid", "NiceGuy", "RelationshipValues", "HeterosexualLifePartners", "VitriolicBestBuds", "CasanovaWannabe", "Flanderization", "PlayedForDrama", "BigBad", "CardCarryingVillain", "AssShove", "PlayedForDrama", "BigBad", "CardCarryingVillain", "StereoFibbing", "BreadEggsBreadedEggs", "PhysicalGod", "SnipeHunt", "TheDitz", "DependingOnTheWriter", "SmallNameBigEgo", "TheDitz", "TheDitz", "Cloudcuckoolander", "BadLiar"]} | json_instruct | {"type": "object", "properties": {"SuperGullible": {"type": "array", "items": {"type": "string"}}}, "required": ["SuperGullible"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "coverage": {"type": "string"}}, "required": ["test", "coverage"]}, "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"}, "dependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "chai-as-promised": {"type": "string"}, "chai-bignumber": {"type": "string"}, "find-parent-dir": {"type": "string"}, "mocha": {"type": "string"}, "openzeppelin-solidity": {"type": "string"}, "tron-solc": {"type": "string"}, "solhint": {"type": "string"}, "solidity-coverage": {"type": "string"}, "tronweb": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["chai", "chai-as-promised", "chai-bignumber", "find-parent-dir", "mocha", "openzeppelin-solidity", "tron-solc", "solhint", "solidity-coverage", "tronweb", "yargs"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "bitcoin-token-smart-contracts", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "mocha --timeout 100000 ./test/deployer_tron.js", "coverage" : "./node_modules/.bin/solidity-coverage"}, "repository" : {"type" : "git", "url" : "git+https://github.com/KyberNetwork/bitcoin-token-smart-contracts.git"}, "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/KyberNetwork/bitcoin-token-smart-contracts/issues"}, "homepage" : "https://github.com/KyberNetwork/bitcoin-token-smart-contracts#readme", "dependencies" : {"chai" : "^4.3.4", "chai-as-promised" : "^7.1.1", "chai-bignumber" : "^2.0.2", "find-parent-dir" : "^0.3.0", "mocha" : "8.3.2", "openzeppelin-solidity" : "1.12.0", "tron-solc" : "^0.4.24", "solhint" : "^1.2.1", "solidity-coverage" : "^0.5.11", "tronweb" : "^2.8.0", "yargs" : "^12.0.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "coverage": {"type": "string"}}, "required": ["test", "coverage"]}, "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"}, "dependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "chai-as-promised": {"type": "string"}, "chai-bignumber": {"type": "string"}, "find-parent-dir": {"type": "string"}, "mocha": {"type": "string"}, "openzeppelin-solidity": {"type": "string"}, "tron-solc": {"type": "string"}, "solhint": {"type": "string"}, "solidity-coverage": {"type": "string"}, "tronweb": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["chai", "chai-as-promised", "chai-bignumber", "find-parent-dir", "mocha", "openzeppelin-solidity", "tron-solc", "solhint", "solidity-coverage", "tronweb", "yargs"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"year" : 1977, "sex" : "F", "n" : 5, "prop" : 3.04e-06}, {"year" : 1992, "sex" : "F", "n" : 7, "prop" : 3.49e-06}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {}, "required": []}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Grohiro\\LaravelCamelCaseJson\\": {"type": "string"}}, "required": ["Grohiro\\LaravelCamelCaseJson\\"]}}, "required": ["psr-4"]}}, "required": ["name", "version", "description", "license", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "grohiro/laravel-camelcase-json", "version" : "1.1.0", "description" : "Convert response JSON key to camelCase", "license" : "MIT", "require" : {}, "autoload" : {"psr-4" : {"Grohiro\\LaravelCamelCaseJson\\" : "src/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {}, "required": []}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Grohiro\\LaravelCamelCaseJson\\": {"type": "string"}}, "required": ["Grohiro\\LaravelCamelCaseJson\\"]}}, "required": ["psr-4"]}}, "required": ["name", "version", "description", "license", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "documentation_url": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Scott Hoyt": {"type": "string"}}, "required": ["Scott Hoyt"]}, "social_media_url": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "pushed_with_swift_version": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "documentation_url", "license", "authors", "social_media_url", "platforms", "source", "source_files", "pushed_with_swift_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Cider", "version" : "0.6.0", "summary" : "The missing Apple Music SDK.", "description" : "Cider is an SDK for interacting with the Apple Music API. It can help you\nquickly search the catalog; retrive albums, artists, and songs; access\nthe user's playback history and recommendations; and more.", "homepage" : "https://github.com/scottrhoyt/Cider", "documentation_url" : "http://scottrhoyt.github.io/Cider/", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"Scott Hoyt" : "scottrhoyt@gmail.com"}, "social_media_url" : "http://twitter.com/scotthoyt", "platforms" : {"ios" : "11.0"}, "source" : {"git" : "https://github.com/scottrhoyt/Cider.git", "tag" : "0.6.0"}, "source_files" : "Sources/Cider/**/*.swift", "pushed_with_swift_version" : "4.0"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "documentation_url": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Scott Hoyt": {"type": "string"}}, "required": ["Scott Hoyt"]}, "social_media_url": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "pushed_with_swift_version": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "documentation_url", "license", "authors", "social_media_url", "platforms", "source", "source_files", "pushed_with_swift_version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "chocard", "definition" : "The chough."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "desc": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "preview": {"type": "string"}, "category": {"type": "string"}, "order": {"type": "integer"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "copyright": {"type": "string"}}, "required": ["name", "desc", "tags", "preview", "category", "order", "width", "height", "copyright"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "sources", "desc" : "How to impletment a game demo like Happy Elimination", "tags" : ["project", "sources"], "preview" : "preview.png", "category" : "Project", "order" : 1, "width" : 400, "height" : 600, "copyright" : "<a href='http://www.happyelements.cn' target='_blank'>Happy Elements</a>"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "desc": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "preview": {"type": "string"}, "category": {"type": "string"}, "order": {"type": "integer"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "copyright": {"type": "string"}}, "required": ["name", "desc", "tags", "preview", "category", "order", "width", "height", "copyright"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}, "site_admin": {"type": "boolean"}, "name": {"type": "string"}, "company": {"type": "null"}, "blog": {"type": "string"}, "location": {"type": "string"}, "email": {"type": "string"}, "hireable": {"type": "null"}, "bio": {"type": "string"}, "public_repos": {"type": "integer"}, "public_gists": {"type": "integer"}, "followers": {"type": "integer"}, "following": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["user", "repos", "login", "id", "avatar_url", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type", "site_admin", "name", "company", "blog", "location", "email", "hireable", "bio", "public_repos", "public_gists", "followers", "following", "created_at", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"user" : "natew", "repos" : 1, "login" : "natew", "id" : 12100, "avatar_url" : "https://avatars3.githubusercontent.com/u/12100?v=3", "url" : "https://api.github.com/users/natew", "html_url" : "https://github.com/natew", "followers_url" : "https://api.github.com/users/natew/followers", "following_url" : "https://api.github.com/users/natew/following{/other_user}", "gists_url" : "https://api.github.com/users/natew/gists{/gist_id}", "starred_url" : "https://api.github.com/users/natew/starred{/owner}{/repo}", "subscriptions_url" : "https://api.github.com/users/natew/subscriptions", "organizations_url" : "https://api.github.com/users/natew/orgs", "repos_url" : "https://api.github.com/users/natew/repos", "events_url" : "https://api.github.com/users/natew/events{/privacy}", "received_events_url" : "https://api.github.com/users/natew/received_events", "type" : "User", "site_admin" : false, "name" : "Nate Wienert", "company" : null, "blog" : "http://twitter.com/natebirdman", "location" : "San Francisco, CA", "email" : "natewienert@gmail.com", "hireable" : null, "bio" : "CTO at stealth startup", "public_repos" : 111, "public_gists" : 61, "followers" : 171, "following" : 38, "created_at" : "2008-05-31T19:51:09Z", "updated_at" : "2017-02-28T12:46:47Z"} | json_instruct | {"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}, "site_admin": {"type": "boolean"}, "name": {"type": "string"}, "company": {"type": "null"}, "blog": {"type": "string"}, "location": {"type": "string"}, "email": {"type": "string"}, "hireable": {"type": "null"}, "bio": {"type": "string"}, "public_repos": {"type": "integer"}, "public_gists": {"type": "integer"}, "followers": {"type": "integer"}, "following": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["user", "repos", "login", "id", "avatar_url", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type", "site_admin", "name", "company", "blog", "location", "email", "hireable", "bio", "public_repos", "public_gists", "followers", "following", "created_at", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"polyfill": {"type": "array", "items": {"type": "string"}}, "app": {"type": "array", "items": {"type": "string"}}, "component---src-pages-404-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-blog-hello-mdx": {"type": "array", "items": {"type": "string"}}, "component---src-pages-blog-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-blog-new-mdx": {"type": "array", "items": {"type": "string"}}, "component---src-pages-contact-mdx": {"type": "array", "items": {"type": "string"}}, "component---src-pages-index-mdx": {"type": "array", "items": {"type": "string"}}, "component---src-pages-product-photography-mdx": {"type": "array", "items": {"type": "string"}}, "component---src-pages-projects-hufflepuff-project-mdx": {"type": "array", "items": {"type": "string"}}, "component---src-pages-projects-portfolio-mdx": {"type": "array", "items": {"type": "string"}}}, "required": ["polyfill", "app", "component---src-pages-404-js", "component---src-pages-blog-hello-mdx", "component---src-pages-blog-js", "component---src-pages-blog-new-mdx", "component---src-pages-contact-mdx", "component---src-pages-index-mdx", "component---src-pages-product-photography-mdx", "component---src-pages-projects-hufflepuff-project-mdx", "component---src-pages-projects-portfolio-mdx"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"polyfill" : ["/polyfill-2650ced9c210daa45058.js"], "app" : ["/app-4ae7f5f0fc31a8919c98.js"], "component---src-pages-404-js" : ["/component---src-pages-404-js-01a49e1b121ece788192.js"], "component---src-pages-blog-hello-mdx" : ["/component---src-pages-blog-hello-mdx-97a1431735f1dab9f886.js"], "component---src-pages-blog-js" : ["/component---src-pages-blog-js-20ce8606114bb145f919.js"], "component---src-pages-blog-new-mdx" : ["/component---src-pages-blog-new-mdx-522f159244ffb62164b7.js"], "component---src-pages-contact-mdx" : ["/component---src-pages-contact-mdx-423224954c573faa5a9a.js"], "component---src-pages-index-mdx" : ["/component---src-pages-index-mdx-73ab46ba9866b753c98c.js"], "component---src-pages-product-photography-mdx" : ["/component---src-pages-product-photography-mdx-f0b321d3da213683bb85.js"], "component---src-pages-projects-hufflepuff-project-mdx" : ["/component---src-pages-projects-hufflepuff-project-mdx-2d751ec11f0edd67a6ef.js"], "component---src-pages-projects-portfolio-mdx" : ["/component---src-pages-projects-portfolio-mdx-e4eca7ffd83751ba4abc.js"]} | json_instruct | {"type": "object", "properties": {"polyfill": {"type": "array", "items": {"type": "string"}}, "app": {"type": "array", "items": {"type": "string"}}, "component---src-pages-404-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-blog-hello-mdx": {"type": "array", "items": {"type": "string"}}, "component---src-pages-blog-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-blog-new-mdx": {"type": "array", "items": {"type": "string"}}, "component---src-pages-contact-mdx": {"type": "array", "items": {"type": "string"}}, "component---src-pages-index-mdx": {"type": "array", "items": {"type": "string"}}, "component---src-pages-product-photography-mdx": {"type": "array", "items": {"type": "string"}}, "component---src-pages-projects-hufflepuff-project-mdx": {"type": "array", "items": {"type": "string"}}, "component---src-pages-projects-portfolio-mdx": {"type": "array", "items": {"type": "string"}}}, "required": ["polyfill", "app", "component---src-pages-404-js", "component---src-pages-blog-hello-mdx", "component---src-pages-blog-js", "component---src-pages-blog-new-mdx", "component---src-pages-contact-mdx", "component---src-pages-index-mdx", "component---src-pages-product-photography-mdx", "component---src-pages-projects-hufflepuff-project-mdx", "component---src-pages-projects-portfolio-mdx"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0xdf397b2fa3584eb4f8683ac9468bb5b1695b1eef", "tool" : "solhint", "start" : 1563215462.2227566, "end" : 1563215489.3845644, "duration" : 27.161807775497437, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"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" : 85765855, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "8a3a9d8e4654b6f2c277fb460bd708b1", "wof:id" : 85765855, "wof:repo" : "whosonfirst-data-admin-cr"}, "bbox" : [-84.09759521482476, 9.91744933820253, -84.08660888669993, 9.93774029867038], "geometry" : {"coordinates" : [[[-84.08935546871544, 9.93638762039326], [-84.08935546871544, 9.93368222607501], [-84.0872853156994, 9.93368222630797], [-84.08660888670002, 9.93368222957007], [-84.08660888670002, 9.93097681288002], [-84.08660888670002, 9.92827137382004], [-84.08660888669993, 9.92758464738263], [-84.08660888669993, 9.92556591241002], [-84.08660888669993, 9.92512188899937], [-84.08935546871544, 9.92419245414371], [-84.08935546871419, 9.92015492251006], [-84.08935546872476, 9.91744933820253], [-84.09218352229209, 9.91744933820253], [-84.09484863280002, 9.92015490016766], [-84.09484865480837, 9.92015492251006], [-84.09751365527134, 9.92286037276003], [-84.09687794718127, 9.92350574038817], [-84.09620151009315, 9.92556591241002], [-84.09531320045716, 9.92827136823277], [-84.09586328900343, 9.92994671645036], [-84.09759521482476, 9.93053280449601], [-84.09759521481419, 9.93097681288002], [-84.0975952148165, 9.93299550294935], [-84.0975952147999, 9.93368222957007], [-84.09691878767012, 9.93368222630797], [-84.09484863279994, 9.93368222607501], [-84.09484863279994, 9.93638762062641], [-84.09351624269937, 9.93774029867038], [-84.09343444085096, 9.93774029867038], [-84.0921020507854, 9.93638762062641], [-84.08935546871544, 9.93638762039326]]], "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 a JSON structure that matches this schema definition:
{"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"place_name" : "Columbiaville", "state_name" : "Michigan", "state_abbrv" : "MI", "lat" : "43.1503", "long" : "-83.3811"} | json_instruct | {"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"package": {"type": "object", "properties": {"name": {"type": "string"}, "repo": {"type": "string"}, "subject": {"type": "string"}, "desc": {"type": "string"}, "website_url": {"type": "string"}, "issue_tracker_url": {"type": "string"}, "vcs_url": {"type": "string"}, "licenses": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "repo", "subject", "desc", "website_url", "issue_tracker_url", "vcs_url", "licenses"]}, "version": {"type": "object", "properties": {"name": {"type": "string"}, "desc": {"type": "string"}, "released": {"type": "string"}, "vcs_tag": {"type": "string"}, "attributes": {"type": "array", "items": {}}, "gpgSign": {"type": "boolean"}}, "required": ["name", "desc", "released", "vcs_tag", "attributes", "gpgSign"]}, "files": {"type": "array", "items": {"type": "object", "properties": {"includePattern": {"type": "string"}, "uploadPattern": {"type": "string"}}, "required": ["includePattern", "uploadPattern"]}}, "publish": {"type": "boolean"}}, "required": ["package", "version", "files", "publish"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"package" : {"name" : "phpmetrics", "repo" : "phpmetrics", "subject" : "phpmetrics", "desc" : "Static analyzer for PHP", "website_url" : "http://www.phpmetrics.org", "issue_tracker_url" : "https://github.com/phpmetrics/phpmetrics/issues", "vcs_url" : "https://github.com/phpmetrics/phpmetrics.git", "licenses" : ["MIT"]}, "version" : {"name" : "v1.10.0", "desc" : "Latest version of PhpMetrics", "released" : "2016-04-05", "vcs_tag" : "v1.10.0", "attributes" : [], "gpgSign" : false}, "files" : [{"includePattern" : "build/(phpmetrics.*)", "uploadPattern" : "/$1"}], "publish" : true} | json_instruct | {"type": "object", "properties": {"package": {"type": "object", "properties": {"name": {"type": "string"}, "repo": {"type": "string"}, "subject": {"type": "string"}, "desc": {"type": "string"}, "website_url": {"type": "string"}, "issue_tracker_url": {"type": "string"}, "vcs_url": {"type": "string"}, "licenses": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "repo", "subject", "desc", "website_url", "issue_tracker_url", "vcs_url", "licenses"]}, "version": {"type": "object", "properties": {"name": {"type": "string"}, "desc": {"type": "string"}, "released": {"type": "string"}, "vcs_tag": {"type": "string"}, "attributes": {"type": "array", "items": {}}, "gpgSign": {"type": "boolean"}}, "required": ["name", "desc", "released", "vcs_tag", "attributes", "gpgSign"]}, "files": {"type": "array", "items": {"type": "object", "properties": {"includePattern": {"type": "string"}, "uploadPattern": {"type": "string"}}, "required": ["includePattern", "uploadPattern"]}}, "publish": {"type": "boolean"}}, "required": ["package", "version", "files", "publish"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 2954, "citation_title" : "Stock Volatility and the Crash of '87", "citation_author" : ["G. William Schwert"], "citation_publication_date" : "1989-05-01", "issue_date" : "1989-05-01", "revision_date" : "None", "topics" : ["Macroeconomics", "Econometrics"], "program" : ["Monetary Economics"], "projects" : null, "working_groups" : null, "abstract" : "\n\nThis paper analyzes the behavior of stock return volatility using daily data from 1885 through 1987. The October 1987 stock market crash was unusual in many ways relative to prior history. In particular, stock volatility jumped dramatically during and after the crash, but it returned to lower. more normal levels quickly. I use data on implied volatilities from call option prices and estimates of volatility from futures contracts on stock indexes to confirm this result.\n\n", "acknowledgement" : "\n"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["ddd/ddd-aggregate", "ddd/ddd-quotes"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"package" : "triform2", "downloads" : 4300, "count" : 4318}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"pname1": {"type": "integer"}, "pname2": {"type": "boolean"}, "pname3": {"type": "string"}, "pname4": {"type": "string"}}, "required": ["pname1", "pname2", "pname3", "pname4"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"pname1" : 5, "pname2" : true, "pname3" : "value", "pname4" : "${ BUILD }"} | json_instruct | {"type": "object", "properties": {"pname1": {"type": "integer"}, "pname2": {"type": "boolean"}, "pname3": {"type": "string"}, "pname4": {"type": "string"}}, "required": ["pname1", "pname2", "pname3", "pname4"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"advendofcode2020": {"type": "string"}, "day": {"type": "string"}, "directory_name": {"type": "string"}, "file_name": {"type": "string"}, "class_name": {"type": "string"}}, "required": ["advendofcode2020", "day", "directory_name", "file_name", "class_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"advendofcode2020" : ".", "day" : "32", "directory_name" : "day_{{cookiecutter.day}}", "file_name" : "day{{cookiecutter.day}}", "class_name" : "Day{{cookiecutter.day}}"} | json_instruct | {"type": "object", "properties": {"advendofcode2020": {"type": "string"}, "day": {"type": "string"}, "directory_name": {"type": "string"}, "file_name": {"type": "string"}, "class_name": {"type": "string"}}, "required": ["advendofcode2020", "day", "directory_name", "file_name", "class_name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"folder": {"type": "string"}, "id": {"type": "integer"}, "models": {"type": "array", "items": {"type": "object", "properties": {"fileName": {"type": "string"}, "loadable": {"type": "boolean"}, "sampleImageName": {"type": "string"}, "camera": {"type": "object", "properties": {"translation": {"type": "array", "items": {"type": "number"}}}, "required": ["translation"]}}, "required": ["fileName", "loadable", "sampleImageName", "camera"]}}}, "required": ["folder", "id", "models"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"folder" : "Animation_SkinType", "id" : 3, "models" : [{"fileName" : "Animation_SkinType_00.gltf", "loadable" : true, "sampleImageName" : "Figures/SampleImages/Animation_SkinType_00.gif", "camera" : {"translation" : [0.5, 0, 0.6]}}, {"fileName" : "Animation_SkinType_01.gltf", "loadable" : true, "sampleImageName" : "Figures/SampleImages/Animation_SkinType_01.gif", "camera" : {"translation" : [0.5, 0, 0.6]}}, {"fileName" : "Animation_SkinType_02.gltf", "loadable" : true, "sampleImageName" : "Figures/SampleImages/Animation_SkinType_02.gif", "camera" : {"translation" : [0.5, 0, 0.6]}}, {"fileName" : "Animation_SkinType_03.gltf", "loadable" : true, "sampleImageName" : "Figures/SampleImages/Animation_SkinType_03.gif", "camera" : {"translation" : [0.5, 0, 0.6]}}]} | json_instruct | {"type": "object", "properties": {"folder": {"type": "string"}, "id": {"type": "integer"}, "models": {"type": "array", "items": {"type": "object", "properties": {"fileName": {"type": "string"}, "loadable": {"type": "boolean"}, "sampleImageName": {"type": "string"}, "camera": {"type": "object", "properties": {"translation": {"type": "array", "items": {"type": "number"}}}, "required": ["translation"]}}, "required": ["fileName", "loadable", "sampleImageName", "camera"]}}}, "required": ["folder", "id", "models"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "website": {"type": "string"}}, "required": ["name", "description", "keywords", "website"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Heroku 101", "description" : "Simple Java application to get started with Heroku", "keywords" : ["java"], "website" : "https://www.heroku.com"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "website": {"type": "string"}}, "required": ["name", "description", "keywords", "website"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"src": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "aspectRatio": {"type": "number"}, "originalName": {"type": "string"}}, "required": ["src", "width", "height", "aspectRatio", "originalName"]}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"expireTime" : 9007200801378162000, "key" : "84945b63-8833-5605-ac7d-1485ac0b5c91{\"duotone\":false,\"grayscale\":false,\"rotate\":0,\"toFormat\":\"\",\"width\":20,\"height\":13}", "val" : {"src" : "data:image/jpeg;base64,/9j/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wgARCAANABQDASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAgAE/8QAFgEBAQEAAAAAAAAAAAAAAAAAAQME/9oADAMBAAIQAxAAAAHMg74hGT//xAAYEAEBAAMAAAAAAAAAAAAAAAABABARIf/aAAgBAQABBQIMciW3f//EABgRAAIDAAAAAAAAAAAAAAAAAAABEiFB/9oACAEDAQE/AVHSz//EABcRAAMBAAAAAAAAAAAAAAAAAAEQEUH/2gAIAQIBAT8BNxf/xAAWEAADAAAAAAAAAAAAAAAAAAAAESD/2gAIAQEABj8CFP8A/8QAFxABAQEBAAAAAAAAAAAAAAAAAAERUf/aAAgBAQABPyEXN6WFqYr/AP/aAAwDAQACAAMAAAAQ+B//xAAWEQEBAQAAAAAAAAAAAAAAAAABEQD/2gAIAQMBAT8QQs1wZ//EABgRAAIDAAAAAAAAAAAAAAAAAAABESFB/9oACAECAQE/EF2olH//xAAbEAEAAgMBAQAAAAAAAAAAAAABABEhQVFxMf/aAAgBAQABPxAsBR7BSM7cItts8ioO4K2L7UW/hP/Z", "width" : 20, "height" : 13, "aspectRatio" : 1.5384615384615385, "originalName" : "photo-1500531279542-fc8490c8ea4d.jpg"}} | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"src": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "aspectRatio": {"type": "number"}, "originalName": {"type": "string"}}, "required": ["src", "width", "height", "aspectRatio", "originalName"]}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "main": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}}, "required": ["id", "main", "description", "icon"]}}, "base": {"type": "string"}, "main": {"type": "object", "properties": {"temp": {"type": "number"}, "feels_like": {"type": "number"}, "temp_min": {"type": "number"}, "temp_max": {"type": "integer"}, "pressure": {"type": "integer"}, "humidity": {"type": "integer"}}, "required": ["temp", "feels_like", "temp_min", "temp_max", "pressure", "humidity"]}, "visibility": {"type": "integer"}, "wind": {"type": "object", "properties": {"speed": {"type": "number"}, "deg": {"type": "integer"}}, "required": ["speed", "deg"]}, "clouds": {"type": "object", "properties": {"all": {"type": "integer"}}, "required": ["all"]}, "dt": {"type": "integer"}, "sys": {"type": "object", "properties": {"type": {"type": "integer"}, "id": {"type": "integer"}, "country": {"type": "string"}, "sunrise": {"type": "integer"}, "sunset": {"type": "integer"}}, "required": ["type", "id", "country", "sunrise", "sunset"]}, "timezone": {"type": "integer"}, "id": {"type": "integer"}, "name": {"type": "string"}, "cod": {"type": "integer"}}, "required": ["coord", "weather", "base", "main", "visibility", "wind", "clouds", "dt", "sys", "timezone", "id", "name", "cod"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"coord" : {"lon" : -91.5302, "lat" : 41.6611}, "weather" : [{"id" : 804, "main" : "Clouds", "description" : "overcast clouds", "icon" : "04d"}], "base" : "stations", "main" : {"temp" : 4.9, "feels_like" : 1.96, "temp_min" : 3.89, "temp_max" : 6, "pressure" : 1015, "humidity" : 75}, "visibility" : 10000, "wind" : {"speed" : 1.54, "deg" : 340}, "clouds" : {"all" : 90}, "dt" : 1616760127, "sys" : {"type" : 1, "id" : 4541, "country" : "US", "sunrise" : 1616759918, "sunset" : 1616804672}, "timezone" : -18000, "id" : 4862034, "name" : "Iowa City", "cod" : 200} | json_instruct | {"type": "object", "properties": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "main": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}}, "required": ["id", "main", "description", "icon"]}}, "base": {"type": "string"}, "main": {"type": "object", "properties": {"temp": {"type": "number"}, "feels_like": {"type": "number"}, "temp_min": {"type": "number"}, "temp_max": {"type": "integer"}, "pressure": {"type": "integer"}, "humidity": {"type": "integer"}}, "required": ["temp", "feels_like", "temp_min", "temp_max", "pressure", "humidity"]}, "visibility": {"type": "integer"}, "wind": {"type": "object", "properties": {"speed": {"type": "number"}, "deg": {"type": "integer"}}, "required": ["speed", "deg"]}, "clouds": {"type": "object", "properties": {"all": {"type": "integer"}}, "required": ["all"]}, "dt": {"type": "integer"}, "sys": {"type": "object", "properties": {"type": {"type": "integer"}, "id": {"type": "integer"}, "country": {"type": "string"}, "sunrise": {"type": "integer"}, "sunset": {"type": "integer"}}, "required": ["type", "id", "country", "sunrise", "sunset"]}, "timezone": {"type": "integer"}, "id": {"type": "integer"}, "name": {"type": "string"}, "cod": {"type": "integer"}}, "required": ["coord", "weather", "base", "main", "visibility", "wind", "clouds", "dt", "sys", "timezone", "id", "name", "cod"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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" : 101897873, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "c2b477c6655e17f1e3eae9f2f6460c83", "wof:id" : 101897873, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [1.95131968915757, 42.81423289983786, 1.96600879776452, 42.82147584074926], "geometry" : {"coordinates" : [[[1.96139657793378, 42.8166052561802], [1.96151835136988, 42.81570818238521], [1.95787671424506, 42.81541913860946], [1.95799853681575, 42.81452206896046], [1.95435698529462, 42.81423289983786], [1.95423510866516, 42.81512996442439], [1.95302124715107, 42.81503354404958], [1.95289934757193, 42.81593060603325], [1.9516854715452, 42.81583416948081], [1.95131968915757, 42.8185253448782], [1.96224518620647, 42.81939279777083], [1.96212341108884, 42.82028986959597], [1.96455137392655, 42.82048248087654], [1.96442962993285, 42.82137955516015], [1.9656436346321, 42.82147584074926], [1.96600879776452, 42.81878461009904], [1.96358090001735, 42.8185920345453], [1.96382438957846, 42.8167978829527], [1.96139657793378, 42.8166052561802]]], "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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["chai", "mocha"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "superbowllottery", "version" : "1.0.0", "description" : "Solution to Hacker Rank 'Winning Lottery Tickets' bit manipulation challenge", "main" : "superBowlLottery.js", "scripts" : {"test" : "mocha"}, "repository" : {"type" : "git", "url" : "git+https://github.com/ranched/HackerRank_lotteryTickets.git"}, "author" : "jasonstephenm@gmail.com", "license" : "MIT", "bugs" : {"url" : "https://github.com/ranched/HackerRank_lotteryTickets/issues"}, "homepage" : "https://github.com/ranched/HackerRank_lotteryTickets#readme", "dependencies" : {"chai" : "^4.2.0", "mocha" : "^6.0.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "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"}, "dependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["chai", "mocha"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"http": {"type": "string"}}, "required": ["http"]}, "vendored_frameworks": {"type": "string"}, "dependencies": {"type": "object", "properties": {"mob_sharesdk": {"type": "array", "items": {}}, "mob_sharesdk/ShareSDKUI": {"type": "array", "items": {}}}, "required": ["mob_sharesdk", "mob_sharesdk/ShareSDKUI"]}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "platforms", "source", "vendored_frameworks", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "RichOXShare", "version" : "1.0.0", "summary" : "RichOXShare is Mobile share SDK.", "homepage" : "https://github.com/webeyemob/TaurusXAds_iOS_Pub", "license" : {"type" : "MIT", "file" : "RichOXShare_1.0.0/LICENSE"}, "authors" : "RichOX", "platforms" : {"ios" : "9.0"}, "source" : {"http" : "https://github.com/webeyemob/TaurusXAds_iOS_Pub/raw/master/RichOXShare/RichOXShare_1.0.0.zip"}, "vendored_frameworks" : "RichOXShare_1.0.0/RichOXShare.framework", "dependencies" : {"mob_sharesdk" : [], "mob_sharesdk/ShareSDKUI" : []}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"http": {"type": "string"}}, "required": ["http"]}, "vendored_frameworks": {"type": "string"}, "dependencies": {"type": "object", "properties": {"mob_sharesdk": {"type": "array", "items": {}}, "mob_sharesdk/ShareSDKUI": {"type": "array", "items": {}}}, "required": ["mob_sharesdk", "mob_sharesdk/ShareSDKUI"]}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "platforms", "source", "vendored_frameworks", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"category": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "postTitle": {"type": "string"}, "postName": {"type": "string"}, "postDate": {"type": "string"}, "_id": {"type": "string"}}, "required": ["category", "tags", "postTitle", "postName", "postDate", "_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"category" : "IT", "tags" : ["mongodb"], "postTitle" : "mongodb\u57fa\u7840\u77e5\u8bc6", "postName" : "mongodb-basic-knowledge", "postDate" : "2014/02/12", "_id" : "52fb3e32f948a3a025a646d4"} | json_instruct | {"type": "object", "properties": {"category": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "postTitle": {"type": "string"}, "postName": {"type": "string"}, "postDate": {"type": "string"}, "_id": {"type": "string"}}, "required": ["category", "tags", "postTitle", "postName", "postDate", "_id"], "$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"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "dev": {"type": "boolean"}}, "required": ["version", "resolved", "integrity", "dev"]}, "lru-cache": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"yallist": {"type": "string"}}, "required": ["yallist"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "node-ipinfo": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"lru-cache": {"type": "string"}}, "required": ["lru-cache"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "prettier": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "dev": {"type": "boolean"}}, "required": ["version", "resolved", "integrity", "dev"]}, "yallist": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["dotenv", "lru-cache", "node-ipinfo", "prettier", "yallist"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ipinfo-express", "version" : "1.0.0", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"dotenv" : {"version" : "8.2.0", "resolved" : "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", "integrity" : "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==", "dev" : true}, "lru-cache" : {"version" : "6.0.0", "resolved" : "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", "integrity" : "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "requires" : {"yallist" : "^4.0.0"}}, "node-ipinfo" : {"version" : "3.0.2", "resolved" : "https://registry.npmjs.org/node-ipinfo/-/node-ipinfo-3.0.2.tgz", "integrity" : "sha512-eOglEZtYEYDbch/hFlO9Q4zNzCM2sfEw2p2ZpeHE1do1pD8c/inBdDbFHOW+dfBM2zKyuoI6XtDBA0BAR79dCw==", "requires" : {"lru-cache" : "^6.0.0"}}, "prettier" : {"version" : "2.2.1", "resolved" : "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz", "integrity" : "sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==", "dev" : true}, "yallist" : {"version" : "4.0.0", "resolved" : "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity" : "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "dev": {"type": "boolean"}}, "required": ["version", "resolved", "integrity", "dev"]}, "lru-cache": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"yallist": {"type": "string"}}, "required": ["yallist"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "node-ipinfo": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"lru-cache": {"type": "string"}}, "required": ["lru-cache"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "prettier": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "dev": {"type": "boolean"}}, "required": ["version", "resolved", "integrity", "dev"]}, "yallist": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["dotenv", "lru-cache", "node-ipinfo", "prettier", "yallist"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"avatar.jpg": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}, "required": ["sha512", "size"]}, "data.json": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}, "required": ["sha512", "size"]}}, "required": ["avatar.jpg", "data.json"]}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": "object", "properties": {"1LzsciERL8X7jsmkd8LXVWqGjTaApyyB3y": {"type": "string"}}, "required": ["1LzsciERL8X7jsmkd8LXVWqGjTaApyyB3y"]}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"address" : "1oranGeS2xsKZ4jVsu9SVttzgkYXu4k9v", "cert_auth_type" : "web", "cert_sign" : "Gz7M10i1A2ybErAh+Sced9Bdvx9VRR3oATwKmrAHAg5mIABL2gn4cIpD7QhCyEYsQakAQq6Z//9lm/Vy+JZx6gE=", "cert_user_id" : "sharky@zeroid.bit", "files" : {"avatar.jpg" : {"sha512" : "6c2d96bb7acacdad2332a0659584258eeb85a440230bc4514094655afa502bd2", "size" : 1483}, "data.json" : {"sha512" : "a8d3887e8e934a105f99dd1d70112a3636538eb4a81300407a1420c392ac7f2c", "size" : 2016}}, "inner_path" : "data/users/1LzsciERL8X7jsmkd8LXVWqGjTaApyyB3y/content.json", "modified" : 1485292719, "signs" : {"1LzsciERL8X7jsmkd8LXVWqGjTaApyyB3y" : "GwWNBL+kpxpPcgQ91DpqbJoPbsPk3Q3EUfEx5Tu2mxkBOTOiSEDpwtFbDNTch1RFafg820SRVBfTkH9fl/jU4lc="}} | json_instruct | {"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"avatar.jpg": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}, "required": ["sha512", "size"]}, "data.json": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}, "required": ["sha512", "size"]}}, "required": ["avatar.jpg", "data.json"]}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": "object", "properties": {"1LzsciERL8X7jsmkd8LXVWqGjTaApyyB3y": {"type": "string"}}, "required": ["1LzsciERL8X7jsmkd8LXVWqGjTaApyyB3y"]}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"calculation": {"type": "string"}, "input": {"type": "object", "properties": {"codquery": {"type": "object", "properties": {"formula": {"type": "string"}}, "required": ["formula"]}, "strictcheck": {"type": "boolean"}}, "required": ["codquery", "strictcheck"]}}, "required": ["calculation", "input"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"calculation" : "structure.cod", "input" : {"codquery" : {"formula" : "Ba C O3"}, "strictcheck" : true}} | json_instruct | {"type": "object", "properties": {"calculation": {"type": "string"}, "input": {"type": "object", "properties": {"codquery": {"type": "object", "properties": {"formula": {"type": "string"}}, "required": ["formula"]}, "strictcheck": {"type": "boolean"}}, "required": ["codquery", "strictcheck"]}}, "required": ["calculation", "input"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"environment": {"type": "string"}, "source": {"type": "string"}, "format": {"type": "string"}, "prefix": {"type": "string"}, "mainga": {"type": "string"}, "updated": {"type": "string"}, "id": {"type": "string"}, "duration": {"type": "integer"}, "title": {"type": "string"}, "author": {"type": "string"}, "summary": {"type": "string"}, "theme": {"type": "string"}, "status": {"type": "null"}, "category": {"type": "null"}, "tags": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}}, "required": ["environment", "source", "format", "prefix", "mainga", "updated", "id", "duration", "title", "author", "summary", "theme", "status", "category", "tags", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"environment" : "web", "source" : "javasqlguide.md", "format" : "html", "prefix" : "../../", "mainga" : "UA-49880327-14", "updated" : "2019-01-14T02:14:33+05:30", "id" : "javasqlguide", "duration" : 8, "title" : "Java SQL Integration Guide", "author" : "Emmanuel Odeke and Prakriti Bansal", "summary" : "Java SQL Integration Guide", "theme" : "", "status" : null, "category" : null, "tags" : ["web"], "url" : "javasqlguide"} | json_instruct | {"type": "object", "properties": {"environment": {"type": "string"}, "source": {"type": "string"}, "format": {"type": "string"}, "prefix": {"type": "string"}, "mainga": {"type": "string"}, "updated": {"type": "string"}, "id": {"type": "string"}, "duration": {"type": "integer"}, "title": {"type": "string"}, "author": {"type": "string"}, "summary": {"type": "string"}, "theme": {"type": "string"}, "status": {"type": "null"}, "category": {"type": "null"}, "tags": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}}, "required": ["environment", "source", "format", "prefix", "mainga", "updated", "id", "duration", "title", "author", "summary", "theme", "status", "category", "tags", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "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" : 404385563, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "a6cf77bd7fe38bfe0b0764f1249e5b06", "wof:id" : 404385563, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [3.59414739723699, 47.92757153099993, 3.66981850747481, 47.97593149314497], "geometry" : {"coordinates" : [[[3.64138398393698, 47.92757153099993], [3.63829750820286, 47.93036027815919], [3.60913184785598, 47.93624794661618], [3.60409658171505, 47.94922449657009], [3.5950091194727, 47.95236672831751], [3.59414739723699, 47.95915679357535], [3.60042885969761, 47.97195825292295], [3.62884761201293, 47.97593149314497], [3.63730487167661, 47.97259212942485], [3.64128182030244, 47.97452341074723], [3.65350495562158, 47.96800341975], [3.65245524085544, 47.95783967547956], [3.66981850747481, 47.94503444008519], [3.66013463162378, 47.93325454668727], [3.64138398393698, 47.92757153099993]]], "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 a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[136.125, 33.416666666666664], [136.125, 33.5], [136.25, 33.5], [136.25, 33.416666666666664], [136.125, 33.416666666666664]]]}, "properties" : {"code" : 503611, "url" : "http://madefor.github.io/0410/api/v1/503611.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/503611.geojson"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "source": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "unpkg": {"type": "string"}, "repository": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}}, "required": ["build", "dev"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"microbundle": {"type": "string"}}, "required": ["microbundle"]}}, "required": ["name", "version", "description", "type", "source", "main", "module", "unpkg", "repository", "scripts", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "led-bus", "version" : "1.0.0", "description" : "Translates text messages into commands for a generic 14-segment LED display", "type" : "module", "source" : "src/index.js", "main" : "./dist/led-bus.cjs", "module" : "./dist/led-bus.module.js", "unpkg" : "./dist/led-bus.umd.js", "repository" : "github:deviant-syndrome/led-bus", "scripts" : {"build" : "microbundle", "dev" : "microbundle watch"}, "author" : "Deviant Syndrome", "license" : "MIT", "devDependencies" : {"microbundle" : "^0.14.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "source": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "unpkg": {"type": "string"}, "repository": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}}, "required": ["build", "dev"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"microbundle": {"type": "string"}}, "required": ["microbundle"]}}, "required": ["name", "version", "description", "type", "source", "main", "module", "unpkg", "repository", "scripts", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : " Distributive property with a negative one ex2, -(-5 - 4y)\n\n[imath]-(-5-4 y)[/imath]\n\n\n", "url" : "https://www.youtube.com/watch?v=xmI9D5n3C0w"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : {"id" : "t2_s6926", "name" : "McGoosse"}, "date" : {"day" : 1589846400, "full" : 1589925464, "month" : 1588291200, "week" : 1589673600}, "id" : "t3_gmy9a9", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 109348, "fullUrl" : "https://preview.redd.it/ujdvnjxbu6z41.jpg?auto=webp&s=7e31e3107d36f66001d2ab81db534026b80712cc", "hash" : "7fcd1942ff", "height" : 853, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAQAAwDASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAX/xAAhEAACAgEDBQEAAAAAAAAAAAABAwIRBAASIQUTQUJh0f/EABUBAQEAAAAAAAAAAAAAAAAAAAEE/8QAGhEAAQUBAAAAAAAAAAAAAAAAAQACAxESMf/aAAwDAQACEQMRAD8ACrrWXgpQEsaW5tsK5ATiIgmI4IuztPnjjUjPgDkyMw1I9Y7YyNfTY5/NOcybkIByCmWIO3ubdyiZbo1IXGxZu/mjNWvM2uCOqbCKj28aJjV+DfOpo9bN8S/JaKX/2Q==", "thumbnailUrl" : "https://b.thumbs.redditmedia.com/-fdvOQK7HG1R2Y3excU6HRo-HS5a-ujzCihW_DgQDKE.jpg", "url" : "https://preview.redd.it/ujdvnjxbu6z41.jpg?width=640&crop=smart&auto=webp&s=9698a1e701eb97244101bb7105055eeafd3b9f8b", "width" : 640}, "score" : {"comments" : 0, "downs" : 0, "isCurated" : false, "ratio" : 1, "ups" : 4, "value" : 4}, "subreddit" : {"id" : "t5_3isai", "name" : "dndmaps"}, "tags" : [], "title" : "Made an island map for my first D&D Campaign as a DM. It's based on the Dutch island of Texel (one of my favourite places in my home counrty) and made with Dutch names!", "url" : "https://www.reddit.com/r/dndmaps/comments/gmy9a9/made_an_island_map_for_my_first_dd_campaign_as_a/"} | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"rewrites": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "destination": {"type": "string"}}, "required": ["source", "destination"]}}, "github": {"type": "object", "properties": {"silent": {"type": "boolean"}}, "required": ["silent"]}}, "required": ["rewrites", "github"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rewrites" : [{"source" : "/api/(.*)", "destination" : "https://suki.moe/api/$1"}, {"source" : "/bgm.rip/api/(.*)", "destination" : "https://bgm.rip/api/$1"}, {"source" : "/(.*)", "destination" : "/index.html"}], "github" : {"silent" : true}} | json_instruct | {"type": "object", "properties": {"rewrites": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "destination": {"type": "string"}}, "required": ["source", "destination"]}}, "github": {"type": "object", "properties": {"silent": {"type": "boolean"}}, "required": ["silent"]}}, "required": ["rewrites", "github"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"hapi": {"type": "string"}, "level": {"type": "string"}, "then-levelup": {"type": "string"}}, "required": ["hapi", "level", "then-levelup"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "teamhealth-api", "version" : "1.0.0", "description" : "A team health API", "main" : "index.js", "scripts" : {"start" : "node index.js", "build" : "mkdir db"}, "author" : "Matteo Merola <mattmezza@gmail.com> (http://matteomerola.me)", "license" : "MIT", "dependencies" : {"hapi" : "^16.1.1", "level" : "^1.6.0", "then-levelup" : "^1.0.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"}, "build": {"type": "string"}}, "required": ["start", "build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"hapi": {"type": "string"}, "level": {"type": "string"}, "then-levelup": {"type": "string"}}, "required": ["hapi", "level", "then-levelup"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"typeName": {"type": "string"}, "description": {"type": "string"}, "additionalProperties": {"type": "boolean"}, "properties": {"type": "object", "properties": {"RawMessageDelivery": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "Endpoint": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "FilterPolicy": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "TopicArn": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "RedrivePolicy": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "DeliveryPolicy": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "Region": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "SubscriptionRoleArn": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "Id": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "Protocol": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["RawMessageDelivery", "Endpoint", "FilterPolicy", "TopicArn", "RedrivePolicy", "DeliveryPolicy", "Region", "SubscriptionRoleArn", "Id", "Protocol"]}, "required": {"type": "array", "items": {"type": "string"}}, "createOnlyProperties": {"type": "array", "items": {"type": "string"}}, "primaryIdentifier": {"type": "array", "items": {"type": "string"}}, "readOnlyProperties": {"type": "array", "items": {"type": "string"}}}, "required": ["typeName", "description", "additionalProperties", "properties", "required", "createOnlyProperties", "primaryIdentifier", "readOnlyProperties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"typeName" : "AWS::SNS::Subscription", "description" : "Resource Type definition for AWS::SNS::Subscription", "additionalProperties" : false, "properties" : {"RawMessageDelivery" : {"type" : "boolean"}, "Endpoint" : {"type" : "string"}, "FilterPolicy" : {"type" : "object"}, "TopicArn" : {"type" : "string"}, "RedrivePolicy" : {"type" : "object"}, "DeliveryPolicy" : {"type" : "object"}, "Region" : {"type" : "string"}, "SubscriptionRoleArn" : {"type" : "string"}, "Id" : {"type" : "string"}, "Protocol" : {"type" : "string"}}, "required" : ["TopicArn", "Protocol"], "createOnlyProperties" : ["/properties/Endpoint", "/properties/Protocol", "/properties/TopicArn"], "primaryIdentifier" : ["/properties/Id"], "readOnlyProperties" : ["/properties/Id"]} | json_instruct | {"type": "object", "properties": {"typeName": {"type": "string"}, "description": {"type": "string"}, "additionalProperties": {"type": "boolean"}, "properties": {"type": "object", "properties": {"RawMessageDelivery": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "Endpoint": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "FilterPolicy": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "TopicArn": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "RedrivePolicy": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "DeliveryPolicy": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "Region": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "SubscriptionRoleArn": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "Id": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "Protocol": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["RawMessageDelivery", "Endpoint", "FilterPolicy", "TopicArn", "RedrivePolicy", "DeliveryPolicy", "Region", "SubscriptionRoleArn", "Id", "Protocol"]}, "required": {"type": "array", "items": {"type": "string"}}, "createOnlyProperties": {"type": "array", "items": {"type": "string"}}, "primaryIdentifier": {"type": "array", "items": {"type": "string"}}, "readOnlyProperties": {"type": "array", "items": {"type": "string"}}}, "required": ["typeName", "description", "additionalProperties", "properties", "required", "createOnlyProperties", "primaryIdentifier", "readOnlyProperties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "fashion-monger", "definition" : "One who studies the fashions; a fop; a dandy. Marston."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"baseUrl": {"type": "string"}, "windowHeight": {"type": "integer"}, "windowWidth": {"type": "integer"}}, "required": ["baseUrl", "windowHeight", "windowWidth"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"baseUrl" : "http://49.212.157.135/capsule_mock/", "windowHeight" : 3000, "windowWidth" : 1024} | json_instruct | {"type": "object", "properties": {"baseUrl": {"type": "string"}, "windowHeight": {"type": "integer"}, "windowWidth": {"type": "integer"}}, "required": ["baseUrl", "windowHeight", "windowWidth"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"cache/dispose.js": {"type": "string"}, "demand.js": {"type": "string"}, "handler/css.js": {"type": "string"}, "handler/html.js": {"type": "string"}, "handler/json.js": {"type": "string"}, "handler/legacy.js": {"type": "string"}, "handler/text.js": {"type": "string"}, "plugin/cookie.js": {"type": "string"}, "plugin/lzstring.js": {"type": "string"}, "plugin/sri.js": {"type": "string"}}, "required": ["cache/dispose.js", "demand.js", "handler/css.js", "handler/html.js", "handler/json.js", "handler/legacy.js", "handler/text.js", "plugin/cookie.js", "plugin/lzstring.js", "plugin/sri.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cache/dispose.js" : "sha256-zYyUhDmqjDZjkfNpMJqPiGOuxwYE0HunQeIoMDAOvIw=", "demand.js" : "sha256-ojY3hu4rxptePLvxVHhrLf3TlLhIbGpn+SzhCfhoI0M=", "handler/css.js" : "sha256-VNGRoW2bw5TJg+mCbDBIrQPhbArUDDNTmR3m8ZczBXI=", "handler/html.js" : "sha256-rRN1SjgKxJqyCnVFDOtPWW4pKrq0Ey10s4TMxDaMW44=", "handler/json.js" : "sha256-3Zi97y73kYy/QvSPfBYQr+fuLsRZWombUegyqNVvjVM=", "handler/legacy.js" : "sha256-+kHV61g0YgL2ZBWoyS9ASjft0o2kEe1Qo0bAQXYKCPQ=", "handler/text.js" : "sha256-RtpBdEXDDYzCWuOA1MaYtVoadH8wfToCfTgo288vkZA=", "plugin/cookie.js" : "sha256-jVN+l0xbECDIiBBZUsVNZXClZAm6Q+vw4iwBDgconFQ=", "plugin/lzstring.js" : "sha256-lGW9a3S3TM8BWsK/Mg1O++Ml2utvais6DI3CadE6loM=", "plugin/sri.js" : "sha256-9pCyVxp+ZGyzOqzXu3FB12O8eli9zLj4bLOs4Bwgzj0="} | json_instruct | {"type": "object", "properties": {"cache/dispose.js": {"type": "string"}, "demand.js": {"type": "string"}, "handler/css.js": {"type": "string"}, "handler/html.js": {"type": "string"}, "handler/json.js": {"type": "string"}, "handler/legacy.js": {"type": "string"}, "handler/text.js": {"type": "string"}, "plugin/cookie.js": {"type": "string"}, "plugin/lzstring.js": {"type": "string"}, "plugin/sri.js": {"type": "string"}}, "required": ["cache/dispose.js", "demand.js", "handler/css.js", "handler/html.js", "handler/json.js", "handler/legacy.js", "handler/text.js", "plugin/cookie.js", "plugin/lzstring.js", "plugin/sri.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"port": {"type": "integer"}, "mongodb": {"type": "object", "properties": {"host": {"type": "string"}, "port": {"type": "integer"}, "username": {"type": "string"}, "password": {"type": "string"}, "databasename": {"type": "string"}}, "required": ["host", "port", "username", "password", "databasename"]}}, "required": ["port", "mongodb"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"port" : 19092, "mongodb" : {"host" : "localhost", "port" : 27017, "username" : "sampleUser", "password" : "password", "databasename" : "myDb"}} | json_instruct | {"type": "object", "properties": {"port": {"type": "integer"}, "mongodb": {"type": "object", "properties": {"host": {"type": "string"}, "port": {"type": "integer"}, "username": {"type": "string"}, "password": {"type": "string"}, "databasename": {"type": "string"}}, "required": ["host", "port", "username", "password", "databasename"]}}, "required": ["port", "mongodb"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "license": {"type": "string"}, "version": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/core": {"type": "string"}}, "required": ["@angular/common", "@angular/core"]}, "repository": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["name", "description", "keywords", "author", "license", "version", "peerDependencies", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ngx-skycons", "description" : "This is a Skycons Angular 7 library.", "keywords" : ["skycons", "weather", "angular", "ngx", "darksky", "icons", "animated"], "author" : {"name" : "Flexo Carpius", "email" : "flexocarpius@gmail.com"}, "license" : "Apache-2.0", "version" : "1.1.2", "peerDependencies" : {"@angular/common" : "^7.1.0", "@angular/core" : "^7.1.0"}, "repository" : {"url" : "https://github.com/flexocarpius/ngx-skycons"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "license": {"type": "string"}, "version": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/core": {"type": "string"}}, "required": ["@angular/common", "@angular/core"]}, "repository": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["name", "description", "keywords", "author", "license", "version", "peerDependencies", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"strict": {"type": "boolean"}, "noImplicitAny": {"type": "boolean"}, "lib": {"type": "array", "items": {"type": "string"}}, "outDir": {"type": "string"}, "declaration": {"type": "boolean"}}, "required": ["strict", "noImplicitAny", "lib", "outDir", "declaration"]}, "include": {"type": "array", "items": {"type": "string"}}}, "required": ["compilerOptions", "include"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"compilerOptions" : {"strict" : true, "noImplicitAny" : true, "lib" : ["ES2018"], "outDir" : "dist", "declaration" : true}, "include" : ["src/"]} | json_instruct | {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"strict": {"type": "boolean"}, "noImplicitAny": {"type": "boolean"}, "lib": {"type": "array", "items": {"type": "string"}}, "outDir": {"type": "string"}, "declaration": {"type": "boolean"}}, "required": ["strict", "noImplicitAny", "lib", "outDir", "declaration"]}, "include": {"type": "array", "items": {"type": "string"}}}, "required": ["compilerOptions", "include"], "$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"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Josh Holtz": {"type": "string"}}, "required": ["Josh Holtz"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}, "public_header_files": {"type": "string"}, "source_files": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "requires_arc", "public_header_files", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "JHSidebar", "version" : "0.1.2", "summary" : "A customizable sidebar for iOS.", "description" : " Probably just another sidebar library but this is the way I wanted them implemented.\n", "homepage" : "https://github.com/joshdholtz/JHSidebar", "license" : "MIT", "authors" : {"Josh Holtz" : "me@joshholtz"}, "source" : {"git" : "https://github.com/joshdholtz/JHSidebar.git", "tag" : "0.1.2"}, "platforms" : {"ios" : "6.0"}, "requires_arc" : true, "public_header_files" : "Classes/*.h", "source_files" : "Classes/*"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Josh Holtz": {"type": "string"}}, "required": ["Josh Holtz"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}, "public_header_files": {"type": "string"}, "source_files": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "requires_arc", "public_header_files", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "irredeemable", "definition" : "Not redeemable; that can not be redeemed; not payable in gold or silver, as a bond; -- used especially of such government notes, issued as currency, as are not convertible into coin at the pleasure of the holder. -- Ir`re*deem\"a*ble*ness, adv."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"mobx-state-tree": {"type": "string"}}, "required": ["mobx-state-tree"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dependencies" : {"mobx-state-tree" : "^5.0.1"}} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"mobx-state-tree": {"type": "string"}}, "required": ["mobx-state-tree"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"widgetUrl": {"type": "string"}, "tmplateUrl": {"type": "string"}, "styleUrl": {"type": "string"}, "mapDiv": {"type": "string"}, "getCompanyList": {"type": "string"}, "getGroupList": {"type": "string"}, "getVehicleList": {"type": "string"}, "getConfigList": {"type": "string"}, "getReportCarAlarm": {"type": "string"}, "alarmtypekey": {"type": "string"}, "pagenumber": {"type": "integer"}, "pagesize": {"type": "integer"}, "currentpage": {"type": "integer"}, "rangeall": {"type": "string"}, "maxsize": {"type": "integer"}}, "required": ["widgetUrl", "tmplateUrl", "styleUrl", "mapDiv", "getCompanyList", "getGroupList", "getVehicleList", "getConfigList", "getReportCarAlarm", "alarmtypekey", "pagenumber", "pagesize", "currentpage", "rangeall", "maxsize"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"widgetUrl" : "widgets/VehicleWarnInfoStatistics", "tmplateUrl" : "widgets/VehicleWarnInfoStatistics/Widget.html", "styleUrl" : "widgets/VehicleWarnInfoStatistics/css/style.scss", "mapDiv" : "myMap", "getCompanyList" : "/Device/Get_Company_List", "getGroupList" : "/groups/list", "getVehicleList" : "/Car/List", "getConfigList" : "/SysConfig/List", "getReportCarAlarm" : "/CarReport/ReportCarAlarm", "alarmtypekey" : "0015", "pagenumber" : 0, "pagesize" : 15, "currentpage" : 1, "rangeall" : "00", "maxsize" : 100000} | json_instruct | {"type": "object", "properties": {"widgetUrl": {"type": "string"}, "tmplateUrl": {"type": "string"}, "styleUrl": {"type": "string"}, "mapDiv": {"type": "string"}, "getCompanyList": {"type": "string"}, "getGroupList": {"type": "string"}, "getVehicleList": {"type": "string"}, "getConfigList": {"type": "string"}, "getReportCarAlarm": {"type": "string"}, "alarmtypekey": {"type": "string"}, "pagenumber": {"type": "integer"}, "pagesize": {"type": "integer"}, "currentpage": {"type": "integer"}, "rangeall": {"type": "string"}, "maxsize": {"type": "integer"}}, "required": ["widgetUrl", "tmplateUrl", "styleUrl", "mapDiv", "getCompanyList", "getGroupList", "getVehicleList", "getConfigList", "getReportCarAlarm", "alarmtypekey", "pagenumber", "pagesize", "currentpage", "rangeall", "maxsize"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-121.348588, 38.69094], [-121.339144, 38.699448], [-121.336605, 38.697388], [-121.33665, 38.686852], [-121.33947, 38.684838], [-121.348588, 38.69094]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 8346}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "Directors": {"type": "array", "items": {"type": "string"}}, "Country": {"type": "string"}, "Language": {"type": "array", "items": {"type": "string"}}, "poster_image_url": {"type": "string"}, "Bio": {"type": "string"}, "rumtime": {"type": "integer"}, "genre": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "Directors", "Country", "Language", "poster_image_url", "Bio", "rumtime", "genre"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Peepli (Live)", "Directors" : ["Anusha Rizvi", "Mahmood Farooqui"], "Country" : "India", "Language" : ["Hindi", "English"], "poster_image_url" : "https://m.media-amazon.com/images/M/MV5BZTU4NmJkNWEtNmM0ZC00NDkyLThkZDYtZTVkNTQxMTNhOTlhXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY268_CR1,0,182,268_AL__QL50.jpg", "Bio" : "\n An impoverished farmer's threat to end his life invites attention from politicians and media.\n ", "rumtime" : 95, "genre" : ["Comedy", "Drama"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "Directors": {"type": "array", "items": {"type": "string"}}, "Country": {"type": "string"}, "Language": {"type": "array", "items": {"type": "string"}}, "poster_image_url": {"type": "string"}, "Bio": {"type": "string"}, "rumtime": {"type": "integer"}, "genre": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "Directors", "Country", "Language", "poster_image_url", "Bio", "rumtime", "genre"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}}, "required": ["Default"]}}, "required": ["LogLevel"]}, "ServerHost": {"type": "object", "properties": {"Host": {"type": "string"}, "Port": {"type": "integer"}}, "required": ["Host", "Port"]}, "Consul": {"type": "object", "properties": {"Host": {"type": "string"}, "Port": {"type": "integer"}, "RoutePath": {"type": "string"}, "WatchInterval": {"type": "integer"}}, "required": ["Host", "Port", "RoutePath", "WatchInterval"]}}, "required": ["Logging", "ServerHost", "Consul"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Logging" : {"LogLevel" : {"Default" : "Information"}}, "ServerHost" : {"Host" : "127.0.0.1", "Port" : 7789}, "Consul" : {"Host" : "127.0.0.1", "Port" : 8500, "RoutePath" : "service/ServiceRoute/", "WatchInterval" : 3}} | json_instruct | {"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}}, "required": ["Default"]}}, "required": ["LogLevel"]}, "ServerHost": {"type": "object", "properties": {"Host": {"type": "string"}, "Port": {"type": "integer"}}, "required": ["Host", "Port"]}, "Consul": {"type": "object", "properties": {"Host": {"type": "string"}, "Port": {"type": "integer"}, "RoutePath": {"type": "string"}, "WatchInterval": {"type": "integer"}}, "required": ["Host", "Port", "RoutePath", "WatchInterval"]}}, "required": ["Logging", "ServerHost", "Consul"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"schema_version" : "1.2.0", "id" : "GHSA-j8vq-qmgj-pjpx", "modified" : "2022-04-30T18:11:05Z", "published" : "2022-04-30T18:11:05Z", "aliases" : ["CVE-1999-0731"], "details" : "The KDE klock program allows local users to unlock a session using malformed input.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-1999-0731"}, {"type" : "WEB", "url" : "https://github.com/KDE/kde1-kdebase/commit/04906bd5de2f220bf100b605dad37b4a1d9a91a6"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/489"}], "database_specific" : {"cwe_ids" : [], "severity" : "MODERATE", "github_reviewed" : false}} | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"package" : "thermorawfileparser", "downloads" : 34200, "count" : 8217}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Saint-Pierre-Langers", "circ" : "2\u00e8me circonscription", "dpt" : "Manche", "inscrits" : 440, "abs" : 269, "votants" : 171, "blancs" : 13, "nuls" : 2, "exp" : 156, "res" : [{"nuance" : "REM", "nom" : "M. Bertrand SORRE", "voix" : 106}, {"nuance" : "LR", "nom" : "M. Guenha\u00ebl HUET", "voix" : 50}]} | 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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["360821105001", "\u4e07\u798f\u5c45\u59d4\u4f1a", "121", "0"], ["360821105002", "\u5858\u4e1c\u5c45\u59d4\u4f1a", "123", "0"], ["360821105200", "\u4e95\u5934\u6751\u59d4\u4f1a", "220", "0"], ["360821105201", "\u67a7\u4e0b\u6751\u59d4\u4f1a", "220", "0"], ["360821105202", "\u4f59\u5bb6\u6751\u59d4\u4f1a", "220", "0"], ["360821105203", "\u9ebb\u5858\u6751\u59d4\u4f1a", "220", "0"], ["360821105204", "\u5733\u4e0a\u6751\u59d4\u4f1a", "220", "0"], ["360821105205", "\u4e07\u798f\u6751\u59d4\u4f1a", "122", "0"], ["360821105206", "\u767d\u7af9\u6751\u59d4\u4f1a", "220", "0"], ["360821105207", "\u6c38\u6625\u6751\u59d4\u4f1a", "220", "0"], ["360821105208", "\u5b98\u6eaa\u6751\u59d4\u4f1a", "220", "0"], ["360821105209", "\u70af\u6751\u6751\u59d4\u4f1a", "121", "0"], ["360821105210", "\u9ebb\u9642\u6751\u59d4\u4f1a", "220", "0"], ["360821105211", "\u7559\u7530\u6751\u59d4\u4f1a", "220", "0"], ["360821105212", "\u67a7\u53e3\u6751\u59d4\u4f1a", "220", "0"], ["360821105213", "\u6885\u6eaa\u6751\u59d4\u4f1a", "220", "0"], ["360821105214", "\u5858\u4e1c\u6751\u59d4\u4f1a", "220", "0"], ["360821105215", "\u96c5\u6c60\u6751\u59d4\u4f1a", "220", "0"], ["360821105216", "\u7476\u6c5f\u6751\u59d4\u4f1a", "220", "0"], ["360821105217", "\u8bb8\u5bb6\u6751\u59d4\u4f1a", "220", "0"], ["360821105218", "\u5cad\u5934\u6751\u59d4\u4f1a", "220", "0"], ["360821105219", "\u8001\u5188\u6751\u59d4\u4f1a", "220", "0"], ["360821105220", "\u5730\u524d\u6751\u59d4\u4f1a", "220", "0"], ["360821105221", "\u51c0\u5751\u6751\u59d4\u4f1a", "220", "0"], ["360821105222", "\u8c37\u5858\u6751\u59d4\u4f1a", "220", "0"], ["360821105223", "\u5927\u674f\u6751\u59d4\u4f1a", "220", "0"], ["360821105224", "\u9022\u5858\u6751\u59d4\u4f1a", "220", "0"], ["360821105225", "\u6817\u5934\u6751\u59d4\u4f1a", "220", "0"], ["360821105226", "\u9e64\u6d32\u6751\u59d4\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"files.exclude": {"type": "object", "properties": {".jsbeautifyrc": {"type": "boolean"}, ".eslintrc.json": {"type": "boolean"}, "babel.config.json": {"type": "boolean"}, "INSTRUCTIONS.md": {"type": "boolean"}, "yarn.lock": {"type": "boolean"}}, "required": [".jsbeautifyrc", ".eslintrc.json", "babel.config.json", "INSTRUCTIONS.md", "yarn.lock"]}, "path-autocomplete.transformations": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "parameters": {"type": "array", "items": {"type": "string"}}, "when": {"type": "object", "properties": {"fileName": {"type": "string"}}, "required": ["fileName"]}}, "required": ["type", "parameters", "when"]}}, "path-autocomplete.pathMappings": {"type": "object", "properties": {"~bulma": {"type": "string"}}, "required": ["~bulma"]}, "beautify.ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["files.exclude", "path-autocomplete.transformations", "path-autocomplete.pathMappings", "beautify.ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"files.exclude" : {".jsbeautifyrc" : true, ".eslintrc.json" : true, "babel.config.json" : true, "INSTRUCTIONS.md" : true, "yarn.lock" : true}, "path-autocomplete.transformations" : [{"type" : "replace", "parameters" : ["^_", ""], "when" : {"fileName" : "\\.scss$"}}], "path-autocomplete.pathMappings" : {"~bulma" : "${workspace}/node_modules/bulma"}, "beautify.ignore" : ["**/build/**"]} | json_instruct | {"type": "object", "properties": {"files.exclude": {"type": "object", "properties": {".jsbeautifyrc": {"type": "boolean"}, ".eslintrc.json": {"type": "boolean"}, "babel.config.json": {"type": "boolean"}, "INSTRUCTIONS.md": {"type": "boolean"}, "yarn.lock": {"type": "boolean"}}, "required": [".jsbeautifyrc", ".eslintrc.json", "babel.config.json", "INSTRUCTIONS.md", "yarn.lock"]}, "path-autocomplete.transformations": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "parameters": {"type": "array", "items": {"type": "string"}}, "when": {"type": "object", "properties": {"fileName": {"type": "string"}}, "required": ["fileName"]}}, "required": ["type", "parameters", "when"]}}, "path-autocomplete.pathMappings": {"type": "object", "properties": {"~bulma": {"type": "string"}}, "required": ["~bulma"]}, "beautify.ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["files.exclude", "path-autocomplete.transformations", "path-autocomplete.pathMappings", "beautify.ignore"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "distance": {"type": "number"}, "distanceLabel": {"type": "string"}, "duration": {"type": "number"}, "runByRunner": {"type": "string"}}, "required": ["id", "date", "distance", "distanceLabel", "duration", "runByRunner"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 332, "date" : "2015-03-09", "distance" : 2.5, "distanceLabel" : "2.5 miles", "duration" : 23.75, "runByRunner" : "Monica"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "distance": {"type": "number"}, "distanceLabel": {"type": "string"}, "duration": {"type": "number"}, "runByRunner": {"type": "string"}}, "required": ["id", "date", "distance", "distanceLabel", "duration", "runByRunner"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"tslint.exclude": {"type": "array", "items": {"type": "string"}}, "markdownlint.config": {"type": "object", "properties": {"default": {"type": "boolean"}, "MD026": {"type": "boolean"}}, "required": ["default", "MD026"]}}, "required": ["tslint.exclude", "markdownlint.config"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"tslint.exclude" : ["**/dist/**", "**/node_modules/**"], "markdownlint.config" : {"default" : true, "MD026" : false}} | json_instruct | {"type": "object", "properties": {"tslint.exclude": {"type": "array", "items": {"type": "string"}}, "markdownlint.config": {"type": "object", "properties": {"default": {"type": "boolean"}, "MD026": {"type": "boolean"}}, "required": ["default", "MD026"]}}, "required": ["tslint.exclude", "markdownlint.config"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "source": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"compile:sass": {"type": "string"}}, "required": ["compile:sass"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"node-sass": {"type": "string"}, "normalize": {"type": "string"}, "normalize.css": {"type": "string"}}, "required": ["node-sass", "normalize", "normalize.css"]}}, "required": ["name", "version", "source", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "freecodecamp", "version" : "1.0.0", "source" : ["style.scss"], "description" : "", "main" : "index.js", "scripts" : {"compile:sass" : "node-sass sass/app.scss css/app.css -w"}, "author" : "", "license" : "ISC", "dependencies" : {}, "devDependencies" : {"node-sass" : "^4.14.1", "normalize" : "^0.3.1", "normalize.css" : "^8.0.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "source": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"compile:sass": {"type": "string"}}, "required": ["compile:sass"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"node-sass": {"type": "string"}, "normalize": {"type": "string"}, "normalize.css": {"type": "string"}}, "required": ["node-sass", "normalize", "normalize.css"]}}, "required": ["name", "version", "source", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"AdminLogin": {"type": "string"}, "Email": {"type": "string"}, "PasswordHash": {"type": "string"}, "NewPassHash": {"type": "null"}, "ConfirmCode": {"type": "null"}, "NewPassExpired": {"type": "string"}, "Color": {"type": "integer"}, "IsAboutAuthorOn": {"type": "boolean"}, "IsPopularPostsOn": {"type": "boolean"}, "IsTagsWidgetOn": {"type": "boolean"}, "IsPostsArchiveOn": {"type": "boolean"}, "IsPollWidgetOn": {"type": "boolean"}, "IsBlogOn": {"type": "boolean"}, "BlogName": {"type": "string"}, "BlogSubheader": {"type": "string"}, "FooterText": {"type": "string"}, "MaxPostsAtPage": {"type": "integer"}}, "required": ["AdminLogin", "Email", "PasswordHash", "NewPassHash", "ConfirmCode", "NewPassExpired", "Color", "IsAboutAuthorOn", "IsPopularPostsOn", "IsTagsWidgetOn", "IsPostsArchiveOn", "IsPollWidgetOn", "IsBlogOn", "BlogName", "BlogSubheader", "FooterText", "MaxPostsAtPage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"AdminLogin" : "test", "Email" : "kirnbas@gmail.com", "PasswordHash" : "XT7RLW2iIPrGbWxCvHZh5q5daRErIG7+usSAv+/t7yY=", "NewPassHash" : null, "ConfirmCode" : null, "NewPassExpired" : "0001-01-01T00:00:00", "Color" : 2, "IsAboutAuthorOn" : true, "IsPopularPostsOn" : true, "IsTagsWidgetOn" : true, "IsPostsArchiveOn" : true, "IsPollWidgetOn" : true, "IsBlogOn" : true, "BlogName" : "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0431\u043b\u043e\u0433\u0430z", "BlogSubheader" : "\u041f\u043e\u0434\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a \u0431\u043b\u043e\u0433\u0430z", "FooterText" : "\u0422\u0435\u043a\u0441\u0442 \u0432 \u043d\u0438\u0436\u043d\u0435\u0439 \u0447\u0430\u0441\u0442\u0438 \u0431\u043b\u043e\u0433\u0430z", "MaxPostsAtPage" : 2} | json_instruct | {"type": "object", "properties": {"AdminLogin": {"type": "string"}, "Email": {"type": "string"}, "PasswordHash": {"type": "string"}, "NewPassHash": {"type": "null"}, "ConfirmCode": {"type": "null"}, "NewPassExpired": {"type": "string"}, "Color": {"type": "integer"}, "IsAboutAuthorOn": {"type": "boolean"}, "IsPopularPostsOn": {"type": "boolean"}, "IsTagsWidgetOn": {"type": "boolean"}, "IsPostsArchiveOn": {"type": "boolean"}, "IsPollWidgetOn": {"type": "boolean"}, "IsBlogOn": {"type": "boolean"}, "BlogName": {"type": "string"}, "BlogSubheader": {"type": "string"}, "FooterText": {"type": "string"}, "MaxPostsAtPage": {"type": "integer"}}, "required": ["AdminLogin", "Email", "PasswordHash", "NewPassHash", "ConfirmCode", "NewPassExpired", "Color", "IsAboutAuthorOn", "IsPopularPostsOn", "IsTagsWidgetOn", "IsPostsArchiveOn", "IsPollWidgetOn", "IsBlogOn", "BlogName", "BlogSubheader", "FooterText", "MaxPostsAtPage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"namaKab" : "MADIUN", "originalFilename" : "PAS FOTO 4x6.jpg", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 244956, "noUrut" : 1, "nama" : "dr. SYAHRUL SUWANDI, MM", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "MADIUN", "originalFilename" : "PAS FOTO 4x6.jpg", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 244498, "noUrut" : 2, "nama" : "Drs. MOCH HASYIM", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "MADIUN", "originalFilename" : "PAS FOTO 4x6.jpg", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 243485, "noUrut" : 3, "nama" : "SUMINI", "stringJenisKelamin" : "Perempuan"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[132.0, 40.5], [132.0, 40.583333333333336], [132.125, 40.583333333333336], [132.125, 40.5], [132.0, 40.5]]]}, "properties" : {"code" : 603260, "url" : "http://madefor.github.io/0410/api/v1/603260.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/603260.geojson"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1893, 5], [1903, 5], [1905, 5], [1910, 8], [1912, 6], [1913, 11], [1914, 11], [1915, 12], [1916, 8], [1917, 6], [1918, 10], [1920, 7], [1921, 8], [1923, 10], [1924, 6], [1925, 8], [1926, 11], [1927, 6], [1928, 10], [1930, 7], [1932, 9], [1933, 8], [1938, 5], [1939, 8], [1940, 6]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"Name": {"type": "string"}, "Registry ID": {"type": "string"}, "Class": {"type": "string"}}, "required": ["Name", "Registry ID", "Class"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "twilightforest.redcap_sapper", "Registry ID" : "twilightforest:redcap_sapper", "Class" : "twilightforest.entity.EntityTFRedcapSapper"} | json_instruct | {"type": "object", "properties": {"Name": {"type": "string"}, "Registry ID": {"type": "string"}, "Class": {"type": "string"}}, "required": ["Name", "Registry ID", "Class"], "$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"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"colors": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "dev": {"type": "boolean"}}, "required": ["version", "resolved", "integrity", "dev"]}, "events": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "dev": {"type": "boolean"}}, "required": ["version", "resolved", "integrity", "dev"]}, "metrics": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "dev": {"type": "boolean"}, "requires": {"type": "object", "properties": {"events": {"type": "string"}}, "required": ["events"]}}, "required": ["version", "resolved", "integrity", "dev", "requires"]}, "underscore": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "dev": {"type": "boolean"}}, "required": ["version", "resolved", "integrity", "dev"]}}, "required": ["colors", "events", "metrics", "underscore"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "redis", "version" : "0.8.6", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"colors" : {"version" : "0.6.2", "resolved" : "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz", "integrity" : "sha1-JCP+ZnisDF2uiFLl0OW+CMmXq8w=", "dev" : true}, "events" : {"version" : "2.1.0", "resolved" : "https://registry.npmjs.org/events/-/events-2.1.0.tgz", "integrity" : "sha512-3Zmiobend8P9DjmKAty0Era4jV8oJ0yGYe2nJJAxgymF9+N8F2m0hhZiMoWtcfepExzNKZumFU3ksdQbInGWCg==", "dev" : true}, "metrics" : {"version" : "0.1.21", "resolved" : "https://registry.npmjs.org/metrics/-/metrics-0.1.21.tgz", "integrity" : "sha512-Lg/0Kj7fani6FDmlC99glxpPjK3GHzE50Hp6IVIaMhGc9ZxR2MF0Eo4haOl1C0cGWpRkViv45P0hdvRJghkJtQ==", "dev" : true, "requires" : {"events" : "^2.0.0"}}, "underscore" : {"version" : "1.4.4", "resolved" : "https://registry.npmjs.org/underscore/-/underscore-1.4.4.tgz", "integrity" : "sha1-YaajIBBiKvoHljvzJSA88SI51gQ=", "dev" : true}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"colors": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "dev": {"type": "boolean"}}, "required": ["version", "resolved", "integrity", "dev"]}, "events": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "dev": {"type": "boolean"}}, "required": ["version", "resolved", "integrity", "dev"]}, "metrics": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "dev": {"type": "boolean"}, "requires": {"type": "object", "properties": {"events": {"type": "string"}}, "required": ["events"]}}, "required": ["version", "resolved", "integrity", "dev", "requires"]}, "underscore": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "dev": {"type": "boolean"}}, "required": ["version", "resolved", "integrity", "dev"]}}, "required": ["colors", "events", "metrics", "underscore"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"file_name": {"type": "string"}, "guid": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}, "exports": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "class": {"type": "object", "properties": {"package": {"type": "string"}, "name": {"type": "string"}}, "required": ["package", "name"]}, "super": {"type": "null"}, "template": {"type": "object", "properties": {"package": {"type": "string"}, "name": {"type": "string"}}, "required": ["package", "name"]}, "outer": {"type": "null"}, "properties": {"type": "object", "properties": {"CompressionSettings": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "ImportedSize": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}, "required": ["type", "value"]}, "LODGroup": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "LightingGuid": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}}, "required": ["type", "value"]}, "NeverStream": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "boolean"}}, "required": ["type", "value"]}}, "required": ["CompressionSettings", "ImportedSize", "LODGroup", "LightingGuid", "NeverStream"]}}, "required": ["name", "class", "super", "template", "outer", "properties"]}}}, "required": ["file_name", "guid", "exports"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"file_name" : "FactoryGame/Content/FactoryGame/Interface/UI/Assets/Compass/Compass_ObjectLine.uasset", "guid" : {"a" : 2579343789, "b" : 1083503467, "c" : 3691070374, "d" : 3409881623}, "exports" : [{"name" : "Compass_ObjectLine", "class" : {"package" : "/Script/Engine", "name" : "Texture2D"}, "super" : null, "template" : {"package" : "/Script/Engine", "name" : "Default__Texture2D"}, "outer" : null, "properties" : {"CompressionSettings" : {"type" : "ByteProperty", "value" : "TC_EditorIcon"}, "ImportedSize" : {"type" : "IntPoint", "value" : {"x" : 4, "y" : 43}}, "LODGroup" : {"type" : "ByteProperty", "value" : "TEXTUREGROUP_Project01"}, "LightingGuid" : {"type" : "Guid", "value" : {"a" : 2134382009, "b" : 1217039853, "c" : 3923677845, "d" : 356161145}}, "NeverStream" : {"type" : "BoolProperty", "value" : true}}}]} | json_instruct | {"type": "object", "properties": {"file_name": {"type": "string"}, "guid": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}, "exports": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "class": {"type": "object", "properties": {"package": {"type": "string"}, "name": {"type": "string"}}, "required": ["package", "name"]}, "super": {"type": "null"}, "template": {"type": "object", "properties": {"package": {"type": "string"}, "name": {"type": "string"}}, "required": ["package", "name"]}, "outer": {"type": "null"}, "properties": {"type": "object", "properties": {"CompressionSettings": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "ImportedSize": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}, "required": ["type", "value"]}, "LODGroup": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "LightingGuid": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}}, "required": ["type", "value"]}, "NeverStream": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "boolean"}}, "required": ["type", "value"]}}, "required": ["CompressionSettings", "ImportedSize", "LODGroup", "LightingGuid", "NeverStream"]}}, "required": ["name", "class", "super", "template", "outer", "properties"]}}}, "required": ["file_name", "guid", "exports"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"metaData": {"type": "object", "properties": {"id": {"type": "string"}, "conference": {"type": "object", "properties": {"metaData": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "edition": {"type": "object", "properties": {"year": {"type": "integer"}}, "required": ["year"]}}, "required": ["metaData", "edition"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "name": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "createdAt": {"type": "number"}}, "required": ["id", "conference", "source", "name", "authors", "createdAt"]}, "description": {"type": "string"}}, "required": ["metaData", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"metaData" : {"id" : "Swiftable_2019_optimising-ios-app-development-processes", "conference" : {"metaData" : {"id" : "Swiftable", "name" : "swiftable"}, "edition" : {"year" : 2019}}, "source" : {"type" : "youtube", "value" : "1BiEryyobjk"}, "name" : "Optimising iOS app development processes", "authors" : [{"id" : "felix-krause", "name" : "Felix Krause"}], "createdAt" : 1582152577.9035249}, "description" : ""} | json_instruct | {"type": "object", "properties": {"metaData": {"type": "object", "properties": {"id": {"type": "string"}, "conference": {"type": "object", "properties": {"metaData": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "edition": {"type": "object", "properties": {"year": {"type": "integer"}}, "required": ["year"]}}, "required": ["metaData", "edition"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "name": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "createdAt": {"type": "number"}}, "required": ["id", "conference", "source", "name", "authors", "createdAt"]}, "description": {"type": "string"}}, "required": ["metaData", "description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"" : {"model" : "chipped:block/lime_carpet_1"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "initiators": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "tasks": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "params": {"type": "object", "properties": {"sport": {"type": "string"}, "method": {"type": "string"}, "contractAddress": {"type": "string"}}, "required": ["sport", "method", "contractAddress"]}}, "required": ["type", "params"]}}}, "required": ["name", "initiators", "tasks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Augur | MMA Market Resolution - ${MMA_MARKET_FACTORY}", "initiators" : [{"type" : "web"}, {"type" : "cron", "params" : {"schedule" : "CRON_TZ=UTC 03 7 * * *"}}], "tasks" : [{"type" : "augur-adapter", "params" : {"sport" : "mma", "method" : "resolve", "contractAddress" : "${MMA_MARKET_FACTORY}"}}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "initiators": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "tasks": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "params": {"type": "object", "properties": {"sport": {"type": "string"}, "method": {"type": "string"}, "contractAddress": {"type": "string"}}, "required": ["sport", "method", "contractAddress"]}}, "required": ["type", "params"]}}}, "required": ["name", "initiators", "tasks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"feedstocks" : ["ete3"]} | json_instruct | {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$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" : "Valine", "definitions" : ["An amino acid which is a constituent of most proteins. It is an essential nutrient in the diet of vertebrates."], "parts-of-speech" : "Noun"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "011000040208", "variable1" : 0.3917, "variable2" : -1.2261, "variable3" : "A"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}, "31": {"type": "string"}, "32": {"type": "string"}, "33": {"type": "string"}, "34": {"type": "string"}, "35": {"type": "string"}, "36": {"type": "string"}, "37": {"type": "string"}, "38": {"type": "string"}, "39": {"type": "string"}, "40": {"type": "string"}, "41": {"type": "string"}, "42": {"type": "string"}, "43": {"type": "string"}, "44": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"edges" : [[15, 40], [40, 38], [1, 40], [13, 20], [30, 40], [5, 40], [15, 40], [40, 17], [10, 40], [40, 16], [22, 3], [14, 24], [21, 40], [40, 44], [33, 40], [34, 40], [40, 38], [15, 40], [23, 40], [12, 40], [38, 40], [40, 30], [38, 40], [40, 38], [40, 0], [40, 38], [40, 32], [4, 40], [10, 40], [41, 42], [40, 30], [1, 40], [15, 40], [7, 40], [36, 37], [16, 41], [15, 40], [0, 40], [15, 40], [40, 29], [40, 38], [30, 40], [39, 13], [40, 15], [35, 40], [8, 9], [0, 40], [40, 17], [18, 40], [40, 31], [40, 10], [11, 6], [25, 40], [40, 15], [38, 40], [19, 40], [19, 43], [40, 38], [2, 40], [6, 19], [40, 1], [40, 0], [28, 27], [40, 26], [5, 40]], "features" : {"0" : "4", "1" : "3", "2" : "1", "3" : "1", "4" : "1", "5" : "2", "6" : "2", "7" : "1", "8" : "1", "9" : "1", "10" : "3", "11" : "1", "12" : "1", "13" : "2", "14" : "1", "15" : "8", "16" : "2", "17" : "2", "18" : "1", "19" : "3", "20" : "1", "21" : "1", "22" : "1", "23" : "1", "24" : "1", "25" : "1", "26" : "1", "27" : "1", "28" : "1", "29" : "1", "30" : "4", "31" : "1", "32" : "1", "33" : "1", "34" : "1", "35" : "1", "36" : "1", "37" : "1", "38" : "9", "39" : "1", "40" : "53", "41" : "2", "42" : "1", "43" : "1", "44" : "1"}} | json_instruct | {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}, "31": {"type": "string"}, "32": {"type": "string"}, "33": {"type": "string"}, "34": {"type": "string"}, "35": {"type": "string"}, "36": {"type": "string"}, "37": {"type": "string"}, "38": {"type": "string"}, "39": {"type": "string"}, "40": {"type": "string"}, "41": {"type": "string"}, "42": {"type": "string"}, "43": {"type": "string"}, "44": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"pages": {"type": "array", "items": {"type": "string"}}, "window": {"type": "object", "properties": {"backgroundTextStyle": {"type": "string"}, "navigationBarBackgroundColor": {"type": "string"}, "navigationBarTitleText": {"type": "string"}, "navigationBarTextStyle": {"type": "string"}}, "required": ["backgroundTextStyle", "navigationBarBackgroundColor", "navigationBarTitleText", "navigationBarTextStyle"]}, "tabBar": {"type": "object", "properties": {"color": {"type": "string"}, "selectedColor": {"type": "string"}, "list": {"type": "array", "items": {"type": "object", "properties": {"pagePath": {"type": "string"}, "text": {"type": "string"}, "iconPath": {"type": "string"}, "selectedIconPath": {"type": "string"}}, "required": ["pagePath", "text", "iconPath", "selectedIconPath"]}}}, "required": ["color", "selectedColor", "list"]}}, "required": ["pages", "window", "tabBar"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"pages" : ["pages/index/index", "pages/logs/logs", "pages/article/article", "pages/project/project", "pages/me/me", "pages/web/index", "pages/collect/collect", "pages/login/login", "pages/search/search", "pages/todo/todo", "pages/todoadd/add", "pages/waterfall/index", "pages/tree/tree", "pages/treelist/treelist", "pages/register/register"], "window" : {"backgroundTextStyle" : "dark", "navigationBarBackgroundColor" : "#fff", "navigationBarTitleText" : "\u73a9\u5b89\u5353Mini", "navigationBarTextStyle" : "black"}, "tabBar" : {"color" : "#666", "selectedColor" : "#222", "list" : [{"pagePath" : "pages/index/index", "text" : "\u9996\u9875", "iconPath" : "/images/ic_home.png", "selectedIconPath" : "/images/ic_home_fill.png"}, {"pagePath" : "pages/article/article", "text" : "\u6587\u7ae0", "iconPath" : "/images/ic_article.png", "selectedIconPath" : "/images/ic_article_fill.png"}, {"pagePath" : "pages/project/project", "text" : "\u9879\u76ee", "iconPath" : "/images/ic_category.png", "selectedIconPath" : "/images/ic_category_fill.png"}, {"pagePath" : "pages/me/me", "text" : "\u6211\u7684", "iconPath" : "/images/ic_me.png", "selectedIconPath" : "/images/ic_me_fill.png"}]}} | json_instruct | {"type": "object", "properties": {"pages": {"type": "array", "items": {"type": "string"}}, "window": {"type": "object", "properties": {"backgroundTextStyle": {"type": "string"}, "navigationBarBackgroundColor": {"type": "string"}, "navigationBarTitleText": {"type": "string"}, "navigationBarTextStyle": {"type": "string"}}, "required": ["backgroundTextStyle", "navigationBarBackgroundColor", "navigationBarTitleText", "navigationBarTextStyle"]}, "tabBar": {"type": "object", "properties": {"color": {"type": "string"}, "selectedColor": {"type": "string"}, "list": {"type": "array", "items": {"type": "object", "properties": {"pagePath": {"type": "string"}, "text": {"type": "string"}, "iconPath": {"type": "string"}, "selectedIconPath": {"type": "string"}}, "required": ["pagePath", "text", "iconPath", "selectedIconPath"]}}}, "required": ["color", "selectedColor", "list"]}}, "required": ["pages", "window", "tabBar"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1961, 5], [1962, 5], [1963, 6], [1964, 13], [1965, 16], [1966, 21], [1967, 21], [1968, 25], [1969, 44], [1970, 70], [1971, 70], [1972, 58], [1973, 78], [1974, 73], [1975, 58], [1976, 47], [1977, 54], [1978, 53], [1979, 55], [1980, 62], [1981, 32], [1982, 30], [1983, 50], [1984, 31], [1985, 33], [1986, 38], [1987, 19], [1988, 31], [1989, 21], [1990, 21], [1991, 17], [1992, 13], [1993, 10], [1994, 5], [1995, 12], [1996, 6], [1997, 7], [2002, 6], [2004, 7], [2005, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}}, "required": ["name", "fips", "state_code", "county_code", "population", "countrylevel_id", "census_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"name" : "Brantley County", "fips" : "13025", "state_code" : 13, "county_code" : 25, "population" : 19109, "countrylevel_id" : "fips:13025", "census_data" : {"COUNTYNS" : "00351605", "AFFGEOID" : "0500000US13025", "LSAD" : "06", "ALAND" : 1147397684, "AWATER" : 10849168}}, "geometry" : {"type" : "Polygon", "coordinates" : [[[-82.284561, 31.224449], [-82.19303099999999, 31.202119999999997], [-82.11482199999999, 31.270355], [-81.997421, 31.288534], [-82.041129, 31.373721], [-81.923238, 31.345875], [-81.801052, 31.363736999999997], [-81.73169399999999, 31.330047999999998], [-81.78236299999999, 31.168148], [-81.766322, 31.169594999999997], [-81.840671, 31.097665], [-81.93674899999999, 31.060786999999998], [-81.93600599999999, 31.047992999999998], [-82.06087, 31.075809], [-82.08120699999999, 31.01063], [-82.131698, 31.010714], [-82.20826199999999, 31.084767999999997], [-82.208732, 31.170938], [-82.284561, 31.224449]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}}, "required": ["name", "fips", "state_code", "county_code", "population", "countrylevel_id", "census_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "workspaces": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"lerna": {"type": "string"}, "start-server-and-test": {"type": "string"}}, "required": ["lerna", "start-server-and-test"]}, "scripts": {"type": "object", "properties": {"lerna:bootstrap": {"type": "string"}, "estimation:dev": {"type": "string"}, "estimation:start": {"type": "string"}, "estimation:build": {"type": "string"}, "estimation:test": {"type": "string"}, "test:ci": {"type": "string"}}, "required": ["lerna:bootstrap", "estimation:dev", "estimation:start", "estimation:build", "estimation:test", "test:ci"]}}, "required": ["name", "private", "workspaces", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "root", "private" : true, "workspaces" : ["packages/*", "estimation/*"], "devDependencies" : {"lerna" : "^3.13.0", "start-server-and-test" : "^1.9.1"}, "scripts" : {"lerna:bootstrap" : "lerna bootstrap", "estimation:dev" : "SKIP_PREFLIGHT_CHECK=true lerna run dev --stream --scope 'estimation-*'", "estimation:start" : "SKIP_PREFLIGHT_CHECK=true lerna run start --stream --scope 'estimation-*'", "estimation:build" : "SKIP_PREFLIGHT_CHECK=true lerna run build --stream --scope 'estimation-*'", "estimation:test" : "SKIP_PREFLIGHT_CHECK=true lerna run test --stream --scope 'estimation-*'", "test:ci" : "start-server-and-test estimation:start tcp:3000 estimation:test"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "workspaces": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"lerna": {"type": "string"}, "start-server-and-test": {"type": "string"}}, "required": ["lerna", "start-server-and-test"]}, "scripts": {"type": "object", "properties": {"lerna:bootstrap": {"type": "string"}, "estimation:dev": {"type": "string"}, "estimation:start": {"type": "string"}, "estimation:build": {"type": "string"}, "estimation:test": {"type": "string"}, "test:ci": {"type": "string"}}, "required": ["lerna:bootstrap", "estimation:dev", "estimation:start", "estimation:build", "estimation:test", "test:ci"]}}, "required": ["name", "private", "workspaces", "devDependencies", "scripts"], "$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.