input
stringlengths 159
2.05k
| output
stringlengths 5
10.3k
| task
stringclasses 1
value | schema
stringlengths 100
1.99k
|
---|---|---|---|
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "examples": {"type": "array", "items": {}}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"condition": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "default": {"type": "string"}, "examples": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "description", "default", "examples"]}, "how": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "description", "enum"]}}, "required": ["condition", "how"]}}, "required": ["$schema", "type", "title", "description", "examples", "required", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "http://json-schema.org/draft-07/schema", "type" : "object", "title" : "Join", "description" : "Join two dataframes", "examples" : [], "required" : ["how", "condition"], "properties" : {"condition" : {"type" : "string", "description" : "An SQL expression to use for the join. Use the alias `left` and `right` to reference duplicate column names", "default" : "", "examples" : ["(right.country_code = left.country_code) AND (right.continent = 'europe')"]}, "how" : {"type" : "string", "description" : "type of join to perform. determines how columns that don't have lookup values will be treated", "enum" : ["inner", "cross", "outer", "full", "fullouter", "full_outer", "left", "leftouter", "left_outer", "right", "rightouter", "right_outer", "semi", "leftsemi", "left_semi", "anti", "leftanti", "left_anti"]}}} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "examples": {"type": "array", "items": {}}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"condition": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "default": {"type": "string"}, "examples": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "description", "default", "examples"]}, "how": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "description", "enum"]}}, "required": ["condition", "how"]}}, "required": ["$schema", "type", "title", "description", "examples", "required", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "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"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["name", "name_long", "fips", "state_code_int", "state_code_postal", "state_code_iso", "county_code", "population", "countrylevel_id", "census_data", "center_lat", "center_lon", "area_m2", "timezone"]}, "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" : "Lamar County", "name_long" : "Lamar County, TX", "fips" : "48277", "state_code_int" : 48, "state_code_postal" : "TX", "state_code_iso" : "US-TX", "county_code" : 277, "population" : 49859, "countrylevel_id" : "fips:48277", "census_data" : {"COUNTYNS" : "01383925", "AFFGEOID" : "0500000US48277", "LSAD" : "06", "ALAND" : 2349588921, "AWATER" : 67136454}, "center_lat" : 33.67, "center_lon" : -95.57, "area_m2" : 2416725375, "timezone" : "America/Chicago"}, "geometry" : {"type" : "Polygon", "coordinates" : [[[-95.855, 33.828], [-95.845, 33.86], [-95.821, 33.858], [-95.79, 33.872], [-95.738, 33.896], [-95.67, 33.906], [-95.604, 33.927], [-95.557, 33.927], [-95.525, 33.885], [-95.447, 33.869], [-95.352, 33.868], [-95.31, 33.874], [-95.309, 33.381], [-95.417, 33.412], [-95.492, 33.455], [-95.604, 33.485], [-95.672, 33.473], [-95.761, 33.495], [-95.827, 33.459], [-95.858, 33.462], [-95.855, 33.828]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "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"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["name", "name_long", "fips", "state_code_int", "state_code_postal", "state_code_iso", "county_code", "population", "countrylevel_id", "census_data", "center_lat", "center_lon", "area_m2", "timezone"]}, "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": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"lastUpdated" : 1655019279666, "username" : "fortshitsalot19", "scores" : [{"xp" : 10852, "rank" : 129, "cardId" : 593}]} | json_instruct | {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "integer"}, "id": {"type": "string"}, "profileID": {"type": "integer"}, "moduleID": {"type": "string"}, "moduleURI": {"type": "string"}, "params": {"type": "object", "properties": {"recordingDateTime": {"type": "integer"}, "numberOfFrames": {"type": "integer"}, "height": {"type": "integer"}, "width": {"type": "integer"}, "fps": {"type": "number"}, "sizeOfObject": {"type": "integer"}, "bgColor": {"type": "object", "properties": {"R": {"type": "integer"}, "G": {"type": "integer"}, "B": {"type": "integer"}}, "required": ["R", "G", "B"]}, "fgColor": {"type": "object", "properties": {"R": {"type": "integer"}, "G": {"type": "integer"}, "B": {"type": "integer"}}, "required": ["R", "G", "B"]}, "osdTextColor": {"type": "object", "properties": {"R": {"type": "integer"}, "G": {"type": "integer"}, "B": {"type": "integer"}}, "required": ["R", "G", "B"]}}, "required": ["recordingDateTime", "numberOfFrames", "height", "width", "fps", "sizeOfObject", "bgColor", "fgColor", "osdTextColor"]}, "chain": {"type": "array", "items": {}}}, "required": ["name", "description", "version", "id", "profileID", "moduleID", "moduleURI", "params", "chain"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "rectangle", "description" : "A colored rectangle is moving from left to right", "version" : 1, "id" : "", "profileID" : 0, "moduleID" : "SyntheticVideo", "moduleURI" : "http://localhost:2020/SyntheticVideo", "params" : {"recordingDateTime" : 0, "numberOfFrames" : 100, "height" : 480, "width" : 640, "fps" : 10.0, "sizeOfObject" : 100, "bgColor" : {"R" : 100, "G" : 200, "B" : 255}, "fgColor" : {"R" : 100, "G" : 200, "B" : 0}, "osdTextColor" : {"R" : 0, "G" : 0, "B" : 0}}, "chain" : []} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "integer"}, "id": {"type": "string"}, "profileID": {"type": "integer"}, "moduleID": {"type": "string"}, "moduleURI": {"type": "string"}, "params": {"type": "object", "properties": {"recordingDateTime": {"type": "integer"}, "numberOfFrames": {"type": "integer"}, "height": {"type": "integer"}, "width": {"type": "integer"}, "fps": {"type": "number"}, "sizeOfObject": {"type": "integer"}, "bgColor": {"type": "object", "properties": {"R": {"type": "integer"}, "G": {"type": "integer"}, "B": {"type": "integer"}}, "required": ["R", "G", "B"]}, "fgColor": {"type": "object", "properties": {"R": {"type": "integer"}, "G": {"type": "integer"}, "B": {"type": "integer"}}, "required": ["R", "G", "B"]}, "osdTextColor": {"type": "object", "properties": {"R": {"type": "integer"}, "G": {"type": "integer"}, "B": {"type": "integer"}}, "required": ["R", "G", "B"]}}, "required": ["recordingDateTime", "numberOfFrames", "height", "width", "fps", "sizeOfObject", "bgColor", "fgColor", "osdTextColor"]}, "chain": {"type": "array", "items": {}}}, "required": ["name", "description", "version", "id", "profileID", "moduleID", "moduleURI", "params", "chain"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"val_loss": {"type": "array", "items": {"type": "number"}}, "val_acc": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}, "loss": {"type": "array", "items": {"type": "number"}}}, "required": ["val_loss", "val_acc", "acc", "loss"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"val_loss" : [0.14918051015138625, 0.11311582281589508, 0.09677609901726246, 0.08881660034395754, 0.07960333607755601, 0.07745813960917294, 0.07334108922667801, 0.07267369804382325, 0.06901229310259223, 0.06682772308774293, 0.06583984772302211, 0.06393468305859715, 0.06387253519669175, 0.06268872415665537, 0.06299953506868333, 0.06098942728862167, 0.060747581033781174, 0.06003431291496381, 0.05945401035342365, 0.058930644874460994], "val_acc" : [0.9568, 0.9653, 0.9709, 0.9722, 0.9753, 0.9756, 0.9757, 0.9757, 0.9777, 0.979, 0.978, 0.9795, 0.9789, 0.9792, 0.9801, 0.9805, 0.9799, 0.9807, 0.9809, 0.9814], "acc" : [0.8760833333651225, 0.9399666666666666, 0.9510000000317892, 0.9588166666666667, 0.9618000000317891, 0.9651999999682108, 0.9653333333651225, 0.9693666666348775, 0.9708166666984558, 0.9703333333651225, 0.9712166666348775, 0.9734833333015442, 0.9743999999682108, 0.9745666666984558, 0.9750333333651224, 0.9760666666348775, 0.9751, 0.9765499999682109, 0.9764999999682109, 0.9772000000317892], "loss" : [0.4021198530316353, 0.1963868066151937, 0.15803118660449983, 0.135930889972051, 0.12302430127859115, 0.11223530097405116, 0.1084247972647349, 0.09919849201639493, 0.09500175332625707, 0.09364015133778254, 0.09029697916905086, 0.08633530285358429, 0.0818726495474577, 0.08065576468706132, 0.07998673200408618, 0.07808842475414277, 0.07704654850562413, 0.07349304252664249, 0.07404806277354559, 0.071900636780262]} | json_instruct | {"type": "object", "properties": {"val_loss": {"type": "array", "items": {"type": "number"}}, "val_acc": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}, "loss": {"type": "array", "items": {"type": "number"}}}, "required": ["val_loss", "val_acc", "acc", "loss"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Lavault-de-Fr\u00e9toy", "circ" : "2\u00e8me circonscription", "dpt" : "Ni\u00e8vre", "inscrits" : 62, "abs" : 33, "votants" : 29, "blancs" : 1, "nuls" : 1, "exp" : 27, "res" : [{"nuance" : "SOC", "nom" : "M. Christian PAUL", "voix" : 16}, {"nuance" : "REM", "nom" : "M. Patrice PERROT", "voix" : 11}]} | 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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"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": {}}, "mappings": {"type": "string"}, "sourceRoot": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourceRoot", "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" : "import { BeaconError, BeaconErrorType } from '..';\n/**\n * @category Error\n */\n\nexport class ParametersInvalidBeaconError extends BeaconError {\n constructor() {\n super(BeaconErrorType.PARAMETERS_INVALID_ERROR, 'Some of the parameters you provided are invalid and the request could not be completed. Please check your inputs and try again.');\n this.name = 'ParametersInvalidBeaconError';\n this.title = 'Parameters Invalid';\n }\n\n}", "map" : {"version" : 3, "sources" : ["../../../src/errors/ParametersInvalidBeaconError.ts"], "names" : [], "mappings" : "AAAA,SAAS,WAAT,EAAsB,eAAtB,QAA6C,IAA7C;AAEA;;AAEG;;AACH,OAAM,MAAO,4BAAP,SAA4C,WAA5C,CAAuD;AAI3D,EAAA,WAAA,GAAA;AACE,UACE,eAAe,CAAC,wBADlB,EAEE,iIAFF;AAJK,SAAA,IAAA,GAAe,8BAAf;AACA,SAAA,KAAA,GAAgB,oBAAhB;AAON;;AAT0D", "sourceRoot" : "", "sourcesContent" : ["import { BeaconError, BeaconErrorType } from '..';\n/**\n * @category Error\n */\nexport class ParametersInvalidBeaconError extends BeaconError {\n constructor() {\n super(BeaconErrorType.PARAMETERS_INVALID_ERROR, 'Some of the parameters you provided are invalid and the request could not be completed. Please check your inputs and try again.');\n this.name = 'ParametersInvalidBeaconError';\n this.title = 'Parameters Invalid';\n }\n}\n//# sourceMappingURL=ParametersInvalidBeaconError.js.map"]}, "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": {}}, "mappings": {"type": "string"}, "sourceRoot": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourceRoot", "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": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1607070013", "district_id" : "1607070", "name" : "SAKO"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"volumeAttachment": {"type": "object", "properties": {"attachment_id": {"type": "string"}, "delete_on_termination": {"type": "boolean"}, "device": {"type": "string"}, "serverId": {"type": "string"}, "tag": {"type": "string"}, "volumeId": {"type": "string"}, "bdm_uuid": {"type": "string"}}, "required": ["attachment_id", "delete_on_termination", "device", "serverId", "tag", "volumeId", "bdm_uuid"]}}, "required": ["volumeAttachment"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"volumeAttachment" : {"attachment_id" : "721a5c82-5ebc-4c6a-8339-3d33d8d027ed", "delete_on_termination" : true, "device" : "/dev/sdb", "serverId" : "7ebed2ce-85b3-40b5-84ae-8cc725c37ed2", "tag" : "foo", "volumeId" : "a07f71dc-8151-4e7d-a0cc-cd24a3f11113", "bdm_uuid" : "c088db45-92b8-49e8-81e2-a1b77a144b3b"}} | json_instruct | {"type": "object", "properties": {"volumeAttachment": {"type": "object", "properties": {"attachment_id": {"type": "string"}, "delete_on_termination": {"type": "boolean"}, "device": {"type": "string"}, "serverId": {"type": "string"}, "tag": {"type": "string"}, "volumeId": {"type": "string"}, "bdm_uuid": {"type": "string"}}, "required": ["attachment_id", "delete_on_termination", "device", "serverId", "tag", "volumeId", "bdm_uuid"]}}, "required": ["volumeAttachment"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 1226785727, "type" : "Feature", "properties" : {"src:alt_label" : "geonames", "src:geom" : "geonames", "wof:geomhash" : "8c520b5cb483f6e6b8902347feafd321", "wof:id" : 1226785727, "wof:repo" : "whosonfirst-data-admin-nz"}, "bbox" : [174.73333, -36.26667, 174.73333, -36.26667], "geometry" : {"coordinates" : [174.73333, -36.26667], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"tokens": {"type": "object", "properties": {"concur_automated_email_subject": {"type": "array", "items": {}}, "expense_report_id": {"type": "array", "items": {"type": "string"}}}, "required": ["concur_automated_email_subject", "expense_report_id"]}}, "required": ["tokens"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"tokens" : {"concur_automated_email_subject" : [], "expense_report_id" : ["79D89435DAE94F53BF60"]}} | json_instruct | {"type": "object", "properties": {"tokens": {"type": "object", "properties": {"concur_automated_email_subject": {"type": "array", "items": {}}, "expense_report_id": {"type": "array", "items": {"type": "string"}}}, "required": ["concur_automated_email_subject", "expense_report_id"]}}, "required": ["tokens"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"examine": {"type": "string"}, "bonuses": {"type": "array", "items": {"type": "integer"}}}, "required": ["examine", "bonuses"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"examine" : "A vicious-looking axe. (Tier 2)", "bonuses" : [-2, 22, 19, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 18, 0, 0, 0]} | json_instruct | {"type": "object", "properties": {"examine": {"type": "string"}, "bonuses": {"type": "array", "items": {"type": "integer"}}}, "required": ["examine", "bonuses"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}}, "required": ["code", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"code" : "350102", "name" : "\u9f13\u697c\u533a"}, {"code" : "350103", "name" : "\u53f0\u6c5f\u533a"}, {"code" : "350104", "name" : "\u4ed3\u5c71\u533a"}, {"code" : "350105", "name" : "\u9a6c\u5c3e\u533a"}, {"code" : "350111", "name" : "\u664b\u5b89\u533a"}, {"code" : "350121", "name" : "\u95fd\u4faf\u53bf"}, {"code" : "350122", "name" : "\u8fde\u6c5f\u53bf"}, {"code" : "350123", "name" : "\u7f57\u6e90\u53bf"}, {"code" : "350124", "name" : "\u95fd\u6e05\u53bf"}, {"code" : "350125", "name" : "\u6c38\u6cf0\u53bf"}, {"code" : "350128", "name" : "\u5e73\u6f6d\u53bf"}, {"code" : "350181", "name" : "\u798f\u6e05\u5e02"}, {"code" : "350182", "name" : "\u957f\u4e50\u5e02"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}}, "required": ["code", "name"]}, "$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": {"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" : [[[-71.136742, 42.553464], [-71.130524, 42.58321], [-71.135441, 42.599166], [-71.110997, 42.601101], [-71.108259, 42.595925], [-71.102448, 42.590771], [-71.100322, 42.587357], [-71.096835, 42.583859], [-71.090155, 42.573561], [-71.08953, 42.568758], [-71.087246, 42.567025], [-71.086976, 42.565346], [-71.092818, 42.559272], [-71.103548, 42.564897], [-71.104563, 42.566432], [-71.107996, 42.564392], [-71.109772, 42.561514], [-71.111155, 42.560907], [-71.114867, 42.560952], [-71.116059, 42.561722], [-71.118432, 42.561196], [-71.11922, 42.559916], [-71.120635, 42.560327], [-71.12385, 42.558021], [-71.124212, 42.55692], [-71.125954, 42.556788], [-71.12556, 42.55626], [-71.126938, 42.554226], [-71.129091, 42.554885], [-71.132443, 42.552915], [-71.135646, 42.552267], [-71.136742, 42.553464]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 30628}}]} | 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#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "\"use strict\";\n\nexports.__esModule = true;\nexports.default = _default;\n\nvar _reactDom = _interopRequireDefault(require(\"react-dom\"));\n\nvar _ownerDocument = _interopRequireDefault(require(\"dom-helpers/ownerDocument\"));\n\nfunction _interopRequireDefault(obj) {\n return obj && obj.__esModule ? obj : {\n default: obj\n };\n}\n\nfunction _default(componentOrElement) {\n return (0, _ownerDocument.default)(_reactDom.default.findDOMNode(componentOrElement));\n}\n\nmodule.exports = exports[\"default\"];", "map" : null, "metadata" : {}, "sourceType" : "script"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"status": {"type": "string"}, "tp": {"type": "integer"}, "msg": {"type": "string"}, "result": {"type": "object", "properties": {"\"93097\"": {"type": "string"}}, "required": ["\"93097\""]}, "hits": {"type": "string"}}, "required": ["status", "tp", "msg", "result", "hits"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status" : "success", "tp" : 1, "msg" : "Cities fetched successfully.", "result" : {"\"93097\"" : "Ta Khmau"}, "hits" : "2152"} | json_instruct | {"type": "object", "properties": {"status": {"type": "string"}, "tp": {"type": "integer"}, "msg": {"type": "string"}, "result": {"type": "object", "properties": {"\"93097\"": {"type": "string"}}, "required": ["\"93097\""]}, "hits": {"type": "string"}}, "required": ["status", "tp", "msg", "result", "hits"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}, "foreign_keys": {"type": "array", "items": {"type": "object", "properties": {"column": {"type": "string"}, "references": {"type": "string"}, "on": {"type": "string"}, "onDelete": {"type": "string"}}, "required": ["column", "references", "on", "onDelete"]}}, "relationships": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "class": {"type": "string"}}, "required": ["name", "type", "class"]}}, "validations": {"type": "array", "items": {"type": "object", "properties": {"field": {"type": "string"}, "rules": {"type": "string"}}, "required": ["field", "rules"]}}}, "required": ["fields", "foreign_keys", "relationships", "validations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"fields" : [{"name" : "imei_product", "type" : "string"}, {"name" : "label", "type" : "string"}, {"name" : "model", "type" : "string"}, {"name" : "enabled_date", "type" : "date"}, {"name" : "state", "type" : "string"}, {"name" : "status", "type" : "string"}, {"name" : "movement_id", "type" : "integer#unsigned"}, {"name" : "observtion", "type" : "string"}, {"name" : "user_id", "type" : "integer#unsigned"}], "foreign_keys" : [{"column" : "user_id", "references" : "id", "on" : "users", "onDelete" : "cascade"}, {"column" : "movement_id", "references" : "id", "on" : "movements", "onDelete" : "cascade"}], "relationships" : [{"name" : "user", "type" : "belongsTo", "class" : "App\\Models\\User"}, {"name" : "movements", "type" : "belongsTo", "class" : "App\\Models\\Movement"}], "validations" : [{"field" : "imei_product", "rules" : "required"}]} | json_instruct | {"type": "object", "properties": {"fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}, "foreign_keys": {"type": "array", "items": {"type": "object", "properties": {"column": {"type": "string"}, "references": {"type": "string"}, "on": {"type": "string"}, "onDelete": {"type": "string"}}, "required": ["column", "references", "on", "onDelete"]}}, "relationships": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "class": {"type": "string"}}, "required": ["name", "type", "class"]}}, "validations": {"type": "array", "items": {"type": "object", "properties": {"field": {"type": "string"}, "rules": {"type": "string"}}, "required": ["field", "rules"]}}}, "required": ["fields", "foreign_keys", "relationships", "validations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"OUTPUT": {"type": "string"}, "INPUT": {"type": "string"}, "TRAIN_IMAGES": {"type": "string"}, "EXTERNAL": {"type": "string"}}, "required": ["OUTPUT", "INPUT", "TRAIN_IMAGES", "EXTERNAL"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"OUTPUT" : "./output", "INPUT" : "../input/rsna-str-pulmonary-embolism-detection", "TRAIN_IMAGES" : "../input/rsna-str-pulmonary-embolism-detection/train-jpegs-512", "EXTERNAL" : "../input/external_table_data"} | json_instruct | {"type": "object", "properties": {"OUTPUT": {"type": "string"}, "INPUT": {"type": "string"}, "TRAIN_IMAGES": {"type": "string"}, "EXTERNAL": {"type": "string"}}, "required": ["OUTPUT", "INPUT", "TRAIN_IMAGES", "EXTERNAL"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : 7102251, "parent" : 7102, "name" : "TONDANO UTARA", "latitude" : "1.3289730004963", "longitude" : "124.91615699965", "postal" : [95614, 95615, 95610], "children" : [7102251001, 7102251002, 7102251003, 7102251004, 7102251005, 7102251006, 7102251007, 7102251008]} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"group": {"type": "string"}, "templates": {"type": "array", "items": {"type": "object", "properties": {"file": {"type": "string"}, "title": {"type": "string"}}, "required": ["file", "title"]}}}, "required": ["group", "templates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"group" : "Containers", "templates" : [{"file" : "containers/2columns", "title" : "Two columns text"}, {"file" : "containers/3columns", "title" : "Three columns text"}, {"file" : "containers/4columns", "title" : "Three columns text"}]}, {"group" : "Headers", "templates" : [{"file" : "headers/h2", "title" : "Heading 2"}, {"file" : "headers/h3", "title" : "Heading 3"}]}, {"group" : "Text", "templates" : [{"file" : "p", "title" : "Paragraph", "category" : ["Text"]}]}, {"group" : "Media", "templates" : [{"file" : "embed", "title" : "Insta", "category" : ["Embed"]}, {"file" : "hr", "title" : "Horizontal rule", "category" : ["Delimeters"]}, {"file" : "img", "title" : "Image", "category" : ["Image"]}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"group": {"type": "string"}, "templates": {"type": "array", "items": {"type": "object", "properties": {"file": {"type": "string"}, "title": {"type": "string"}}, "required": ["file", "title"]}}}, "required": ["group", "templates"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"item.emeraldtools.emerald_shovel": {"type": "string"}, "item.emeraldtools.emerald_pickaxe": {"type": "string"}, "item.emeraldtools.emerald_axe": {"type": "string"}, "item.emeraldtools.emerald_sword": {"type": "string"}, "item.emeraldtools.emerald_hoe": {"type": "string"}}, "required": ["item.emeraldtools.emerald_shovel", "item.emeraldtools.emerald_pickaxe", "item.emeraldtools.emerald_axe", "item.emeraldtools.emerald_sword", "item.emeraldtools.emerald_hoe"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"item.emeraldtools.emerald_shovel" : "Emerald Shovel", "item.emeraldtools.emerald_pickaxe" : "Emerald Pickaxe", "item.emeraldtools.emerald_axe" : "Emerald Axe", "item.emeraldtools.emerald_sword" : "Emerald Sword", "item.emeraldtools.emerald_hoe" : "Emerald Hoe"} | json_instruct | {"type": "object", "properties": {"item.emeraldtools.emerald_shovel": {"type": "string"}, "item.emeraldtools.emerald_pickaxe": {"type": "string"}, "item.emeraldtools.emerald_axe": {"type": "string"}, "item.emeraldtools.emerald_sword": {"type": "string"}, "item.emeraldtools.emerald_hoe": {"type": "string"}}, "required": ["item.emeraldtools.emerald_shovel", "item.emeraldtools.emerald_pickaxe", "item.emeraldtools.emerald_axe", "item.emeraldtools.emerald_sword", "item.emeraldtools.emerald_hoe"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"drumtype=iron": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "drumtype=steel": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "drumtype=bedrock": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["drumtype=iron", "drumtype=steel", "drumtype=bedrock"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"drumtype=iron" : {"model" : "technocracy.foundation:drum/drum_iron"}, "drumtype=steel" : {"model" : "technocracy.foundation:drum/drum_steel"}, "drumtype=bedrock" : {"model" : "technocracy.foundation:drum/drum_bedrock"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"drumtype=iron": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "drumtype=steel": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "drumtype=bedrock": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["drumtype=iron", "drumtype=steel", "drumtype=bedrock"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "related_urls": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "url": {"type": "string"}}, "required": ["label", "url"]}}, "speakers": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["copyright_text", "description", "duration", "language", "recorded", "related_urls", "speakers", "tags", "thumbnail_url", "title", "videos"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"copyright_text" : "Standard YouTube License", "description" : "Want to build an engaging and compelling dashboard? With the new release of Tableau, we can compose beautiful data visualization while leveraging a large number of machine-learning libraries through TabPy, a local HTTP Python server. In this session, we will explore Python functions in Tableau and go through two examples of data visualization. You will learn how to develop interactive dashboards by using TabPy.", "duration" : 1520, "language" : "eng", "recorded" : "2017-07-17", "related_urls" : [{"label" : "schedule", "url" : "https://scipy2017.scipy.org/ehome/220975/493422/"}], "speakers" : ["Chloe Tseng"], "tags" : ["tabpy", "tableau"], "thumbnail_url" : "https://i.ytimg.com/vi/oXT7rBNkAZ8/maxresdefault.jpg", "title" : "Python and Tableau Building an Interactive and Beautiful Data Visualization with TabPy", "videos" : [{"type" : "youtube", "url" : "https://www.youtube.com/watch?v=oXT7rBNkAZ8"}]} | json_instruct | {"type": "object", "properties": {"copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "related_urls": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "url": {"type": "string"}}, "required": ["label", "url"]}}, "speakers": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["copyright_text", "description", "duration", "language", "recorded", "related_urls", "speakers", "tags", "thumbnail_url", "title", "videos"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"description": {"type": "string"}, "duration": {"type": "integer"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["description", "duration", "recorded", "speakers", "thumbnail_url", "title", "videos"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "Auditing a code base for code formatting mistakes, potential security vulnerabilities or defects can be time consuming. Static code analysis will let the computer do that for you. Learn how to use code static analysis to catch errors early and improve code quality in your Python codebase.", "duration" : 2702, "recorded" : "2016-07-30", "speakers" : ["Andrew Wolfe"], "thumbnail_url" : "https://i.ytimg.com/vi/mfXIJ-Fu5Fw/maxresdefault.jpg", "title" : "Static Code Analysis with Python", "videos" : [{"type" : "youtube", "url" : "https://www.youtube.com/watch?v=mfXIJ-Fu5Fw"}]} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "duration": {"type": "integer"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["description", "duration", "recorded", "speakers", "thumbnail_url", "title", "videos"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"name": {"type": "string"}, "inputPaths": {"type": "array", "items": {"type": "string"}}, "outputDir": {"type": "string"}, "args": {"type": "object", "properties": {"isLazy": {"type": "boolean"}, "operations": {"type": "array", "items": {"type": "object", "properties": {"outputPath": {"type": "string"}, "args": {"type": "object", "properties": {"height": {"type": "integer"}, "width": {"type": "integer"}, "cropFocus": {"type": "integer"}, "toFormat": {"type": "string"}, "fit": {"type": "string"}}, "required": ["height", "width", "cropFocus", "toFormat", "fit"]}}, "required": ["outputPath", "args"]}}, "pluginOptions": {"type": "object", "properties": {"base64Width": {"type": "integer"}, "forceBase64Format": {"type": "string"}, "useMozJpeg": {"type": "boolean"}, "stripMetadata": {"type": "boolean"}, "lazyImageGeneration": {"type": "boolean"}, "defaultQuality": {"type": "integer"}, "failOnError": {"type": "boolean"}, "plugins": {"type": "array", "items": {}}}, "required": ["base64Width", "forceBase64Format", "useMozJpeg", "stripMetadata", "lazyImageGeneration", "defaultQuality", "failOnError", "plugins"]}}, "required": ["isLazy", "operations", "pluginOptions"]}}, "required": ["name", "inputPaths", "outputDir", "args"]}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"expireTime" : 9007200895459688000, "key" : "2dcc04ff0622192393bb8cf163e02876", "val" : {"name" : "IMAGE_PROCESSING", "inputPaths" : ["/Users/frank/Desktop/inspiral_website/frontend/.cache/caches/gatsby-source-strapi/b4a15f9c6fb0d0d8353c5487555d8246/logo_4630168400.png"], "outputDir" : "/Users/frank/Desktop/inspiral_website/frontend/public/static/86094482dc28029a49699c79480324a1", "args" : {"isLazy" : false, "operations" : [{"outputPath" : "4ff32/logo_4630168400.webp", "args" : {"height" : 66, "width" : 250, "cropFocus" : 17, "toFormat" : "webp", "fit" : "cover"}}, {"outputPath" : "9da63/logo_4630168400.webp", "args" : {"height" : 133, "width" : 500, "cropFocus" : 17, "toFormat" : "webp", "fit" : "cover"}}, {"outputPath" : "f9ef2/logo_4630168400.webp", "args" : {"height" : 265, "width" : 1000, "cropFocus" : 17, "toFormat" : "webp", "fit" : "cover"}}], "pluginOptions" : {"base64Width" : 20, "forceBase64Format" : "", "useMozJpeg" : false, "stripMetadata" : true, "lazyImageGeneration" : true, "defaultQuality" : 50, "failOnError" : true, "plugins" : []}}}} | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"name": {"type": "string"}, "inputPaths": {"type": "array", "items": {"type": "string"}}, "outputDir": {"type": "string"}, "args": {"type": "object", "properties": {"isLazy": {"type": "boolean"}, "operations": {"type": "array", "items": {"type": "object", "properties": {"outputPath": {"type": "string"}, "args": {"type": "object", "properties": {"height": {"type": "integer"}, "width": {"type": "integer"}, "cropFocus": {"type": "integer"}, "toFormat": {"type": "string"}, "fit": {"type": "string"}}, "required": ["height", "width", "cropFocus", "toFormat", "fit"]}}, "required": ["outputPath", "args"]}}, "pluginOptions": {"type": "object", "properties": {"base64Width": {"type": "integer"}, "forceBase64Format": {"type": "string"}, "useMozJpeg": {"type": "boolean"}, "stripMetadata": {"type": "boolean"}, "lazyImageGeneration": {"type": "boolean"}, "defaultQuality": {"type": "integer"}, "failOnError": {"type": "boolean"}, "plugins": {"type": "array", "items": {}}}, "required": ["base64Width", "forceBase64Format", "useMozJpeg", "stripMetadata", "lazyImageGeneration", "defaultQuality", "failOnError", "plugins"]}}, "required": ["isLazy", "operations", "pluginOptions"]}}, "required": ["name", "inputPaths", "outputDir", "args"]}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"sweetalert2.all.js": {"type": "string"}, "sweetalert2.all.min.js": {"type": "string"}, "sweetalert2.css": {"type": "string"}, "sweetalert2.js": {"type": "string"}, "sweetalert2.min.css": {"type": "string"}, "sweetalert2.min.js": {"type": "string"}}, "required": ["sweetalert2.all.js", "sweetalert2.all.min.js", "sweetalert2.css", "sweetalert2.js", "sweetalert2.min.css", "sweetalert2.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sweetalert2.all.js" : "sha512-77tjF1lmRIwCP6KcKB4BDC94ehCNoG1zSdrAQ6FNJXpLGHwWQO8RGs9WqB39m+2pWyt86B8N2Z9yZdJgLeGsww==", "sweetalert2.all.min.js" : "sha512-iVVT35GByvCf2gyf55i+9M6XZJwrI4R7r8b4+qY2v7d4dlkuQssiCuuYWgjvGWCNSCSpILikIDH6BcRWj3OYpg==", "sweetalert2.css" : "sha512-2+sP3HDb08Uk+UmOUgrdwmYEp0r98wEcTgt+MpMOax/N0eKIIUW1hpOhb7PBeFdSjqakO/A6kYafmG1gpji2Og==", "sweetalert2.js" : "sha512-bCKrxY4/4NlKW3mGuhipb1wbpnfCETQ/0Tc9g4O1kSCmJCk1+UCidaJ+2XIIPXHtv4CWzRh/392mw6NElwNdAw==", "sweetalert2.min.css" : "sha512-DRKeJdzcpTVwMt1haSfdfzjPAglvI6eXKlx2MdhZ5zBe0dB6VR2YDAQMdd9UMYe1gMU7ik5CsgSAwO443zmErw==", "sweetalert2.min.js" : "sha512-HSaVxdnSQY76/GM87jPhQiX0uKZwDMCbMOL6cz8Ti+qD5lGYmZFzGiCzI4TZ0BcXhNN1i++VGUjf+pYGZg+egw=="} | json_instruct | {"type": "object", "properties": {"sweetalert2.all.js": {"type": "string"}, "sweetalert2.all.min.js": {"type": "string"}, "sweetalert2.css": {"type": "string"}, "sweetalert2.js": {"type": "string"}, "sweetalert2.min.css": {"type": "string"}, "sweetalert2.min.js": {"type": "string"}}, "required": ["sweetalert2.all.js", "sweetalert2.all.min.js", "sweetalert2.css", "sweetalert2.js", "sweetalert2.min.css", "sweetalert2.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"api_id": {"type": "string"}, "name_pretty": {"type": "string"}, "distribution_name": {"type": "string"}, "language": {"type": "string"}, "library_type": {"type": "string"}}, "required": ["api_id", "name_pretty", "distribution_name", "language", "library_type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"api_id" : "baremetalsolution:v1", "name_pretty" : "Bare Metal Solution API", "distribution_name" : "google-apis-baremetalsolution_v1", "language" : "ruby", "library_type" : "REST"} | json_instruct | {"type": "object", "properties": {"api_id": {"type": "string"}, "name_pretty": {"type": "string"}, "distribution_name": {"type": "string"}, "language": {"type": "string"}, "library_type": {"type": "string"}}, "required": ["api_id", "name_pretty", "distribution_name", "language", "library_type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "slug": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "string"}, "telephone": {"type": "string"}, "grant_date": {"type": "string"}, "activities": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "url", "slug", "name", "address", "telephone", "grant_date", "activities"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "M8782+P8782", "url" : "http://www.fsis.usda.gov/inspection/fsis-inspected-establishments/berks-packing-co-inc", "slug" : "berks-packing-co-inc", "name" : "Berks Packing Co., Inc.", "address" : "307-323 Bingaman Street \n Reading, PA 19602", "telephone" : "(610) 376-7291", "grant_date" : "2019-04-18", "activities" : ["Meat Processing", "Poultry Processing"]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "slug": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "string"}, "telephone": {"type": "string"}, "grant_date": {"type": "string"}, "activities": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "url", "slug", "name", "address", "telephone", "grant_date", "activities"], "$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"}, "author": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "photo": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "name", "photo", "url"]}, "url": {"type": "string"}, "published": {"type": "null"}, "wm-received": {"type": "string"}, "wm-id": {"type": "integer"}, "wm-source": {"type": "string"}, "wm-target": {"type": "string"}, "like-of": {"type": "string"}, "wm-property": {"type": "string"}, "wm-private": {"type": "boolean"}}, "required": ["type", "author", "url", "published", "wm-received", "wm-id", "wm-source", "wm-target", "like-of", "wm-property", "wm-private"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "entry", "author" : {"type" : "card", "name" : "georg fischer", "photo" : "https://webmention.io/avatar/assets.toot.cafe/655344dae474635a8f0d127f2e61ded71401267dc776dbd701dedc298168a46e.png", "url" : "https://mastodon.social/@snorpey"}, "url" : "https://toot.cafe/@petergoes/106309292601460064#favorited-by-2327", "published" : null, "wm-received" : "2021-05-28T00:05:16Z", "wm-id" : 1172789, "wm-source" : "https://brid.gy/like/mastodon/@[email protected]/106309292601460064/2327", "wm-target" : "https://www.petergoes.nl/blog/review-webmentions-before-publishing-with-github-actions/", "like-of" : "https://www.petergoes.nl/blog/review-webmentions-before-publishing-with-github-actions/", "wm-property" : "like-of", "wm-private" : false} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "author": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "photo": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "name", "photo", "url"]}, "url": {"type": "string"}, "published": {"type": "null"}, "wm-received": {"type": "string"}, "wm-id": {"type": "integer"}, "wm-source": {"type": "string"}, "wm-target": {"type": "string"}, "like-of": {"type": "string"}, "wm-property": {"type": "string"}, "wm-private": {"type": "boolean"}}, "required": ["type", "author", "url", "published", "wm-received", "wm-id", "wm-source", "wm-target", "like-of", "wm-property", "wm-private"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"acadYear": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "integer"}}, "corequisite": {"type": "string"}, "moduleCredit": {"type": "string"}, "moduleCode": {"type": "string"}, "semesterData": {"type": "array", "items": {}}, "fulfillRequirements": {"type": "array", "items": {"type": "string"}}}, "required": ["acadYear", "description", "title", "department", "faculty", "workload", "corequisite", "moduleCredit", "moduleCode", "semesterData", "fulfillRequirements"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"acadYear" : "2019/2020", "description" : "This module provides the tools and techniques of macro- and international economic thinking as applied to business. It provides a foundation for international management, particularly country risk analysis, finance, and other business disciplines. Specific learning outcomes are understanding of \n(i) Tracking the macro-economy; \n(ii) Sources of growth; \n(iii) Short-term fluctuations -- business cycle; (iv) Government policy; and (v) International trade and finance.\u201d", "title" : "Macroeconomics in the Global Economy", "department" : "BIZ Dean's Office", "faculty" : "NUS Business School", "workload" : [0, 3, 0, 4, 3], "corequisite" : "BMA 5001 \u201cManagerial Economics\u201d", "moduleCredit" : "4", "moduleCode" : "BMA5011", "semesterData" : [], "fulfillRequirements" : ["BMA5122A"]} | json_instruct | {"type": "object", "properties": {"acadYear": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "integer"}}, "corequisite": {"type": "string"}, "moduleCredit": {"type": "string"}, "moduleCode": {"type": "string"}, "semesterData": {"type": "array", "items": {}}, "fulfillRequirements": {"type": "array", "items": {"type": "string"}}}, "required": ["acadYear", "description", "title", "department", "faculty", "workload", "corequisite", "moduleCredit", "moduleCode", "semesterData", "fulfillRequirements"], "$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"}, "type": {"type": "string"}, "scripts": {"type": "object", "properties": {"problem1": {"type": "string"}, "problem2": {"type": "string"}, "problem31": {"type": "string"}, "problem32": {"type": "string"}, "problem3setup": {"type": "string"}, "problem3publisher": {"type": "string"}, "problem3subscriber": {"type": "string"}, "test": {"type": "string"}, "testCoverage": {"type": "string"}}, "required": ["problem1", "problem2", "problem31", "problem32", "problem3setup", "problem3publisher", "problem3subscriber", "test", "testCoverage"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@babel/plugin-transform-modules-commonjs": {"type": "string"}, "aedes": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "http-status-codes": {"type": "string"}, "jest": {"type": "string"}, "mqtt": {"type": "string"}, "node-fetch": {"type": "string"}}, "required": ["@babel/plugin-transform-modules-commonjs", "aedes", "dotenv", "express", "http-status-codes", "jest", "mqtt", "node-fetch"]}}, "required": ["name", "version", "type", "scripts", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "iot-problems", "version" : "1.0.0", "type" : "module", "scripts" : {"problem1" : "node ./problem1/problem1.js", "problem2" : "node ./problem2/problem2.js", "problem31" : "node ./problem3/problem31.js", "problem32" : "node ./problem3/problem32.js", "problem3setup" : "node ./problem3/mqtt/broker.js", "problem3publisher" : "node ./problem3/mqtt/publisher.js", "problem3subscriber" : "node ./problem3/mqtt/subscriber.js", "test" : "jest", "testCoverage" : "jest --coverage"}, "license" : "MIT", "dependencies" : {"@babel/plugin-transform-modules-commonjs" : "^7.16.0", "aedes" : "^0.46.1", "dotenv" : "^10.0.0", "express" : "^4.17.1", "http-status-codes" : "^2.1.4", "jest" : "^27.3.1", "mqtt" : "^4.2.8", "node-fetch" : "^3.1.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "scripts": {"type": "object", "properties": {"problem1": {"type": "string"}, "problem2": {"type": "string"}, "problem31": {"type": "string"}, "problem32": {"type": "string"}, "problem3setup": {"type": "string"}, "problem3publisher": {"type": "string"}, "problem3subscriber": {"type": "string"}, "test": {"type": "string"}, "testCoverage": {"type": "string"}}, "required": ["problem1", "problem2", "problem31", "problem32", "problem3setup", "problem3publisher", "problem3subscriber", "test", "testCoverage"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@babel/plugin-transform-modules-commonjs": {"type": "string"}, "aedes": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "http-status-codes": {"type": "string"}, "jest": {"type": "string"}, "mqtt": {"type": "string"}, "node-fetch": {"type": "string"}}, "required": ["@babel/plugin-transform-modules-commonjs", "aedes", "dotenv", "express", "http-status-codes", "jest", "mqtt", "node-fetch"]}}, "required": ["name", "version", "type", "scripts", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"welcome": {"type": "string"}, "english": {"type": "string"}, "vietnamese": {"type": "string"}}, "required": ["welcome", "english", "vietnamese"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"welcome" : "Welcome to Website!", "english" : "English", "vietnamese" : "Vi\u1ec7t Nam"} | json_instruct | {"type": "object", "properties": {"welcome": {"type": "string"}, "english": {"type": "string"}, "vietnamese": {"type": "string"}}, "required": ["welcome", "english", "vietnamese"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01030881": {"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": ["E01030881"]}, "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" : {"E01030881" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00157458", "LAD11CD" : "E07000216"}, "arcs" : [[0, 1, 2]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00157459", "LAD11CD" : "E07000216"}, "arcs" : [[3, -2, 4, 5]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00157460", "LAD11CD" : "E07000216"}, "arcs" : [[-6, 6, 7]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00157462", "LAD11CD" : "E07000216"}, "arcs" : [[-5, -1, 8, -7]]}]}}, "arcs" : [[[4836, 8795], [-379, -134], [-31, -198], [345, -323], [-561, -636], [97, -70], [267, 203], [112, -559], [-304, -198]], [[4382, 6880], [-453, 20], [-64, 249], [-263, -144], [-127, 143]], [[3475, 7148], [206, 334], [-46, 228], [-188, 103], [90, 369], [151, 76], [-114, 749], [-14, 35], [-172, 857], [681, -345], [151, 59], [170, -148], [150, -455], [26, -21], [56, 22], [107, 9], [48, -41], [59, -184]], [[2278, 6809], [101, 254], [570, -337], [248, 18], [278, 404]], [[4382, 6880], [138, -279], [250, 160], [29, -135], [-163, -208], [62, -601], [211, -203], [-39, -342], [-198, -137], [-249, 239], [-241, -275], [-475, 428], [-60, -397]], [[3647, 5130], [-132, 38], [-210, -329], [-226, -62], [-93, 481], [-205, 301], [-463, 312], [64, 744], [-104, 194]], [[3647, 5130], [-154, -1158], [25, -957], [229, -113], [26, -286]], [[3773, 2616], [-921, -817], [197, -378], [-18, -192], [-165, 41], [-40, -275], [-425, -365], [-142, -630], [-738, 344], [-303, 710], [123, 880], [-263, 413], [-119, 1487], [-173, 556], [-317, 371], [-465, 851], [-4, 21], [254, 93], [70, 265], [275, -88], [-134, 278], [81, -77], [49, 211], [-84, 77], [204, 1087], [-261, -3], [146, 528], [5, 110], [363, -714], [155, 103], [54, 316], [387, -6], [-80, -705], [93, -112], [257, 92], [444, -279]], [[4836, 8795], [66, -418], [351, 263], [256, 191], [460, 43], [44, 206], [498, 344], [66, 334], [488, 238], [172, -3], [404, -709], [104, 60], [-154, 655], [989, -214], [743, -514], [-113, 509], [697, -783], [92, -513], [-92, -574], [-3249, -3368], [-977, -715], [-906, -436], [-1002, -775]]], "transform" : {"scale" : [4.2806542424774405e-06, 2.010499167862339e-06], "translate" : [-0.805917698032858, 51.178740979965546]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01030881": {"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": ["E01030881"]}, "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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"creativestyle/csv-merger": {"type": "string"}, "creativestyle/google-sheets-downloader": {"type": "string"}}, "required": ["creativestyle/csv-merger", "creativestyle/google-sheets-downloader"]}}, "required": ["name", "type", "authors", "license", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "creativestyle/magento2-translation-importer", "type" : "project", "authors" : [{"name" : "Marek Zabrowarny", "email" : "[email protected]"}], "license" : "MIT", "require" : {"creativestyle/csv-merger" : "^1.0", "creativestyle/google-sheets-downloader" : "dev-develop"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"creativestyle/csv-merger": {"type": "string"}, "creativestyle/google-sheets-downloader": {"type": "string"}}, "required": ["creativestyle/csv-merger", "creativestyle/google-sheets-downloader"]}}, "required": ["name", "type", "authors", "license", "require"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"Version": {"type": "string"}, "Names": {"type": "object", "properties": {"nds_NL": {"type": "string"}}, "required": ["nds_NL"]}}, "required": ["Version", "Names"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Version" : "2.1.44.18", "Names" : {"nds_NL" : "West Low German"}} | json_instruct | {"type": "object", "properties": {"Version": {"type": "string"}, "Names": {"type": "object", "properties": {"nds_NL": {"type": "string"}}, "required": ["nds_NL"]}}, "required": ["Version", "Names"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe": {"type": "string"}, "avatar-img": {"type": "string"}, "folderName": {"type": "string"}, "thumbUrl": {"type": "string"}}, "required": ["name", "size", "link", "created_at", "downloads", "linkid", "convert", "achorname", "subscribe", "avatar-img", "folderName", "thumbUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "\u96c0\u513f\u6ee1\u5929\u98de20-03-12\u9ad8\u989c\u503c\u5916\u56f4\u5973\u795e\u8c03\u60c5\u6311\u9017\u6b32\u706b\u711a\u8eab", "size" : 163037660, "link" : "https://streamtape.com/e/l04AdRrM3yi74ze", "created_at" : "2022\u5e7404\u670823\u65e5 01:22:50", "downloads" : 0, "linkid" : "l04AdRrM3yi74ze", "convert" : "converted", "achorname" : "\u4e38\u5b50\u5466", "subscribe" : "0\u4f4d\u8ba2\u9605\u8005", "avatar-img" : "https://huyaimg.msstatic.com/avatar/1022/07/ec5fef7c7662720286fbbb12395390_180_135.jpg?1628178596?458648", "folderName" : "\u96c0\u513f\u6ee1\u5929\u98de20-03-12\u9ad8\u989c\u503c\u5916\u56f4\u5973\u795e\u8c03\u60c5\u6311\u9017\u6b32\u706b\u711a\u8eab", "thumbUrl" : "https://thumb.tapecontent.net/thumb/l04AdRrM3yi74ze/OApjd8OM87cZpry.jpg"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe": {"type": "string"}, "avatar-img": {"type": "string"}, "folderName": {"type": "string"}, "thumbUrl": {"type": "string"}}, "required": ["name", "size", "link", "created_at", "downloads", "linkid", "convert", "achorname", "subscribe", "avatar-img", "folderName", "thumbUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "29352041", "name" : "Kingsley Avenue", "nodes" : [{"type" : "node", "id" : 322868355, "lat" : 52.2545462, "lon" : -1.1654411}, {"type" : "node", "id" : 322868372, "lat" : 52.2547688, "lon" : -1.1659468}, {"type" : "node", "id" : 322868373, "lat" : 52.2555422, "lon" : -1.1672485}, {"type" : "node", "id" : 322868374, "lat" : 52.256098, "lon" : -1.1679782}, {"type" : "node", "id" : 330972767, "lat" : 52.2549708, "lon" : -1.1663375, "tags" : {"created_by" : "JOSM"}}, {"type" : "node", "id" : 330972769, "lat" : 52.2553153, "lon" : -1.1669477, "tags" : {"created_by" : "JOSM"}}, {"type" : "node", "id" : 7244873285, "lat" : 52.2557484, "lon" : -1.1675192}], "volunteer_postcode" : "NN11 4AS", "closest_distance" : 255} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "decimals", "address", "chainId"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Token GHvk", "symbol" : "GHvkd", "decimals" : 6, "address" : "GHvkdP7EmKdXzD6g7ojgt9i6DkXFYTJzD8bfq1QA9gUP", "chainId" : 103} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "decimals", "address", "chainId"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-contrib-concat": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "http-server": {"type": "string"}}, "required": ["grunt", "grunt-contrib-concat", "grunt-contrib-jshint", "grunt-contrib-uglify", "http-server"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "license": {"type": "string"}}, "required": ["name", "description", "version", "author", "repository", "devDependencies", "scripts", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mvcc-js", "description" : "The JavaScript used for internal Moraine Valley Community College web applications.", "version" : "2.0.0", "author" : "Eric Harms", "repository" : {}, "devDependencies" : {"grunt" : "~0.4.1", "grunt-contrib-concat" : "~0.5.1", "grunt-contrib-jshint" : "~0.10.0", "grunt-contrib-uglify" : "~0.11.0", "http-server" : "~0.6.1"}, "scripts" : {"start" : "http-server -a localhost -p 8000 -c-1"}, "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-contrib-concat": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "http-server": {"type": "string"}}, "required": ["grunt", "grunt-contrib-concat", "grunt-contrib-jshint", "grunt-contrib-uglify", "http-server"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "license": {"type": "string"}}, "required": ["name", "description", "version", "author", "repository", "devDependencies", "scripts", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Blend spinach, carrots, beet, pear, milk, banana, cottage cheese, walnuts, almonds, yogurt, honey, and cinnamon together in a blender until smooth."], "ingredients" : ["1 1/2 cups baby spinach leaves", "1 cup shredded carrots", "1/2 cup sliced raw beet", "1/2 pear, cored and chopped", "1/2 cup milk", "1/2 banana, sliced", "1/4 cup cottage cheese", "1/4 cup walnut halves", "1/4 cup whole almonds", "2 tablespoons Greek yogurt", "1 tablespoon honey", "1/2 teaspoon ground cinnamon"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Veggie, Fruit, and Nut Nutritious Green Smoothie!", "url" : "http://allrecipes.com/recipe/230643/veggie-fruit-and-nut-nutritious-gre/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "town": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1", "addressLine2", "town", "postcode"]}, "organisation": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "code", "name"]}}, "required": ["id", "name", "code", "address", "organisation"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "e3bdbee9-cecd-43da-8e1a-1e43c6dd2c92", "name" : "Newlands Primary School", "code" : "4", "address" : {"addressLine1" : "Dungells Lane", "addressLine2" : "Yateley", "town" : "Hampshire", "postcode" : "GU46 6EY"}, "organisation" : {"id" : "7d419a51-28e0-47f8-b0a2-462179e2370b", "code" : "1HW", "name" : "Forest Learning Alliance"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "town": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1", "addressLine2", "town", "postcode"]}, "organisation": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "code", "name"]}}, "required": ["id", "name", "code", "address", "organisation"], "$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"}, "description": {"type": "string"}, "weapontype": {"type": "string"}, "rarity": {"type": "string"}, "baseatk": {"type": "integer"}, "substat": {"type": "string"}, "subvalue": {"type": "string"}, "effectname": {"type": "string"}, "effect": {"type": "string"}, "r1": {"type": "array", "items": {"type": "string"}}, "r2": {"type": "array", "items": {"type": "string"}}, "r3": {"type": "array", "items": {"type": "string"}}, "r4": {"type": "array", "items": {"type": "string"}}, "r5": {"type": "array", "items": {"type": "string"}}, "weaponmaterialtype": {"type": "string"}}, "required": ["name", "description", "weapontype", "rarity", "baseatk", "substat", "subvalue", "effectname", "effect", "r1", "r2", "r3", "r4", "r5", "weaponmaterialtype"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Lame brute", "description" : "Capable d'\u00e9loigner les esprits et les individus mal intentionn\u00e9s, cette \u00e9p\u00e9e \u00e0 deux mains d\u00e9nu\u00e9e de tranchant est habit\u00e9e par une puissance divine.", "weapontype" : "\u00c9p\u00e9e \u00e0 deux mains", "rarity" : "5", "baseatk" : 46, "substat" : "ATQ", "subvalue" : "10.8", "effectname" : "Majest\u00e9 dor\u00e9e", "effect" : "Augmente la force du bouclier de {0}. Toucher un ennemi augmente l'ATQ de {1} pendant 8 s. Cet effet peut \u00eatre cumul\u00e9 5 fois au maximum et peut \u00eatre d\u00e9clench\u00e9 une fois toutes les 0,3 s. Lorsque vous \u00eates prot\u00e9g\u00e9 par un bouclier, l'augmentation d'ATQ de cet effet est de 100 %.", "r1" : ["20 %", "4 %"], "r2" : ["25 %", "5 %"], "r3" : ["30 %", "6 %"], "r4" : ["35 %", "7 %"], "r5" : ["40 %", "8 %"], "weaponmaterialtype" : ""} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "weapontype": {"type": "string"}, "rarity": {"type": "string"}, "baseatk": {"type": "integer"}, "substat": {"type": "string"}, "subvalue": {"type": "string"}, "effectname": {"type": "string"}, "effect": {"type": "string"}, "r1": {"type": "array", "items": {"type": "string"}}, "r2": {"type": "array", "items": {"type": "string"}}, "r3": {"type": "array", "items": {"type": "string"}}, "r4": {"type": "array", "items": {"type": "string"}}, "r5": {"type": "array", "items": {"type": "string"}}, "weaponmaterialtype": {"type": "string"}}, "required": ["name", "description", "weapontype", "rarity", "baseatk", "substat", "subvalue", "effectname", "effect", "r1", "r2", "r3", "r4", "r5", "weaponmaterialtype"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "boolean"}, "wayto": {"type": "object", "properties": {"28017": {"type": "string"}, "28019": {"type": "string"}}, "required": ["28017", "28019"]}, "timeto": {"type": "object", "properties": {"28017": {"type": "number"}, "28019": {"type": "number"}}, "required": ["28017", "28019"]}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 28018, "title" : ["[Jousting Fields, Viewing Stands]"], "description" : ["A heavy coat of fresh sawdust covers the aspen plank flooring, thrown down in an attempt to soak up pools of mud, dung, and spilled ale. Rough-hewn boards laid across bales of straw provide temporary seating at the rear of the stands, while the front has been roped-off and arranged with cushioned benches and high-backed chairs, a menacing-looking guard posted at the entrance. A royal blue banner stitched with a golden serpent hangs overhead, the eye of the serpent set with a polished lapis stone."], "paths" : ["Obvious paths: east, west"], "location" : false, "wayto" : {"28017" : "w", "28019" : "e"}, "timeto" : {"28017" : 0.2, "28019" : 0.2}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "boolean"}, "wayto": {"type": "object", "properties": {"28017": {"type": "string"}, "28019": {"type": "string"}}, "required": ["28017", "28019"]}, "timeto": {"type": "object", "properties": {"28017": {"type": "number"}, "28019": {"type": "number"}}, "required": ["28017", "28019"]}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto"], "$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"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"nightwatch": {"type": "string"}, "phantomjs-prebuilt": {"type": "string"}}, "required": ["nightwatch", "phantomjs-prebuilt"]}}, "required": ["name", "version", "main", "scripts", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "condenser-blackboxtest", "version" : "1.0.0", "main" : "false", "scripts" : {"start" : "nightwatch --config nightwatch.json"}, "license" : "MIT", "dependencies" : {"nightwatch" : "^1.4.3", "phantomjs-prebuilt" : "2.1.16"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"nightwatch": {"type": "string"}, "phantomjs-prebuilt": {"type": "string"}}, "required": ["nightwatch", "phantomjs-prebuilt"]}}, "required": ["name", "version", "main", "scripts", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"" : {"model" : "rankine:block/bromine_block"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"agent_version": {"type": "string"}, "integration": {"type": "string"}, "groups": {"type": "array", "items": {"type": "string"}}, "check": {"type": "string"}, "statuses": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["agent_version", "integration", "groups", "check", "statuses", "name", "description"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"agent_version" : "5.17.0", "integration" : "cassandra", "groups" : ["host", "instance"], "check" : "cassandra.nodetool.node_up", "statuses" : ["ok", "critical"], "name" : "N\u0153ud disponible", "description" : "L'Agent envoie ce check de service pour chaque n\u0153ud surveill\u00e9 du cluster. Renvoie CRITICAL si le n\u0153ud est indisponible. Si ce n'est pas le cas, renvoie OK."}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"agent_version": {"type": "string"}, "integration": {"type": "string"}, "groups": {"type": "array", "items": {"type": "string"}}, "check": {"type": "string"}, "statuses": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["agent_version", "integration", "groups", "check", "statuses", "name", "description"]}, "$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"}, "license": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"polymer": {"type": "string"}}, "required": ["polymer"]}, "devDependencies": {"type": "object", "properties": {"iron-component-page": {"type": "string"}, "paper-styles": {"type": "string"}}, "required": ["iron-component-page", "paper-styles"]}, "main": {"type": "array", "items": {"type": "string"}}, "ignore": {"type": "array", "items": {}}}, "required": ["name", "version", "license", "description", "authors", "keywords", "repository", "dependencies", "devDependencies", "main", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "filesystem-behavior", "version" : "1.1.8", "license" : "LICENSE.txt", "description" : "A filesystem behavior for filesystem elements.", "authors" : ["Pawel Psztyc", "Advanced REST client team"], "keywords" : ["web-components", "polymer", "files", "filesystem", "chrome"], "repository" : {"type" : "git", "url" : "git://github.com/advanced-rest-client/filesystem-behavior.git"}, "dependencies" : {"polymer" : "Polymer/polymer#^1.1.0"}, "devDependencies" : {"iron-component-page" : "PolymerElements/iron-component-page#^1.0.0", "paper-styles" : "PolymerElements/paper-styles#^1.0.4"}, "main" : ["filesystem-behavior.html", "filesystem-app-behavior.html", "sync-filesystem-behavior.html", "web-filesystem-behavior.html"], "ignore" : []} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"polymer": {"type": "string"}}, "required": ["polymer"]}, "devDependencies": {"type": "object", "properties": {"iron-component-page": {"type": "string"}, "paper-styles": {"type": "string"}}, "required": ["iron-component-page", "paper-styles"]}, "main": {"type": "array", "items": {"type": "string"}}, "ignore": {"type": "array", "items": {}}}, "required": ["name", "version", "license", "description", "authors", "keywords", "repository", "dependencies", "devDependencies", "main", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"dataType": {"type": "string"}, "longName": {"type": "string"}, "hl7Table": {"type": "string"}}, "required": ["dataType", "longName", "hl7Table"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dataType" : "NM", "longName" : "Co-Insurance Days (25)", "hl7Table" : ""} | json_instruct | {"type": "object", "properties": {"dataType": {"type": "string"}, "longName": {"type": "string"}, "hl7Table": {"type": "string"}}, "required": ["dataType", "longName", "hl7Table"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Pantao Raya, Poona Piagapo, Lanao del Norte, Northern Mindanao (Region X), PH", "locale" : "ph.northern-mindanao-region-x.lanao-del-norte.poona-piagapo.pantao-raya", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "14", "region_reference" : "10", "region_name" : "Northern Mindanao (Region X)", "province_id" : "41", "province_reference" : "41", "province_name" : "Lanao del Norte", "city_id" : "1051", "city_reference" : "807", "city_name" : "Poona Piagapo", "barangay_id" : "29977", "barangay_reference" : "20142", "barangay_name" : "Pantao Raya"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[124.100807, 8.06161], [124.099869, 8.0586], [124.09903, 8.05754], [124.098457, 8.05568], [124.098137, 8.05382], [124.098457, 8.0534], [124.098038, 8.05278], [124.09787, 8.05005], [124.097702, 8.04921], [124.09758, 8.04708], [124.097931, 8.04672], [124.097641, 8.0453], [124.097092, 8.04406], [124.096626, 8.04308], [124.094673, 8.0429], [124.092682, 8.04316], [124.089706, 8.04369], [124.087723, 8.04383], [124.085159, 8.04338], [124.084312, 8.06081], [124.100807, 8.06161]]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "mysticalagriculture:block/soulstone_cobble_column_inventory"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"best": {"type": "object", "properties": {"X": {"type": "integer"}, "Y": {"type": "integer"}, "Z": {"type": "integer"}, "label": {"type": "integer"}, "score": {"type": "number"}, "xcenter": {"type": "integer"}, "xmax": {"type": "number"}, "xmin": {"type": "number"}, "ycenter": {"type": "integer"}, "ymax": {"type": "number"}, "ymin": {"type": "number"}}, "required": ["X", "Y", "Z", "label", "score", "xcenter", "xmax", "xmin", "ycenter", "ymax", "ymin"]}, "faces": {"type": "array", "items": {"type": "object", "properties": {"X": {"type": "integer"}, "Y": {"type": "integer"}, "Z": {"type": "integer"}, "label": {"type": "integer"}, "score": {"type": "number"}, "xcenter": {"type": "integer"}, "xmax": {"type": "number"}, "xmin": {"type": "number"}, "ycenter": {"type": "integer"}, "ymax": {"type": "number"}, "ymin": {"type": "number"}}, "required": ["X", "Y", "Z", "label", "score", "xcenter", "xmax", "xmin", "ycenter", "ymax", "ymin"]}}}, "required": ["best", "faces"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"best" : {"X" : 49, "Y" : 61, "Z" : 576, "label" : 1, "score" : 1.0, "xcenter" : 181, "xmax" : 0.77197265625, "xmin" : 0.43701171875, "ycenter" : 112, "ymax" : 0.55078125, "ymin" : 0.199951171875}, "faces" : [{"X" : 49, "Y" : 61, "Z" : 576, "label" : 1, "score" : 1.0, "xcenter" : 181, "xmax" : 0.77197265625, "xmin" : 0.43701171875, "ycenter" : 112, "ymax" : 0.55078125, "ymin" : 0.199951171875}]} | json_instruct | {"type": "object", "properties": {"best": {"type": "object", "properties": {"X": {"type": "integer"}, "Y": {"type": "integer"}, "Z": {"type": "integer"}, "label": {"type": "integer"}, "score": {"type": "number"}, "xcenter": {"type": "integer"}, "xmax": {"type": "number"}, "xmin": {"type": "number"}, "ycenter": {"type": "integer"}, "ymax": {"type": "number"}, "ymin": {"type": "number"}}, "required": ["X", "Y", "Z", "label", "score", "xcenter", "xmax", "xmin", "ycenter", "ymax", "ymin"]}, "faces": {"type": "array", "items": {"type": "object", "properties": {"X": {"type": "integer"}, "Y": {"type": "integer"}, "Z": {"type": "integer"}, "label": {"type": "integer"}, "score": {"type": "number"}, "xcenter": {"type": "integer"}, "xmax": {"type": "number"}, "xmin": {"type": "number"}, "ycenter": {"type": "integer"}, "ymax": {"type": "number"}, "ymin": {"type": "number"}}, "required": ["X", "Y", "Z", "label", "score", "xcenter", "xmax", "xmin", "ycenter", "ymax", "ymin"]}}}, "required": ["best", "faces"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"$id": {"type": "string"}, "$schema": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "zipCode": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "minimum": {"type": "integer"}}, "required": ["type", "description", "minimum"]}}, "required": ["name", "zipCode"]}}, "required": ["$id", "$schema", "title", "type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$id" : "https://example.com/city.schema.json", "$schema" : "http://json-schema.org/draft-07/schema#", "title" : "City", "type" : "object", "properties" : {"name" : {"type" : "string", "description" : "The city's name."}, "zipCode" : {"type" : "integer", "description" : "The zip code.", "minimum" : 0}}} | json_instruct | {"type": "object", "properties": {"$id": {"type": "string"}, "$schema": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "zipCode": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "minimum": {"type": "integer"}}, "required": ["type", "description", "minimum"]}}, "required": ["name", "zipCode"]}}, "required": ["$id", "$schema", "title", "type", "properties"], "$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"}, "main": {"type": "array", "items": {"type": "object", "properties": {"docid": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "imgsrc": {"type": "string"}}, "required": ["docid", "title", "url", "imgsrc"]}}}, "required": ["id", "main"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 1, "main" : [{"docid" : "EP79A80Q0001899N", "title" : "\u6240\u7f57\u95e8\u7fa4\u5c9b\u88ab\u66dd\u5373\u5c06\u9a71\u9010\u53f0\"\u5927\u4f7f\" \u53f0\u5f53\u5c40\u56de\u5e94", "url" : "http://3g.163.com/news/19/0916/17/EP79A80Q0001899N.html", "imgsrc" : "http://cms-bucket.ws.126.net/2019/09/16/64bd2adbe28a483c9a6217cf6ce1704d.png"}, {"docid" : "EP7B0HMR0001875N", "title" : "\"\u5149\u5934\u8b66\u957f\"\u5f00\u5fae\u535a\u7ed9\u5185\u5730\u7f51\u53cb\u95ee\u597d \u7b80\u4ecb:\u6211\u662f\u4e2d\u56fd\u4eba", "url" : "http://3g.163.com/news/19/0916/17/EP7B0HMR0001875N.html", "imgsrc" : "http://cms-bucket.ws.126.net/2019/09/16/58e25283cef04b3194a4da0d5100f3ee.png"}]}, {"id" : 2, "main" : [{"docid" : "EP7B73360001899N", "title" : "\u7537\u5b50\u9a91\u7535\u52a8\u8f66\u5250\u906e\u9633\u68da\u90e8\u4ef6\u5f39\u51fa \u8def\u4eba\u5de6\u773c\u88ab\u523a\u5931\u660e", "url" : "http://3g.163.com/news/19/0916/17/EP7B73360001899N.html", "imgsrc" : "http://cms-bucket.ws.126.net/2019/09/16/e8551cb430e6449d88e9ce95404d551a.png"}, {"docid" : "EP7F8B7Q00019D51", "imgsrc" : "http://cms-bucket.ws.126.net/2019/09/16/cd1027c49b44483a917dd9f95454fc4a.png", "title" : "\u60ca\u6389\u4e0b\u5df4\u7684\u5927\u795e\u4e4b\u4f5c\uff0c\u79bb\u6211\u4eec\u7a76\u7adf\u6709\u591a\u8fdc", "url" : "http://3g.163.com/news/19/0916/18/EP7F8B7Q00019D51.html"}]}, {"id" : 3, "main" : [{"docid" : "EP6IA5BO0001875P", "title" : "\u5973\u5b50\u76f8\u4eb2\u88ab\u9a97\u5931\u8eab\uff1a\u5df2\u5a5a\u7537\u5728\u4e16\u7eaa\u4f73\u7f18\u4e5f\u80fd\u901a\u8fc7\u6ce8\u518c", "imgsrc" : "http://cms-bucket.ws.126.net/2019/09/16/4ed7164495cc44d89a71145ba9a5ff3a.png", "url" : "http://3g.163.com/news/19/0916/10/EP6IA5BO0001875P.html"}, {"docid" : "EP73UCLI0001899O", "title" : "CNN\u7ec8\u4e8e\u627f\u8ba4:\u9999\u6e2f\u7684\u793a\u5a01\u8005\u53d8\u5f97\u66f4\u52a0\u66b4\u529b\u548c\u4e11\u964b", "imgsrc" : "http://cms-bucket.ws.126.net/2019/09/16/13e3caf0b61d47fc9c66e2def8d58b2e.png", "url" : "http://3g.163.com/news/19/0916/15/EP73UCLI0001899O.html"}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "main": {"type": "array", "items": {"type": "object", "properties": {"docid": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "imgsrc": {"type": "string"}}, "required": ["docid", "title", "url", "imgsrc"]}}}, "required": ["id", "main"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "php-proxy", "description" : "https://github.com/abhishekhbhootwala/php-proxy-app"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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" : "170501040203", "variable1" : 0.7739, "variable2" : 0.302, "variable3" : "C"} | 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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"illuminate/view": {"type": "string"}}, "required": ["illuminate/view"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Wuwx\\LaravelPlusView\\": {"type": "string"}}, "required": ["Wuwx\\LaravelPlusView\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}}, "required": ["providers"]}}, "required": ["laravel"]}}, "required": ["name", "type", "keywords", "license", "authors", "require", "autoload", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "wuwx/laravel-plus-view", "type" : "library", "keywords" : ["laravel", "view"], "license" : "MIT", "authors" : [{"name" : "Wu Weixin", "email" : "[email protected]"}], "require" : {"illuminate/view" : "5.*|6.*|7.*"}, "autoload" : {"psr-4" : {"Wuwx\\LaravelPlusView\\" : "src/"}}, "extra" : {"laravel" : {"providers" : ["Wuwx\\LaravelPlusView\\LaravelPlusViewServiceProvider"]}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"illuminate/view": {"type": "string"}}, "required": ["illuminate/view"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Wuwx\\LaravelPlusView\\": {"type": "string"}}, "required": ["Wuwx\\LaravelPlusView\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}}, "required": ["providers"]}}, "required": ["laravel"]}}, "required": ["name", "type", "keywords", "license", "authors", "require", "autoload", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stationId" : 1121909, "stationGroupId" : 1121909, "name" : "\u8429\u751f", "lineId" : 11219, "zipCode" : "999-0602", "pref" : "\u5c71\u5f62\u770c", "city" : "\u897f\u7f6e\u8cdc\u90e1\u98ef\u8c4a\u753a", "town" : "\u8429\u751f", "longitude" : 140.004207, "latitude" : 38.06182, "status" : 0} | json_instruct | {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "rechiseled_compat:block/byg_zelkova_planks_bricks"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "Handguard War Sport LVOA-S blk. for use with AR-15 and compatible", "ShortName" : "LVOA-S blk.", "Description" : "Lightweight handguard War Sport LVOA-S (SBR) for use with sport rifles based on AR-15"} | json_instruct | {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"exec": {"type": "string"}, "watch": {"type": "array", "items": {"type": "string"}}, "ext": {"type": "string"}}, "required": ["exec", "watch", "ext"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"exec" : "yarn dev", "watch" : ["src/*"], "ext" : "js json"} | json_instruct | {"type": "object", "properties": {"exec": {"type": "string"}, "watch": {"type": "array", "items": {"type": "string"}}, "ext": {"type": "string"}}, "required": ["exec", "watch", "ext"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"lodash.core.js": {"type": "string"}, "lodash.core.min.js": {"type": "string"}, "lodash.fp.js": {"type": "string"}, "lodash.fp.min.js": {"type": "string"}, "lodash.js": {"type": "string"}, "lodash.min.js": {"type": "string"}, "mapping.fp.js": {"type": "string"}}, "required": ["lodash.core.js", "lodash.core.min.js", "lodash.fp.js", "lodash.fp.min.js", "lodash.js", "lodash.min.js", "mapping.fp.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"lodash.core.js" : "sha512-5WWrqLU6xM17dc8tkBMKz6O3BKs/0h2Aylvy2lijAQrHhAoKlipZS9LwQg3owZznphfohbX5NseTBx+4V+THZA==", "lodash.core.min.js" : "sha512-Mu9462mUjxmlgC4OF5APnmCgtVUkcAfe6TWSlVvuyb+zbUKRtKSGkn6SucDPm7doOBYbbg39r9x+qOQPEqdeGg==", "lodash.fp.js" : "sha512-mNDsxZFlvTSMaxIp9c2NEpA+b6CuEd8mY0I2+ejR/oAgZAXh3HOc5hsonwnyAa35UCzQvcRnYR/cf7EYZGb3KQ==", "lodash.fp.min.js" : "sha512-F3fzIz65q9v4bbVxkWa35ZNXflpevty4ZW8FzT5BvaJVvUfRd+D3B7h7sj+Jsmj/2gWJVmWE639I/haKuswPRg==", "lodash.js" : "sha512-ab/IjH8K2+DJpUyXb+KH1jRsrwRQcmxrFcMTPL86BnZ2lpZIWU3ccM/8PIXZQ+FZcqZiC99LgHt64V2Ysz0MNg==", "lodash.min.js" : "sha512-TfrWbSUdUd9UiznC7GqAqTbRORJsw2rgUYjiKLCKD+J1DY4qOaeqNMAP/dSaiHTVs3RYxHry3rmIDk/3bnA/LA==", "mapping.fp.js" : "sha512-V/c0x5tmrhqf//VCzAXQ0qaSDRbga2CSpD4kfJzJ46+vFUO4ZTHyNne5SPHm0g6Hvh3XNsDsEGQTymsiAU+72w=="} | json_instruct | {"type": "object", "properties": {"lodash.core.js": {"type": "string"}, "lodash.core.min.js": {"type": "string"}, "lodash.fp.js": {"type": "string"}, "lodash.fp.min.js": {"type": "string"}, "lodash.js": {"type": "string"}, "lodash.min.js": {"type": "string"}, "mapping.fp.js": {"type": "string"}}, "required": ["lodash.core.js", "lodash.core.min.js", "lodash.fp.js", "lodash.fp.min.js", "lodash.js", "lodash.min.js", "mapping.fp.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"URL": {"type": "string"}, "heading": {"type": "string"}, "subheading": {"type": "string"}, "author": {"type": "string"}, "category": {"type": "string"}, "type": {"type": "string"}, "timestamp": {"type": "string"}, "text": {"type": "string"}}, "required": ["URL", "heading", "subheading", "author", "category", "type", "timestamp", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"URL" : "https://www.wired.com/2000/11/unsinkable-unthinkable", "heading" : "unsinkable? unthinkable!", "subheading" : "here's an idea that strains credulity, even in a city fabled for its oddballs and eccentrics. port commissioners in san francisco are apparently seriously considering a proposal to permanently berth a floating hotel at the city's pier 35, hard by fisherman's wharf. the kicker? it would be an exact replica of the titanic, stretching 860 feet into the bay. despite mayor willie brown's enthusiasm for the project, the locals are giving it, shall we say, an icy reception. stay tuned.", "author" : "wired staff", "category" : "culture", "type" : "article", "timestamp" : "11.02.2000 01:00 PM", "text" : "here's an idea that strains credulity, even in a city fabled for its oddballs and eccentrics. port commissioners in san francisco are apparently seriously considering a proposal to permanently berth a floating hotel at the city's pier 35, hard by fisherman's wharf. the kicker? it would be an exact replica of the titanic, stretching 860 feet into the bay. despite mayor willie brown's enthusiasm for the project, the locals are giving it, shall we say, an icy reception. stay tuned."} | json_instruct | {"type": "object", "properties": {"URL": {"type": "string"}, "heading": {"type": "string"}, "subheading": {"type": "string"}, "author": {"type": "string"}, "category": {"type": "string"}, "type": {"type": "string"}, "timestamp": {"type": "string"}, "text": {"type": "string"}}, "required": ["URL", "heading", "subheading", "author", "category", "type", "timestamp", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"decrease": {"type": "string"}, "increase": {"type": "string"}, "numberField": {"type": "string"}}, "required": ["decrease", "increase", "numberField"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"decrease" : "{fieldLabel} azalt", "increase" : "{fieldLabel} artt\u0131r", "numberField" : "Say\u0131 alan\u0131"} | json_instruct | {"type": "object", "properties": {"decrease": {"type": "string"}, "increase": {"type": "string"}, "numberField": {"type": "string"}}, "required": ["decrease", "increase", "numberField"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"logs": {"type": "array", "items": {"type": "object", "properties": {"outputFile": {"type": "string"}, "map": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "from": {"type": "object", "properties": {"startLines": {"type": "string"}, "startColumns": {"type": "string"}, "startOffsets": {"type": "string"}, "endLines": {"type": "string"}, "endColumns": {"type": "string"}, "endOffsets": {"type": "string"}}, "required": ["startLines", "startColumns", "startOffsets", "endLines", "endColumns", "endOffsets"]}, "to": {"type": "object", "properties": {"startLines": {"type": "string"}, "startColumns": {"type": "string"}, "startOffsets": {"type": "string"}, "endLines": {"type": "string"}, "endColumns": {"type": "string"}, "endOffsets": {"type": "string"}}, "required": ["startLines", "startColumns", "startOffsets", "endLines", "endColumns", "endOffsets"]}}, "required": ["source", "from", "to"]}}}, "required": ["outputFile", "map"]}}}, "required": ["logs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"logs" : [{"outputFile" : "C:\\Users\\HP\\examples\\lite\\examples\\gesture_classification\\android-yolo-v2\\gradleBuild\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v21\\values-v21.xml", "map" : [{"source" : "C:\\Users\\HP\\examples\\lite\\examples\\gesture_classification\\android-yolo-v2\\res\\values-v21\\base-template-styles.xml", "from" : {"startLines" : "5", "startColumns" : "4", "startOffsets" : "91", "endLines" : "6", "endColumns" : "12", "endOffsets" : "168"}, "to" : {"startLines" : "2", "startColumns" : "4", "startOffsets" : "55", "endLines" : "3", "endColumns" : "12", "endOffsets" : "131"}}]}]} | json_instruct | {"type": "object", "properties": {"logs": {"type": "array", "items": {"type": "object", "properties": {"outputFile": {"type": "string"}, "map": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "from": {"type": "object", "properties": {"startLines": {"type": "string"}, "startColumns": {"type": "string"}, "startOffsets": {"type": "string"}, "endLines": {"type": "string"}, "endColumns": {"type": "string"}, "endOffsets": {"type": "string"}}, "required": ["startLines", "startColumns", "startOffsets", "endLines", "endColumns", "endOffsets"]}, "to": {"type": "object", "properties": {"startLines": {"type": "string"}, "startColumns": {"type": "string"}, "startOffsets": {"type": "string"}, "endLines": {"type": "string"}, "endColumns": {"type": "string"}, "endOffsets": {"type": "string"}}, "required": ["startLines", "startColumns", "startOffsets", "endLines", "endColumns", "endOffsets"]}}, "required": ["source", "from", "to"]}}}, "required": ["outputFile", "map"]}}}, "required": ["logs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-pdo": {"type": "string"}}, "required": ["php", "ext-pdo"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Hashbang\\": {"type": "string"}}, "required": ["Hashbang\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "version", "type", "homepage", "license", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "codification-nl/hashbang", "description" : "It's just really easy", "version" : "3.0.0", "type" : "library", "homepage" : "https://github.com/codification-nl/Hashbang", "license" : "MIT", "authors" : [{"name" : "Kevin Wijsenbach", "email" : "[email protected]"}], "require" : {"php" : "^7.1.0", "ext-pdo" : "*"}, "autoload" : {"psr-4" : {"Hashbang\\" : "lib/Hashbang/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-pdo": {"type": "string"}}, "required": ["php", "ext-pdo"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Hashbang\\": {"type": "string"}}, "required": ["Hashbang\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "version", "type", "homepage", "license", "authors", "require", "autoload"], "$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"}, "test": {"type": "string"}}, "required": ["start", "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": {"body-parser": {"type": "string"}, "cors": {"type": "string"}, "express": {"type": "string"}, "mongoose": {"type": "string"}}, "required": ["body-parser", "cors", "express", "mongoose"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-config-standard": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-node": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "eslint-plugin-promise": {"type": "string"}}, "required": ["eslint", "eslint-config-prettier", "eslint-config-standard", "eslint-plugin-import", "eslint-plugin-node", "eslint-plugin-prettier", "eslint-plugin-promise"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "budget-app", "version" : "1.0.0", "description" : "budget app", "main" : "index.js", "scripts" : {"start" : "node ./src/app.js", "test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/anastasiya-nd/budget-app.git"}, "author" : "[email protected]", "license" : "ISC", "bugs" : {"url" : "https://github.com/anastasiya-nd/budget-app/issues"}, "homepage" : "https://github.com/anastasiya-nd/budget-app#readme", "dependencies" : {"body-parser" : "^1.19.0", "cors" : "^2.8.5", "express" : "^4.17.1", "mongoose" : "^5.13.4"}, "devDependencies" : {"eslint" : "^7.32.0", "eslint-config-prettier" : "^8.3.0", "eslint-config-standard" : "^16.0.3", "eslint-plugin-import" : "^2.23.4", "eslint-plugin-node" : "^11.1.0", "eslint-plugin-prettier" : "^3.4.0", "eslint-plugin-promise" : "^5.1.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "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": {"body-parser": {"type": "string"}, "cors": {"type": "string"}, "express": {"type": "string"}, "mongoose": {"type": "string"}}, "required": ["body-parser", "cors", "express", "mongoose"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-config-standard": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-node": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "eslint-plugin-promise": {"type": "string"}}, "required": ["eslint", "eslint-config-prettier", "eslint-config-standard", "eslint-plugin-import", "eslint-plugin-node", "eslint-plugin-prettier", "eslint-plugin-promise"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"value" : ["2004-03-18", "1982-03-29", "1991-07-13", "1998-06-30", "1992-03-20", "2017-10-12"]} | json_instruct | {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"rigidBodies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "imagePath": {"type": "string"}, "origin": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}, "polygons": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}}, "circles": {"type": "array", "items": {}}, "shapes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "vertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}}, "required": ["type", "vertices"]}}}, "required": ["name", "imagePath", "origin", "polygons", "circles", "shapes"]}}, "dynamicObjects": {"type": "array", "items": {}}}, "required": ["rigidBodies", "dynamicObjects"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rigidBodies" : [{"name" : "koala", "imagePath" : "koala.png", "origin" : {"x" : 0.5049999952316284, "y" : 0.5112499594688416}, "polygons" : [[{"x" : 0.2500000596046448, "y" : 0.5575000643730164}, {"x" : 0.024999946355819702, "y" : 0.2275000512599945}, {"x" : 0.054999977350234985, "y" : 0.042500048875808716}, {"x" : 0.9499999284744263, "y" : 0.042500048875808716}, {"x" : 0.9700000286102295, "y" : 0.20250004529953003}, {"x" : 0.7849999666213989, "y" : 0.5224999189376831}], [{"x" : 0.7849999666213989, "y" : 0.5224999189376831}, {"x" : 0.8999999761581421, "y" : 0.9624999761581421}, {"x" : 0.10499995946884155, "y" : 0.9575000405311584}, {"x" : 0.2500000596046448, "y" : 0.5575000643730164}]], "circles" : [], "shapes" : [{"type" : "POLYGON", "vertices" : [{"x" : 0.10499995946884155, "y" : 0.9575000405311584}, {"x" : 0.8999999761581421, "y" : 0.9624999761581421}, {"x" : 0.7849999666213989, "y" : 0.5224999189376831}, {"x" : 0.9700000286102295, "y" : 0.20250004529953003}, {"x" : 0.9499999284744263, "y" : 0.042500048875808716}, {"x" : 0.054999977350234985, "y" : 0.042500048875808716}, {"x" : 0.024999946355819702, "y" : 0.2275000512599945}, {"x" : 0.2500000596046448, "y" : 0.5575000643730164}]}]}], "dynamicObjects" : []} | json_instruct | {"type": "object", "properties": {"rigidBodies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "imagePath": {"type": "string"}, "origin": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}, "polygons": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}}, "circles": {"type": "array", "items": {}}, "shapes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "vertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}}, "required": ["type", "vertices"]}}}, "required": ["name", "imagePath", "origin", "polygons", "circles", "shapes"]}}, "dynamicObjects": {"type": "array", "items": {}}}, "required": ["rigidBodies", "dynamicObjects"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"opt1": {"type": "integer"}, "opt2": {"type": "integer"}, "param1": {"type": "string"}, "param2": {"type": "string"}}, "required": ["opt1", "opt2", "param1", "param2"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"opt1" : 10, "opt2" : 10, "param1" : "/tmp/test.npz.gz", "param2" : "/tmp/test.one.three.two"} | json_instruct | {"type": "object", "properties": {"opt1": {"type": "integer"}, "opt2": {"type": "integer"}, "param1": {"type": "string"}, "param2": {"type": "string"}}, "required": ["opt1", "opt2", "param1", "param2"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "dna": {"type": "string"}, "edition": {"type": "integer"}, "date": {"type": "integer"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}, "compiler": {"type": "string"}}, "required": ["name", "description", "image", "dna", "edition", "date", "attributes", "compiler"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "CryptoMan #807", "description" : "3.333 Generated CryptoMan", "image" : "ipfs://QmeCE2nHW6q3aZ3ybo7qAwpr5KWVqTyLmN7GpXurgDWPk7/807.png", "dna" : "12e933bacef12cf144723709a6ba33fa5ebbccb4", "edition" : 807, "date" : 1641610355339, "attributes" : [{"trait_type" : "background", "value" : "orange"}, {"trait_type" : "color", "value" : "man"}, {"trait_type" : "hair", "value" : "yellow"}, {"trait_type" : "eyes", "value" : "orange"}, {"trait_type" : "glasses", "value" : "pink"}], "compiler" : "CryptoMan"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "dna": {"type": "string"}, "edition": {"type": "integer"}, "date": {"type": "integer"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}, "compiler": {"type": "string"}}, "required": ["name", "description", "image", "dna", "edition", "date", "attributes", "compiler"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "number"}}, "required": ["xmin", "width", "ymin", "height"]}, "relativeKeypoints": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "number"}, "x": {"type": "number"}}, "required": ["y", "x"]}}, "format": {"type": "string"}}, "required": ["relativeBoundingBox", "relativeKeypoints", "format"]}, "score": {"type": "array", "items": {"type": "number"}}, "label": {"type": "array", "items": {"type": "string"}}}, "required": ["locationData", "score", "label"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"locationData" : {"relativeBoundingBox" : {"xmin" : 0.5112263, "width" : 0.058968186, "ymin" : 0.6025015, "height" : 0.07371031}, "relativeKeypoints" : [{"y" : 0.6090855, "x" : 0.5425332}, {"y" : 0.66870093, "x" : 0.5461654}, {"y" : 0.6669572, "x" : 0.5373681}, {"y" : 0.66098106, "x" : 0.5295409}, {"y" : 0.65296394, "x" : 0.5228143}, {"y" : 0.6165746, "x" : 0.55219334}, {"y" : 0.6422314, "x" : 0.55374855}], "format" : "RELATIVE_BOUNDING_BOX"}, "score" : [0.9980732], "label" : ["Palm"]} | json_instruct | {"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "number"}}, "required": ["xmin", "width", "ymin", "height"]}, "relativeKeypoints": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "number"}, "x": {"type": "number"}}, "required": ["y", "x"]}}, "format": {"type": "string"}}, "required": ["relativeBoundingBox", "relativeKeypoints", "format"]}, "score": {"type": "array", "items": {"type": "number"}}, "label": {"type": "array", "items": {"type": "string"}}}, "required": ["locationData", "score", "label"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "title" : "Untitled", "id" : "208943183", "bbox" : [5.973109, 35.672022, 5.973109, 35.672022], "description" : "An ancient place, cited: BAtlas 34 D2 unnamed feature ()", "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [5.973109, 35.672022]}, "properties" : {"description" : "representative point"}}, {"geometry" : {"type" : "Point", "coordinates" : [5.973109, 35.672022]}, "id" : "darmc-location-19500", "type" : "Feature", "properties" : {"description" : "500K scale point location", "location_precision" : "precise", "title" : "DARMC location 19500", "link" : "http://pleiades.stoa.org/places/208943183/darmc-location-19500"}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "ee497dd7d41571d53884fe6e583a748df8292175"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"status": {"type": "string"}, "segmentation": {"type": "string"}, "url": {"type": "string"}, "character": {"type": "string"}, "label": {"type": "string"}, "id": {"type": "string"}}, "required": ["status", "segmentation", "url", "character", "label", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status" : "OK", "segmentation" : "candidate-segmentation", "url" : "/segment-image/fde68d68-7010-48ae-a5a3-9930260f4afa/candidate-segmentation/924", "character" : "8", "label" : "924", "id" : "fde68d68-7010-48ae-a5a3-9930260f4afa"} | json_instruct | {"type": "object", "properties": {"status": {"type": "string"}, "segmentation": {"type": "string"}, "url": {"type": "string"}, "character": {"type": "string"}, "label": {"type": "string"}, "id": {"type": "string"}}, "required": ["status", "segmentation", "url", "character", "label", "id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"skeleton.js": {"type": "string"}, "skeleton.min.js": {"type": "string"}}, "required": ["skeleton.js", "skeleton.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"skeleton.js" : "sha512-KIO0d4MX6P0pnOMvH9vL/5HexwmbwTjszu9nVvaL6us0ccbu2Y8iuRHwXl/ko+aqI/yk3tVKheEz7OcPngd94g==", "skeleton.min.js" : "sha512-hKdcOX08iSxMuaSPOtQmQQEXGDVRXDEdXVYv6hQBxMEf3Vnk0POJnGeQ7DvIBsleRPaapbbs8kgsxHFyosTErw=="} | json_instruct | {"type": "object", "properties": {"skeleton.js": {"type": "string"}, "skeleton.min.js": {"type": "string"}}, "required": ["skeleton.js", "skeleton.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"server": {"type": "object", "properties": {"baseDir": {"type": "array", "items": {"type": "string"}}}, "required": ["baseDir"]}, "injectChanges": {"type": "boolean"}, "files": {"type": "array", "items": {"type": "string"}}, "watchOptions": {"type": "object", "properties": {"ignored": {"type": "array", "items": {"type": "string"}}}, "required": ["ignored"]}}, "required": ["server", "injectChanges", "files", "watchOptions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"server" : {"baseDir" : ["./src", "./src/images", "./build/contracts"]}, "injectChanges" : true, "files" : ["./**/*.{html,css,js,jpg,svg}"], "watchOptions" : {"ignored" : ["node_modules", "src/**/*.*", "app/**/*.js"]}} | json_instruct | {"type": "object", "properties": {"server": {"type": "object", "properties": {"baseDir": {"type": "array", "items": {"type": "string"}}}, "required": ["baseDir"]}, "injectChanges": {"type": "boolean"}, "files": {"type": "array", "items": {"type": "string"}}, "watchOptions": {"type": "object", "properties": {"ignored": {"type": "array", "items": {"type": "string"}}}, "required": ["ignored"]}}, "required": ["server", "injectChanges", "files", "watchOptions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "directories": {"type": "object", "properties": {"example": {"type": "string"}}, "required": ["example"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-plugin-babel": {"type": "string"}, "eslint-plugin-flowtype": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "rackt-cli": {"type": "string"}, "react": {"type": "string"}, "reflux": {"type": "string"}}, "required": ["eslint", "eslint-plugin-babel", "eslint-plugin-flowtype", "eslint-plugin-react", "rackt-cli", "react", "reflux"]}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}, "reflux": {"type": "string"}}, "required": ["react", "reflux"]}, "tags": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "repository", "homepage", "bugs", "directories", "scripts", "authors", "license", "devDependencies", "peerDependencies", "tags", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "reflux-rehydrate", "version" : "0.1.3", "description" : "Rehydrate RefluxJS stores, to support isomorphic rendering, or loading from local storage (running offline or recovering unsaved data)", "main" : "./lib/index.js", "repository" : {"type" : "git", "url" : "https://github.com/maphubs/reflux-rehydrate"}, "homepage" : "https://github.com/maphubs/reflux-rehydrate", "bugs" : "https://github.com/maphubs/reflux-rehydrate/issues", "directories" : {"example" : "examples"}, "scripts" : {"test" : "", "start" : "rackt server"}, "authors" : ["Kristofor Carle <[email protected]>"], "license" : "MIT", "devDependencies" : {"eslint" : "^3.19.0", "eslint-plugin-babel" : "^4.1.1", "eslint-plugin-flowtype" : "^2.32.1", "eslint-plugin-react" : "^6.10.3", "rackt-cli" : "^0.4.0", "react" : "^0.13.3", "reflux" : "^6.4.1"}, "peerDependencies" : {"react" : "^15.5.0", "reflux" : "^6.4.1"}, "tags" : [""], "keywords" : ["Reflux", "React", "isomorphic", "rehydrate"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "directories": {"type": "object", "properties": {"example": {"type": "string"}}, "required": ["example"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-plugin-babel": {"type": "string"}, "eslint-plugin-flowtype": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "rackt-cli": {"type": "string"}, "react": {"type": "string"}, "reflux": {"type": "string"}}, "required": ["eslint", "eslint-plugin-babel", "eslint-plugin-flowtype", "eslint-plugin-react", "rackt-cli", "react", "reflux"]}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}, "reflux": {"type": "string"}}, "required": ["react", "reflux"]}, "tags": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "repository", "homepage", "bugs", "directories", "scripts", "authors", "license", "devDependencies", "peerDependencies", "tags", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"ShrinkRay": {"type": "array", "items": {"type": "string"}}}, "required": ["ShrinkRay"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ShrinkRay" : ["ReversePolarity", "ScienceMarchesOn", "DiscreditedTrope", "IncredibleShrinkingMan", "NoConservationOfMass", "ShapeshifterBaggage", "OminousOwl", "ThoseTwoBadGuys", "DependingOnTheWriter", "ColonyDrop", "HoistByHisOwnPetard", "AirVentPassageway", "HoistByHisOwnPetard", "AirVentPassageway", "Pun", "AttackOfTheFiftyFootWhatever", "KillerRobot", "BigBad", "UrExample", "BigBad", "LudicrousGibs", "ImprovisedWeapon", "BigBad", "HandWave", "SizeShifter", "MagicalComputer", "TheMaster", "SquareCubeLaw", "TheMaster", "SquareCubeLaw", "FantasticVoyagePlot", "FantasticVoyagePlot", "RedShirt", "AttackDrones", "BountyHunter", "MST3KMantra", "VillainOfTheWeek", "TheSeventies", "Expy", "RobotBuddy", "Macekre", "SizeShifter", "TheMaster", "SquareCubeLaw", "TheMaster", "SquareCubeLaw", "FantasticVoyagePlot", "FantasticVoyagePlot", "RedShirt", "AttackDrones", "BountyHunter", "MST3KMantra", "VillainOfTheWeek", "Expy", "RobotBuddy", "Macekre", "PC", "PowerUp", "EasterEgg", "FunWithAcronyms", "MonumentalTheft", "EvilGenius", "BoardToDeath", "PoweredArmor", "MonumentalTheft", "EternalEngine", "EternalEngine", "TheEndOfTheWorldAsWeKnowIt", "TheEndOfTheWorldAsWeKnowIt", "MouseWorld", "PerfectlyCromulentWord", "MadScientist", "InformedAbility", "UtilityBelt", "FantasticVoyagePlot", "InvertedTrope", "MagicVersusScience", "FantasticVoyagePlot", "FunSize", "ImagineSpot", "MadScientist", "RubiksCube", "TheEighties", "AppliedPhlebotinum", "HilarityEnsues", "AppliedPhlebotinum", "ItMakesSenseInContext", "Kaiju", "MouseWorld", "UtilityBelt", "FantasticVoyagePlot"]} | json_instruct | {"type": "object", "properties": {"ShrinkRay": {"type": "array", "items": {"type": "string"}}}, "required": ["ShrinkRay"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 101788625, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "251bdaa6879ef36655e69edace46d8b2", "wof:id" : 101788625, "wof:repo" : "whosonfirst-data-admin-ro"}, "bbox" : [24.298357, 46.670078, 24.324252, 46.686806], "geometry" : {"coordinates" : [[[24.308416, 46.686461], [24.307932, 46.684698], [24.309219, 46.684525], [24.308977, 46.683644], [24.311551, 46.683298], [24.311067, 46.681536], [24.316214, 46.680844], [24.315246, 46.677319], [24.319106, 46.6768], [24.319348, 46.677681], [24.323208, 46.677162], [24.322966, 46.676281], [24.324252, 46.676108], [24.323768, 46.674345], [24.321195, 46.674691], [24.321437, 46.675573], [24.316291, 46.676264], [24.315324, 46.672739], [24.312751, 46.673085], [24.312509, 46.672204], [24.308649, 46.672722], [24.307924, 46.670078], [24.305351, 46.670424], [24.306076, 46.673068], [24.298357, 46.674105], [24.298598, 46.674986], [24.299885, 46.674813], [24.300127, 46.675695], [24.3027, 46.675349], [24.302942, 46.676231], [24.304228, 46.676058], [24.304711, 46.67782], [24.305998, 46.677648], [24.306723, 46.680292], [24.305437, 46.680464], [24.305678, 46.681346], [24.304392, 46.681518], [24.304875, 46.683281], [24.302302, 46.683627], [24.302543, 46.684508], [24.30383, 46.684335], [24.304314, 46.686098], [24.3056, 46.685925], [24.305842, 46.686806], [24.308416, 46.686461]]], "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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0xc9b965df61f634b35e34043545572f468af6599d", "tool" : "slither", "start" : 1563525969.1141617, "end" : 1563525972.602115, "duration" : 3.4879531860351562, "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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"examples": {"type": "array", "items": {"type": "object", "properties": {"translation": {"type": "string"}, "first": {"type": "string"}, "last": {"type": "string"}}, "required": ["translation", "first", "last"]}}, "pronunciation": {"type": "object", "properties": {"uk": {"type": "object", "properties": {"phonetic": {"type": "string"}, "audio": {"type": "string"}}, "required": ["phonetic", "audio"]}, "us": {"type": "object", "properties": {"phonetic": {"type": "string"}, "audio": {"type": "string"}}, "required": ["phonetic", "audio"]}}, "required": ["uk", "us"]}, "definition": {"type": "object", "properties": {"en": {"type": "object", "properties": {"v": {"type": "array", "items": {"type": "string"}}}, "required": ["v"]}, "cn": {"type": "object", "properties": {"vi": {"type": "array", "items": {"type": "string"}}, "vt": {"type": "array", "items": {"type": "string"}}}, "required": ["vi", "vt"]}}, "required": ["en", "cn"]}, "id": {"type": "integer"}, "content": {"type": "string"}}, "required": ["examples", "pronunciation", "definition", "id", "content"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"examples" : [{"translation" : "\u5979\u6b7b\u53bb\u7684\u6d88\u606f\u8fc5\u901f\u4f20\u5f00\u3002", "first" : "The news of her death ", "last" : " quickly."}, {"translation" : "\u8840\u6db2\u5728\u4f53\u5185\u5faa\u73af\u3002", "first" : "Blood ", "last" : " through the body."}, {"translation" : "\u6253\u5f00\u7a97\u5b50\u8ba9\u7a7a\u6c14\u6d41\u901a\u3002", "first" : "Please open a window to allow the air to ", "last" : "."}], "pronunciation" : {"uk" : {"phonetic" : "'s\u025c\u02d0kj\u0259le\u026at", "audio" : "circulate-uk.mp3"}, "us" : {"phonetic" : "'s\u025c\u02d0rkj\u0259le\u026at", "audio" : "circulate-us.mp3"}}, "definition" : {"en" : {"v" : ["become widely known and passed on", "cause to become widely known", "cause be distributed"]}, "cn" : {"vi" : ["\u6d41\u901a,\u5faa\u73af,\u4f20\u64ad"], "vt" : ["\u4f7f\u6d41\u901a"]}}, "id" : 1614, "content" : "circulate"} | json_instruct | {"type": "object", "properties": {"examples": {"type": "array", "items": {"type": "object", "properties": {"translation": {"type": "string"}, "first": {"type": "string"}, "last": {"type": "string"}}, "required": ["translation", "first", "last"]}}, "pronunciation": {"type": "object", "properties": {"uk": {"type": "object", "properties": {"phonetic": {"type": "string"}, "audio": {"type": "string"}}, "required": ["phonetic", "audio"]}, "us": {"type": "object", "properties": {"phonetic": {"type": "string"}, "audio": {"type": "string"}}, "required": ["phonetic", "audio"]}}, "required": ["uk", "us"]}, "definition": {"type": "object", "properties": {"en": {"type": "object", "properties": {"v": {"type": "array", "items": {"type": "string"}}}, "required": ["v"]}, "cn": {"type": "object", "properties": {"vi": {"type": "array", "items": {"type": "string"}}, "vt": {"type": "array", "items": {"type": "string"}}}, "required": ["vi", "vt"]}}, "required": ["en", "cn"]}, "id": {"type": "integer"}, "content": {"type": "string"}}, "required": ["examples", "pronunciation", "definition", "id", "content"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"citations" : [{"textCitation" : "[See rbaib on Metamath](http://us.metamath.org/mpegif/rbaib.html)"}], "names" : ["rbaib"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_wph", "#T_wb", "#T_wps", "#T_wa", "#T_wch", "#T_wch", "#T_wi", "#T_wph", "#T_wb", "#T_wps"], "metaLanguage" : "METAMATH", "remarks" : " Move conjunction outside of biconditional. (Contributed by Mario Carneiro, 11-Sep-2015.) (Proof shortened by Wolf Lammen, 19-Jan-2020.) \n\n---\n\n Move conjunction outside of biconditional. (Contributed by Mario Carneiro, 11-Sep-2015.) ", "statement" : "baib.1 $e |- ( ph <-> ( ps /\\ ch ) ) $.\nrbaib $p |- ( ch -> ( ph <-> ps ) ) $."} | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"difficulty": {"type": "string"}, "url": {"type": "string"}}, "required": ["difficulty", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"difficulty" : "interview", "url" : "https://www.codechef.com/PTRN2020/problems/ITGUY44"} | json_instruct | {"type": "object", "properties": {"difficulty": {"type": "string"}, "url": {"type": "string"}}, "required": ["difficulty", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {}}, "creation_date": {"type": "string"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions": {"type": "string"}, "dynasty": {"type": "null"}, "images": {"type": "array", "items": {}}, "irn": {"type": "integer"}, "materials": {"type": "string"}, "on_view": {"type": "boolean"}, "period": {"type": "null"}, "printers": {"type": "array", "items": {}}, "publishers": {"type": "array", "items": {}}, "rights": {"type": "null"}, "title": {"type": "string"}}, "required": ["accession_number", "actors", "creation_date", "credit_line", "cultures", "dimensions", "dynasty", "images", "irn", "materials", "on_view", "period", "printers", "publishers", "rights", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"accession_number" : "S5781.85.8", "actors" : [], "creation_date" : "1930s", "credit_line" : "Gift of Mr. and Mrs. Edward Lucien", "cultures" : [], "dimensions" : "L: 42 in.; 106.7 cm.", "dynasty" : null, "images" : [], "irn" : 14801, "materials" : "velvet, fur", "on_view" : false, "period" : null, "printers" : [], "publishers" : [], "rights" : null, "title" : "cape"} | json_instruct | {"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {}}, "creation_date": {"type": "string"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions": {"type": "string"}, "dynasty": {"type": "null"}, "images": {"type": "array", "items": {}}, "irn": {"type": "integer"}, "materials": {"type": "string"}, "on_view": {"type": "boolean"}, "period": {"type": "null"}, "printers": {"type": "array", "items": {}}, "publishers": {"type": "array", "items": {}}, "rights": {"type": "null"}, "title": {"type": "string"}}, "required": ["accession_number", "actors", "creation_date", "credit_line", "cultures", "dimensions", "dynasty", "images", "irn", "materials", "on_view", "period", "printers", "publishers", "rights", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "7212090011", "district_id" : "7212090", "name" : "UEMASI"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"GBR": {"type": "array", "items": {"type": "string"}}, "ITA": {"type": "array", "items": {"type": "string"}}, "NZL": {"type": "array", "items": {"type": "string"}}, "DEU": {"type": "array", "items": {"type": "string"}}, "AUS": {"type": "array", "items": {"type": "string"}}, "CAN": {"type": "array", "items": {"type": "string"}}, "SCG": {"type": "array", "items": {"type": "string"}}, "PAK": {"type": "array", "items": {"type": "string"}}, "USA": {"type": "array", "items": {"type": "string"}}, "MEX": {"type": "array", "items": {"type": "string"}}}, "required": ["GBR", "ITA", "NZL", "DEU", "AUS", "CAN", "SCG", "PAK", "USA", "MEX"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"GBR" : ["M 401 551 Q 410.6 304.6 588 134", "United Kingdom", "1046"], "ITA" : ["M 401 551 Q 448.2 321.0 641 187", "Italy", "328"], "NZL" : ["M 401 551 Q 782.6 373.8 1182 509", "New Zealand", "177"], "DEU" : ["M 401 551 Q 437.0 304.4 634 151", "Germany", "168"], "AUS" : ["M 401 551 Q 724.6 370.4 1084 464", "Australia", "111"], "CAN" : ["M 401 551 Q 407.0 309.8 245 131", "Canada", "30"], "SCG" : ["M 401 551 Q 460.4 310.2 670 178", "Serbia and Montenegro", "30"], "PAK" : ["M 401 551 Q 552.0 305.0 831 231", "Pakistan", "19"], "USA" : ["M 401 551 Q 409.2 353.8 280 205", "United States of America", "18"], "MEX" : ["M 401 551 Q 387.6 375.4 258 258", "Mexico", "15"]} | json_instruct | {"type": "object", "properties": {"GBR": {"type": "array", "items": {"type": "string"}}, "ITA": {"type": "array", "items": {"type": "string"}}, "NZL": {"type": "array", "items": {"type": "string"}}, "DEU": {"type": "array", "items": {"type": "string"}}, "AUS": {"type": "array", "items": {"type": "string"}}, "CAN": {"type": "array", "items": {"type": "string"}}, "SCG": {"type": "array", "items": {"type": "string"}}, "PAK": {"type": "array", "items": {"type": "string"}}, "USA": {"type": "array", "items": {"type": "string"}}, "MEX": {"type": "array", "items": {"type": "string"}}}, "required": ["GBR", "ITA", "NZL", "DEU", "AUS", "CAN", "SCG", "PAK", "USA", "MEX"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "methods": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "descriptor": {"type": "string"}}, "required": ["name", "descriptor"]}}}, "required": ["name", "methods"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "dzn", "methods" : [{"name" : "<init>", "descriptor" : "(Ldwt;Lcom/mojang/authlib/GameProfile;)V"}, {"name" : "a", "descriptor" : "(D)Z", "javadoc" : ["Checks if the entity is in range to render."], "parameters" : [{"index" : 1, "name" : "pDistance"}]}, {"name" : "a", "descriptor" : "(Lapk;F)Z", "javadoc" : ["Called when the entity is attacked."], "parameters" : [{"index" : 1, "name" : "pSource"}, {"index" : 2, "name" : "pAmount"}]}, {"name" : "a", "descriptor" : "(Lnr;Ljava/util/UUID;)V", "javadoc" : ["Send a chat message to the CommandSender"], "parameters" : [{"index" : 1, "name" : "pComponent"}, {"index" : 2, "name" : "pSenderUUID"}]}, {"name" : "eu", "descriptor" : "()V"}, {"name" : "j", "descriptor" : "()V", "javadoc" : ["Called to update the entity's position/logic."]}, {"name" : "k", "descriptor" : "()V", "javadoc" : ["Called frequently so the entity can update its state every tick as required. For example, zombies and skeletons use this to react to sunlight and start to burn."]}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "methods": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "descriptor": {"type": "string"}}, "required": ["name", "descriptor"]}}}, "required": ["name", "methods"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Chenailler-Mascheix", "circ" : "2\u00e8me circonscription", "dpt" : "Corr\u00e8ze", "inscrits" : 189, "abs" : 88, "votants" : 101, "blancs" : 11, "nuls" : 10, "exp" : 80, "res" : [{"nuance" : "REM", "nom" : "Mme Patricia BORDAS", "voix" : 48}, {"nuance" : "LR", "nom" : "Mme Fr\u00e9d\u00e9rique MEUNIER", "voix" : 32}]} | 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#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "CountryID", "Latitude", "Longitude", "AccessComments", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID"]}}, "GeneralComments": {"type": "string"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "UsageTypeID", "AddressInfo", "Connections", "GeneralComments", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"IsRecentlyVerified" : false, "ID" : 152184, "UUID" : "E855A573-E74B-4492-85CA-CB3BB254BEAA", "DataProviderID" : 28, "DataProvidersReference" : "FR*S85*P85191*005", "UsageTypeID" : 5, "AddressInfo" : {"ID" : 152537, "Title" : "LA ROCHE SUR YON - Place Du Genet", "AddressLine1" : "Place Du Genet 85000 LA ROCHE SUR YON", "CountryID" : 80, "Latitude" : 46.650558, "Longitude" : -1.4383, "AccessComments" : "24h/24 7j/7", "DistanceUnit" : 0}, "Connections" : [{"ID" : 212938, "ConnectionTypeID" : 1036, "StatusTypeID" : 50, "LevelID" : 3, "PowerKW" : 43, "CurrentTypeID" : 20}, {"ID" : 245805, "ConnectionTypeID" : 33, "StatusTypeID" : 50, "LevelID" : 3, "PowerKW" : 50, "CurrentTypeID" : 30}, {"ID" : 245806, "ConnectionTypeID" : 1036, "StatusTypeID" : 50, "LevelID" : 3, "PowerKW" : 43, "CurrentTypeID" : 20}], "GeneralComments" : "Recharge par badge et avec une application smartphone", "StatusTypeID" : 50, "DateLastStatusUpdate" : "2020-08-27T05:12:00Z", "DataQualityLevel" : 2, "DateCreated" : "2020-03-15T10:53:00Z", "SubmissionStatusTypeID" : 100} | json_instruct | {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "CountryID", "Latitude", "Longitude", "AccessComments", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID"]}}, "GeneralComments": {"type": "string"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "UsageTypeID", "AddressInfo", "Connections", "GeneralComments", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"persons": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["persons"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"persons" : [{"name" : "aria"}]} | json_instruct | {"type": "object", "properties": {"persons": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["persons"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "gunnel", "definition" : "1. A gunwale. 2. (Zo\u00f6l.) A small, eel-shaped, marine fish of the genus Mur\u00e6noides; esp., M. gunnellus of Europe and America; -- called also gunnel fish, butterfish, rock eel."} | 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": {"axe.js": {"type": "string"}, "axe.min.js": {"type": "string"}}, "required": ["axe.js", "axe.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"axe.js" : "sha256-L8DZW5NHhk5FnWyIys8DkSDeK82ac/hQW6bEm8DWIGY=", "axe.min.js" : "sha256-8R6QaE6/3xw1XrQaoaJ3jrA2/hMQRdMHNcVKu+bxqLg="} | json_instruct | {"type": "object", "properties": {"axe.js": {"type": "string"}, "axe.min.js": {"type": "string"}}, "required": ["axe.js", "axe.min.js"], "$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": {}, "required": []}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": "object", "properties": {"19xFGcGXAsuVN5bp7s4Dgw4AMTUxBRJFTM": {"type": "string"}}, "required": ["19xFGcGXAsuVN5bp7s4Dgw4AMTUxBRJFTM"]}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"address" : "1UDbADib99KE9d3qZ87NqJF2QLTHmMkoV", "cert_auth_type" : "web", "cert_sign" : "HLZcYvik7KKex5fomy8xRL2e599osC1xb9jBQIiLnQufCPwlPpl9MYMwk6AEiZumMRMzPwCilUfHfrJ79kzocvE=", "cert_user_id" : "[email protected]", "files" : {}, "inner_path" : "data/userdb/19xFGcGXAsuVN5bp7s4Dgw4AMTUxBRJFTM/content.json", "modified" : 1485520425, "signs" : {"19xFGcGXAsuVN5bp7s4Dgw4AMTUxBRJFTM" : "HIyZEduKjyj0BFqjUQI5nmXmTRyBZWnKdq/1ocf9c1YCw9yk8Sa4+NmNDY6QbkqmRF926h7NzBxqpeL4k44KtQg="}} | json_instruct | {"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {}, "required": []}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": "object", "properties": {"19xFGcGXAsuVN5bp7s4Dgw4AMTUxBRJFTM": {"type": "string"}}, "required": ["19xFGcGXAsuVN5bp7s4Dgw4AMTUxBRJFTM"]}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0xed17237f34fc18830ed05d1ed7f6f71009d2404f1964ab1d97b50a18c2f7a29f", "parentHash" : "0x902cdc761ac1ba70c043ac9be2fcff4d6c6e9c00b420905e1b98cc242231f57e", "number" : 73798, "timestamp" : 1439375258, "nonce" : "0x9d7a9fbbfe3d6ba3", "difficulty" : 2215216199895, "gasLimit" : {"_hex" : "0x2fefd5"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x88D74a59454F6cF3B51ef6b9136AFb6b9D405A88", "extraData" : "0x476574682f76312e302e312d37666266393930632f6c696e75782f676f312e34", "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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "gangrel", "definition" : "Wandering; vagrant. [Scot.] Sir W. Scott."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"title": {"type": "string"}, "genre": {"type": "string"}, "creators": {"type": "array", "items": {"type": "string"}}, "cast": {"type": "array", "items": {"type": "string"}}, "country_of_origin": {"type": "string"}, "seasons": {"type": "integer"}, "episodes": {"type": "integer"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}}, "required": ["title", "genre", "creators", "cast", "country_of_origin", "seasons", "episodes", "start_date", "end_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Crime Story", "genre" : "Crime drama", "creators" : ["Chuck Adamson", "Gustave Reininger"], "cast" : ["Dennis Farina", "Anthony Denison", "Stephen Lang", "Bill Smitrovich", "Bill Campbell", "Steve Ryan", "Paul Butler", "Ted Levine"], "country_of_origin" : "United States", "seasons" : 2, "episodes" : 44, "start_date" : "Thu Sep 18 00:00:00 EDT 1986", "end_date" : "Tue May 10 00:00:00 EDT 1988"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "genre": {"type": "string"}, "creators": {"type": "array", "items": {"type": "string"}}, "cast": {"type": "array", "items": {"type": "string"}}, "country_of_origin": {"type": "string"}, "seasons": {"type": "integer"}, "episodes": {"type": "integer"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}}, "required": ["title", "genre", "creators", "cast", "country_of_origin", "seasons", "episodes", "start_date", "end_date"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"authors" : [{"author" : "Salvador Lima Lopez"}, {"author" : "Naiara Perez"}, {"author" : "Montse Cuadros"}, {"author" : "German Rigau"}], "doi" : "", "publication_date" : "2017-MM-DD ", "id" : "ES102310", "url" : "https://github.com/Vicomtech/NUBes-negation-uncertainty-biomedical-corpus/tree/master/NUBes", "source" : "NUBes", "source_url" : "https://github.com/Vicomtech/NUBes-negation-uncertainty-biomedical-corpus", "licence" : "CC-BY", "language" : "es", "type" : "dataset", "description" : "NUBes: A Corpus of Negation and Uncertainty in Spanish Clinical Texts", "text" : "No p\u00e9rdida de conciencia ni focalidad . Dolor en mano izq y erosiones . Caida de la moto a las 08 : 27h . No se ha dado contusion , no aumento de tama\u00f1o , ni edema , ni otra sintomatologia . Vacunaci\u00f3n antitetanica correcta . No TCE. no dolor tor\u00e1cico ni abdominal . Ha estado con AINES y Metamizol , sin mejoria en los ultimos 2 dias . Paciente que refiere desde hace unas semanas dolor a la demabulacion a nviel de region externa de la pierna asi como en la parte externa de la rodilla . Dolor e impotancia funcional hombro izq. erosiones en piernas . Caida accidental en bici esta tarde . Refiere dolor en zona centrotor\u00e1cica , de caracter mec\u00e1nico-pleuritico . No dolor en reposo , solo a la demabulacion llegando a impedirla ."} | json_instruct | {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$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"}}, "env": {"type": "object", "properties": {"UUID": {"type": "object", "properties": {"description": {"type": "string"}, "value": {"type": "string"}}, "required": ["description", "value"]}}, "required": ["UUID"]}, "website": {"type": "string"}, "repository": {"type": "string"}, "stack": {"type": "string"}}, "required": ["name", "description", "keywords", "env", "website", "repository", "stack"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "vless", "description" : "Deploy vless on Heroku.", "keywords" : ["vless"], "env" : {"UUID" : {"description" : "VLESS UUID", "value" : "9cbe6269-1efa-49b8-9d7a-5ddc7b540816"}}, "website" : "https://github.com/gfujDGiku/", "repository" : "https://github.com/gfujDGiku/ly6e4e", "stack" : "container"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"UUID": {"type": "object", "properties": {"description": {"type": "string"}, "value": {"type": "string"}}, "required": ["description", "value"]}}, "required": ["UUID"]}, "website": {"type": "string"}, "repository": {"type": "string"}, "stack": {"type": "string"}}, "required": ["name", "description", "keywords", "env", "website", "repository", "stack"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "subj. When one updates XCode from 7.2.1. to 7.3. clang version changes accordingly. However, spack does not pick up those changes. Presumably because `compilers.yaml` is already created and available. If one removes the file and reruns `spack compilers`, then the new file with the correct version is generated.\n", "user" : "davydden", "url" : "https://api.github.com/repos/spack/spack/issues/713", "updated_at" : "2016-04-23 20:34:55", "created_at" : "2016-04-01 17:05:33", "closed_at" : "2016-04-23 20:34:55", "state" : "closed", "title" : "spack does not pick up updated compilers", "number" : 713, "milestone" : null, "labels" : [], "id" : 145232666, "html_url" : "https://github.com/spack/spack/issues/713", "assignees" : [], "comments" : 4} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"drupal/csv_serialization": {"type": "string"}}, "required": ["drupal/csv_serialization"]}, "require-dev": {"type": "object", "properties": {"drupal/search_api": {"type": "string"}, "drupal/xls_serialization": {"type": "string"}}, "required": ["drupal/search_api", "drupal/xls_serialization"]}}, "required": ["name", "description", "type", "license", "require", "require-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "drupal/views_data_export", "description" : "Plugin to export views data into various file formats.", "type" : "drupal-module", "license" : "GPL-2.0+", "require" : {"drupal/csv_serialization" : "~1.4"}, "require-dev" : {"drupal/search_api" : "~1.12", "drupal/xls_serialization" : "~1.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"drupal/csv_serialization": {"type": "string"}}, "required": ["drupal/csv_serialization"]}, "require-dev": {"type": "object", "properties": {"drupal/search_api": {"type": "string"}, "drupal/xls_serialization": {"type": "string"}}, "required": ["drupal/search_api", "drupal/xls_serialization"]}}, "required": ["name", "description", "type", "license", "require", "require-dev"], "$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.