input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "string"}, "accrediting_agency": {"type": "string"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "University of Zielona G\u00f3ra", "alt_name" : "Uniwersytet Zielonog\u00f3rski (UZ)", "country" : "Poland", "state" : null, "address" : {"street" : "ul. Licealna 9", "city" : "Zielona G\u00f3ra", "province" : "lubuskie", "postal_code" : "65-417"}, "contact" : {"telephone" : "+48(68) 328-20-00", "website" : "http://www.uz.zgora.pl", "email" : "rektorat@uz.zgora.pl", "fax" : "+48(68) 327-07-35"}, "funding" : "Public", "languages" : null, "academic_year" : "October to June (October-February; February-June)", "accrediting_agency" : "Ministry of Science and Higher Education; Polish Accreditation Committee"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "string"}, "accrediting_agency": {"type": "string"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "UsageCost": {"type": "string"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "CountryID", "Latitude", "Longitude", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "LevelID", "PowerKW"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "UsageCost", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"IsRecentlyVerified" : false, "ID" : 160826, "UUID" : "F90C10BF-BD14-4A6C-BEA1-50A251FF8A55", "DataProviderID" : 1, "OperatorID" : 2247, "UsageTypeID" : 1, "UsageCost" : "0.3 \u20ac/kWh", "AddressInfo" : {"ID" : 161183, "Title" : "E.S. Valcarce", "AddressLine1" : "Pol\u00edgono 24, 61", "Town" : "Tudela", "StateOrProvince" : "Navarra", "CountryID" : 210, "Latitude" : 42.121369254793876, "Longitude" : -1.6746961707033279, "DistanceUnit" : 0}, "Connections" : [{"ID" : 231478, "ConnectionTypeID" : 33, "LevelID" : 2, "PowerKW" : 50}, {"ID" : 231479, "ConnectionTypeID" : 33, "LevelID" : 2, "PowerKW" : 50}, {"ID" : 231480, "ConnectionTypeID" : 2, "LevelID" : 2, "PowerKW" : 50}, {"ID" : 231481, "ConnectionTypeID" : 2, "LevelID" : 2, "PowerKW" : 50}, {"ID" : 231482, "ConnectionTypeID" : 1036, "LevelID" : 2, "PowerKW" : 43}], "NumberOfPoints" : 2, "StatusTypeID" : 50, "DateLastStatusUpdate" : "2020-07-17T05:55:00Z", "DataQualityLevel" : 1, "DateCreated" : "2020-06-28T15:46:00Z", "SubmissionStatusTypeID" : 200} | json_instruct | {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "UsageCost": {"type": "string"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "CountryID", "Latitude", "Longitude", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "LevelID", "PowerKW"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "UsageCost", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ReactNativeFlipperExample", "displayName" : "ReactNativeFlipperExample"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 40335, "cartId" : "5a481865-b221-430f-878a-a88fe800c6be", "preferredProducts" : [3396], "productReviews" : [{"productId" : 2474, "reviewText" : "My co-worker Reed has one of these. He says it looks microscopic.", "reviewDate" : "2019-09-19T02:09:32.4194588+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"batch_size": {"type": "integer"}, "depth": {"type": "integer"}, "dropout": {"type": "number"}, "ffn_hidden_size": {"type": "integer"}, "ffn_num_layers": {"type": "integer"}, "final_lr": {"type": "number"}, "hidden_size": {"type": "integer"}, "init_lr": {"type": "number"}, "max_lr": {"type": "number"}, "warmup_epochs": {"type": "integer"}}, "required": ["batch_size", "depth", "dropout", "ffn_hidden_size", "ffn_num_layers", "final_lr", "hidden_size", "init_lr", "max_lr", "warmup_epochs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"batch_size" : 64, "depth" : 4, "dropout" : 0.14247091881339155, "ffn_hidden_size" : 1616, "ffn_num_layers" : 3, "final_lr" : 6.924952496920347e-06, "hidden_size" : 744, "init_lr" : 1.847626775133211e-05, "max_lr" : 0.0005427272399911263, "warmup_epochs" : 4} | json_instruct | {"type": "object", "properties": {"batch_size": {"type": "integer"}, "depth": {"type": "integer"}, "dropout": {"type": "number"}, "ffn_hidden_size": {"type": "integer"}, "ffn_num_layers": {"type": "integer"}, "final_lr": {"type": "number"}, "hidden_size": {"type": "integer"}, "init_lr": {"type": "number"}, "max_lr": {"type": "number"}, "warmup_epochs": {"type": "integer"}}, "required": ["batch_size", "depth", "dropout", "ffn_hidden_size", "ffn_num_layers", "final_lr", "hidden_size", "init_lr", "max_lr", "warmup_epochs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[122.875, 37.833333333333336], [122.875, 37.916666666666664], [123.0, 37.916666666666664], [123.0, 37.833333333333336], [122.875, 37.833333333333336]]]}, "properties" : {"code" : 562267, "url" : "http://madefor.github.io/0410/api/v1/562267.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/562267.geojson"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "integer"}, "priority": {"type": "integer"}, "volume_media": {"type": "integer"}, "enter": {"type": "object", "properties": {"profilesToEnable": {"type": "array", "items": {"type": "string"}}}, "required": ["profilesToEnable"]}, "exit": {"type": "object", "properties": {"profilesToDisable": {"type": "array", "items": {"type": "string"}}}, "required": ["profilesToDisable"]}}, "required": ["type", "priority", "volume_media", "enter", "exit"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : 2, "priority" : 55, "volume_media" : 15, "enter" : {"profilesToEnable" : ["MediaOverride"]}, "exit" : {"profilesToDisable" : ["MediaOverride"]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "integer"}, "priority": {"type": "integer"}, "volume_media": {"type": "integer"}, "enter": {"type": "object", "properties": {"profilesToEnable": {"type": "array", "items": {"type": "string"}}}, "required": ["profilesToEnable"]}, "exit": {"type": "object", "properties": {"profilesToDisable": {"type": "array", "items": {"type": "string"}}}, "required": ["profilesToDisable"]}}, "required": ["type", "priority", "volume_media", "enter", "exit"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"_active": {"type": "boolean"}, "_notice_text": {"type": "null"}, "_plus_required": {"type": "boolean"}, "_plus_store_url": {"type": "null"}, "_support_contract": {"type": "boolean"}, "_version_required": {"type": "integer"}, "account_supported": {"type": "boolean"}, "api": {"type": "string"}, "city": {"type": "string"}, "country": {"type": "string"}, "data": {"type": "object", "properties": {"baseurl": {"type": "string"}, "customssl": {"type": "boolean"}}, "required": ["baseurl", "customssl"]}, "geo": {"type": "array", "items": {"type": "number"}}, "information": {"type": "string"}, "library_id": {"type": "integer"}, "state": {"type": "string"}, "title": {"type": "string"}}, "required": ["_active", "_notice_text", "_plus_required", "_plus_store_url", "_support_contract", "_version_required", "account_supported", "api", "city", "country", "data", "geo", "information", "library_id", "state", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_active" : true, "_notice_text" : null, "_plus_required" : false, "_plus_store_url" : null, "_support_contract" : false, "_version_required" : 0, "account_supported" : true, "api" : "winbiap", "city" : "Konz", "country" : "Deutschland", "data" : {"baseurl" : "https://cloudopac.winbiap.de/konz", "customssl" : true}, "geo" : [49.69971, 6.5766], "information" : "http://stadtbibliothek.konz.de/", "library_id" : 4524, "state" : "Rheinland-Pfalz", "title" : "Stadtbibliothek"} | json_instruct | {"type": "object", "properties": {"_active": {"type": "boolean"}, "_notice_text": {"type": "null"}, "_plus_required": {"type": "boolean"}, "_plus_store_url": {"type": "null"}, "_support_contract": {"type": "boolean"}, "_version_required": {"type": "integer"}, "account_supported": {"type": "boolean"}, "api": {"type": "string"}, "city": {"type": "string"}, "country": {"type": "string"}, "data": {"type": "object", "properties": {"baseurl": {"type": "string"}, "customssl": {"type": "boolean"}}, "required": ["baseurl", "customssl"]}, "geo": {"type": "array", "items": {"type": "number"}}, "information": {"type": "string"}, "library_id": {"type": "integer"}, "state": {"type": "string"}, "title": {"type": "string"}}, "required": ["_active", "_notice_text", "_plus_required", "_plus_store_url", "_support_contract", "_version_required", "account_supported", "api", "city", "country", "data", "geo", "information", "library_id", "state", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {"type": "integer"}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {"type": "number"}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "OBS_FREQUENCY_DISTRIBUTION": {"type": "object", "properties": {"Y_NUM_PERSONS": {"type": "array", "items": {"type": "integer"}}, "X_COUNT": {"type": "array", "items": {"type": "integer"}}}, "required": ["Y_NUM_PERSONS", "X_COUNT"]}, "OBSERVATIONS_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_OCCURRENCE": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "OBS_FREQUENCY_DISTRIBUTION", "OBSERVATIONS_BY_TYPE", "AGE_AT_FIRST_OCCURRENCE"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [200805, 201208], "Y_PREVALENCE_1000PP" : [0.00136, 0.00109]}, "OBS_FREQUENCY_DISTRIBUTION" : {"Y_NUM_PERSONS" : [0, 0], "X_COUNT" : [1, 2]}, "OBSERVATIONS_BY_TYPE" : {"CONCEPT_NAME" : "Observation recorded from EHR", "COUNT_VALUE" : 271}, "AGE_AT_FIRST_OCCURRENCE" : {"CATEGORY" : ["FEMALE", "MALE"], "MIN_VALUE" : [2, 2], "P10_VALUE" : [17, 10], "P25_VALUE" : [26, 22], "MEDIAN_VALUE" : [37, 36], "P75_VALUE" : [50, 53], "P90_VALUE" : [60, 60], "MAX_VALUE" : [76, 85]}} | json_instruct | {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {"type": "integer"}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {"type": "number"}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "OBS_FREQUENCY_DISTRIBUTION": {"type": "object", "properties": {"Y_NUM_PERSONS": {"type": "array", "items": {"type": "integer"}}, "X_COUNT": {"type": "array", "items": {"type": "integer"}}}, "required": ["Y_NUM_PERSONS", "X_COUNT"]}, "OBSERVATIONS_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_OCCURRENCE": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "OBS_FREQUENCY_DISTRIBUTION", "OBSERVATIONS_BY_TYPE", "AGE_AT_FIRST_OCCURRENCE"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"reporter": {"type": "string"}, "slow": {"type": "integer"}, "timeout": {"type": "integer"}, "ui": {"type": "string"}}, "required": ["reporter", "slow", "timeout", "ui"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"reporter" : "spec", "slow" : 500, "timeout" : 2000, "ui" : "bdd"} | json_instruct | {"type": "object", "properties": {"reporter": {"type": "string"}, "slow": {"type": "integer"}, "timeout": {"type": "integer"}, "ui": {"type": "string"}}, "required": ["reporter", "slow", "timeout", "ui"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"8dc8fd7cc38a39896c03663cca38aad5": {"type": "string"}, "06c539e08213828e62e7f5339fb255ec": {"type": "string"}, "2b051e39b1efd1f2106b155495087b0f": {"type": "string"}, "30a4fa7fc115109b8cd096d895e9869e": {"type": "string"}, "4cbf9bb7e7347b86c1dba4e54163c4ea": {"type": "string"}, "871b10e82a2dc1d0659571c5dee8fa95": {"type": "string"}, "956ede286087599213bc112b5a76408b": {"type": "string"}, "bca74e4fbb2859c22381fb531a0f896d": {"type": "string"}, "c491cd5577a54bf265d407ddaa20ffcb": {"type": "string"}, "e54d944c2a2c85a23caa86027ae307cf": {"type": "string"}, "f3e021460b7a6f5991fca890b786a11b": {"type": "string"}, "fe1c27354af9f4c88bf9c1d246e41230": {"type": "string"}, "fe914555563f5f566adfc0c5db8445db": {"type": "string"}}, "required": ["8dc8fd7cc38a39896c03663cca38aad5", "06c539e08213828e62e7f5339fb255ec", "2b051e39b1efd1f2106b155495087b0f", "30a4fa7fc115109b8cd096d895e9869e", "4cbf9bb7e7347b86c1dba4e54163c4ea", "871b10e82a2dc1d0659571c5dee8fa95", "956ede286087599213bc112b5a76408b", "bca74e4fbb2859c22381fb531a0f896d", "c491cd5577a54bf265d407ddaa20ffcb", "e54d944c2a2c85a23caa86027ae307cf", "f3e021460b7a6f5991fca890b786a11b", "fe1c27354af9f4c88bf9c1d246e41230", "fe914555563f5f566adfc0c5db8445db"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"8dc8fd7cc38a39896c03663cca38aad5" : "Il connettore deve implementare execute()", "06c539e08213828e62e7f5339fb255ec" : "Il connettore deve implementare {{getPlaceholderForValue()}}", "2b051e39b1efd1f2106b155495087b0f" : "richiesto valore id", "30a4fa7fc115109b8cd096d895e9869e" : "Il connettore deve implementare {{getPlaceholderForIdentifier()}}", "4cbf9bb7e7347b86c1dba4e54163c4ea" : "Il connettore deve implementare {{getCountForAffectedRows()}}", "871b10e82a2dc1d0659571c5dee8fa95" : "Il connettore deve implementare {{executeSQL()}}", "956ede286087599213bc112b5a76408b" : "Il connettore deve implementare {{applyPagination()}}", "bca74e4fbb2859c22381fb531a0f896d" : "Il connettore deve implementare {{getInsertedId()}}", "c491cd5577a54bf265d407ddaa20ffcb" : "Il connettore deve implementare {{escapeValue()}}", "e54d944c2a2c85a23caa86027ae307cf" : "Impossibile migrare i modelli non allegati a questa origine dati: {0}", "f3e021460b7a6f5991fca890b786a11b" : "Il connettore deve implementare {{escapeName()}}", "fe1c27354af9f4c88bf9c1d246e41230" : "Il connettore deve implementare {{toColumnValue()}}", "fe914555563f5f566adfc0c5db8445db" : "Il connettore deve implementare {{fromColumnValue()}}"} | json_instruct | {"type": "object", "properties": {"8dc8fd7cc38a39896c03663cca38aad5": {"type": "string"}, "06c539e08213828e62e7f5339fb255ec": {"type": "string"}, "2b051e39b1efd1f2106b155495087b0f": {"type": "string"}, "30a4fa7fc115109b8cd096d895e9869e": {"type": "string"}, "4cbf9bb7e7347b86c1dba4e54163c4ea": {"type": "string"}, "871b10e82a2dc1d0659571c5dee8fa95": {"type": "string"}, "956ede286087599213bc112b5a76408b": {"type": "string"}, "bca74e4fbb2859c22381fb531a0f896d": {"type": "string"}, "c491cd5577a54bf265d407ddaa20ffcb": {"type": "string"}, "e54d944c2a2c85a23caa86027ae307cf": {"type": "string"}, "f3e021460b7a6f5991fca890b786a11b": {"type": "string"}, "fe1c27354af9f4c88bf9c1d246e41230": {"type": "string"}, "fe914555563f5f566adfc0c5db8445db": {"type": "string"}}, "required": ["8dc8fd7cc38a39896c03663cca38aad5", "06c539e08213828e62e7f5339fb255ec", "2b051e39b1efd1f2106b155495087b0f", "30a4fa7fc115109b8cd096d895e9869e", "4cbf9bb7e7347b86c1dba4e54163c4ea", "871b10e82a2dc1d0659571c5dee8fa95", "956ede286087599213bc112b5a76408b", "bca74e4fbb2859c22381fb531a0f896d", "c491cd5577a54bf265d407ddaa20ffcb", "e54d944c2a2c85a23caa86027ae307cf", "f3e021460b7a6f5991fca890b786a11b", "fe1c27354af9f4c88bf9c1d246e41230", "fe914555563f5f566adfc0c5db8445db"], "$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"}, "FOO": {"type": "string"}}, "required": ["id", "FOO"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "single", "FOO" : "BAR"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "FOO": {"type": "string"}}, "required": ["id", "FOO"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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" : "Les Deux-Villes", "circ" : "3\u00e8me circonscription", "dpt" : "Ardennes", "inscrits" : 161, "abs" : 88, "votants" : 73, "blancs" : 6, "nuls" : 1, "exp" : 66, "res" : [{"nuance" : "LR", "nom" : "M. Jean-Luc WARSMANN", "voix" : 48}, {"nuance" : "FN", "nom" : "Mme Amandine BLOMME", "voix" : 18}]} | 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 a JSON structure that matches this schema definition:
{"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "string"}}}, "required": ["baseObjects", "returnObjects", "callbackArgs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"baseObjects" : ["[893,\"zz\",\"S\",969]", "[893,-1,\"S\",969]", "[893,\"zz\",\"S\",969]", "[893,\"zz\",\"S\",969]"], "returnObjects" : ["null", "null", "null", "\"Error\""], "callbackArgs" : ["{\"0\":969,\"1\":\"S\",\"2\":2,\"3\":[893,\"zz\",\"S\",969]}", "{\"0\":null,\"1\":\"zz\",\"2\":1,\"3\":[893,\"zz\",\"S\",969]}", "{\"0\":null,\"1\":893,\"2\":0,\"3\":[893,\"zz\",\"S\",969]}", "{\"0\":false,\"1\":969,\"2\":3,\"3\":[893,\"zz\",\"S\",969]}", "{\"0\":null,\"1\":\"S\",\"2\":2,\"3\":[893,-1,\"S\",969]}", "{\"0\":null,\"1\":-1,\"2\":1,\"3\":[893,-1,\"S\",969]}", "{\"0\":null,\"1\":893,\"2\":0,\"3\":[893,-1,\"S\",969]}", "{\"0\":\"|dU\",\"1\":969,\"2\":3,\"3\":[893,\"zz\",\"S\",969]}", "{\"0\":null,\"1\":\"S\",\"2\":2,\"3\":[893,\"zz\",\"S\",969]}", "{\"0\":null,\"1\":\"zz\",\"2\":1,\"3\":[893,\"zz\",\"S\",969]}", "{\"0\":null,\"1\":893,\"2\":0,\"3\":[893,\"zz\",\"S\",969]}", "{\"0\":null,\"1\":969,\"2\":3,\"3\":[893,\"zz\",\"S\",969]}"]} | json_instruct | {"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "string"}}}, "required": ["baseObjects", "returnObjects", "callbackArgs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "build:watch": {"type": "string"}, "ts": {"type": "string"}, "version": {"type": "string"}}, "required": ["build", "build:watch", "ts", "version"]}, "dependencies": {"type": "object", "properties": {"@alfred/helpers": {"type": "string"}, "@alfred/merge-configs": {"type": "string"}, "@alfred/types": {"type": "string"}, "get-port": {"type": "string"}}, "required": ["@alfred/helpers", "@alfred/merge-configs", "@alfred/types", "get-port"]}, "devDependencies": {"type": "object", "properties": {"@types/webpack": {"type": "string"}, "babel-loader": {"type": "string"}, "lodash-webpack-plugin": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@types/webpack", "babel-loader", "lodash-webpack-plugin", "webpack", "webpack-cli", "webpack-dev-server"]}, "peerDependencies": {"type": "object", "properties": {"webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["webpack", "webpack-cli", "webpack-dev-server"]}, "gitHead": {"type": "string"}}, "required": ["name", "version", "license", "main", "scripts", "dependencies", "devDependencies", "peerDependencies", "gitHead"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@alfred/skill-webpack", "version" : "0.0.3", "license" : "MIT", "main" : "lib/index.js", "scripts" : {"build" : "yarn ts", "build:watch" : "yarn build --watch", "ts" : "tsc", "version" : "yarn build"}, "dependencies" : {"@alfred/helpers" : "^0.0.3", "@alfred/merge-configs" : "^0.0.3", "@alfred/types" : "^0.0.3", "get-port" : "^5.1.1"}, "devDependencies" : {"@types/webpack" : "^4.41.7", "babel-loader" : "^8.0.6", "lodash-webpack-plugin" : "^0.11.5", "webpack" : "^4.41.5", "webpack-cli" : "^3.2.1", "webpack-dev-server" : "^3.10.3"}, "peerDependencies" : {"webpack" : "^4.28.4", "webpack-cli" : "^3.2.1", "webpack-dev-server" : "^3.1.14"}, "gitHead" : "45f5c45f7922f74538a55f6d5c84d34517a195a2"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "build:watch": {"type": "string"}, "ts": {"type": "string"}, "version": {"type": "string"}}, "required": ["build", "build:watch", "ts", "version"]}, "dependencies": {"type": "object", "properties": {"@alfred/helpers": {"type": "string"}, "@alfred/merge-configs": {"type": "string"}, "@alfred/types": {"type": "string"}, "get-port": {"type": "string"}}, "required": ["@alfred/helpers", "@alfred/merge-configs", "@alfred/types", "get-port"]}, "devDependencies": {"type": "object", "properties": {"@types/webpack": {"type": "string"}, "babel-loader": {"type": "string"}, "lodash-webpack-plugin": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@types/webpack", "babel-loader", "lodash-webpack-plugin", "webpack", "webpack-cli", "webpack-dev-server"]}, "peerDependencies": {"type": "object", "properties": {"webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["webpack", "webpack-cli", "webpack-dev-server"]}, "gitHead": {"type": "string"}}, "required": ["name", "version", "license", "main", "scripts", "dependencies", "devDependencies", "peerDependencies", "gitHead"], "$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"}, "properties": {"type": "object", "properties": {"description": {"type": "string"}, "linkedServiceName": {"type": "object", "properties": {"referenceName": {"type": "string"}, "type": {"type": "string"}}, "required": ["referenceName", "type"]}, "annotations": {"type": "array", "items": {}}, "type": {"type": "string"}, "schema": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"article_id": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "description": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "guid": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "item": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "link": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "pubDate": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "sponsored": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "title": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "type": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["article_id", "description", "guid", "item", "link", "pubDate", "source", "sponsored", "title", "type"]}}, "required": ["type", "properties"]}, "typeProperties": {"type": "object", "properties": {"collectionName": {"type": "string"}}, "required": ["collectionName"]}}, "required": ["description", "linkedServiceName", "annotations", "type", "schema", "typeProperties"]}}, "required": ["name", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Cosmos_News_Articles_Dataset", "properties" : {"description" : "Represents the News Articles from the Cosmos Database.", "linkedServiceName" : {"referenceName" : "SigmaCosmosDatabase", "type" : "LinkedServiceReference"}, "annotations" : [], "type" : "CosmosDbSqlApiCollection", "schema" : {"type" : "object", "properties" : {"article_id" : {"type" : "string"}, "description" : {"type" : "string"}, "guid" : {"type" : "string"}, "item" : {"type" : "string"}, "link" : {"type" : "string"}, "pubDate" : {"type" : "string"}, "source" : {"type" : "string"}, "sponsored" : {"type" : "string"}, "title" : {"type" : "string"}, "type" : {"type" : "string"}}}, "typeProperties" : {"collectionName" : "FinanceNewsContainer"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "properties": {"type": "object", "properties": {"description": {"type": "string"}, "linkedServiceName": {"type": "object", "properties": {"referenceName": {"type": "string"}, "type": {"type": "string"}}, "required": ["referenceName", "type"]}, "annotations": {"type": "array", "items": {}}, "type": {"type": "string"}, "schema": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"article_id": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "description": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "guid": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "item": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "link": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "pubDate": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "sponsored": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "title": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "type": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["article_id", "description", "guid", "item", "link", "pubDate", "source", "sponsored", "title", "type"]}}, "required": ["type", "properties"]}, "typeProperties": {"type": "object", "properties": {"collectionName": {"type": "string"}}, "required": ["collectionName"]}}, "required": ["description", "linkedServiceName", "annotations", "type", "schema", "typeProperties"]}}, "required": ["name", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"220180": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["220180"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"220180" : {"success" : false}} | json_instruct | {"type": "object", "properties": {"220180": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["220180"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"900753592": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900753593": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900753592", "900753593"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"900753592" : {"nama" : "TPS 1", "dapil" : [7601, 17604, 2760502]}, "900753593" : {"nama" : "TPS 2", "dapil" : [7601, 17604, 2760502]}} | json_instruct | {"type": "object", "properties": {"900753592": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900753593": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900753592", "900753593"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : [{"d" : [{"e" : ["\ufff9`Tada~ `halafinay~ `ko~ `ka~`'orad~ , `makolepet~ `ko~ `sa~`liki'eki'~ `no~ `o'o~ `ako~.\ufffa\ufffb\u96e8\u5b63\u592a\u9577\u4e86\uff0c\u6211\u7684\u5c0f\u8173\u8dbe\u8981\u751f\u96e8\u87f2\u4e86\u3002"], "f" : "\u9577\u8173\u766c\uff0c\u56e0\u6885\u96e8\u5929\u8173\u8dbe\u7cdc\u721b\u3001\u9577\u96e8\u87f2\u3002"}]}], "stem" : "kolepet", "t" : "makolepet"} | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$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"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d6-34", "text" : "MARCUS COI\nc\nLEONARD H.MARKS\nPAUL DOBIN\nSTANLEY S. NEUSTADT\nSTANLEY B. COHEN\nLAW OFFICES\nCohn and Marks\nCAFRITZ BUILDING\nWASHINGTON 6, D. C.\nApril 24, 1958\n.1)\nTELEPHONE\nSTERLING 3-5880\nCABLE ADDRESS\nCOMAR-WASHINGTON, D. C.\nI'WEB W-ADO! IARTERS\n\u201e r\nMr. Garnet R. Garrison\nUniversity of Michigan\nAnn Arbor, Michigan\nDear Mr. Garrison\nThank you for your letter/6f Afcril\\22nd with \u201e\nyou enclosed a copy of Igr. \u00bb6lsdc*s\\letter to\nSenator Pastore of ApriS^ ltfih, )\nThat letter will^be^helpftk. Hoover, it is impor\u00ac\ntant that the DffiverSdty ojTsMicfcigan file a formal\nstatement wi\u00a3h ttj^rsCoMmitteeV as\\such. If that is\nnot done, thenjfe ck make a reference to the Uni\u00ac\nversity\u2019s position inVthdv cours^dr presenting the\nNAEB\u2019s testimony\nrery truly yours\nMarcus Cohn"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "message": {"type": "string"}}, "required": ["line", "column", "message"]}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x25f10182e043bd93a5641e13327d3805e9bb0191", "tool" : "osiris", "start" : 1564604163.7449062, "end" : 1564604225.587013, "duration" : 61.84210681915283, "analysis" : [{"errors" : [{"line" : 62, "column" : 13, "message" : "overflow_bugs"}], "file" : "/unique_chucks/20/0x25f10182e043bd93a5641e13327d3805e9bb0191.sol", "name" : "ERC20Token"}, {"errors" : [{"line" : 52, "column" : 13, "message" : "overflow_bugs"}, {"line" : 62, "column" : 13, "message" : "overflow_bugs"}], "file" : "/unique_chucks/20/0x25f10182e043bd93a5641e13327d3805e9bb0191.sol", "name" : "StandardToken"}, {"errors" : [], "file" : "/unique_chucks/20/0x25f10182e043bd93a5641e13327d3805e9bb0191.sol", "name" : "Token"}]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "message": {"type": "string"}}, "required": ["line", "column", "message"]}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 84045, "cartId" : "29bbe8fa-17e2-40e7-8b61-446c481e031d", "preferredProducts" : [], "productReviews" : [{"productId" : 274, "reviewText" : "I tried to vomit it but got bonbon all over it.", "reviewDate" : "2017-04-30T12:19:57.8357924+03:00"}, {"productId" : 3514, "reviewText" : "This US Dollar works extremely well. It wetly improves my tennis by a lot.", "reviewDate" : "2017-08-25T06:44:58.8961839+03:00"}, {"productId" : 4363, "reviewText" : "heard about this on balearic beat radio, decided to give it a try.", "reviewDate" : "2018-07-07T11:50:52.2795294+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"t" : "pafayangen", "h" : [{"d" : [{"f" : "\u7d66\u2026\u5e06\uff0c\u7d66\u2026\u639b\u5e06\u3002", "e" : ["\ufff9`Pafayang~`e~`n~ `ko~ `fadil~ `ako~ !\ufffa\ufffb\u7d66\u6211\u7684\u7b4f\u5b50\u639b\u5e06\u5427\uff01", "\ufff9`Pafayang~`e~`n~ `a~ `satoko~.\ufffa\ufffb\u639b\u5e06\u7684\u6845\u6746\u3002"]}]}], "stem" : "fayang"} | json_instruct | {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$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"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"R2\\Templating\\": {"type": "string"}}, "required": ["R2\\Templating\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"R2\\Templating\\Tests": {"type": "string"}}, "required": ["R2\\Templating\\Tests"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "license", "keywords", "authors", "require", "require-dev", "autoload", "autoload-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "artoodetoo/dirk", "description" : "PHP template system", "license" : "MIT", "keywords" : ["dirk", "package", "templating", "templates", "views"], "authors" : [{"name" : "artoodetoo", "email" : "i.am@artoodetoo.org"}], "require" : {"php" : ">=5.4.0"}, "require-dev" : {"phpunit/phpunit" : "4.0.*"}, "autoload" : {"psr-4" : {"R2\\Templating\\" : "src"}}, "autoload-dev" : {"psr-4" : {"R2\\Templating\\Tests" : "tests"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"R2\\Templating\\": {"type": "string"}}, "required": ["R2\\Templating\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"R2\\Templating\\Tests": {"type": "string"}}, "required": ["R2\\Templating\\Tests"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "license", "keywords", "authors", "require", "require-dev", "autoload", "autoload-dev"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "orgUrl": {"type": "string"}, "iconUrl": {"type": "string"}}, "required": ["id", "name", "orgUrl", "iconUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "PARTNER_ADS", "name" : "Partner-ads", "orgUrl" : "https://www.partner-ads.com/", "iconUrl" : "https://static.funnel.io/logos/icon48x48/partnerads.png"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "orgUrl": {"type": "string"}, "iconUrl": {"type": "string"}}, "required": ["id", "name", "orgUrl", "iconUrl"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["cast-converter", "doublesub", "plex-subtitles-normalizer", "protractor-video-reporter", "srt-loader", "subcinode", "subplay", "subread", "videocards"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"AB": {"type": "array", "items": {"type": "string"}}, "AW": {"type": "array", "items": {"type": "string"}}, "SZ": {"type": "string"}, "C": {"type": "string"}, "SOL": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["AB", "AW", "SZ", "C", "SOL"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"AB" : ["qb", "rc", "pc", "qd", "pd", "oe", "of", "oi", "qj", "pl", "pn", "pp", "qp", "pq", "rq"], "AW" : ["pe", "pb", "ob", "oc", "od", "ne", "md", "jd", "oj", "qq", "qr", "rr", "pr", "nq"], "SZ" : "19", "C" : "White to play", "SOL" : [["W", "pi", "", ""]]} | json_instruct | {"type": "object", "properties": {"AB": {"type": "array", "items": {"type": "string"}}, "AW": {"type": "array", "items": {"type": "string"}}, "SZ": {"type": "string"}, "C": {"type": "string"}, "SOL": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["AB", "AW", "SZ", "C", "SOL"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"immer": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["immer"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@rematch/immer", "version" : "2.0.0-next.4", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"immer" : {"version" : "6.0.8", "resolved" : "https://registry.npmjs.org/immer/-/immer-6.0.8.tgz", "integrity" : "sha512-wmVdrkqL6OzhX5z2k/c0t8g+YzGy+V8B/r1GRdCTO0UcTiFkB0XVAxpJQT045KaNV2u14HzbLCYKJmt7yVCakg=="}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"immer": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["immer"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"fields": {"type": "object", "properties": {"username": {"type": "string"}, "first_name": {"type": "string"}, "last_name": {"type": "string"}, "is_active": {"type": "boolean"}, "is_superuser": {"type": "boolean"}, "is_staff": {"type": "boolean"}, "last_login": {"type": "string"}, "groups": {"type": "array", "items": {}}, "user_permissions": {"type": "array", "items": {}}, "password": {"type": "string"}, "email": {"type": "string"}, "date_joined": {"type": "string"}}, "required": ["username", "first_name", "last_name", "is_active", "is_superuser", "is_staff", "last_login", "groups", "user_permissions", "password", "email", "date_joined"]}, "model": {"type": "string"}, "pk": {"type": "integer"}}, "required": ["fields", "model", "pk"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"fields" : {"username" : "admin", "first_name" : "", "last_name" : "", "is_active" : true, "is_superuser" : true, "is_staff" : true, "last_login" : "2014-10-17T19:40:23.371Z", "groups" : [], "user_permissions" : [], "password" : "pbkdf2_sha256$12000$vxQhU3S5NDLt$SxI8swzmISd0c2lN2wyDrE4pt72s8ZB1NqHwQOf7uNU=", "email" : "admin@test.test", "date_joined" : "2014-10-17T19:40:08.944Z"}, "model" : "auth.user", "pk" : 0}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"fields": {"type": "object", "properties": {"username": {"type": "string"}, "first_name": {"type": "string"}, "last_name": {"type": "string"}, "is_active": {"type": "boolean"}, "is_superuser": {"type": "boolean"}, "is_staff": {"type": "boolean"}, "last_login": {"type": "string"}, "groups": {"type": "array", "items": {}}, "user_permissions": {"type": "array", "items": {}}, "password": {"type": "string"}, "email": {"type": "string"}, "date_joined": {"type": "string"}}, "required": ["username", "first_name", "last_name", "is_active", "is_superuser", "is_staff", "last_login", "groups", "user_permissions", "password", "email", "date_joined"]}, "model": {"type": "string"}, "pk": {"type": "integer"}}, "required": ["fields", "model", "pk"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "extraIncludes": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"kubos-hal": {"type": "string"}}, "required": ["kubos-hal"]}, "targetDependencies": {"type": "object", "properties": {"stm32f407vg": {"type": "object", "properties": {"stm32cubef4-stm32f407vg": {"type": "string"}}, "required": ["stm32cubef4-stm32f407vg"]}, "stm32f405rg": {"type": "object", "properties": {"stm32cubef4-stm32f405rg": {"type": "string"}}, "required": ["stm32cubef4-stm32f405rg"]}}, "required": ["stm32f407vg", "stm32f405rg"]}, "testDependencies": {"type": "object", "properties": {"unity": {"type": "string"}}, "required": ["unity"]}, "testTargets": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "keywords", "author", "homepage", "license", "extraIncludes", "dependencies", "targetDependencies", "testDependencies", "testTargets"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "kubos-hal-stm32f4", "version" : "0.1.2", "description" : "KubOS HAL Module for STM32F4 MCUs", "keywords" : [], "author" : "kubos.co", "homepage" : "https://github.com/kubos/kubos-hal-stm32f4", "license" : "Apache-2.0", "extraIncludes" : ["kubos-hal-stm32f4"], "dependencies" : {"kubos-hal" : "kubos/kubos-hal#~0.1.0"}, "targetDependencies" : {"stm32f407vg" : {"stm32cubef4-stm32f407vg" : "kubos/stm32cubef4-stm32f407vg#~0.0.3"}, "stm32f405rg" : {"stm32cubef4-stm32f405rg" : "kubos/stm32cubef4-stm32f405rg#~0.0.3"}}, "testDependencies" : {"unity" : "kubos/unity"}, "testTargets" : ["stm32f407-disco-gcc"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "extraIncludes": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"kubos-hal": {"type": "string"}}, "required": ["kubos-hal"]}, "targetDependencies": {"type": "object", "properties": {"stm32f407vg": {"type": "object", "properties": {"stm32cubef4-stm32f407vg": {"type": "string"}}, "required": ["stm32cubef4-stm32f407vg"]}, "stm32f405rg": {"type": "object", "properties": {"stm32cubef4-stm32f405rg": {"type": "string"}}, "required": ["stm32cubef4-stm32f405rg"]}}, "required": ["stm32f407vg", "stm32f405rg"]}, "testDependencies": {"type": "object", "properties": {"unity": {"type": "string"}}, "required": ["unity"]}, "testTargets": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "keywords", "author", "homepage", "license", "extraIncludes", "dependencies", "targetDependencies", "testDependencies", "testTargets"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"station_g": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_name": {"type": "string"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_name"]}}}, "required": ["station_g"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"station_g" : [{"pref_cd" : 23, "line_cd" : 30001, "line_name" : "\u540d\u9244\u540d\u53e4\u5c4b\u672c\u7dda", "station_cd" : 3000137, "station_name" : "\u6804\u751f"}, {"pref_cd" : 23, "line_cd" : 30015, "line_name" : "\u540d\u9244\u72ac\u5c71\u7dda", "station_cd" : 3001502, "station_name" : "\u6804\u751f"}]} | json_instruct | {"type": "object", "properties": {"station_g": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_name": {"type": "string"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_name"]}}}, "required": ["station_g"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 84992, "cartId" : "3b180aeb-7493-4b6a-bc89-0d0c5b95dde4", "preferredProducts" : [3639, 4345, 1665, 3938], "productReviews" : [{"productId" : 900, "reviewText" : "My neighbor Forest has one of these. She works as a gardener and she says it looks nude.", "reviewDate" : "2016-08-20T15:37:34.0579027+03:00"}, {"productId" : 1511, "reviewText" : "I saw this on TV and wanted to give it a try.", "reviewDate" : "2019-07-26T18:50:18.8076629+03:00"}, {"productId" : 1975, "reviewText" : "I tried to pepper it but got prune all over it.", "reviewDate" : "2016-12-08T14:05:45.1793249+02:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 5343, "surahNumber" : "069", "ayatNumber" : "020", "arabic" : "\u0625\u0650\u0646\u0651\u0650\u064a \u0638\u064e\u0646\u064e\u0646\u0652\u062a\u064f \u0623\u064e\u0646\u0651\u0650\u064a \u0645\u064f\u0644\u064e\u0627\u0642\u064d \u062d\u0650\u0633\u064e\u0627\u0628\u0650\u064a\u064e\u0647\u0652", "english" : "\"Surely, I did believe that I shall meet my Account!\"", "bengali" : "\u0986\u09ae\u09bf \u099c\u09be\u09a8\u09a4\u09be\u09ae \u09af\u09c7, \u0986\u09ae\u09be\u0995\u09c7 \u09b9\u09bf\u09b8\u09be\u09ac\u09c7\u09b0 \u09b8\u09ae\u09cd\u09ae\u09c1\u0996\u09c0\u09a8 \u09b9\u09a4\u09c7 \u09b9\u09ac\u09c7\u0964"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["start", "dev", "deploy"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@slack/client": {"type": "string"}, "env-cmd": {"type": "string"}, "micro": {"type": "string"}, "micro-dev": {"type": "string"}}, "required": ["@slack/client", "env-cmd", "micro", "micro-dev"]}, "now": {"type": "object", "properties": {"name": {"type": "string"}, "alias": {"type": "string"}, "env": {"type": "object", "properties": {"SLACK_TOKEN": {"type": "string"}}, "required": ["SLACK_TOKEN"]}}, "required": ["name", "alias", "env"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "now"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "github-mentions", "version" : "1.0.0", "description" : "", "main" : "./src/index.js", "scripts" : {"start" : "micro", "dev" : "env-cmd .env micro-dev", "deploy" : "now --public && now alias"}, "repository" : {"type" : "git", "url" : "git+https://github.com/orballo/github-mentions.git"}, "keywords" : [], "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/orballo/github-mentions/issues"}, "homepage" : "https://github.com/orballo/github-mentions#readme", "dependencies" : {"@slack/client" : "^4.4.0", "env-cmd" : "^7.0.0", "micro" : "^9.1.0", "micro-dev" : "^2.2.0"}, "now" : {"name" : "Github Mentions", "alias" : "mentions", "env" : {"SLACK_TOKEN" : "@slack-token"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["start", "dev", "deploy"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@slack/client": {"type": "string"}, "env-cmd": {"type": "string"}, "micro": {"type": "string"}, "micro-dev": {"type": "string"}}, "required": ["@slack/client", "env-cmd", "micro", "micro-dev"]}, "now": {"type": "object", "properties": {"name": {"type": "string"}, "alias": {"type": "string"}, "env": {"type": "object", "properties": {"SLACK_TOKEN": {"type": "string"}}, "required": ["SLACK_TOKEN"]}}, "required": ["name", "alias", "env"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "now"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"frame_id": {"type": "integer"}, "walking": {"type": "string"}, "video_id": {"type": "string"}, "bbs": {"type": "array", "items": {"type": "object", "properties": {"artwork_id": {"type": "string"}, "right": {"type": "number"}, "bottom": {"type": "number"}, "top": {"type": "number"}, "confidence": {"type": "integer"}, "recognized": {"type": "boolean"}, "bb_big_enough": {"type": "boolean"}, "class": {"type": "string"}, "left": {"type": "number"}}, "required": ["artwork_id", "right", "bottom", "top", "confidence", "recognized", "bb_big_enough", "class", "left"]}}, "p_voice": {"type": "string"}}, "required": ["frame_id", "walking", "video_id", "bbs", "p_voice"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"frame_id" : 2585, "walking" : "0", "video_id" : "VID_20161007_131547_reduced", "bbs" : [{"artwork_id" : "david_marmo_donatello", "right" : 0.28348, "bottom" : 0.649988, "top" : 0.362182, "confidence" : 119, "recognized" : true, "bb_big_enough" : true, "class" : "artwork", "left" : 0.075353}, {"artwork_id" : "attis_donatello", "right" : 0.697589, "bottom" : 0.74634, "top" : 0.303153, "confidence" : 601, "recognized" : true, "bb_big_enough" : true, "class" : "artwork", "left" : 0.395349}], "p_voice" : "0"} | json_instruct | {"type": "object", "properties": {"frame_id": {"type": "integer"}, "walking": {"type": "string"}, "video_id": {"type": "string"}, "bbs": {"type": "array", "items": {"type": "object", "properties": {"artwork_id": {"type": "string"}, "right": {"type": "number"}, "bottom": {"type": "number"}, "top": {"type": "number"}, "confidence": {"type": "integer"}, "recognized": {"type": "boolean"}, "bb_big_enough": {"type": "boolean"}, "class": {"type": "string"}, "left": {"type": "number"}}, "required": ["artwork_id", "right", "bottom", "top", "confidence", "recognized", "bb_big_enough", "class", "left"]}}, "p_voice": {"type": "string"}}, "required": ["frame_id", "walking", "video_id", "bbs", "p_voice"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Time" : "2021-04-09T08:00:00Z", "Temp" : 21.2, "RelHum" : 55, "WindSpeed" : 4.6, "WindDir" : 272} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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" : "6208011003", "district_id" : "6208011", "name" : "KARTIKA BHAKTI"} | 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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "isDefault": {"type": "boolean"}, "gains": {"type": "object", "properties": {"global": {"type": "number"}, "bands": {"type": "array", "items": {"type": "number"}}}, "required": ["global", "bands"]}}, "required": ["name", "id", "isDefault", "gains"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "Sennheiser HD 25 Aluminium", "id" : "3f695c4a55089e927081b66b393c6269bbfa39f5", "isDefault" : false, "gains" : {"global" : -8.3, "bands" : [7.3, -0.1, -3.3, -2.0, 3.3, -0.1, -2.5, 3.1, 0.8, 8.0]}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "isDefault": {"type": "boolean"}, "gains": {"type": "object", "properties": {"global": {"type": "number"}, "bands": {"type": "array", "items": {"type": "number"}}}, "required": ["global", "bands"]}}, "required": ["name", "id", "isDefault", "gains"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"version": {"type": "string"}, "codename": {"type": "string"}, "date": {"type": "string"}, "time": {"type": "string"}}, "required": ["version", "codename", "date", "time"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "0.9.24", "codename" : "peleguin", "date" : "2014-02-12", "time" : "15:30:11"} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "codename": {"type": "string"}, "date": {"type": "string"}, "time": {"type": "string"}}, "required": ["version", "codename", "date", "time"], "$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": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x4f8849c425881fa6f7b4fcae0a367053ce3230b7", "tool" : "mythril", "start" : 1563662463.6314456, "end" : 1563662468.351187, "duration" : 4.719741344451904, "analysis" : {"error" : null, "issues" : [], "success" : true}} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}, "domain": {"type": "string"}, "description": {"type": "string"}, "genre": {"type": "string"}, "googleAnalyticsId": {"type": "string"}, "feed": {"type": "object", "properties": {"subtitle": {"type": "string"}, "filename": {"type": "string"}, "path": {"type": "string"}, "id": {"type": "string"}}, "required": ["subtitle", "filename", "path", "id"]}, "jsonfeed": {"type": "object", "properties": {"path": {"type": "string"}, "url": {"type": "string"}}, "required": ["path", "url"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "twitterHandle": {"type": "string"}}, "required": ["name", "twitterHandle"]}, "publisher": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["title", "url", "domain", "description", "genre", "googleAnalyticsId", "feed", "jsonfeed", "author", "publisher"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "IE 11ty on GitHub Pages, CloudFlare CDN and Netlify CMS", "url" : "https://avortex.online", "domain" : "avortex.online", "description" : "How to set up Industrial Empathy (IE) Eleventy (11ty) template on GitHub (GH) Pages behind CloudFlare (CF) Edge CDN and edit markdown using Netlify CMS", "genre" : "Blog", "googleAnalyticsId" : "GA ID. Update me", "feed" : {"subtitle" : "Generic tech feed", "filename" : "feed.xml", "path" : "/feed/feed.xml", "id" : "https://avortex.online"}, "jsonfeed" : {"path" : "/feed/feed.json", "url" : "https://avortex.online/feed/feed.json"}, "author" : {"name" : "TED Vortex", "twitterHandle" : "0_vortex"}, "publisher" : {"name" : "TED Vortex"}} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}, "domain": {"type": "string"}, "description": {"type": "string"}, "genre": {"type": "string"}, "googleAnalyticsId": {"type": "string"}, "feed": {"type": "object", "properties": {"subtitle": {"type": "string"}, "filename": {"type": "string"}, "path": {"type": "string"}, "id": {"type": "string"}}, "required": ["subtitle", "filename", "path", "id"]}, "jsonfeed": {"type": "object", "properties": {"path": {"type": "string"}, "url": {"type": "string"}}, "required": ["path", "url"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "twitterHandle": {"type": "string"}}, "required": ["name", "twitterHandle"]}, "publisher": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["title", "url", "domain", "description", "genre", "googleAnalyticsId", "feed", "jsonfeed", "author", "publisher"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"angular-material.css": {"type": "string"}, "angular-material.js": {"type": "string"}, "angular-material.min.css": {"type": "string"}, "angular-material.min.js": {"type": "string"}}, "required": ["angular-material.css", "angular-material.js", "angular-material.min.css", "angular-material.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"angular-material.css" : "sha256-hQkfOEk1g+LiTSjZ5OhyLGUUGyrw55lQU/D0f3rXKvA=", "angular-material.js" : "sha256-7gf5Bkl9SK4VELvJoALQVNv1joCgcrbIk9QtW5Hgp2Q=", "angular-material.min.css" : "sha256-VBQ0KjPzLp1271qeESfUrZ098UlO7RhOiZWr+vPqY3M=", "angular-material.min.js" : "sha256-Kv1ANbBfqJzz8+yz8ZyR2cPTBcrnwO4c/M5SXh+8Pvg="} | json_instruct | {"type": "object", "properties": {"angular-material.css": {"type": "string"}, "angular-material.js": {"type": "string"}, "angular-material.min.css": {"type": "string"}, "angular-material.min.js": {"type": "string"}}, "required": ["angular-material.css", "angular-material.js", "angular-material.min.css", "angular-material.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "fax", "phone", "website", "email", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Willi-F\u00e4hrmann-Realschule Rheinhausen St\u00e4dtische Realschule - Sekundarstufe I -", "id" : "NRW-194270", "address" : "K\u00f6rnerplatz 2, 47226 Duisburg", "school_type" : "Realschule", "fax" : "02065 9058022", "phone" : "02065 9058021", "website" : "", "email" : " 194270@schule.nrw.de ", "state" : "NRW", "programs" : {"programs" : []}, "full_time_school" : false, "lon" : 6.710028, "lat" : 51.40377} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "fax", "phone", "website", "email", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"title": {"type": "string"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"update_date": {"type": "string"}, "link": {"type": "string"}}, "required": ["update_date", "link"]}}}, "required": ["title", "downloads", "tags", "hxl", "org", "id", "resources"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Chad - Public Sector", "downloads" : 60, "tags" : ["economics", "hxl", "indicators", "Chad"], "hxl" : 1, "org" : "World Bank Group", "id" : "194e658b-7dc9-4342-b5e4-87ed300496e8", "resources" : [{"update_date" : "2021-01-31T22:53:25.315243", "link" : "https://data.humdata.org/dataset/194e658b-7dc9-4342-b5e4-87ed300496e8/resource/9a2c12ee-2304-4a84-96a1-ac6c191a3290/download/public-sector_tcd.csv"}, {"update_date" : "2021-01-31T22:53:25.315243", "link" : "https://data.humdata.org/dataset/194e658b-7dc9-4342-b5e4-87ed300496e8/resource/38c1cef2-8d68-41d6-b906-934b9d020e2a/download/qc_public-sector_tcd.csv"}]} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"update_date": {"type": "string"}, "link": {"type": "string"}}, "required": ["update_date", "link"]}}}, "required": ["title", "downloads", "tags", "hxl", "org", "id", "resources"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "lint": {"type": "string"}, "dev": {"type": "string"}}, "required": ["start", "lint", "dev"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"discord.js": {"type": "string"}}, "required": ["discord.js"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "eslint": {"type": "string"}}, "required": ["@types/node", "eslint"]}}, "required": ["name", "private", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "spark-bot", "private" : true, "version" : "0.1.0", "description" : "Befehl Bot f\u00fcr TheSpark", "main" : "src/app.js", "scripts" : {"start" : "node ./src/app.js", "lint" : "eslint ./src", "dev" : "npm run lint && npm start"}, "author" : "NullDev // TheShad0w", "license" : "MIT", "dependencies" : {"discord.js" : "^12.4.1"}, "devDependencies" : {"@types/node" : "^12.0.0", "eslint" : "^6.8.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "lint": {"type": "string"}, "dev": {"type": "string"}}, "required": ["start", "lint", "dev"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"discord.js": {"type": "string"}}, "required": ["discord.js"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "eslint": {"type": "string"}}, "required": ["@types/node", "eslint"]}}, "required": ["name", "private", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"atlantic": {"type": "array", "items": {"type": "object", "properties": {"img": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "age": {"type": "integer"}, "topComment": {"type": "string"}, "tag": {"type": "string"}, "topCommentNum": {"type": "integer"}, "numComments": {"type": "integer"}}, "required": ["img", "title", "url", "age", "topComment", "tag", "topCommentNum", "numComments"]}}}, "required": ["atlantic"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"atlantic" : [{"img" : "i/irst-Lady.jpg", "title" : "Just Blame the First Lady", "url" : "http://www.theatlantic.com/politics/archive/2015/02/oregon-John-Kitzhaber-resignation-Cylvia-Hayes/385436/", "age" : 1423764781, "topComment" : "how is it blaming the woman if she was in a sham marriage and shady gov. deals and that's what brought down the governor?", "tag" : "politics", "topCommentNum" : 10, "numComments" : 185}, {"img" : "i/000-Years.jpg", "title" : "Japan's Oldest Businesses Have Survived for More Than 1,000 Years", "url" : "http://www.theatlantic.com/business/archive/2015/02/japans-oldest-businesses-have-lasted-more-than-a-thousand-years/385396/", "age" : 1423758741, "topComment" : "\"Of those, 3,886 have been around for more than 200 years. As a point of comparison, only one in every four U.S. companies founded in 1994 was still operating in 2004, according to the Bureau of Labor Statistics.\" These statistics don't really measur...", "tag" : "business", "topCommentNum" : 9, "numComments" : 54}]} | json_instruct | {"type": "object", "properties": {"atlantic": {"type": "array", "items": {"type": "object", "properties": {"img": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "age": {"type": "integer"}, "topComment": {"type": "string"}, "tag": {"type": "string"}, "topCommentNum": {"type": "integer"}, "numComments": {"type": "integer"}}, "required": ["img", "title", "url", "age", "topComment", "tag", "topCommentNum", "numComments"]}}}, "required": ["atlantic"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "YARDEN", "frequency" : 163, "males" : "41.104294478527606 %", "females" : "58.895705521472394 %"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"jsoneditor.js": {"type": "string"}, "jsoneditor.min.js": {"type": "string"}}, "required": ["jsoneditor.js", "jsoneditor.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"jsoneditor.js" : "sha512-XGBItevGaR3zqyCPdHjP/vB8ilOtHolNmf0BmyiqPXSbzSY+e3mdh6x0cR+n9RMfPUh63/y6t6vdgnCB+eRqDA==", "jsoneditor.min.js" : "sha512-ZmWoRX1Va8+DOyXCkhYsP2rfXbydfOEm1G9+CFtav5QWVQVghrdA1HFlOW115t+LeBc/vRQIJzPqRAXc7G5etA=="} | json_instruct | {"type": "object", "properties": {"jsoneditor.js": {"type": "string"}, "jsoneditor.min.js": {"type": "string"}}, "required": ["jsoneditor.js", "jsoneditor.min.js"], "$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"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}}, "required": ["files"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}}, "required": ["name", "type", "description", "keywords", "license", "version", "authors", "autoload", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mazhenov/own-dd", "type" : "library", "description" : "Own DD() function same as laravel", "keywords" : ["dd", "debug"], "license" : "MIT", "version" : "0.0.2", "authors" : [{"name" : "Aibek Mazhenov", "email" : "aibek.mazhenov@gmail.com"}], "autoload" : {"files" : ["src/main.php"]}, "require" : {"php" : ">=5.3.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}}, "required": ["files"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}}, "required": ["name", "type", "description", "keywords", "license", "version", "authors", "autoload", "require"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"navigo.amd.js": {"type": "string"}, "navigo.amd.min.js": {"type": "string"}, "navigo.js": {"type": "string"}, "navigo.min.js": {"type": "string"}}, "required": ["navigo.amd.js", "navigo.amd.min.js", "navigo.js", "navigo.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"navigo.amd.js" : "sha512-FzFZjuZw6/S2u1pOBNAuF2e1gbIef2ILFyYkMN9Ppdb5JLIglLb+1SQL7/QZr8J6yscsSv8ZE82nVeqPHyPt6A==", "navigo.amd.min.js" : "sha512-TSBew3N+jcsMrcMR/WB0xcydcP+7hlP/QSDdPCOE1+NPX+BCEw8pe2MNrozXwxMxE+koaibjKV3rXKeTo6xhKQ==", "navigo.js" : "sha512-BdTBm7Hjy6U6COn8S2nTNaXUSvOR6vYlmLOvMhAuKIYhWy1g3w/qbib4V3WDIS8PMksko+gUxz2yg0SJcX0zGw==", "navigo.min.js" : "sha512-InSsydVDH5j3I3D0QUyNPVos3d+q8v6CQ9vjZ5yTje296Nq/dTkXtdidO5pzG/1cFYW2Vn0aQ50ZMldtC4/CKg=="} | json_instruct | {"type": "object", "properties": {"navigo.amd.js": {"type": "string"}, "navigo.amd.min.js": {"type": "string"}, "navigo.js": {"type": "string"}, "navigo.min.js": {"type": "string"}}, "required": ["navigo.amd.js", "navigo.amd.min.js", "navigo.js", "navigo.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "6107170", "regency_id" : "6107", "name" : "KELAM PERMAI"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"object": {"type": "string"}, "order": {"type": "string"}, "scope": {"type": "string"}, "query": {"type": "string"}, "filters": {"type": "object", "properties": {"card_last_digits": {"type": "string"}}, "required": ["card_last_digits"]}, "page": {"type": "integer"}, "per_page": {"type": "integer"}, "location": {"type": "string"}, "total_pages": {"type": "integer"}, "total": {"type": "integer"}, "data": {"type": "array", "items": {"type": "object", "properties": {"object": {"type": "string"}, "id": {"type": "string"}, "livemode": {"type": "boolean"}, "location": {"type": "string"}, "amount": {"type": "integer"}, "currency": {"type": "string"}, "status": {"type": "string"}, "transaction": {"type": "string"}, "message": {"type": "string"}, "reason_code": {"type": "string"}, "reason_message": {"type": "string"}, "charge": {"type": "string"}, "documents": {"type": "object", "properties": {"object": {"type": "string"}, "from": {"type": "string"}, "to": {"type": "string"}, "offset": {"type": "integer"}, "limit": {"type": "integer"}, "total": {"type": "integer"}, "order": {"type": "null"}, "location": {"type": "string"}, "data": {"type": "array", "items": {}}}, "required": ["object", "from", "to", "offset", "limit", "total", "order", "location", "data"]}, "created": {"type": "string"}, "closed_at": {"type": "string"}}, "required": ["object", "id", "livemode", "location", "amount", "currency", "status", "transaction", "message", "reason_code", "reason_message", "charge", "documents", "created", "closed_at"]}}}, "required": ["object", "order", "scope", "query", "filters", "page", "per_page", "location", "total_pages", "total", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"object" : "search", "order" : "chronological", "scope" : "dispute", "query" : "demo", "filters" : {"card_last_digits" : "5454"}, "page" : 1, "per_page" : 30, "location" : "/search", "total_pages" : 1, "total" : 1, "data" : [{"object" : "dispute", "id" : "dspt_test_57gqagy0yfk99ctjlue", "livemode" : false, "location" : "/disputes/dspt_test_57gqagy0yfk99ctjlue", "amount" : 100000, "currency" : "thb", "status" : "won", "transaction" : "trxn_test_57gqagy5we902sfmmqe", "message" : "Demo dispute message.", "reason_code" : "goods_or_services_not_provided", "reason_message" : "Services not provided or Merchandise not received", "charge" : "chrg_test_57gqaf72g7nxpo1mk9m", "documents" : {"object" : "list", "from" : "1970-01-01T00:00:00+00:00", "to" : "2017-03-30T07:44:23+00:00", "offset" : 0, "limit" : 20, "total" : 0, "order" : null, "location" : "/disputes/dspt_test_57gqagy0yfk99ctjlue/documents", "data" : []}, "created" : "2017-03-29T08:22:43Z", "closed_at" : "2017-03-29T08:24:23Z"}]} | json_instruct | {"type": "object", "properties": {"object": {"type": "string"}, "order": {"type": "string"}, "scope": {"type": "string"}, "query": {"type": "string"}, "filters": {"type": "object", "properties": {"card_last_digits": {"type": "string"}}, "required": ["card_last_digits"]}, "page": {"type": "integer"}, "per_page": {"type": "integer"}, "location": {"type": "string"}, "total_pages": {"type": "integer"}, "total": {"type": "integer"}, "data": {"type": "array", "items": {"type": "object", "properties": {"object": {"type": "string"}, "id": {"type": "string"}, "livemode": {"type": "boolean"}, "location": {"type": "string"}, "amount": {"type": "integer"}, "currency": {"type": "string"}, "status": {"type": "string"}, "transaction": {"type": "string"}, "message": {"type": "string"}, "reason_code": {"type": "string"}, "reason_message": {"type": "string"}, "charge": {"type": "string"}, "documents": {"type": "object", "properties": {"object": {"type": "string"}, "from": {"type": "string"}, "to": {"type": "string"}, "offset": {"type": "integer"}, "limit": {"type": "integer"}, "total": {"type": "integer"}, "order": {"type": "null"}, "location": {"type": "string"}, "data": {"type": "array", "items": {}}}, "required": ["object", "from", "to", "offset", "limit", "total", "order", "location", "data"]}, "created": {"type": "string"}, "closed_at": {"type": "string"}}, "required": ["object", "id", "livemode", "location", "amount", "currency", "status", "transaction", "message", "reason_code", "reason_message", "charge", "documents", "created", "closed_at"]}}}, "required": ["object", "order", "scope", "query", "filters", "page", "per_page", "location", "total_pages", "total", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"log": {"type": "object", "properties": {"F": {"type": "boolean"}, "\u0085\u201d\ud8be\udcff": {"type": "integer"}}, "required": ["F", "\u0085\u201d\ud8be\udcff"]}}, "required": ["log"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"log" : {"F" : true, "\u0085\u201d\ud8be\udcff" : 632166598531126250}} | json_instruct | {"type": "object", "properties": {"log": {"type": "object", "properties": {"F": {"type": "boolean"}, "\u0085\u201d\ud8be\udcff": {"type": "integer"}}, "required": ["F", "\u0085\u201d\ud8be\udcff"]}}, "required": ["log"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "null"}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 4821, "citation_title" : "The Impact of Monetary Policy on Bank Balance Sheets", "citation_author" : ["Anil K. Kashyap", "Jeremy C. Stein"], "citation_publication_date" : "1994-08-01", "issue_date" : "1994-08-01", "revision_date" : "None", "topics" : null, "program" : ["Corporate Finance", "Monetary Economics"], "projects" : null, "working_groups" : null, "abstract" : "\n\nThis paper uses disaggregated data on bank balance sheets to provide a test of the lending view of monetary policy transmission. We argue that if the lending view is correct, one should expect the loan and security portfolios of large and small banks to respond differentially to a contraction in monetary policy. We first develop this point with a theoretical model; we then test to see if the model's predictions are borne out in the data.\n\n", "acknowledgement" : "\n"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "null"}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}}, "required": ["name", "description", "image"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Miss Hackney", "description" : "This pony is Amazon Orange, with bright Hazel eyes. When they are not being rented by Unicorn Rentals users, they love running", "image" : "QtSADK1McaqnI4Bj39ml5CHWXul8zHESzRG9nuzNuA7Dm0QeMYf2YZtT1BJ8lpPLP9I="} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}}, "required": ["name", "description", "image"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "is_suicidal_vulnerable": {"type": "boolean"}}, "required": ["is_lock_vulnerable", "is_prodigal_vulnerable", "is_suicidal_vulnerable"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x136b9e17e56ba927884e92661a850f2d1a621ee6", "tool" : "maian", "start" : 1565608706.143445, "end" : 1565609077.8088608, "duration" : 371.665415763855, "analysis" : {"is_lock_vulnerable" : false, "is_prodigal_vulnerable" : false, "is_suicidal_vulnerable" : false}} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "is_suicidal_vulnerable": {"type": "boolean"}}, "required": ["is_lock_vulnerable", "is_prodigal_vulnerable", "is_suicidal_vulnerable"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "super_block_world:block/bell_trapdoor_bottom"} | 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": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"Similarity" : "0.917", "Title" : "A Meta-Analysis of the Joint Simon Effect", "Year" : 2017}, {"Similarity" : "0.909", "Title" : "Its not just what we say its how we move An examination of postural activity during a disclosure event", "Year" : 2017}, {"Similarity" : "0.871", "Title" : "Does Friendship Influence Space Perception With Particular Reference to the Curse of the Suspicious Participants", "Year" : 2013}, {"Similarity" : "0.863", "Title" : "Space and Time in the Parietal Cortex fMRI Evidence for a Neural Asymmetry", "Year" : 2013}, {"Similarity" : "0.863", "Title" : "Inverted-U and Inverted-J Effects in Self-Referenced Decisions", "Year" : 2014}, {"Similarity" : "0.85", "Title" : "Vection (self-motion perception) alters cognitive states cognition of time mental number line and personality", "Year" : 2012}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "MultiPolygon", "coordinates" : [[[[-77.608159, 36.406043], [-77.606827, 36.411802], [-77.606623, 36.412696], [-77.605818, 36.416298], [-77.605406, 36.418167], [-77.605066, 36.418952], [-77.6049, 36.420083], [-77.60484, 36.42046], [-77.604409, 36.421609], [-77.603563, 36.42137], [-77.602779, 36.421363], [-77.602014, 36.421486], [-77.601964, 36.421467], [-77.600896, 36.421011], [-77.600287, 36.420746], [-77.600071, 36.420308], [-77.600007, 36.420277], [-77.599886, 36.420218], [-77.599824, 36.419677], [-77.59992, 36.419177], [-77.597328, 36.418266], [-77.597257, 36.417733], [-77.596616, 36.417413], [-77.596832, 36.416826], [-77.596633, 36.41634], [-77.596616, 36.416163], [-77.596934, 36.415621], [-77.597278, 36.414964], [-77.597546, 36.41437], [-77.597582, 36.41429], [-77.598203, 36.412866], [-77.598582, 36.411998], [-77.599707, 36.409419], [-77.600014, 36.4087], [-77.60014, 36.408374], [-77.600325, 36.40786], [-77.600349, 36.407604], [-77.60037, 36.407305], [-77.600371, 36.406857], [-77.600359, 36.406588], [-77.600723, 36.406173], [-77.600891, 36.405417], [-77.601249, 36.404962], [-77.601464, 36.405213], [-77.601647, 36.40541], [-77.602004, 36.405546], [-77.603414, 36.406274], [-77.603898, 36.406572], [-77.604504, 36.406952], [-77.604594, 36.407017], [-77.605052, 36.407347], [-77.60573, 36.407859], [-77.605959, 36.408026], [-77.607122, 36.406686], [-77.608154, 36.405323], [-77.608159, 36.406043]]]], "properties" : {"id" : "usa-nc-south-weldon-city", "type" : "city", "name" : "South Weldon", "code" : "3763560"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"aos": {"type": "string"}, "hover.css": {"type": "string"}}, "required": ["aos", "hover.css"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "circa", "version" : "1.0.0", "description" : "sebuah penyedia jasa branding dan desain yang fokus pada perkembangan", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Circa", "license" : "ISC", "dependencies" : {"aos" : "^2.3.4", "hover.css" : "^2.3.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"aos": {"type": "string"}, "hover.css": {"type": "string"}}, "required": ["aos", "hover.css"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"contacts": {"type": "array", "items": {}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "website": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}, "briefDescription": {"type": "string"}, "yearOfEstablishment": {"type": "string"}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "website", "organisationType", "telephone", "mainAddrress", "briefDescription", "yearOfEstablishment"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contacts" : [], "guideStarURL" : "http://www.guidestarindia.org/Summary.aspx?CCReg=9702", "name" : "Badu Rural Welfare Society", "primaryEmail" : "info@brws.org.in", "website" : "www.brws.org.in", "organisationType" : ["Direct Service"], "telephone" : ["919830412206"], "mainAddrress" : {"state" : "West Bengal", "address" : ["Badu", "Thakurhat Road", "North 24 Parganas", "West Bengal", "700128"]}, "briefDescription" : "The objectives for which the society is established are :1. To establish, acquire, start, aid, run, maintain or manage educational institutes, libraries, for the benefit of the public.2. To setup, run and manage nursery schools, primary schools, secondary and higher secondary schools to be affiliated under Govt. regulatory bodies. Also may establish and run college to promote true education by cultivation of totality among students.3. To set up computer centers, laboratories to spread computer literacy and up gradation of knowledge and skills in the field of computer science and technology.4. To promote awareness about environment and to arrange tree plantation in the localities to combat pollution's and beautification of public places", "yearOfEstablishment" : "2014"} | json_instruct | {"type": "object", "properties": {"contacts": {"type": "array", "items": {}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "website": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}, "briefDescription": {"type": "string"}, "yearOfEstablishment": {"type": "string"}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "website", "organisationType", "telephone", "mainAddrress", "briefDescription", "yearOfEstablishment"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"IndexId": {"type": "integer"}, "Portraits": {"type": "array", "items": {"type": "object", "properties": {"PortraitId": {"type": "integer"}, "PortraitName": {"type": "string"}, "PortraitImageBase64": {"type": "string"}}, "required": ["PortraitId", "PortraitName", "PortraitImageBase64"]}}}, "required": ["IndexId", "Portraits"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"IndexId" : 43, "Portraits" : [{"PortraitId" : 0, "PortraitName" : "STANDARD", "PortraitImageBase64" : "iVBORw0KGgoAAAANSUhEUgAAACgAAAAoBAMAAAB+0KVeAAAAMFBMVEUAjwAvPx+Xt+8nVx9XZ483fydHly9nf79Xrz93j9d3x9eH12/P57fn97d/n+eXPwDbJn9rAAACEElEQVQokVXQP4vbMBQAcH0FoTgtbcpBPkBBBAfTmw4ModBFGImDTkb44aFLIWAOuoUaQToGgpcshQ7ZytFi0C0ZutnD7c7SzUu+wUGfZadc3mCsn98f+RFIPADxPbXldcmkJ1/t93uCokCL1NprG0cDKkgYJDRd28Tesw41JVKBkMARV/Y39eWYzi3xpEo8JRDv14b7EUutJrGUkkuRGvvroxERTW0UkB+elJHXYRmYmAfrKLDkXexjKuK6nBvNzCqwlqw4lVJwMKb0jX6Ze9YaYssVlRFFNJFJAiwxObHWrpjkgAdtkvkYP8bEWFvGTCiHmt/maT4msxmYnHOF9TrVLAejJ8Qk3E+/Uh/SPAY9hhTEA8EegoHwAUCreI7P1xUxeIqYYgogVjE+6UOFq8MQXpcjFMf/+FQ5TPDV9yARikn6reoRVyIpJonEc1YRJl1qhPv1Y+zn8A9lM0pxu1zOs3DSY13XP8MwpDQsMJZ1F6RpmtEiuyt2J4x28wXPDTkem1GWOZtOT9sPRwzEx7BP/Dudvm0XAx666tOAy0t8QnxqN/UFXmHPq0t0w7vxAz52WPSIF302vddi+3lAd0+MDX1fbG+OZ3T1RYGfssmAx0OY9VpkyzdnbEaoXYcsc9U9HpxiLCf/ERuMQheU1s/whroI72h9xsOLdok7r0eLXdtpP2i3Dbuxh8Xu1GLbf3lhmTiiJIcPAAAAAElFTkSuQmCC"}]} | json_instruct | {"type": "object", "properties": {"IndexId": {"type": "integer"}, "Portraits": {"type": "array", "items": {"type": "object", "properties": {"PortraitId": {"type": "integer"}, "PortraitName": {"type": "string"}, "PortraitImageBase64": {"type": "string"}}, "required": ["PortraitId", "PortraitName", "PortraitImageBase64"]}}}, "required": ["IndexId", "Portraits"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"translations": {"type": "object", "properties": {"weebook": {"type": "string"}}, "required": ["weebook"]}}, "required": ["translations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"translations" : {"weebook" : "Wεεbσσk"}} | json_instruct | {"type": "object", "properties": {"translations": {"type": "object", "properties": {"weebook": {"type": "string"}}, "required": ["weebook"]}}, "required": ["translations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"develop": {"type": "string"}, "develop:jekyll": {"type": "string"}, "build": {"type": "string"}, "build:jekyll": {"type": "string"}}, "required": ["develop", "develop:jekyll", "build", "build:jekyll"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "personal-blog", "version" : "1.0.0", "description" : "Personal blog...", "main" : "index.js", "scripts" : {"develop" : "bundle exec jekyll clean && npm run -p develop:jekyll", "develop:jekyll" : "sleep 5 && bundle exec jekyll serve --watch --livereload", "build" : "build:jekyll", "build:jekyll" : "JEKYLL_ENV=production bundle exec jekyll build"}, "author" : "Nick Fedoskin", "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"develop": {"type": "string"}, "develop:jekyll": {"type": "string"}, "build": {"type": "string"}, "build:jekyll": {"type": "string"}}, "required": ["develop", "develop:jekyll", "build", "build:jekyll"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["duffel-auth", "duffel-bootstrap", "duffel-cms", "duffel-cms-raptor-editor", "duffel-cms-raptor-editor-filemanager", "duffel-pages", "duffel-requests", "duffel-token"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"className": {"type": "string"}, "methods": {"type": "object", "properties": {"apply": {"type": "string"}}, "required": ["apply"]}, "path": {"type": "string"}, "text": {"type": "string"}, "typeName": {"type": "string"}}, "required": ["className", "methods", "path", "text", "typeName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"className" : "io.deephaven.integrations.python.PythonFunctionCaller", "methods" : {"apply" : ":param args: java.lang.Object...\n:return: java.lang.Object"}, "path" : "io.deephaven.integrations.python.PythonFunctionCaller", "text" : "A class which calls a Python callable.", "typeName" : "class"} | json_instruct | {"type": "object", "properties": {"className": {"type": "string"}, "methods": {"type": "object", "properties": {"apply": {"type": "string"}}, "required": ["apply"]}, "path": {"type": "string"}, "text": {"type": "string"}, "typeName": {"type": "string"}}, "required": ["className", "methods", "path", "text", "typeName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cam/image_array" : "6091_cam-image_array_.jpg", "user/angle" : 0.004, "user/throttle" : 1.012, "user/mode" : "user", "pos/pos_x" : 79.73115, "pos/pos_y" : 0.555443, "pos/pos_z" : 60.35089, "pos/speed" : 11.16568, "pos/cte" : -3.290906, "milliseconds" : 322938} | json_instruct | {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"generated_at" : "2017-01-27T09:37:26.780881", "required_by" : ["Neighborhoodize", "swissarmykitchensink", "collective.geo.fastkml", "db_export"], "requires" : ["pygeoif", "python-dateutil"], "package" : "fastkml"} | json_instruct | {"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"deploy": {"type": "object", "properties": {"module": {"type": "string"}}, "required": ["module"]}}, "required": ["deploy"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"deploy" : {"module" : "runserver"}} | json_instruct | {"type": "object", "properties": {"deploy": {"type": "object", "properties": {"module": {"type": "string"}}, "required": ["module"]}}, "required": ["deploy"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "lint": {"type": "string"}}, "required": ["build", "test", "lint"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "workspaces": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"@reactive-tools/eslint-config": {"type": "string"}, "turbo": {"type": "string"}}, "required": ["@reactive-tools/eslint-config", "turbo"]}, "turbo": {"type": "object", "properties": {"baseBranch": {"type": "string"}, "pipeline": {"type": "object", "properties": {"build": {"type": "object", "properties": {"dependsOn": {"type": "array", "items": {"type": "string"}}, "outputs": {"type": "array", "items": {"type": "string"}}, "cache": {"type": "boolean"}}, "required": ["dependsOn", "outputs", "cache"]}, "test": {"type": "object", "properties": {"dependsOn": {"type": "array", "items": {"type": "string"}}, "outputs": {"type": "array", "items": {}}}, "required": ["dependsOn", "outputs"]}, "lint": {"type": "object", "properties": {"outputs": {"type": "array", "items": {}}}, "required": ["outputs"]}}, "required": ["build", "test", "lint"]}}, "required": ["baseBranch", "pipeline"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "workspaces", "devDependencies", "turbo"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "reactive-popups", "version" : "1.0.0", "description" : "Easy popup management with React", "main" : "dist/index.js", "scripts" : {"build" : "turbo run build --scope=@reactive-popups/*", "test" : "turbo run test --scope=@reactive-popups/*", "lint" : "eslint ."}, "repository" : {"type" : "git", "url" : "git+https://github.com/AlexShukel/reactive-popups.git"}, "keywords" : [], "author" : "Aleksandras \u0160ukelovi\u010d", "license" : "ISC", "bugs" : {"url" : "https://github.com/AlexShukel/reactive-popups/issues"}, "homepage" : "https://github.com/AlexShukel/reactive-popups#readme", "workspaces" : ["packages/*", "tools/*"], "devDependencies" : {"@reactive-tools/eslint-config" : "*", "turbo" : "^1.0.25"}, "turbo" : {"baseBranch" : "origin/main", "pipeline" : {"build" : {"dependsOn" : ["^build"], "outputs" : ["dist/**"], "cache" : true}, "test" : {"dependsOn" : ["^build"], "outputs" : []}, "lint" : {"outputs" : []}}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "lint": {"type": "string"}}, "required": ["build", "test", "lint"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "workspaces": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"@reactive-tools/eslint-config": {"type": "string"}, "turbo": {"type": "string"}}, "required": ["@reactive-tools/eslint-config", "turbo"]}, "turbo": {"type": "object", "properties": {"baseBranch": {"type": "string"}, "pipeline": {"type": "object", "properties": {"build": {"type": "object", "properties": {"dependsOn": {"type": "array", "items": {"type": "string"}}, "outputs": {"type": "array", "items": {"type": "string"}}, "cache": {"type": "boolean"}}, "required": ["dependsOn", "outputs", "cache"]}, "test": {"type": "object", "properties": {"dependsOn": {"type": "array", "items": {"type": "string"}}, "outputs": {"type": "array", "items": {}}}, "required": ["dependsOn", "outputs"]}, "lint": {"type": "object", "properties": {"outputs": {"type": "array", "items": {}}}, "required": ["outputs"]}}, "required": ["build", "test", "lint"]}}, "required": ["baseBranch", "pipeline"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "workspaces", "devDependencies", "turbo"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "casper": {"type": "string"}, "slimer": {"type": "string"}}, "required": ["test", "casper", "slimer"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"casperjs": {"type": "string"}, "request": {"type": "string"}, "slimerjs": {"type": "string"}}, "required": ["casperjs", "request", "slimerjs"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "xplteluy", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "casper" : "./node_modules/casperjs/bin/casperjs index.js", "slimer" : "./node_modules/.bin/slimerjs index.js"}, "author" : "Rolando Lucio", "license" : "MIT", "dependencies" : {"casperjs" : "^1.1.4", "request" : "^2.88.0", "slimerjs" : "^1.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "casper": {"type": "string"}, "slimer": {"type": "string"}}, "required": ["test", "casper", "slimer"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"casperjs": {"type": "string"}, "request": {"type": "string"}, "slimerjs": {"type": "string"}}, "required": ["casperjs", "request", "slimerjs"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"division": {"type": "string"}, "sortIndex": {"type": "integer"}, "lite": {"type": "boolean"}, "standard": {"type": "boolean"}, "userAgents": {"type": "array", "items": {"type": "object", "properties": {"userAgent": {"type": "string"}, "browser": {"type": "string"}, "properties": {"type": "object", "properties": {"Parent": {"type": "string"}, "Comment": {"type": "string"}}, "required": ["Parent", "Comment"]}, "children": {"type": "array", "items": {"type": "object", "properties": {"match": {"type": "string"}, "browser": {"type": "string"}}, "required": ["match", "browser"]}}}, "required": ["userAgent", "browser", "properties", "children"]}}}, "required": ["division", "sortIndex", "lite", "standard", "userAgents"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"division" : "Copyright/Plagiarism", "sortIndex" : 320, "lite" : false, "standard" : true, "userAgents" : [{"userAgent" : "Copyright/Plagiarism", "browser" : "copyright/plagiarism", "properties" : {"Parent" : "DefaultProperties", "Comment" : "Copyright/Plagiarism"}, "children" : [{"match" : "BDFetch", "browser" : "bdfetch"}, {"match" : "copyright sheriff (*)", "browser" : "copyright sheriff"}, {"match" : "CopyRightCheck*", "browser" : "copyrightcheck"}, {"match" : "FairAd Client*", "browser" : "fairad client"}, {"match" : "iCopyright Conductor*", "browser" : "icopyright conductor"}, {"match" : "IPiumBot laurion(dot)com", "browser" : "ipiumbot"}, {"match" : "IWAgent/*", "browser" : "brand protect"}, {"match" : "Mozilla/5.0 (compatible; DKIMRepBot/*)", "browser" : "dkimrepbot"}, {"match" : "SlySearch/*", "browser" : "slysearch"}, {"match" : "TutorGigBot/*", "browser" : "tutorgig"}]}]} | json_instruct | {"type": "object", "properties": {"division": {"type": "string"}, "sortIndex": {"type": "integer"}, "lite": {"type": "boolean"}, "standard": {"type": "boolean"}, "userAgents": {"type": "array", "items": {"type": "object", "properties": {"userAgent": {"type": "string"}, "browser": {"type": "string"}, "properties": {"type": "object", "properties": {"Parent": {"type": "string"}, "Comment": {"type": "string"}}, "required": ["Parent", "Comment"]}, "children": {"type": "array", "items": {"type": "object", "properties": {"match": {"type": "string"}, "browser": {"type": "string"}}, "required": ["match", "browser"]}}}, "required": ["userAgent", "browser", "properties", "children"]}}}, "required": ["division", "sortIndex", "lite", "standard", "userAgents"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"namaKab" : "SINJAI", "originalFilename" : "20181031_092304.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 225495, "noUrut" : 1, "nama" : "EDY JUNAEDY, A.Md.", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "SINJAI", "originalFilename" : "FOTO PAK SIRMAN.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 218122, "noUrut" : 2, "nama" : "H. ANDI SIRMAN, S.Pd.", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "SINJAI", "originalFilename" : "FOTO AHS.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 237520, "noUrut" : 3, "nama" : "ANDI HASRAWATI SYAHRIR, S.Kom.", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "SINJAI", "originalFilename" : "foto.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 227477, "noUrut" : 4, "nama" : "ROSTINA, A.Md.Keb.", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "SINJAI", "originalFilename" : "8.Foto.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 213499, "noUrut" : 5, "nama" : "AMBO TUWO, S.E.,M.Si", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "SINJAI", "originalFilename" : "IMG_20180630_0001.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 217669, "noUrut" : 6, "nama" : "A.ASWAN", "stringJenisKelamin" : "Laki-Laki"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1104050", "regency_id" : "1104", "name" : "BADAR"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"survey.css": {"type": "string"}, "survey.jquery.js": {"type": "string"}, "survey.jquery.min.js": {"type": "string"}, "survey.min.css": {"type": "string"}}, "required": ["survey.css", "survey.jquery.js", "survey.jquery.min.js", "survey.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"survey.css" : "sha512-XdouxPgaGgampQAEAukGxBMaZWsdyPf9F3JNhU63adllSwOd+oaIiSnzrq12gzUVfmZSBnA8ajDtCurVzCy3iA==", "survey.jquery.js" : "sha512-ZKpj6CrLExwY44x4+mJx+RAMHov2N/+mACgHsZQwBi3WaPyF2rOObVXlP6nqZQx/qPcZGCB13t6zW4X+CKmkwQ==", "survey.jquery.min.js" : "sha512-Mt5ZSXKIv16WaAwT7iQni+XQNly1/ghcEquTdpNwu+b+Yketvh4GLUOI6YcyrNLB060oz1GLvavcvMjgDxYmrA==", "survey.min.css" : "sha512-eEr0CKfi6NMArC6RxxAsg5FVvt+MA0zRZHHxJRHoXcLQqPINe6/eQf8ux9goGLUQzVyUOJAKCH0ZzZooQWjBhw=="} | json_instruct | {"type": "object", "properties": {"survey.css": {"type": "string"}, "survey.jquery.js": {"type": "string"}, "survey.jquery.min.js": {"type": "string"}, "survey.min.css": {"type": "string"}}, "required": ["survey.css", "survey.jquery.js", "survey.jquery.min.js", "survey.min.css"], "$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"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "premises": {"type": "array", "items": {"type": "string"}}}, "required": ["citations", "argumentText", "conclusion", "language", "lookupTerms", "metaLanguage", "premises"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"citations" : [{"textCitation" : "[See 2rexuz on Metamath](http://us.metamath.org/mpegif/2rexuz.html)"}], "argumentText" : "ARGUMENT\n\n| Step | Hyp | Ref | Expression |\n|---|---|---|---|\n\n| 1 | | #P_rexuz2 | |- ( E. n e. ( ZZ>= ` m ) ph <-> ( m e. ZZ /\\ E. n e. ZZ ( m <_ n /\\ ph ) ) ) |\n| 2 | 1 | #P_exbii | |- ( E. m E. n e. ( ZZ>= ` m ) ph <-> E. m ( m e. ZZ /\\ E. n e. ZZ ( m <_ n /\\ ph ) ) ) |\n| 3 | | #P_df-rex | |- ( E. m e. ZZ E. n e. ZZ ( m <_ n /\\ ph ) <-> E. m ( m e. ZZ /\\ E. n e. ZZ ( m <_ n /\\ ph ) ) ) |\n| 4 | 2, 3 | #P_bitr4i | |- ( E. m E. n e. ( ZZ>= ` m ) ph <-> E. m e. ZZ E. n e. ZZ ( m <_ n /\\ ph ) ) |", "conclusion" : "#P_2rexuz", "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_wrex--1", "#T_vn", "#T_wrex--2", "#T_cuz", "#T_cfv", "#T_vm", "#T_wph", "#T_wb", "#T_vm", "#T_wcel", "#T_cz", "#T_wa", "#T_wrex--1", "#T_vn", "#T_wrex--2", "#T_cz", "#T_vm", "#T_cle", "#T_vn", "#T_wa", "#T_wph", "#T_wex", "#T_vm", "#T_wrex--1", "#T_vn", "#T_wrex--2", "#T_cuz", "#T_cfv", "#T_vm", "#T_wph", "#T_wb", "#T_wex", "#T_vm", "#T_vm", "#T_wcel", "#T_cz", "#T_wa", "#T_wrex--1", "#T_vn", "#T_wrex--2", "#T_cz", "#T_vm", "#T_cle", "#T_vn", "#T_wa", "#T_wph", "#T_wrex--1", "#T_vm", "#T_wrex--2", "#T_cz", "#T_wrex--1", "#T_vn", "#T_wrex--2", "#T_cz", "#T_vm", "#T_cle", "#T_vn", "#T_wa", "#T_wph", "#T_wb", "#T_wex", "#T_vm", "#T_vm", "#T_wcel", "#T_cz", "#T_wa", "#T_wrex--1", "#T_vn", "#T_wrex--2", "#T_cz", "#T_vm", "#T_cle", "#T_vn", "#T_wa", "#T_wph", "#T_wex", "#T_vm", "#T_wrex--1", "#T_vn", "#T_wrex--2", "#T_cuz", "#T_cfv", "#T_vm", "#T_wph", "#T_wb", "#T_wrex--1", "#T_vm", "#T_wrex--2", "#T_cz", "#T_wrex--1", "#T_vn", "#T_wrex--2", "#T_cz", "#T_vm", "#T_cle", "#T_vn", "#T_wa", "#T_wph"], "metaLanguage" : "METAMATH", "premises" : ["#P_exbii", "#P_rexuz2", "#P_df-rex", "#P_bitr4i"]} | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "premises": {"type": "array", "items": {"type": "string"}}}, "required": ["citations", "argumentText", "conclusion", "language", "lookupTerms", "metaLanguage", "premises"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"nativescript": {"type": "object", "properties": {"id": {"type": "string"}, "tns-android": {"type": "object", "properties": {"version": {"type": "string"}}, "required": ["version"]}, "tns-ios": {"type": "object", "properties": {"version": {"type": "string"}}, "required": ["version"]}}, "required": ["id", "tns-android", "tns-ios"]}, "description": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@nativescript/theme": {"type": "string"}, "nativescript-remote-builds": {"type": "string"}, "tns-core-modules": {"type": "string"}}, "required": ["@nativescript/theme", "nativescript-remote-builds", "tns-core-modules"]}, "devDependencies": {"type": "object", "properties": {"nativescript-dev-webpack": {"type": "string"}, "node-sass": {"type": "string"}, "sass-loader": {"type": "string"}}, "required": ["nativescript-dev-webpack", "node-sass", "sass-loader"]}, "gitHead": {"type": "string"}, "readme": {"type": "string"}}, "required": ["nativescript", "description", "license", "repository", "dependencies", "devDependencies", "gitHead", "readme"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nativescript" : {"id" : "org.nativescript.gitfind", "tns-android" : {"version" : "6.4.1"}, "tns-ios" : {"version" : "6.4.0"}}, "description" : "NativeScript Application", "license" : "SEE LICENSE IN <your-license-filename>", "repository" : "<fill-your-repository-here>", "dependencies" : {"@nativescript/theme" : "~2.3.0", "nativescript-remote-builds" : "^1.0.0", "tns-core-modules" : "~6.4.0"}, "devDependencies" : {"nativescript-dev-webpack" : "~1.5.0", "node-sass" : "^4.13.1", "sass-loader" : "^8.0.2"}, "gitHead" : "d8bdf0799a219051f28f8abd7c258d2bf2fce6e1", "readme" : "NativeScript Application"} | json_instruct | {"type": "object", "properties": {"nativescript": {"type": "object", "properties": {"id": {"type": "string"}, "tns-android": {"type": "object", "properties": {"version": {"type": "string"}}, "required": ["version"]}, "tns-ios": {"type": "object", "properties": {"version": {"type": "string"}}, "required": ["version"]}}, "required": ["id", "tns-android", "tns-ios"]}, "description": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@nativescript/theme": {"type": "string"}, "nativescript-remote-builds": {"type": "string"}, "tns-core-modules": {"type": "string"}}, "required": ["@nativescript/theme", "nativescript-remote-builds", "tns-core-modules"]}, "devDependencies": {"type": "object", "properties": {"nativescript-dev-webpack": {"type": "string"}, "node-sass": {"type": "string"}, "sass-loader": {"type": "string"}}, "required": ["nativescript-dev-webpack", "node-sass", "sass-loader"]}, "gitHead": {"type": "string"}, "readme": {"type": "string"}}, "required": ["nativescript", "description", "license", "repository", "dependencies", "devDependencies", "gitHead", "readme"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Objective-C": {"type": "integer"}, "C": {"type": "integer"}}, "required": ["Objective-C", "C"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Objective-C" : 1200645, "C" : 19095} | json_instruct | {"type": "object", "properties": {"Objective-C": {"type": "integer"}, "C": {"type": "integer"}}, "required": ["Objective-C", "C"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "prepublishOnly": {"type": "string"}, "test": {"type": "string"}, "lint": {"type": "string"}}, "required": ["build", "prepublishOnly", "test", "lint"]}, "files": {"type": "array", "items": {"type": "string"}}, "jest": {"type": "object", "properties": {"transform": {"type": "object", "properties": {"^.+\\.ts$": {"type": "string"}}, "required": ["^.+\\.ts$"]}}, "required": ["transform"]}, "devDependencies": {"type": "object", "properties": {"@gplane/tsconfig": {"type": "string"}, "@types/jest": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-gplane": {"type": "string"}, "eslint-formatter-beauty": {"type": "string"}, "jest": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-typescript2": {"type": "string"}, "rollup-plugin-uglify": {"type": "string"}, "ts-jest": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@gplane/tsconfig", "@types/jest", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "eslint-config-gplane", "eslint-formatter-beauty", "jest", "rollup", "rollup-plugin-typescript2", "rollup-plugin-uglify", "ts-jest", "typescript"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "private", "scripts", "files", "jest", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "simple-base", "version" : "1.0.0", "description" : "A simple base36/base58 converter.", "main" : "dist/index.js", "repository" : "https://github.com/g-plane/simple-base", "author" : "GPlane", "license" : "MIT", "private" : false, "scripts" : {"build" : "rollup -c", "prepublishOnly" : "npm run build", "test" : "jest", "lint" : "eslint . -f=beauty --ext=.ts,.js"}, "files" : ["dist"], "jest" : {"transform" : {"^.+\\.ts$" : "ts-jest"}}, "devDependencies" : {"@gplane/tsconfig" : "^1.0.0", "@types/jest" : "^24.0.9", "@typescript-eslint/eslint-plugin" : "^1.4.2", "@typescript-eslint/parser" : "^1.4.2", "eslint" : "^5.15.0", "eslint-config-gplane" : "^5.1.2", "eslint-formatter-beauty" : "^3.0.0", "jest" : "^24.1.0", "rollup" : "^1.4.1", "rollup-plugin-typescript2" : "^0.19.3", "rollup-plugin-uglify" : "^6.0.2", "ts-jest" : "^24.0.0", "typescript" : "^3.3.3333"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "prepublishOnly": {"type": "string"}, "test": {"type": "string"}, "lint": {"type": "string"}}, "required": ["build", "prepublishOnly", "test", "lint"]}, "files": {"type": "array", "items": {"type": "string"}}, "jest": {"type": "object", "properties": {"transform": {"type": "object", "properties": {"^.+\\.ts$": {"type": "string"}}, "required": ["^.+\\.ts$"]}}, "required": ["transform"]}, "devDependencies": {"type": "object", "properties": {"@gplane/tsconfig": {"type": "string"}, "@types/jest": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-gplane": {"type": "string"}, "eslint-formatter-beauty": {"type": "string"}, "jest": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-typescript2": {"type": "string"}, "rollup-plugin-uglify": {"type": "string"}, "ts-jest": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@gplane/tsconfig", "@types/jest", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "eslint-config-gplane", "eslint-formatter-beauty", "jest", "rollup", "rollup-plugin-typescript2", "rollup-plugin-uglify", "ts-jest", "typescript"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "private", "scripts", "files", "jest", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"(0, 0, 2)": {"type": "string"}, "(1, 0, 1)": {"type": "string"}, "(1, 1, 1)": {"type": "string"}, "(2, 0, 1)": {"type": "string"}, "(2, 1, 1)": {"type": "string"}}, "required": ["(0, 0, 2)", "(1, 0, 1)", "(1, 1, 1)", "(2, 0, 1)", "(2, 1, 1)"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"(0, 0, 2)" : "Malus domestica 'Dabinett'", "(1, 0, 1)" : "Cultivar", "(1, 1, 1)" : "'Dabinett'", "(2, 0, 1)" : "Origin", "(2, 1, 1)" : "England, probably early 1900s"} | json_instruct | {"type": "object", "properties": {"(0, 0, 2)": {"type": "string"}, "(1, 0, 1)": {"type": "string"}, "(1, 1, 1)": {"type": "string"}, "(2, 0, 1)": {"type": "string"}, "(2, 1, 1)": {"type": "string"}}, "required": ["(0, 0, 2)", "(1, 0, 1)", "(1, 1, 1)", "(2, 0, 1)", "(2, 1, 1)"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"city": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}, "borders": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}}}, "required": ["city", "borders"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"city" : {"name" : "MONTANHAS", "state" : "RN"}, "borders" : [[{"lat" : -6.52163278842238, "lng" : -35.22442937441605}, {"lat" : -6.530329146273061, "lng" : -35.22977857342238}, {"lat" : -6.534010423941879, "lng" : -35.25321053433862}, {"lat" : -6.543877851081902, "lng" : -35.274565149462035}, {"lat" : -6.544341412925803, "lng" : -35.33077285918006}, {"lat" : -6.538616812615771, "lng" : -35.34126371704684}, {"lat" : -6.449605496696279, "lng" : -35.31436085057277}, {"lat" : -6.448540156203194, "lng" : -35.27917397799666}, {"lat" : -6.480937066492402, "lng" : -35.27537322179671}, {"lat" : -6.52163278842238, "lng" : -35.22442937441605}]]} | json_instruct | {"type": "object", "properties": {"city": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}, "borders": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}}}, "required": ["city", "borders"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "email", "homepage", "role"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"": {"type": "string"}}, "required": [""]}}, "required": ["psr-4"]}}, "required": ["name", "version", "type", "description", "keywords", "homepage", "license", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "alistairshaw/name-exploder", "version" : "0.1.3", "type" : "library", "description" : "Simple class to provide title, first name, middle initial and last name from a full name field (or in reverse). Works well for western(ish) names, but has sensible defaults otherwise", "keywords" : ["names", "western names", "titles", "first name", "last name", "surname", "initials"], "homepage" : "https://github.com/alistairshaw/name-exploder", "license" : "MIT", "authors" : [{"name" : "Alistair Shaw", "email" : "alistairshaw@gmail.com", "homepage" : "http://alistairshaw.com", "role" : "Developer"}], "require" : {"php" : ">=5.4"}, "require-dev" : {"phpunit/phpunit" : "~5"}, "autoload" : {"psr-4" : {"" : "src"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "email", "homepage", "role"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"": {"type": "string"}}, "required": [""]}}, "required": ["psr-4"]}}, "required": ["name", "version", "type", "description", "keywords", "homepage", "license", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}, "icao": {"type": "string"}, "iata": {"type": "string"}, "usaf": {"type": "string"}}, "required": ["wmo", "icao", "iata", "usaf"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "93401", "name" : {"en" : "Ohakea"}, "country" : "NZ", "region" : "MWT", "identifiers" : {"wmo" : "93401", "icao" : "NZOH", "iata" : "OHA", "usaf" : "934010"}, "location" : {"latitude" : -40.2, "longitude" : 175.3667, "elevation" : 50}, "timezone" : "Pacific/Auckland"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}, "icao": {"type": "string"}, "iata": {"type": "string"}, "usaf": {"type": "string"}}, "required": ["wmo", "icao", "iata", "usaf"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"hatena-blog-api2": {"type": "string"}}, "required": ["hatena-blog-api2"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "examples", "version" : "0.1.0", "description" : "node-hatena-blog-api2 examples", "main" : "all.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "S.F.", "license" : "MIT", "dependencies" : {"hatena-blog-api2" : "file:///I:\\pj\\hatena-blog-api2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"hatena-blog-api2": {"type": "string"}}, "required": ["hatena-blog-api2"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"rmse": {"type": "array", "items": {"type": "number"}}}, "required": ["rmse"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rmse" : [95.93294262019302]} | json_instruct | {"type": "object", "properties": {"rmse": {"type": "array", "items": {"type": "number"}}}, "required": ["rmse"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"nom": {"type": "string"}, "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": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "L'Aiguillon", "dpt" : "Ari\u00e8ge", "inscrits" : 355, "abs" : 80, "votants" : 275, "blancs" : 40, "nuls" : 11, "exp" : 224, "res" : [{"panneau" : "1", "voix" : 117}, {"panneau" : "2", "voix" : 107}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "absconder", "definition" : "One who absconds."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "dependencies": {"type": "object", "properties": {"mocha": {"type": "string"}, "mocha-qunit-ui": {"type": "string"}, "rx": {"type": "string"}}, "required": ["mocha", "mocha-qunit-ui", "rx"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}}, "required": ["name", "title", "description", "version", "repository", "licenses", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "KoansCompleteRxJs", "title" : "Complete Koans for RxJS", "description" : "These have walked you along the path to enlightenment in order to learn RxJS.", "version" : "0.0.2", "repository" : {"type" : "git", "url" : "https://github.com/jcob-ross/Koans-Complete-RxJS.git"}, "licenses" : [{"type" : "Apache License, Version 2.0", "url" : "http://www.apache.org/licenses/LICENSE-2.0.html"}], "dependencies" : {"mocha" : "*", "mocha-qunit-ui" : "*", "rx" : "*"}, "scripts" : {"test" : "mocha --ui mocha-qunit-ui -b"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "dependencies": {"type": "object", "properties": {"mocha": {"type": "string"}, "mocha-qunit-ui": {"type": "string"}, "rx": {"type": "string"}}, "required": ["mocha", "mocha-qunit-ui", "rx"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}}, "required": ["name", "title", "description", "version", "repository", "licenses", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "answers": {"type": "array", "items": {"type": "string"}}, "program": {"type": "string"}, "motto": {"type": "string"}, "type": {"type": "string"}, "leader": {"type": "object", "properties": {"name": {"type": "string"}, "about": {"type": "string"}, "quote": {"type": "string"}, "photo": {"type": "boolean"}}, "required": ["name", "about", "quote", "photo"]}, "id": {"type": "string"}}, "required": ["name", "answers", "program", "motto", "type", "leader", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Pro kr\u00e1sn\u00fd kraj - Hlas nez\u00e1visl\u00fdch osobnost\u00ed!", "answers" : ["", "", "", ""], "program" : "http://www.prokrasnykraj.cz/#program", "motto" : "", "type" : "kv", "leader" : {"name" : "Miloslav Cv\u00e1\u010dek", "about" : "Absolvent EF V\u0160Z v Brn\u011b a doktorandsk\u00e9ho studia na EF V\u0160B TU Ostrava. Po ukon\u010den\u00ed mana\u017eersk\u00e9 pr\u00e1ce v n\u011bkter\u00fdch \u010desk\u00fdch firm\u00e1ch, naposledy jako \u0159editel marketingu ROMO a.s., od roku 1997 pak buduje z nuly vlastn\u00ed skupinu ISMM Group, kter\u00e1 se specializuje na v\u00fdrobu stroj\u00edrensk\u00fdch d\u00edl\u016f a podskupin pro evropsk\u00e9 v\u00fdrobce zem\u011bd\u011blsk\u00e9 a manipula\u010dn\u00ed techniky. Skupina ISMM v MSK vlastn\u00ed n\u011bkolik v\u00fdrobn\u00edch z\u00e1vod\u016f a zam\u011bstn\u00e1v\u00e1 cca 350 zam\u011bstnanc\u016f, sou\u010d\u00e1st\u00ed skupiny je i Hotel Gong ve \u0160tramberku, v\u00fdrobce teraco v\u00fdrobk\u016f spole\u010dnost ISMM & TESO s.r.o. a v\u00fdrobce vag\u00f3nov\u00fdch komponent\u016f ISMM & EGAS s.r.o. Skupina podporuje \u0159adu sportovn\u00edch klub\u016f, kulturn\u00edch projekt\u016f v r\u00e1mci MSK a d\u00e1le obce v m\u00edstech sv\u00e9ho p\u016fsoben\u00ed.", "quote" : "", "photo" : true}, "id" : "msk/pro-krasny-kraj"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "answers": {"type": "array", "items": {"type": "string"}}, "program": {"type": "string"}, "motto": {"type": "string"}, "type": {"type": "string"}, "leader": {"type": "object", "properties": {"name": {"type": "string"}, "about": {"type": "string"}, "quote": {"type": "string"}, "photo": {"type": "boolean"}}, "required": ["name", "about", "quote", "photo"]}, "id": {"type": "string"}}, "required": ["name", "answers", "program", "motto", "type", "leader", "id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"version": {"type": "string"}, "tag": {"type": "string"}, "date": {"type": "string"}, "comments": {"type": "object", "properties": {}, "required": []}}, "required": ["version", "tag", "date", "comments"]}}}, "required": ["name", "entries"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@yume-chan/adb-credential-web", "entries" : [{"version" : "0.0.10", "tag" : "@yume-chan/adb-credential-web_v0.0.10", "date" : "Sun, 09 Jan 2022 15:52:20 GMT", "comments" : {}}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"version": {"type": "string"}, "tag": {"type": "string"}, "date": {"type": "string"}, "comments": {"type": "object", "properties": {}, "required": []}}, "required": ["version", "tag", "date", "comments"]}}}, "required": ["name", "entries"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}}, "required": ["start", "dev"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bcryptjs": {"type": "string"}, "connect-flash": {"type": "string"}, "consolidate": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-ejs-layouts": {"type": "string"}, "express-session": {"type": "string"}, "mocha": {"type": "string"}, "mongo": {"type": "string"}, "mongodb": {"type": "string"}, "mongoose": {"type": "string"}, "multer": {"type": "string"}, "passport": {"type": "string"}, "passport-local": {"type": "string"}, "path": {"type": "string"}, "socketio": {"type": "string"}}, "required": ["bcryptjs", "connect-flash", "consolidate", "ejs", "express", "express-ejs-layouts", "express-session", "mocha", "mongo", "mongodb", "mongoose", "multer", "passport", "passport-local", "path", "socketio"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "login", "version" : "1.0.0", "description" : "", "main" : "app.js", "scripts" : {"start" : "node app.js", "dev" : "nodemon app.js"}, "keywords" : [], "author" : "", "license" : "ISC", "dependencies" : {"bcryptjs" : "^2.4.3", "connect-flash" : "^0.1.1", "consolidate" : "^0.15.1", "ejs" : "^2.6.2", "express" : "^4.17.1", "express-ejs-layouts" : "^2.5.0", "express-session" : "^1.16.2", "mocha" : "^6.1.4", "mongo" : "^0.1.0", "mongodb" : "^3.3.0-beta2", "mongoose" : "^5.6.4", "multer" : "^1.4.2", "passport" : "^0.4.0", "passport-local" : "^1.0.0", "path" : "^0.12.7", "socketio" : "^1.0.0"}, "devDependencies" : {"nodemon" : "^1.19.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}}, "required": ["start", "dev"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bcryptjs": {"type": "string"}, "connect-flash": {"type": "string"}, "consolidate": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-ejs-layouts": {"type": "string"}, "express-session": {"type": "string"}, "mocha": {"type": "string"}, "mongo": {"type": "string"}, "mongodb": {"type": "string"}, "mongoose": {"type": "string"}, "multer": {"type": "string"}, "passport": {"type": "string"}, "passport-local": {"type": "string"}, "path": {"type": "string"}, "socketio": {"type": "string"}}, "required": ["bcryptjs", "connect-flash", "consolidate", "ejs", "express", "express-ejs-layouts", "express-session", "mocha", "mongo", "mongodb", "mongoose", "multer", "passport", "passport-local", "path", "socketio"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$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" : ["Stir together the potato flakes, pancake mix, onion, Cheddar cheese, milk, egg, olive oil, garlic powder, salt, pepper, and cayenne pepper in a bowl until well combined.", "Grease a griddle or large skillet, and place over medium heat. Drop pancakes, 1/4 cup at a time, onto the hot griddle, and cook until the edges look dry and 1 bubble appears in the center, about 3 minutes. Flip the pancakes, and cook until browned on the other side, about 3 more minutes."], "ingredients" : ["2/3 cup instant mashed potato flakes", "1/3 cup complete dry pancake mix", "1/2 cup chopped onion", "1 cup shredded Cheddar cheese", "1 cup skim milk", "1 egg, beaten", "1 tablespoon extra-virgin olive oil", "1/2 teaspoon garlic powder", "salt and pepper to taste", "1 pinch cayenne pepper (optional)"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Mountain Mama's Potato Pancakes", "url" : "http://allrecipes.com/recipe/214666/mountain-mamas-potato-pancakes/"} | 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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["140425203200", "\u9633\u9ad8\u6751\u59d4\u4f1a", "210", "0"], ["140425203201", "\u8f66\u5f53\u6751\u59d4\u4f1a", "220", "0"], ["140425203202", "\u5965\u6cbb\u6751\u59d4\u4f1a", "220", "0"], ["140425203203", "\u6cb3\u5357\u6ee9\u6751\u59d4\u4f1a", "220", "0"], ["140425203204", "\u4faf\u58c1\u6751\u59d4\u4f1a", "220", "0"], ["140425203205", "\u4eab\u5f55\u6700\u6751\u59d4\u4f1a", "220", "0"], ["140425203206", "\u5357\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["140425203207", "\u8ff4\u6e90\u5934\u6751\u59d4\u4f1a", "220", "0"], ["140425203208", "\u4efb\u5bb6\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["140425203209", "\u4e1c\u576a\u6751\u59d4\u4f1a", "220", "0"], ["140425203210", "\u5802\u8033\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["140425203211", "\u6994\u6811\u56ed\u6751\u59d4\u4f1a", "220", "0"], ["140425203212", "\u5c97\u572a\u9053\u6751\u59d4\u4f1a", "220", "0"], ["140425203213", "\u7a7a\u4e2d\u6751\u59d4\u4f1a", "220", "0"], ["140425203214", "\u5fb7\u548c\u6751\u59d4\u4f1a", "220", "0"], ["140425203215", "\u73e9\u5802\u6751\u59d4\u4f1a", "220", "0"], ["140425203216", "\u72ee\u62b1\u53e3\u6751\u59d4\u4f1a", "220", "0"], ["140425203217", "\u9e5e\u5b50\u5761\u6751\u59d4\u4f1a", "220", "0"], ["140425203218", "\u5468\u5bb6\u5cea\u6751\u59d4\u4f1a", "220", "0"], ["140425203219", "\u77f3\u6cc9\u6c9f\u6751\u59d4\u4f1a", "220", "0"], ["140425203220", "\u4faf\u5bb6\u6ee9\u6751\u59d4\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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" : 85926487, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "895931654c6ea4a6bf90ef40c975db43", "wof:id" : 85926487, "wof:repo" : "whosonfirst-data-admin-kr"}, "bbox" : [129.057453, 35.156822, 129.057453, 35.156822], "geometry" : {"coordinates" : [129.057453, 35.156822], "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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "integer"}, "2": {"type": "array", "items": {"type": "string"}}}, "required": ["0", "1", "2"]}}}, "required": ["baseObjects", "returnObjects", "callbackArgs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"baseObjects" : ["[\"lu\",\"!\",\"C\",\"c\",\">\",\"Bq;$\"]", "[\"lu\",\"!\",\"C\",\"c\",\">\",\"Bq;$\"]", "[\"lu\",\"!\",\"C\",\"c\",\">\",\"Bq;$\"]", "[\"lu\",\"!\",\"C\",\"c\",\">\",\"Bq;$\"]"], "returnObjects" : ["\"Error\"", "\"Error\"", "\"Error\"", "\"Error\""], "callbackArgs" : [{"0" : "lu", "1" : 0, "2" : ["lu", "!", "C", "c", ">", "Bq;$"]}, {"0" : "lu", "1" : 0, "2" : ["lu", "!", "C", "c", ">", "Bq;$"]}, {"0" : "lu", "1" : 0, "2" : ["lu", "!", "C", "c", ">", "Bq;$"]}, {"0" : "lu", "1" : 0, "2" : ["lu", "!", "C", "c", ">", "Bq;$"]}]} | json_instruct | {"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "integer"}, "2": {"type": "array", "items": {"type": "string"}}}, "required": ["0", "1", "2"]}}}, "required": ["baseObjects", "returnObjects", "callbackArgs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "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" : 85895609, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "526b8974329099cac5a5241a823bb79b", "wof:id" : 85895609, "wof:repo" : "whosonfirst-data-admin-ca"}, "bbox" : [-79.399266, 43.820333, -79.399266, 43.820333], "geometry" : {"coordinates" : [-79.399266, 43.820333], "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#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"sourceDefinitionId": {"type": "string"}, "name": {"type": "string"}, "dockerRepository": {"type": "string"}, "dockerImageTag": {"type": "string"}, "documentationUrl": {"type": "string"}, "icon": {"type": "string"}}, "required": ["sourceDefinitionId", "name", "dockerRepository", "dockerImageTag", "documentationUrl", "icon"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sourceDefinitionId" : "90916976-a132-4ce9-8bce-82a03dd58788", "name" : "BambooHR", "dockerRepository" : "airbyte/source-bamboo-hr", "dockerImageTag" : "0.1.0", "documentationUrl" : "https://docs.airbyte.io/integrations/sources/bamboo-hr", "icon" : "bamboohr.svg"} | json_instruct | {"type": "object", "properties": {"sourceDefinitionId": {"type": "string"}, "name": {"type": "string"}, "dockerRepository": {"type": "string"}, "dockerImageTag": {"type": "string"}, "documentationUrl": {"type": "string"}, "icon": {"type": "string"}}, "required": ["sourceDefinitionId", "name", "dockerRepository", "dockerImageTag", "documentationUrl", "icon"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id_5836": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_5836"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id_5836" : {"publicdate" : "2011-10-25 18:48:20", "title" : "Tip Lewis and His Lamp"}} | json_instruct | {"type": "object", "properties": {"id_5836": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_5836"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible 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": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Combine sorrel, wine and shallots in heavy small saucepan. Stir over medium heat until sorrel wilts, about 2 minutes. Add cream and lime juice. Boil until reduced to sauce consistency, about 12 minutes. Transfer sauce to blender. Pur\u00e9e until almost smooth. Return sauce to same saucepan. Season with ground white pepper and salt.", "Finely grind pecans, tarragon and basil in processor. Blend in butter. Season with salt and pepper. Transfer to small bowl. (Sauce and nut mixture can be made 1 day ahead. Cover separately and chill. Let nut mixture stand at room temperature 30 minutes before using.)", "Preheat oven to 350\u00b0F. Oil large baking sheet. Arrange salmon on prepared sheet. Sprinkle lightly with salt and pepper. Spoon equal amount of nut mixture over top of each fillet.", "Bake salmon until cooked through, about 20 minutes.", "Meanwhile, bring sauce to simmer.", "Using spatula, transfer salmon to plates. Spoon sauce around fish."], "ingredients" : ["1/2 cup (packed) chopped fresh sorrel or spinach", "2 tablespoons dry white wine", "1 1/2 teaspoons minced shallots", "1 cup whipping cream", "1 1/2 teaspoons fresh lime juice", "ground white pepper", "1/2 cup pecans (about 2 ounces)", "1 1/2 teaspoons chopped fresh tarragon or 1/2 teaspoon dried", "1 1/2 teaspoons chopped fresh basil or 1/2 teaspoon dried", "1 tablespoon butter, room temperature", "4 6-ounce salmon fillets"], "language" : "en-US", "source" : "www.epicurious.com", "tags" : ["Leafy Green", "Herb", "Bake", "Low Carb", "Pecan", "Salmon", "Summer"], "title" : "Pecan-Crusted Salmon with Sorrel Sauce", "url" : "http://www.epicurious.com/recipes/food/views/pecan-crusted-salmon-with-sorrel-sauce-2272"} | 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": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"": {"type": "array", "items": {"type": "string"}}, "mutlicursor.insertAbove": {"type": "string"}, "mutlicursor.insertBelow": {"type": "string"}, "mutlicursor.insertAtEndOfEachLineSelected": {"type": "string"}, "addSelectionToNextFindMatch": {"type": "string"}, "addSelectionToPreviousFindMatch": {"type": "string"}, "moveSelectionToNextFindMatch": {"type": "string"}, "moveSelectionToPreviousFindMatch": {"type": "string"}, "selectAllOccurrencesOfFindMatch": {"type": "string"}, "changeAll.label": {"type": "string"}}, "required": ["", "mutlicursor.insertAbove", "mutlicursor.insertBelow", "mutlicursor.insertAtEndOfEachLineSelected", "addSelectionToNextFindMatch", "addSelectionToPreviousFindMatch", "moveSelectionToNextFindMatch", "moveSelectionToPreviousFindMatch", "selectAllOccurrencesOfFindMatch", "changeAll.label"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"" : ["--------------------------------------------------------------------------------------------", "Copyright (c) Microsoft Corporation. All rights reserved.", "Licensed under the Source EULA. See License.txt in the project root for license information.", "--------------------------------------------------------------------------------------------", "Do not edit this file. It is machine generated."], "mutlicursor.insertAbove" : "Inserir cursor acima", "mutlicursor.insertBelow" : "Inserir cursor abaixo", "mutlicursor.insertAtEndOfEachLineSelected" : "Adicionar Cursores ao Final das Linhas", "addSelectionToNextFindMatch" : "Adicionar Sele\u00e7\u00e3o ao Pr\u00f3ximo Localizar Correspond\u00eancia", "addSelectionToPreviousFindMatch" : "Adicionar Sele\u00e7\u00e3o \u00e0 Correspond\u00eancia de Localiza\u00e7\u00e3o Anterior", "moveSelectionToNextFindMatch" : "Mover \u00daltima Sele\u00e7\u00e3o para Pr\u00f3ximo Localizar Correspond\u00eancia", "moveSelectionToPreviousFindMatch" : "Mover \u00daltima Sele\u00e7\u00e3o para Correspond\u00eancia de Localiza\u00e7\u00e3o Anterior", "selectAllOccurrencesOfFindMatch" : "Selecionar Todas as Ocorr\u00eancias de Localizar Correspond\u00eancia", "changeAll.label" : "Alterar todas as ocorr\u00eancias"} | json_instruct | {"type": "object", "properties": {"": {"type": "array", "items": {"type": "string"}}, "mutlicursor.insertAbove": {"type": "string"}, "mutlicursor.insertBelow": {"type": "string"}, "mutlicursor.insertAtEndOfEachLineSelected": {"type": "string"}, "addSelectionToNextFindMatch": {"type": "string"}, "addSelectionToPreviousFindMatch": {"type": "string"}, "moveSelectionToNextFindMatch": {"type": "string"}, "moveSelectionToPreviousFindMatch": {"type": "string"}, "selectAllOccurrencesOfFindMatch": {"type": "string"}, "changeAll.label": {"type": "string"}}, "required": ["", "mutlicursor.insertAbove", "mutlicursor.insertBelow", "mutlicursor.insertAtEndOfEachLineSelected", "addSelectionToNextFindMatch", "addSelectionToPreviousFindMatch", "moveSelectionToNextFindMatch", "moveSelectionToPreviousFindMatch", "selectAllOccurrencesOfFindMatch", "changeAll.label"], "$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.