input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "originalId": {"type": "integer"}, "rarity": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "load": {"type": "integer"}, "energy": {"type": "integer"}, "category": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "string"}, "type": {"type": "string"}}, "required": ["id", "category", "type"]}}}, "required": ["id", "originalId", "rarity", "name", "description", "load", "energy", "category"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "redtailed_weasel", "originalId" : 369124, "rarity" : 3, "name" : "Red-Tailed Weasel", "description" : "Prank-prone rascals with a slim and agile form.\\nThese weasels are red from head to toe and are highly proficient in hunting bugs and lizards. Red-Tailed Weasels are very visible, but many predators who fear fire keep their distance due to the similarity between the weasels' coloration and the flames of Pyro. In the Realm Within, where animals live in harmony, the intimidating color of the weasels coats has afforded them a higher status.", "load" : 350, "energy" : 100, "category" : [{"id" : 9002, "category" : "Outdoor Creature", "type" : "Exterior"}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "originalId": {"type": "integer"}, "rarity": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "load": {"type": "integer"}, "energy": {"type": "integer"}, "category": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "string"}, "type": {"type": "string"}}, "required": ["id", "category", "type"]}}}, "required": ["id", "originalId", "rarity", "name", "description", "load", "energy", "category"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "string"}, "lint": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "start", "lint", "test"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "express-handlebars": {"type": "string"}}, "required": ["express", "express-handlebars"]}, "devDependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "@types/express-handlebars": {"type": "string"}, "@types/mocha": {"type": "string"}, "@types/supertest": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "mocha": {"type": "string"}, "nyc": {"type": "string"}, "supertest": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/express", "@types/express-handlebars", "@types/mocha", "@types/supertest", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "mocha", "nyc", "supertest", "ts-node", "typescript"]}}, "required": ["name", "version", "description", "license", "repository", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mkargus.dev", "version" : "1.0.0", "description" : "site", "license" : "MIT", "repository" : {"type" : "git", "url" : "https://github.com/mkargus/mkargus.dev"}, "scripts" : {"build" : "tsc", "start" : "node dist/server.js", "lint" : "eslint --fix src --ext .ts", "test" : "nyc mocha -r ts-node/register src/**/*.test.ts"}, "dependencies" : {"express" : "^4.17.1", "express-handlebars" : "^5.3.2"}, "devDependencies" : {"@types/express" : "^4.17.12", "@types/express-handlebars" : "^5.3.0", "@types/mocha" : "^8.2.2", "@types/supertest" : "^2.0.11", "@typescript-eslint/eslint-plugin" : "^4.26.1", "@typescript-eslint/parser" : "^4.26.1", "eslint" : "^7.28.0", "mocha" : "^9.1.3", "nyc" : "^15.1.0", "supertest" : "^6.1.3", "ts-node" : "^10.0.0", "typescript" : "^4.3.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "string"}, "lint": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "start", "lint", "test"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "express-handlebars": {"type": "string"}}, "required": ["express", "express-handlebars"]}, "devDependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "@types/express-handlebars": {"type": "string"}, "@types/mocha": {"type": "string"}, "@types/supertest": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "mocha": {"type": "string"}, "nyc": {"type": "string"}, "supertest": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/express", "@types/express-handlebars", "@types/mocha", "@types/supertest", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "mocha", "nyc", "supertest", "ts-node", "typescript"]}}, "required": ["name", "version", "description", "license", "repository", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"telephony_alias_configuration_scheduler_oldpabx_title": {"type": "string"}}, "required": ["telephony_alias_configuration_scheduler_oldpabx_title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"telephony_alias_configuration_scheduler_oldpabx_title" : "Gestisci le chiusure eccezionali"} | json_instruct | {"type": "object", "properties": {"telephony_alias_configuration_scheduler_oldpabx_title": {"type": "string"}}, "required": ["telephony_alias_configuration_scheduler_oldpabx_title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"SUCCESS": {"type": "string"}, "REGISTRATION_SUCCESS": {"type": "string"}, "SIGNED_SUCCESS": {"type": "string"}, "USER_ALREADY_REGISTERED": {"type": "string"}, "UNAVAILABLE": {"type": "string"}, "ACCESS_DENIED": {"type": "string"}, "SIGNED_OUT_SUCCESS": {"type": "string"}, "USER_IS_NOT_AUTHORIZED": {"type": "string"}, "USER_NOT_FOUND": {"type": "string"}, "POST_NOT_FOUND": {"type": "string"}, "ALREADY_LIKED_BY_USER": {"type": "string"}, "ALREADY_UNLIKED_BY_USER": {"type": "string"}, "USER_COMMENTED_ONCE": {"type": "string"}, "REMOVE_POST": {"type": "string"}}, "required": ["SUCCESS", "REGISTRATION_SUCCESS", "SIGNED_SUCCESS", "USER_ALREADY_REGISTERED", "UNAVAILABLE", "ACCESS_DENIED", "SIGNED_OUT_SUCCESS", "USER_IS_NOT_AUTHORIZED", "USER_NOT_FOUND", "POST_NOT_FOUND", "ALREADY_LIKED_BY_USER", "ALREADY_UNLIKED_BY_USER", "USER_COMMENTED_ONCE", "REMOVE_POST"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"SUCCESS" : "Success", "REGISTRATION_SUCCESS" : "Registration Success", "SIGNED_SUCCESS" : "Signed Success", "USER_ALREADY_REGISTERED" : "User is already registered", "UNAVAILABLE" : "Unavailable", "ACCESS_DENIED" : "Access Denied", "SIGNED_OUT_SUCCESS" : "Signed Out Success", "USER_IS_NOT_AUTHORIZED" : "User is not authorized", "USER_NOT_FOUND" : "User not found", "POST_NOT_FOUND" : "Post not found", "ALREADY_LIKED_BY_USER" : "Already liked by user", "ALREADY_UNLIKED_BY_USER" : "Already unliked by user", "USER_COMMENTED_ONCE" : "User Commented once", "REMOVE_POST" : "Removed Post"} | json_instruct | {"type": "object", "properties": {"SUCCESS": {"type": "string"}, "REGISTRATION_SUCCESS": {"type": "string"}, "SIGNED_SUCCESS": {"type": "string"}, "USER_ALREADY_REGISTERED": {"type": "string"}, "UNAVAILABLE": {"type": "string"}, "ACCESS_DENIED": {"type": "string"}, "SIGNED_OUT_SUCCESS": {"type": "string"}, "USER_IS_NOT_AUTHORIZED": {"type": "string"}, "USER_NOT_FOUND": {"type": "string"}, "POST_NOT_FOUND": {"type": "string"}, "ALREADY_LIKED_BY_USER": {"type": "string"}, "ALREADY_UNLIKED_BY_USER": {"type": "string"}, "USER_COMMENTED_ONCE": {"type": "string"}, "REMOVE_POST": {"type": "string"}}, "required": ["SUCCESS", "REGISTRATION_SUCCESS", "SIGNED_SUCCESS", "USER_ALREADY_REGISTERED", "UNAVAILABLE", "ACCESS_DENIED", "SIGNED_OUT_SUCCESS", "USER_IS_NOT_AUTHORIZED", "USER_NOT_FOUND", "POST_NOT_FOUND", "ALREADY_LIKED_BY_USER", "ALREADY_UNLIKED_BY_USER", "USER_COMMENTED_ONCE", "REMOVE_POST"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "CountryID", "Latitude", "Longitude", "AccessComments", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID"]}}, "GeneralComments": {"type": "string"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "GeneralComments", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"IsRecentlyVerified" : false, "ID" : 151176, "UUID" : "70AC04B5-6FFA-4F9E-85D7-D8A8E2683F55", "DataProviderID" : 28, "DataProvidersReference" : "FR*S81*P81284*001", "OperatorID" : 3257, "UsageTypeID" : 5, "AddressInfo" : {"ID" : 151529, "Title" : "LE SEQUESTRE - Zi La Baute - Allee Du Commerce", "AddressLine1" : "Zi La Baute - Allee Du Commerce 81990 LE SEQUESTRE", "CountryID" : 80, "Latitude" : 43.917642, "Longitude" : 2.112641, "AccessComments" : "24h/24 7j/7", "DistanceUnit" : 0}, "Connections" : [{"ID" : 210894, "ConnectionTypeID" : 2, "StatusTypeID" : 50, "LevelID" : 3, "PowerKW" : 36, "CurrentTypeID" : 30}, {"ID" : 240910, "ConnectionTypeID" : 28, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 4, "CurrentTypeID" : 10}, {"ID" : 240911, "ConnectionTypeID" : 1036, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 36, "CurrentTypeID" : 20}, {"ID" : 240912, "ConnectionTypeID" : 2, "StatusTypeID" : 50, "LevelID" : 3, "PowerKW" : 36, "CurrentTypeID" : 30}], "GeneralComments" : "Recharge par badge et avec une application smartphone", "StatusTypeID" : 50, "DateLastStatusUpdate" : "2020-08-27T05:11:00Z", "DataQualityLevel" : 2, "DateCreated" : "2020-03-15T10:53:00Z", "SubmissionStatusTypeID" : 100} | json_instruct | {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "CountryID", "Latitude", "Longitude", "AccessComments", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID"]}}, "GeneralComments": {"type": "string"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "GeneralComments", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"required": {"type": "boolean"}, "$schema": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["type", "required"]}, "description": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["type", "required"]}, "leadUserName": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["type", "required"]}, "assigneeType": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["type", "required"]}, "isAssigneeTypeValid": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["type", "required"]}, "project": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["type", "required"]}}, "required": ["name", "description", "leadUserName", "assigneeType", "isAssigneeTypeValid", "project"]}}, "required": ["required", "$schema", "type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"required" : true, "$schema" : "http://json-schema.org/draft-03/schema", "type" : "object", "properties" : {"name" : {"type" : "string", "required" : false}, "description" : {"type" : "string", "required" : false}, "leadUserName" : {"type" : "string", "required" : false}, "assigneeType" : {"type" : "string", "required" : false}, "isAssigneeTypeValid" : {"type" : "boolean", "required" : false}, "project" : {"type" : "string", "required" : false}}} | json_instruct | {"type": "object", "properties": {"required": {"type": "boolean"}, "$schema": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["type", "required"]}, "description": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["type", "required"]}, "leadUserName": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["type", "required"]}, "assigneeType": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["type", "required"]}, "isAssigneeTypeValid": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["type", "required"]}, "project": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["type", "required"]}}, "required": ["name", "description", "leadUserName", "assigneeType", "isAssigneeTypeValid", "project"]}}, "required": ["required", "$schema", "type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"expires_in": {"type": "integer"}, "jsapi_ticket": {"type": "string"}}, "required": ["expires_in", "jsapi_ticket"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"expires_in" : 1517897289, "jsapi_ticket" : "HoagFKDcsGMVCIY2vOjf9pfuGetgfJmB6mtElt2o9aMPuwDaVfNNtG2TjhtJE5FHfBFFbebVBl8SJ8L9EIYAbw"} | json_instruct | {"type": "object", "properties": {"expires_in": {"type": "integer"}, "jsapi_ticket": {"type": "string"}}, "required": ["expires_in", "jsapi_ticket"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"html_attributions": {"type": "array", "items": {}}, "results": {"type": "array", "items": {"type": "object", "properties": {"business_status": {"type": "string"}, "geometry": {"type": "object", "properties": {"location": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "viewport": {"type": "object", "properties": {"northeast": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "southwest": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}, "required": ["northeast", "southwest"]}}, "required": ["location", "viewport"]}, "icon": {"type": "string"}, "icon_background_color": {"type": "string"}, "icon_mask_base_uri": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type": "object", "properties": {"open_now": {"type": "boolean"}}, "required": ["open_now"]}, "place_id": {"type": "string"}, "rating": {"type": "integer"}, "reference": {"type": "string"}, "scope": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}, "user_ratings_total": {"type": "integer"}, "vicinity": {"type": "string"}}, "required": ["business_status", "geometry", "icon", "icon_background_color", "icon_mask_base_uri", "name", "opening_hours", "place_id", "rating", "reference", "scope", "types", "user_ratings_total", "vicinity"]}}, "status": {"type": "string"}}, "required": ["html_attributions", "results", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"html_attributions" : [], "results" : [{"business_status" : "OPERATIONAL", "geometry" : {"location" : {"lat" : 23.8512107, "lng" : 86.4258485}, "viewport" : {"northeast" : {"lat" : 23.8530519302915, "lng" : 86.4273077302915}, "southwest" : {"lat" : 23.8503539697085, "lng" : 86.4246097697085}}}, "icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/v1/png_71/generic_business-71.png", "icon_background_color" : "#7B9EB0", "icon_mask_base_uri" : "https://maps.gstatic.com/mapfiles/place_api/icons/v2/generic_pinlet", "name" : "Dr Roshan Lal", "opening_hours" : {"open_now" : true}, "place_id" : "ChIJU1VVtjG79jkRFkbaetdR8Tc", "rating" : 5, "reference" : "ChIJU1VVtjG79jkRFkbaetdR8Tc", "scope" : "GOOGLE", "types" : ["doctor", "health", "point_of_interest", "establishment"], "user_ratings_total" : 1, "vicinity" : "VC2G+F8Q, Barajamua"}, {"business_status" : "OPERATIONAL", "geometry" : {"location" : {"lat" : 23.8540457, "lng" : 86.42363999999999}, "viewport" : {"northeast" : {"lat" : 23.8553947302915, "lng" : 86.4249889302915}, "southwest" : {"lat" : 23.8526967697085, "lng" : 86.4222909697085}}}, "icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/v1/png_71/generic_business-71.png", "icon_background_color" : "#7B9EB0", "icon_mask_base_uri" : "https://maps.gstatic.com/mapfiles/place_api/icons/v2/generic_pinlet", "name" : "Dr J Kumar", "opening_hours" : {"open_now" : true}, "photos" : [{"height" : 1920, "html_attributions" : ["<a href=\"https://maps.google.com/maps/contrib/113332647752556023828\">AZMAT HUSSAIN</a>"], "photo_reference" : "Aap_uEA3GfACZW64VA7faDP3n6NiZJsUFhT7pTXJV9RfkA6Vc3BrTle-JzNx8c8YLfU6T4-SmNNFCvdF4Iii2d9g62MLQel-T8WoHhIrSbJiQvFfdmzXQq5mDWagpN9qxyrwWW-9-MDglz381NH3WiNfKPlja9F6EaUaQDB74M1kgC6hdDk3", "width" : 1080}], "place_id" : "ChIJTe-4jXy79jkRWUek7J7GeEE", "rating" : 5, "reference" : "ChIJTe-4jXy79jkRWUek7J7GeEE", "scope" : "GOOGLE", "types" : ["doctor", "health", "point_of_interest", "establishment"], "user_ratings_total" : 1, "vicinity" : "VC3F+JF6, Loharbarwa, Barajamua"}], "status" : "OK"} | json_instruct | {"type": "object", "properties": {"html_attributions": {"type": "array", "items": {}}, "results": {"type": "array", "items": {"type": "object", "properties": {"business_status": {"type": "string"}, "geometry": {"type": "object", "properties": {"location": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "viewport": {"type": "object", "properties": {"northeast": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "southwest": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}, "required": ["northeast", "southwest"]}}, "required": ["location", "viewport"]}, "icon": {"type": "string"}, "icon_background_color": {"type": "string"}, "icon_mask_base_uri": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type": "object", "properties": {"open_now": {"type": "boolean"}}, "required": ["open_now"]}, "place_id": {"type": "string"}, "rating": {"type": "integer"}, "reference": {"type": "string"}, "scope": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}, "user_ratings_total": {"type": "integer"}, "vicinity": {"type": "string"}}, "required": ["business_status", "geometry", "icon", "icon_background_color", "icon_mask_base_uri", "name", "opening_hours", "place_id", "rating", "reference", "scope", "types", "user_ratings_total", "vicinity"]}}, "status": {"type": "string"}}, "required": ["html_attributions", "results", "status"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {}, "required": []}, "inner_path": {"type": "string"}, "modified": {"type": "number"}, "signs": {"type": "object", "properties": {"19oHzLS8uCg4oES75bMGZwUzigcwTtdACF": {"type": "string"}}, "required": ["19oHzLS8uCg4oES75bMGZwUzigcwTtdACF"]}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"address" : "1UDbADib99KE9d3qZ87NqJF2QLTHmMkoV", "cert_auth_type" : "web", "cert_sign" : "G8rlk1BiuxpRYTKaSJeEqfrtIhIhAXGHMnSO2nLtpEZSDMg1LW4i8+frRb9hvGTz9j3YHE4TFvNenD/dViytaI8=", "cert_user_id" : "zerojosh@zeroid.bit", "files" : {}, "inner_path" : "data/userdb/19oHzLS8uCg4oES75bMGZwUzigcwTtdACF/content.json", "modified" : 1482074468.429744, "signs" : {"19oHzLS8uCg4oES75bMGZwUzigcwTtdACF" : "GzVhl1wdfvHVDMoJwoeWiRN4eihOHt6t/XFZgrhQuV2CZ9kW/Vpc3qJFo9WB146tAY9uLu4gjwwuXbq6ZCKGh3I="}} | json_instruct | {"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {}, "required": []}, "inner_path": {"type": "string"}, "modified": {"type": "number"}, "signs": {"type": "object", "properties": {"19oHzLS8uCg4oES75bMGZwUzigcwTtdACF": {"type": "string"}}, "required": ["19oHzLS8uCg4oES75bMGZwUzigcwTtdACF"]}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d696-1", "text" : "INDIANA UNIVERSITY\nBLOOMINGTON, INDIANA\nRADIO AND TELEVISION SERVICE\nJanuary 9> 1961\nJAN 1 11961\nMr. Harold E. Hill\nAdministrative Vice President\nNational Association of\nL\nEducational Broadcasters\n119 Gregory Hall\nUrbana, Illinois\nDear Harold:\nWell, I see that the Hill family is going to pickup bag and\nbaggage and leave Champaign for our nation\u2019s capital. I\nhope you enjoy becoming a big city boy, but I -would be will\u00ac\ning to bet that you will miss the cheerful atmosphere of\nUrbana-Champaign.\nThe purpose of this letter is to inquire as to the makeup of\nthe Public Relations Committee of the NAEB for the current\nyear. One or two members of last year\u2019s committee have come\nto me with projects, but since it is my feeling that we have\nno status currently, I have bottled up such activities.\nFurthermore, I have a promotion idea that I would like to\npresent to the new committee, so will you clarify this matter\nfor me at your convenience.\nGive my best to Betty.\nEGS:mm"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"place_name" : "Nineveh", "state_name" : "Pennsylvania", "state_abbrv" : "PA", "lat" : "39.9615", "long" : "-80.3078"} | json_instruct | {"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"schema_version" : "1.2.0", "id" : "GHSA-4cvg-j32h-gmp6", "modified" : "2022-05-01T07:12:56Z", "published" : "2022-05-01T07:12:56Z", "aliases" : ["CVE-2006-3846"], "details" : "PHP remote file inclusion vulnerability in extadminmenus.class.php in the MultiBanners 1.0.1 for Mambo allows remote attackers to execute arbitrary PHP code via a URL in the mosConfig_absolute_path parameter.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2006-3846"}, {"type" : "WEB", "url" : "https://exchange.xforce.ibmcloud.com/vulnerabilities/27916"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/21168"}, {"type" : "WEB", "url" : "http://securityreason.com/securityalert/1277"}, {"type" : "WEB", "url" : "http://solpotcrew.org/adv/BlueSpy-adv-multibanners.txt"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/archive/1/440881/100/0/threaded"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/19100"}, {"type" : "WEB", "url" : "http://www.vupen.com/english/advisories/2006/2933"}], "database_specific" : {"cwe_ids" : ["CWE-94"], "severity" : "MODERATE", "github_reviewed" : false}} | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"dest": {"type": "string"}, "classPrefix": {"type": "string"}, "options": {"type": "array", "items": {"type": "string"}}, "uglify": {"type": "boolean"}, "files": {"type": "object", "properties": {"src": {"type": "array", "items": {"type": "string"}}}, "required": ["src"]}}, "required": ["dest", "classPrefix", "options", "uglify", "files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dest" : "dist/js/lib/modernizr-custom.js", "classPrefix" : "mod_", "options" : ["setClasses"], "uglify" : false, "files" : {"src" : ["dist/**/*.js", "dist/**/*.css", "dist/**/*.html", "dist/*.html"]}} | json_instruct | {"type": "object", "properties": {"dest": {"type": "string"}, "classPrefix": {"type": "string"}, "options": {"type": "array", "items": {"type": "string"}}, "uglify": {"type": "boolean"}, "files": {"type": "object", "properties": {"src": {"type": "array", "items": {"type": "string"}}}, "required": ["src"]}}, "required": ["dest", "classPrefix", "options", "uglify", "files"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"merged" : "E:\\Work\\React\\foodtruck-app\\android\\app\\build\\intermediates\\res\\merged\\debug\\layout-v26\\abc_screen_toolbar.xml", "source" : "C:\\Users\\lenovo\\.android\\build-cache\\2d0480075057464a8081559a164081292e8ea938\\output\\res\\layout-v26\\abc_screen_toolbar.xml"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"navigationBarBackgroundColor": {"type": "string"}, "navigationBarTextStyle": {"type": "string"}}, "required": ["navigationBarBackgroundColor", "navigationBarTextStyle"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"navigationBarBackgroundColor" : "#393a3f", "navigationBarTextStyle" : "white"} | json_instruct | {"type": "object", "properties": {"navigationBarBackgroundColor": {"type": "string"}, "navigationBarTextStyle": {"type": "string"}}, "required": ["navigationBarBackgroundColor", "navigationBarTextStyle"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "fields": {"type": "array", "items": {"type": "object", "properties": {"fieldName": {"type": "string"}, "fieldType": {"type": "string"}}, "required": ["fieldName", "fieldType"]}}, "relationships": {"type": "array", "items": {}}, "changelogDate": {"type": "string"}, "entityTableName": {"type": "string"}, "dto": {"type": "string"}, "pagination": {"type": "string"}, "service": {"type": "string"}, "jpaMetamodelFiltering": {"type": "boolean"}, "fluentMethods": {"type": "boolean"}, "readOnly": {"type": "boolean"}, "embedded": {"type": "boolean"}, "clientRootFolder": {"type": "string"}, "applications": {"type": "string"}, "angularJSSuffix": {"type": "string"}}, "required": ["name", "fields", "relationships", "changelogDate", "entityTableName", "dto", "pagination", "service", "jpaMetamodelFiltering", "fluentMethods", "readOnly", "embedded", "clientRootFolder", "applications", "angularJSSuffix"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Transaction", "fields" : [{"fieldName" : "transactionId", "fieldType" : "String"}, {"fieldName" : "file", "fieldType" : "String"}, {"fieldName" : "fileBinaries", "fieldType" : "byte[]", "fieldTypeBlobContent" : "any"}, {"fieldName" : "transactionType", "fieldType" : "String"}, {"fieldName" : "amount", "fieldType" : "BigDecimal"}, {"fieldName" : "time", "fieldType" : "ZonedDateTime"}, {"fieldName" : "currency", "fieldType" : "Currency", "fieldValues" : "USD,MYR,SGD"}, {"fieldName" : "sourceAccount", "fieldType" : "String"}, {"fieldName" : "targetAccount", "fieldType" : "String"}], "relationships" : [], "changelogDate" : "20210219054134", "entityTableName" : "transaction", "dto" : "no", "pagination" : "infinite-scroll", "service" : "serviceClass", "jpaMetamodelFiltering" : false, "fluentMethods" : true, "readOnly" : false, "embedded" : false, "clientRootFolder" : "", "applications" : "*", "angularJSSuffix" : "banking"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "fields": {"type": "array", "items": {"type": "object", "properties": {"fieldName": {"type": "string"}, "fieldType": {"type": "string"}}, "required": ["fieldName", "fieldType"]}}, "relationships": {"type": "array", "items": {}}, "changelogDate": {"type": "string"}, "entityTableName": {"type": "string"}, "dto": {"type": "string"}, "pagination": {"type": "string"}, "service": {"type": "string"}, "jpaMetamodelFiltering": {"type": "boolean"}, "fluentMethods": {"type": "boolean"}, "readOnly": {"type": "boolean"}, "embedded": {"type": "boolean"}, "clientRootFolder": {"type": "string"}, "applications": {"type": "string"}, "angularJSSuffix": {"type": "string"}}, "required": ["name", "fields", "relationships", "changelogDate", "entityTableName", "dto", "pagination", "service", "jpaMetamodelFiltering", "fluentMethods", "readOnly", "embedded", "clientRootFolder", "applications", "angularJSSuffix"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Priority Assignment for Real-Time Wormhole Communication in On-Chip Networks.", "fields" : ["priority inheritance", "wormhole switching", "best first search", "priority ceiling protocol", "deadline monotonic scheduling"], "abstract" : "Wormhole switching with fixed priority preemption has been proposed as a possible solution for real-time on-chip communication. However, none of current priority assignment policies works well in on-chip networks due to some inherent properties of the protocol. In this paper, a novel heuristic branch and bound search algorithm is introduced to explore the possible priority ordering. Differing from the traditional exhaust algorithm which costs exponential complexity, our algorithm can effectively reduce the search space. In addition, this algorithm can ensure that if a priority ordering exists that makes the traffic-flows schedulable, this priority ordering will be found by the search algorithm. By combining with schedulability analysis, a broad class of real-time communication with different QoS requirements can be explored and developed in a SoC/NoC communication platform.", "citation" : "Citations (27)", "year" : "2008", "departments" : ["University of York", "University of York"], "conf" : "rtss", "authors" : ["Zheng Shi.....http://dblp.org/pers/hd/s/Shi:Zheng", "Alan Burns.....http://dblp.org/pers/hd/b/Burns:Alan"], "pages" : 10} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "object", "properties": {"create-project": {"type": "string"}}, "required": ["create-project"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"arg": {"type": "string"}, "chalk": {"type": "string"}, "esm": {"type": "string"}, "execa": {"type": "string"}, "inquirer": {"type": "string"}, "listr": {"type": "string"}, "ncp": {"type": "string"}, "pkg-install": {"type": "string"}}, "required": ["arg", "chalk", "esm", "execa", "inquirer", "listr", "ncp", "pkg-install"]}}, "required": ["name", "version", "description", "bin", "keywords", "files", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "create-project", "version" : "1.0.0", "description" : "An example of a CLI that can scaffold a project for you based on passed args", "bin" : {"create-project" : "bin/create-project"}, "keywords" : ["cli", "scaffolder", "genrator"], "files" : ["bin/", "src/", "templates/"], "author" : "Radhi NASSER", "license" : "MIT", "dependencies" : {"arg" : "^4.1.1", "chalk" : "^2.4.2", "esm" : "^3.2.25", "execa" : "^2.0.3", "inquirer" : "^6.5.0", "listr" : "^0.14.3", "ncp" : "^2.0.0", "pkg-install" : "^1.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "object", "properties": {"create-project": {"type": "string"}}, "required": ["create-project"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"arg": {"type": "string"}, "chalk": {"type": "string"}, "esm": {"type": "string"}, "execa": {"type": "string"}, "inquirer": {"type": "string"}, "listr": {"type": "string"}, "ncp": {"type": "string"}, "pkg-install": {"type": "string"}}, "required": ["arg", "chalk", "esm", "execa", "inquirer", "listr", "ncp", "pkg-install"]}}, "required": ["name", "version", "description", "bin", "keywords", "files", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"solution_size": {"type": "integer"}, "ok": {"type": "boolean"}, "resemblance": {"type": "number"}, "problem_id": {"type": "integer"}, "solution_spec_hash": {"type": "string"}}, "required": ["solution_size", "ok", "resemblance", "problem_id", "solution_spec_hash"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"solution_size" : 119, "ok" : true, "resemblance" : 0.101562, "problem_id" : 1475, "solution_spec_hash" : "8b2157f957f350bacaff0afa17ffde0fcc870355"} | json_instruct | {"type": "object", "properties": {"solution_size": {"type": "integer"}, "ok": {"type": "boolean"}, "resemblance": {"type": "number"}, "problem_id": {"type": "integer"}, "solution_spec_hash": {"type": "string"}}, "required": ["solution_size", "ok", "resemblance", "problem_id", "solution_spec_hash"], "$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"}, "ssh_keys": {"type": "string"}, "groups": {"type": "string"}, "uid": {"type": "integer"}, "shell": {"type": "string"}, "comment": {"type": "string"}}, "required": ["id", "ssh_keys", "groups", "uid", "shell", "comment"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "leia", "ssh_keys" : "ssh-rsa Invalid SSH key data for example purposes only", "groups" : "sysadmin", "uid" : 2002, "shell" : "/bin/bash", "comment" : "There is another"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "ssh_keys": {"type": "string"}, "groups": {"type": "string"}, "uid": {"type": "integer"}, "shell": {"type": "string"}, "comment": {"type": "string"}}, "required": ["id", "ssh_keys", "groups", "uid", "shell", "comment"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0xbc91ccbfb5ca5f9b1c6f02bbfe5215c9bd8b0a91", "tool" : "osiris", "start" : 1564624866.3927348, "end" : 1564624869.1455257, "duration" : 2.752790927886963, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Timings", "description" : "Time tracking software for the Mac.", "url" : "https://www.mediaatelier.com/Timings2/"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"nan": {"type": "string"}, "prebuild-install": {"type": "string"}}, "required": ["nan", "prebuild-install"]}, "devDependencies": {"type": "object", "properties": {"prebuild": {"type": "string"}, "tree-sitter-cli": {"type": "string"}}, "required": ["prebuild", "tree-sitter-cli"]}, "scripts": {"type": "object", "properties": {"install": {"type": "string"}, "prebuild": {"type": "string"}, "prebuild:upload": {"type": "string"}, "generate": {"type": "string"}, "test": {"type": "string"}}, "required": ["install", "prebuild", "prebuild:upload", "generate", "test"]}}, "required": ["name", "version", "description", "keywords", "main", "repository", "author", "license", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "tree-sitter-rampcode", "version" : "0.8.1", "description" : "Rampcode grammar for tree-sitter", "keywords" : ["tree-sitter", "parser", "rampcode"], "main" : "index.js", "repository" : "https://github.com/pndmix/tree-sitter-rampcode", "author" : "Reo Matsumoto", "license" : "MIT", "dependencies" : {"nan" : "^2.14.1", "prebuild-install" : "^5.3.5"}, "devDependencies" : {"prebuild" : "^10.0.0", "tree-sitter-cli" : "^0.16.8"}, "scripts" : {"install" : "prebuild-install || node-gyp rebuild", "prebuild" : "prebuild -r electron -t 3.0.0 -t 4.0.4 -t 5.0.0 --strip && prebuild -t 10.12.0 -t 12.12.0 --strip", "prebuild:upload" : "prebuild --upload-all", "generate" : "tree-sitter generate && node-gyp build", "test" : "tree-sitter test"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"nan": {"type": "string"}, "prebuild-install": {"type": "string"}}, "required": ["nan", "prebuild-install"]}, "devDependencies": {"type": "object", "properties": {"prebuild": {"type": "string"}, "tree-sitter-cli": {"type": "string"}}, "required": ["prebuild", "tree-sitter-cli"]}, "scripts": {"type": "object", "properties": {"install": {"type": "string"}, "prebuild": {"type": "string"}, "prebuild:upload": {"type": "string"}, "generate": {"type": "string"}, "test": {"type": "string"}}, "required": ["install", "prebuild", "prebuild:upload", "generate", "test"]}}, "required": ["name", "version", "description", "keywords", "main", "repository", "author", "license", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"countries": {"type": "array", "items": {"type": "string"}}, "topics": {"type": "array", "items": {}}, "section_title": {"type": "string"}, "enb_start_date": {"type": "string"}, "enb_short_title": {"type": "string"}, "subtype": {"type": "string"}, "actors": {"type": "array", "items": {"type": "string"}}, "sentences": {"type": "array", "items": {"type": "string"}}, "enb_url": {"type": "string"}, "enb_long_title": {"type": "string"}, "type": {"type": "string"}, "id": {"type": "string"}, "enb_end_date": {"type": "string"}}, "required": ["countries", "topics", "section_title", "enb_start_date", "enb_short_title", "subtype", "actors", "sentences", "enb_url", "enb_long_title", "type", "id", "enb_end_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"countries" : ["United Kingdom", "China", "Croatia"], "topics" : [], "section_title" : "LEVELS OF EMISSIONS FOR THE BASE YEAR OF CROATIA:", "enb_start_date" : "06-Nov-06", "enb_short_title" : "COP/MOP2", "subtype" : "", "actors" : ["European Union", "Group of 77"], "sentences" : ["The issue was introduced in SBI plenary on 6 November, and in informal consultations coordinated by Jim Penman (UK).", "Discussions focused on Croatia's submission on establishing base year greenhouse gas emissions in accordance with UNFCCC Article 4.6(f lexibility for economies in transition).", "The SBI adopted the draft conclusions and a draft COP decision on 14 November.", "The EU noted that the decision does not affect Croatia's baseline for the purposes of implementation of Protocol Article 3.4 (LULUCF additional activities).", "The COP adopted the decision on 17 November. COP Decision : In its decision ( FCCC/SBI/2006/L.20 ), the COP notes Croatia's special circumstances and that the decision has no implications for historical emissions levels for any other parties, in particular those from the former Yugoslavia.", "The COP decides that Croatia shall be allowed to add 3.5 Mt CO2 equivalent to its base year level of greenhouse gas emissions. COP/MOP 2 REPORT COP and COP/MOP President Kibwana opened COP/MOP 2 on Monday, 6 November.", "In opening statements, the EU stressed the need to operationalize the Adaptation Fund and strengthen the capacities of LDCs to implement CDM projects.", "She highlighted the need to review and enhance the Protocol in accordance with its Article 9(r eview of the Protocol).", "The G-77/China urged progress on adaptation and improving the geographical distribution of CDM projects."], "enb_url" : "http://www.iisd.ca/vol12/enb12318e.html", "enb_long_title" : "UN Climate Change Conference \u2013 Nairobi 2006", "type" : "SBI", "id" : "enb12318e_34", "enb_end_date" : "17-Nov-06"} | json_instruct | {"type": "object", "properties": {"countries": {"type": "array", "items": {"type": "string"}}, "topics": {"type": "array", "items": {}}, "section_title": {"type": "string"}, "enb_start_date": {"type": "string"}, "enb_short_title": {"type": "string"}, "subtype": {"type": "string"}, "actors": {"type": "array", "items": {"type": "string"}}, "sentences": {"type": "array", "items": {"type": "string"}}, "enb_url": {"type": "string"}, "enb_long_title": {"type": "string"}, "type": {"type": "string"}, "id": {"type": "string"}, "enb_end_date": {"type": "string"}}, "required": ["countries", "topics", "section_title", "enb_start_date", "enb_short_title", "subtype", "actors", "sentences", "enb_url", "enb_long_title", "type", "id", "enb_end_date"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "incenser", "definition" : "One who instigates or incites."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "factorio_version": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "title", "author", "homepage", "description", "factorio_version", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "morebobs_usefulsomething", "version" : "0.16.0", "title" : "More Bobs!: Useful Something", "author" : "Xagros", "homepage" : "https://mods.factorio.com/user/xagros", "description" : "This is an additional item for a more comfortable Bob's mods.", "factorio_version" : "0.16", "dependencies" : ["base", "morebobs", "? Robocharger", "? Induction Charging", "? bobplates"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "factorio_version": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "title", "author", "homepage", "description", "factorio_version", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"programs": {"type": "array", "items": {"type": "object", "properties": {"program_id": {"type": "string"}, "facility_id": {"type": "string"}, "facility_name": {"type": "string"}, "program_name": {"type": "string"}, "type": {"type": "string"}, "address": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "phone": {"type": "string"}, "contact_name": {"type": "string"}, "contact_phone": {"type": "string"}}, "required": ["program_id", "facility_id", "facility_name", "program_name", "type", "address", "city", "state", "postal_code", "phone", "contact_name", "contact_phone"]}}}, "required": ["programs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"programs" : [{"program_id" : "1", "facility_id" : "1", "facility_name" : "Facility Name", "program_name" : "Program Name", "type" : "Type of Program", "address" : "12345 Street Address", "city" : "City", "state" : "ST", "postal_code" : "55555", "phone" : "555-555-5555", "contact_name" : "John Doe", "contact_phone" : "555-555-5555"}, {"program_id" : "2", "facility_id" : "2", "facility_name" : "Facility Name", "program_name" : "Program Name", "type" : "Type of Program", "address" : "12345 Street Address", "city" : "City", "state" : "ST", "postal_code" : "55555", "phone" : "555-555-5555", "contact_name" : "John Doe", "contact_phone" : "555-555-5555"}, {"program_id" : "3", "facility_id" : "3", "facility_name" : "Facility Name", "program_name" : "Program Name", "type" : "Type of Program", "address" : "12345 Street Address", "city" : "City", "state" : "ST", "postal_code" : "55555", "phone" : "555-555-5555", "contact_name" : "John Doe", "contact_phone" : "555-555-5555"}, {"program_id" : "4", "facility_id" : "4", "facility_name" : "Facility Name", "program_name" : "Program Name", "type" : "Type of Program", "address" : "12345 Street Address", "city" : "City", "state" : "ST", "postal_code" : "55555", "phone" : "555-555-5555", "contact_name" : "John Doe", "contact_phone" : "555-555-5555"}, {"program_id" : "5", "facility_id" : "5", "facility_name" : "Facility Name", "program_name" : "Program Name", "type" : "Type of Program", "address" : "12345 Street Address", "city" : "City", "state" : "ST", "postal_code" : "55555", "phone" : "555-555-5555", "contact_name" : "John Doe", "contact_phone" : "555-555-5555"}]} | json_instruct | {"type": "object", "properties": {"programs": {"type": "array", "items": {"type": "object", "properties": {"program_id": {"type": "string"}, "facility_id": {"type": "string"}, "facility_name": {"type": "string"}, "program_name": {"type": "string"}, "type": {"type": "string"}, "address": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "phone": {"type": "string"}, "contact_name": {"type": "string"}, "contact_phone": {"type": "string"}}, "required": ["program_id", "facility_id", "facility_name", "program_name", "type", "address", "city", "state", "postal_code", "phone", "contact_name", "contact_phone"]}}}, "required": ["programs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 82559, "info" : {"name" : "IMO Resizable Pop-out", "description" : "Fixes the pop-out chat window so that you can resize it to a custom width.", "additionalInfo" : null, "format" : "uso", "category" : "imo", "createdAt" : "2013-02-03T13:32:28.000Z", "updatedAt" : "2013-02-03T13:32:28.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 176164, "name" : "The Talking Pie"}}, "stats" : {"installs" : {"total" : 42, "weekly" : 0}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document url(\"https://imo.im/?thinui\") {\r\n#thinui-container\r\n{\r\n width: 100% !important;\r\n}\r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["220871001003", "\u82b1\u56ed\u793e\u533a", "121", "0"], ["220871001004", "\u5149\u660e\u793e\u533a", "121", "0"], ["220871001005", "\u5409\u9e64\u82d1\u793e\u533a", "121", "0"], ["220871001006", "\u4e8c\u4e09\u4e03\u793e\u533a", "121", "0"], ["220871001007", "\u745e\u666e\u793e\u533a", "121", "0"]] | json_instruct | {"type": "array", "items": {"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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "flow": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "flow", "build"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-flow": {"type": "string"}, "flow-bin": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["babel-core", "babel-loader", "babel-preset-es2015", "babel-preset-flow", "flow-bin", "webpack"]}, "dependencies": {"type": "object", "properties": {"vue": {"type": "string"}}, "required": ["vue"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "vv", "version" : "0.0.1", "description" : "validator based on vue2", "main" : "index.js", "directories" : {"test" : "test"}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "flow" : "flow", "build" : "babel src/ -d lib/"}, "keywords" : ["validator"], "author" : "gcy", "license" : "ISC", "devDependencies" : {"babel-core" : "^6.24.1", "babel-loader" : "^6.4.1", "babel-preset-es2015" : "^6.24.1", "babel-preset-flow" : "^6.23.0", "flow-bin" : "^0.44.0", "webpack" : "^2.3.3"}, "dependencies" : {"vue" : "^2.2.6"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "flow": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "flow", "build"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-flow": {"type": "string"}, "flow-bin": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["babel-core", "babel-loader", "babel-preset-es2015", "babel-preset-flow", "flow-bin", "webpack"]}, "dependencies": {"type": "object", "properties": {"vue": {"type": "string"}}, "required": ["vue"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["dev", "build"]}, "devDependencies": {"type": "object", "properties": {"@contember/dic": {"type": "string"}, "@types/cors": {"type": "string"}, "@types/express": {"type": "string"}, "cors": {"type": "string"}, "esbuild": {"type": "string"}, "express": {"type": "string"}, "node-fetch": {"type": "string"}, "nodemon": {"type": "string"}, "tsm": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@contember/dic", "@types/cors", "@types/express", "cors", "esbuild", "express", "node-fetch", "nodemon", "tsm", "typescript"]}}, "required": ["type", "private", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "module", "private" : true, "scripts" : {"dev" : "nodemon --exec tsm --ext ts src/index.ts", "build" : "tsc && esbuild src/index.ts --bundle --sourcemap --platform=node --outdir=dist"}, "devDependencies" : {"@contember/dic" : "^0.11.5", "@types/cors" : "^2.8.12", "@types/express" : "^4.17.13", "cors" : "^2.8.5", "esbuild" : "^0.14.11", "express" : "^4.17.3", "node-fetch" : "^3.1.0", "nodemon" : "^2.0.15", "tsm" : "^2.2.1", "typescript" : "^4.5.4"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["dev", "build"]}, "devDependencies": {"type": "object", "properties": {"@contember/dic": {"type": "string"}, "@types/cors": {"type": "string"}, "@types/express": {"type": "string"}, "cors": {"type": "string"}, "esbuild": {"type": "string"}, "express": {"type": "string"}, "node-fetch": {"type": "string"}, "nodemon": {"type": "string"}, "tsm": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@contember/dic", "@types/cors", "@types/express", "cors", "esbuild", "express", "node-fetch", "nodemon", "tsm", "typescript"]}}, "required": ["type", "private", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1952, 5], [1956, 5], [1957, 9], [1958, 7], [1959, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "credit": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "credit", "explanation", "date", "hdurl", "service_version", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "NGC 1097: Spiral Galaxy with a Central Eye", "credit" : "NASA, JPL-Caltech, SINGS Team (SSC)", "explanation" : "What's happening at the center of spiral galaxy NGC 1097? No one is sure, but it likely involves a supermassive black hole. Matter falling in from a bar of stars and gas across the center is likely being heated by an extremely energetic region surrounding the central black hole. From afar, the entire central region appears in the above false-color infrared image as a mysterious eye. Near the left edge and seen in blue, a smaller companion galaxy is wrapped in the spectacular spiral arms of the large spiral, lit in pink by glowing dust. Currently about 40 thousand light-years from the larger galaxy's center, the gravity of the companion galaxy appears to be reshaping the larger galaxy as it is slowly being destroyed itself. NGC 1097 is located about 50 million light years away toward the constellation of the furnace (Fornax).", "date" : "2009-07-27", "hdurl" : "https://apod.nasa.gov/apod/image/0907/ngc1097_spitzer_big.jpg", "service_version" : "v1", "media_type" : "image", "url" : "https://apod.nasa.gov/apod/image/0907/ngc1097_spitzer.jpg"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "credit": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "credit", "explanation", "date", "hdurl", "service_version", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : [{"d" : [{"s" : ["`mitimoc~"], "f" : "\u76f4\u63a5\u9001\u5165\u5634\u88e1\u3002"}]}], "t" : "timoc"} | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"Signatures": {"type": "object", "properties": {"coredns-1.6.5-vendor.tar.gz": {"type": "string"}, "coredns-1.6.5.tar.gz": {"type": "string"}}, "required": ["coredns-1.6.5-vendor.tar.gz", "coredns-1.6.5.tar.gz"]}}, "required": ["Signatures"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Signatures" : {"coredns-1.6.5-vendor.tar.gz" : "6ca4667a47e4169e36589c17df875918f8fd8458528001efcaa2b454e29e8af3", "coredns-1.6.5.tar.gz" : "df2e61a857eb7735258fd230e096e254596f18a89b5504dc2ac687798403343a"}} | json_instruct | {"type": "object", "properties": {"Signatures": {"type": "object", "properties": {"coredns-1.6.5-vendor.tar.gz": {"type": "string"}, "coredns-1.6.5.tar.gz": {"type": "string"}}, "required": ["coredns-1.6.5-vendor.tar.gz", "coredns-1.6.5.tar.gz"]}}, "required": ["Signatures"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "details": {"type": "string"}, "icon": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "author": {"type": "string"}, "capabilities": {"type": "array", "items": {"type": "string"}}, "connectors": {"type": "object", "properties": {"iframe": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["iframe"]}, "recommend": {"type": "object", "properties": {"urls": {"type": "array", "items": {}}}, "required": ["urls"]}}, "required": ["name", "description", "details", "icon", "author", "capabilities", "connectors", "recommend"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Flappy Taco", "description" : "It's like flappy bird, but with Taco!", "details" : "It's like flappy bird, but with Taco!", "icon" : {"url" : "./images/taco.png"}, "author" : "Khanh Nguyen", "capabilities" : ["board-buttons"], "connectors" : {"iframe" : {"url" : "./index.html"}}, "recommend" : {"urls" : []}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "details": {"type": "string"}, "icon": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "author": {"type": "string"}, "capabilities": {"type": "array", "items": {"type": "string"}}, "connectors": {"type": "object", "properties": {"iframe": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["iframe"]}, "recommend": {"type": "object", "properties": {"urls": {"type": "array", "items": {}}}, "required": ["urls"]}}, "required": ["name", "description", "details", "icon", "author", "capabilities", "connectors", "recommend"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"feedstocks" : ["trino"]} | json_instruct | {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "codepoint": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "version": {"type": "string"}, "zhs": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "comments": {"type": "array", "items": {}}}, "required": ["id", "name", "codepoint", "aliases", "tags", "author", "version", "zhs", "description", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "25BBD26F-C8D4-4E4D-899C-57D910EECA55", "name" : "alpha-x-box", "codepoint" : "F0B1F", "aliases" : ["alphabet-x-box", "letter-x-box"], "tags" : ["Alpha / Numeric"], "author" : "GreenTurtwig", "version" : "2.8.94", "zhs" : ["\u5b57\u6bcdx\u6846"], "description" : "", "comments" : []} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "codepoint": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "version": {"type": "string"}, "zhs": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "comments": {"type": "array", "items": {}}}, "required": ["id", "name", "codepoint", "aliases", "tags", "author", "version", "zhs", "description", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Aarm": {"type": "integer"}, "Akick": {"type": "integer"}, "Aservo": {"type": "integer"}, "Aerror": {"type": "integer"}}, "required": ["Aarm", "Akick", "Aservo", "Aerror"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Aarm" : 0, "Akick" : 1, "Aservo" : 0, "Aerror" : 0} | json_instruct | {"type": "object", "properties": {"Aarm": {"type": "integer"}, "Akick": {"type": "integer"}, "Aservo": {"type": "integer"}, "Aerror": {"type": "integer"}}, "required": ["Aarm", "Akick", "Aservo", "Aerror"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "typescript"]}, "scripts": {"type": "object", "properties": {"tsc": {"type": "string"}}, "required": ["tsc"]}}, "required": ["name", "version", "main", "license", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "di-ts-namespaces", "version" : "1.0.0", "main" : "index.js", "license" : "MIT", "dependencies" : {"@types/node" : "14.*", "typescript" : "*"}, "scripts" : {"tsc" : "tsc"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "typescript"]}, "scripts": {"type": "object", "properties": {"tsc": {"type": "string"}}, "required": ["tsc"]}}, "required": ["name", "version", "main", "license", "dependencies", "scripts"], "$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": {"all-the-cities": {"type": "string"}, "discord.js": {"type": "string"}, "enmap": {"type": "string"}, "mysql": {"type": "string"}, "nodemon": {"type": "string"}}, "required": ["all-the-cities", "discord.js", "enmap", "mysql", "nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Zombot", "version" : "0.0.1", "description" : "The Ultimate D&D Kit For Discord!", "main" : "app.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "PureGem", "license" : "MIT", "dependencies" : {"all-the-cities" : "^2.0.1", "discord.js" : "^11.4.2", "enmap" : "^5.0.0", "mysql" : "^2.17.1", "nodemon" : "^1.19.4"}} | 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": {"all-the-cities": {"type": "string"}, "discord.js": {"type": "string"}, "enmap": {"type": "string"}, "mysql": {"type": "string"}, "nodemon": {"type": "string"}}, "required": ["all-the-cities", "discord.js", "enmap", "mysql", "nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"meta": {"type": "object", "properties": {"REGION": {"type": "string"}, "LATEST_ADMIN_DATE": {"type": "string"}, "PUBLISHED_DATE": {"type": "string"}}, "required": ["REGION", "LATEST_ADMIN_DATE", "PUBLISHED_DATE"]}, "data": {"type": "array", "items": {"type": "object", "properties": {"CATEGORY": {"type": "string"}, "METRIC_VALUE": {"type": "number"}, "POP_METRIC_VALUE": {"type": "number"}}, "required": ["CATEGORY", "METRIC_VALUE", "POP_METRIC_VALUE"]}}}, "required": ["meta", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"meta" : {"REGION" : "California", "LATEST_ADMIN_DATE" : "2022-01-04", "PUBLISHED_DATE" : "2022-01-05"}, "data" : [{"CATEGORY" : "5-11", "METRIC_VALUE" : 0.032175, "POP_METRIC_VALUE" : 0.093357}, {"CATEGORY" : "12-17", "METRIC_VALUE" : 0.07663, "POP_METRIC_VALUE" : 0.084062}, {"CATEGORY" : "18-49", "METRIC_VALUE" : 0.476199, "POP_METRIC_VALUE" : 0.451658}, {"CATEGORY" : "50-64", "METRIC_VALUE" : 0.223273, "POP_METRIC_VALUE" : 0.197712}, {"CATEGORY" : "65+", "METRIC_VALUE" : 0.191567, "POP_METRIC_VALUE" : 0.173211}, {"CATEGORY" : "Unknown", "METRIC_VALUE" : 0.000156, "POP_METRIC_VALUE" : 0}]} | json_instruct | {"type": "object", "properties": {"meta": {"type": "object", "properties": {"REGION": {"type": "string"}, "LATEST_ADMIN_DATE": {"type": "string"}, "PUBLISHED_DATE": {"type": "string"}}, "required": ["REGION", "LATEST_ADMIN_DATE", "PUBLISHED_DATE"]}, "data": {"type": "array", "items": {"type": "object", "properties": {"CATEGORY": {"type": "string"}, "METRIC_VALUE": {"type": "number"}, "POP_METRIC_VALUE": {"type": "number"}}, "required": ["CATEGORY", "METRIC_VALUE", "POP_METRIC_VALUE"]}}}, "required": ["meta", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "created_by_ref": {"type": "string"}, "created": {"type": "string"}, "modified": {"type": "string"}, "relationship_type": {"type": "string"}, "source_ref": {"type": "string"}, "target_ref": {"type": "string"}, "object_marking_refs": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "id", "created_by_ref", "created", "modified", "relationship_type", "source_ref", "target_ref", "object_marking_refs"]}}}, "required": ["type", "id", "spec_version", "objects"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "bundle", "id" : "bundle--b2f4f5f7-3721-4cc1-8dce-543a6fc1d4ca", "spec_version" : "2.0", "objects" : [{"type" : "relationship", "id" : "relationship--aa6949e3-a2e1-4bdf-a831-08eb3c1ea8fe", "created_by_ref" : "identity--a310da54-cad2-443b-8371-36e2df91ab5d", "created" : "2014-06-23T00:00:00.000Z", "modified" : "2017-08-04T00:00:00.000Z", "relationship_type" : "mitigates", "source_ref" : "course-of-action--4a8c9c65-b39e-4d6a-b12b-90a03fed8a29", "target_ref" : "attack-pattern--2d5e2e57-4c8c-4fd1-be2d-19529e236863", "object_marking_refs" : ["marking-definition--db13c800-5b49-4c0f-b51b-7f0ec4309951"]}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "created_by_ref": {"type": "string"}, "created": {"type": "string"}, "modified": {"type": "string"}, "relationship_type": {"type": "string"}, "source_ref": {"type": "string"}, "target_ref": {"type": "string"}, "object_marking_refs": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "id", "created_by_ref", "created", "modified", "relationship_type", "source_ref", "target_ref", "object_marking_refs"]}}}, "required": ["type", "id", "spec_version", "objects"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"sessionKey": {"type": "string"}, "indexes": {"type": "array", "items": {"type": "object", "properties": {"index": {"type": "integer"}, "heading2": {"type": "string"}, "heading3": {"type": "string"}, "heading4": {"type": "string"}, "heading5": {"type": "string"}, "text": {"type": "string"}}, "required": ["index", "heading2", "heading3", "heading4", "heading5", "text"]}}}, "required": ["sessionKey", "indexes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sessionKey" : "42nd2ndpa_01", "indexes" : [{"index" : 0, "heading2" : "", "heading3" : "", "heading4" : "TIME 5:15 p.m.", "heading5" : "", "text" : "TIME 5:15 p.m."}, {"index" : 1, "heading2" : "", "heading3" : "", "heading4" : "LOCATION Winnipeg, Manitoba ", "heading5" : "", "text" : "LOCATION Winnipeg, Manitoba "}, {"index" : 2, "heading2" : "", "heading3" : "", "heading4" : "CHAIRPERSON Mr. Jim Maloway (Elmwood) ", "heading5" : "", "text" : "CHAIRPERSON Mr. Jim Maloway (Elmwood) "}, {"index" : 3, "heading2" : "", "heading3" : "", "heading4" : "VICE-CHAIRPERSON Mr. Andrew Smith (Lagimodi re) ", "heading5" : "", "text" : "VICE-CHAIRPERSON Mr. Andrew Smith (Lagimodi re) "}, {"index" : 4, "heading2" : "", "heading3" : "", "heading4" : "ATTENDANCE 11 QUORUM 6 ", "heading5" : "", "text" : "ATTENDANCE 11 QUORUM 6 "}, {"index" : 5, "heading2" : "", "heading3" : "", "heading4" : "Members of the Committee present: ", "heading5" : "", "text" : "Members of the Committee present: "}, {"index" : 6, "heading2" : "", "heading3" : "", "heading4" : "Messrs. Johnston, Lamont, Lindsey, Maloway, Michaleski, Ms. Morley-Lecomte, Mr. Smith, Mrs. Smith, Messrs. Teitsma, Wasyliw, Wishart", "heading5" : "", "text" : "Messrs. Johnston, Lamont, Lindsey, Maloway, Michaleski, Ms. Morley-Lecomte, Mr. Smith, Mrs. Smith, Messrs. Teitsma, Wasyliw, Wishart", "speaker" : "Mark Wasyliw"}, {"index" : 7, "heading2" : "", "heading3" : "", "heading4" : "MATTERS UNDER CONSIDERATION: ", "heading5" : "", "text" : "MATTERS UNDER CONSIDERATION: "}, {"index" : 8, "heading2" : "", "heading3" : "", "heading4" : "To consider the election of the Chairperson and Vice\u2011Chairperson ", "heading5" : "", "text" : "To consider the election of the Chairperson and Vice\u2011Chairperson "}, {"index" : 9, "heading2" : "", "heading3" : "", "heading4" : "* * *", "heading5" : "", "text" : "* * *"}]} | json_instruct | {"type": "object", "properties": {"sessionKey": {"type": "string"}, "indexes": {"type": "array", "items": {"type": "object", "properties": {"index": {"type": "integer"}, "heading2": {"type": "string"}, "heading3": {"type": "string"}, "heading4": {"type": "string"}, "heading5": {"type": "string"}, "text": {"type": "string"}}, "required": ["index", "heading2", "heading3", "heading4", "heading5", "text"]}}}, "required": ["sessionKey", "indexes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["533423206201", "\u4f73\u79be\u6751\u59d4\u4f1a", "210", "0"], ["533423206202", "\u65b0\u5382\u6751\u59d4\u4f1a", "220", "0"], ["533423206203", "\u8568\u83dc\u5c71\u6751\u59d4\u4f1a", "220", "0"], ["533423206204", "\u814a\u516b\u5c71\u6751\u59d4\u4f1a", "220", "0"], ["533423206205", "\u65bd\u6839\u767b\u6751\u59d4\u4f1a", "220", "0"], ["533423206206", "\u54b1\u5229\u6751\u59d4\u4f1a", "220", "0"], ["533423206207", "\u62c9\u560e\u6d1b\u6751\u59d4\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["csv_report", "fakexrmeasy.2016", "grunt-angular-toolbox", "grunt-jasmine-coverage", "grunt-jquery-toolbox", "grunt-parts", "grunt-protractor-coverage", "grunt-qunit-amd", "torrent-bot"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "credit": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "credit", "explanation", "date", "hdurl", "service_version", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Massive Stars of 30 Doradus", "credit" : "J. Trauger (JPL), J. Westphal (Caltech), N. Walborn (STScI), R. Barba' (La Plata Obs.), NASA", "explanation" : "In the center of star-forming region 30 Doradus lies a huge cluster of the largest, hottest, most massive stars known. These stars and part of the surrounding nebula are captured here in this gorgeous visible-light Hubble Space Telescope image. Gas and dust clouds in 30 Doradus, also known as the Tarantula Nebula, have been sculpted into elongated shapes by powerful winds and ultraviolet radiation from these hot cluster stars. Insets in the picture represent corresponding views from the Hubble's infrared camera where each square measures 15.5 light-years across. Penetrating the obscuring dust, these infrared images themselves offer detailed pictures of star formation within the nebula's collapsing clouds, revealing the presence of newborn massive stars. The 30 Doradus Nebula lies within a neighboring galaxy, the Large Magellanic Cloud, located a mere 170,000 light-years away.", "date" : "2003-06-22", "hdurl" : "https://apod.nasa.gov/apod/image/0306/30dor_hst_big.jpg", "service_version" : "v1", "media_type" : "image", "url" : "https://apod.nasa.gov/apod/image/0306/30dor_hst.jpg"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "credit": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "credit", "explanation", "date", "hdurl", "service_version", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "prepublish": {"type": "string"}}, "required": ["build", "prepublish"]}, "devDependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "babel-core": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "datatables": {"type": "string"}, "extract-text-webpack-plugin": {"type": "string"}, "import-glob-loader": {"type": "string"}, "jquery-confirm": {"type": "string"}, "node-sass": {"type": "string"}, "normalize-css": {"type": "string"}, "path": {"type": "string"}, "postcss-loader": {"type": "string"}, "raw-loader": {"type": "string"}, "sass-loader": {"type": "string"}, "select2": {"type": "string"}, "style-loader": {"type": "string"}, "susy": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["autoprefixer", "babel-core", "babel-preset-es2015", "datatables", "extract-text-webpack-plugin", "import-glob-loader", "jquery-confirm", "node-sass", "normalize-css", "path", "postcss-loader", "raw-loader", "sass-loader", "select2", "style-loader", "susy", "webpack"]}, "babel": {"type": "object", "properties": {"presets": {"type": "array", "items": {"type": "string"}}}, "required": ["presets"]}}, "required": ["name", "version", "authors", "license", "main", "repository", "scripts", "devDependencies", "babel"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@spatie/blender-css", "version" : "5.0.3", "authors" : ["Willem Van Bockstal <willem@spatie.be>"], "license" : "MIT", "main" : "dist/blender.css", "repository" : {"type" : "git", "url" : "git@github.com:spatie-custom/blender-css.git"}, "scripts" : {"build" : "webpack", "prepublish" : "npm run build"}, "devDependencies" : {"autoprefixer" : "^6.5.0", "babel-core" : "^6.17.0", "babel-preset-es2015" : "^6.16.0", "datatables" : "^1.10.12", "extract-text-webpack-plugin" : "^1.0.1", "import-glob-loader" : "^1.1.0", "jquery-confirm" : "^1.5.1", "node-sass" : "^3.10.1", "normalize-css" : "^2.3.1", "path" : "^0.12.7", "postcss-loader" : "^0.13.0", "raw-loader" : "^0.5.1", "sass-loader" : "^4.0.2", "select2" : "^4.0.3", "style-loader" : "^0.13.1", "susy" : "^2.2.12", "webpack" : "^1.12.11"}, "babel" : {"presets" : ["es2015"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "prepublish": {"type": "string"}}, "required": ["build", "prepublish"]}, "devDependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "babel-core": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "datatables": {"type": "string"}, "extract-text-webpack-plugin": {"type": "string"}, "import-glob-loader": {"type": "string"}, "jquery-confirm": {"type": "string"}, "node-sass": {"type": "string"}, "normalize-css": {"type": "string"}, "path": {"type": "string"}, "postcss-loader": {"type": "string"}, "raw-loader": {"type": "string"}, "sass-loader": {"type": "string"}, "select2": {"type": "string"}, "style-loader": {"type": "string"}, "susy": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["autoprefixer", "babel-core", "babel-preset-es2015", "datatables", "extract-text-webpack-plugin", "import-glob-loader", "jquery-confirm", "node-sass", "normalize-css", "path", "postcss-loader", "raw-loader", "sass-loader", "select2", "style-loader", "susy", "webpack"]}, "babel": {"type": "object", "properties": {"presets": {"type": "array", "items": {"type": "string"}}}, "required": ["presets"]}}, "required": ["name", "version", "authors", "license", "main", "repository", "scripts", "devDependencies", "babel"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"speakingurl.min.js": {"type": "string"}}, "required": ["speakingurl.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"speakingurl.min.js" : "sha512-rRTg6h5CFUGHeWsKQQw8cTOERgZsu53t88kaB+0bHRn/vvjBDWIuapgJ9p0Gj/z1++B8/0J4ZQ45KlITtYf0Hw=="} | json_instruct | {"type": "object", "properties": {"speakingurl.min.js": {"type": "string"}}, "required": ["speakingurl.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/js/2.5320b4f9.chunk.js": {"type": "string"}, "static/js/2.5320b4f9.chunk.js.map": {"type": "string"}, "static/js/3.fea37b86.chunk.js": {"type": "string"}, "static/js/3.fea37b86.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "static/css/main.261e52cd.chunk.css.map": {"type": "string"}, "static/js/2.5320b4f9.chunk.js.LICENSE.txt": {"type": "string"}, "static/media/logo.dedfc6a7.svg": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/js/2.5320b4f9.chunk.js", "static/js/2.5320b4f9.chunk.js.map", "static/js/3.fea37b86.chunk.js", "static/js/3.fea37b86.chunk.js.map", "index.html", "static/css/main.261e52cd.chunk.css.map", "static/js/2.5320b4f9.chunk.js.LICENSE.txt", "static/media/logo.dedfc6a7.svg"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"files" : {"main.css" : "/static/css/main.261e52cd.chunk.css", "main.js" : "/static/js/main.0bbe352e.chunk.js", "main.js.map" : "/static/js/main.0bbe352e.chunk.js.map", "runtime-main.js" : "/static/js/runtime-main.8e9ee7f6.js", "runtime-main.js.map" : "/static/js/runtime-main.8e9ee7f6.js.map", "static/js/2.5320b4f9.chunk.js" : "/static/js/2.5320b4f9.chunk.js", "static/js/2.5320b4f9.chunk.js.map" : "/static/js/2.5320b4f9.chunk.js.map", "static/js/3.fea37b86.chunk.js" : "/static/js/3.fea37b86.chunk.js", "static/js/3.fea37b86.chunk.js.map" : "/static/js/3.fea37b86.chunk.js.map", "index.html" : "/index.html", "static/css/main.261e52cd.chunk.css.map" : "/static/css/main.261e52cd.chunk.css.map", "static/js/2.5320b4f9.chunk.js.LICENSE.txt" : "/static/js/2.5320b4f9.chunk.js.LICENSE.txt", "static/media/logo.dedfc6a7.svg" : "/static/media/logo.dedfc6a7.svg"}, "entrypoints" : ["static/js/runtime-main.8e9ee7f6.js", "static/js/2.5320b4f9.chunk.js", "static/css/main.261e52cd.chunk.css", "static/js/main.0bbe352e.chunk.js"]} | json_instruct | {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/js/2.5320b4f9.chunk.js": {"type": "string"}, "static/js/2.5320b4f9.chunk.js.map": {"type": "string"}, "static/js/3.fea37b86.chunk.js": {"type": "string"}, "static/js/3.fea37b86.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "static/css/main.261e52cd.chunk.css.map": {"type": "string"}, "static/js/2.5320b4f9.chunk.js.LICENSE.txt": {"type": "string"}, "static/media/logo.dedfc6a7.svg": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/js/2.5320b4f9.chunk.js", "static/js/2.5320b4f9.chunk.js.map", "static/js/3.fea37b86.chunk.js", "static/js/3.fea37b86.chunk.js.map", "index.html", "static/css/main.261e52cd.chunk.css.map", "static/js/2.5320b4f9.chunk.js.LICENSE.txt", "static/media/logo.dedfc6a7.svg"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"place_name" : "Sausalito", "state_name" : "California", "state_abbrv" : "CA", "lat" : "37.8601", "long" : "-122.4946"} | json_instruct | {"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"$schema": {"type": "string"}, "id": {"type": "integer"}, "name": {"type": "string"}, "element": {"type": "string"}, "stats": {"type": "object", "properties": {"health": {"type": "integer"}, "defense": {"type": "integer"}, "speed": {"type": "integer"}, "attack": {"type": "integer"}, "specialAttack": {"type": "integer"}}, "required": ["health", "defense", "speed", "attack", "specialAttack"]}}, "required": ["$schema", "id", "name", "element", "stats"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "../Schemas/PokemonSchema.json", "id" : 0, "name" : "Squirtle", "element" : "Water", "stats" : {"health" : 100, "defense" : 100, "speed" : 100, "attack" : 100, "specialAttack" : 100}} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "id": {"type": "integer"}, "name": {"type": "string"}, "element": {"type": "string"}, "stats": {"type": "object", "properties": {"health": {"type": "integer"}, "defense": {"type": "integer"}, "speed": {"type": "integer"}, "attack": {"type": "integer"}, "specialAttack": {"type": "integer"}}, "required": ["health", "defense", "speed", "attack", "specialAttack"]}}, "required": ["$schema", "id", "name", "element", "stats"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"700806f-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "string"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "original_title": {"type": "string"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "original_title", "years"]}, "700155f-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "string"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "original_title": {"type": "string"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "original_title", "years"]}, "700805f-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "string"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "original_title": {"type": "string"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "original_title", "years"]}}, "required": ["700806f-a", "700155f-a", "700805f-a"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"700806f-a" : {"width" : 600, "thumb_url" : "http://oldnyc-assets.nypl.org/thumb/700806f-a.jpg", "image_url" : "http://oldnyc-assets.nypl.org/600px/700806f-a.jpg", "title" : "", "date" : "1938", "text" : "697 to 717 Courtlandt Avenue, west side, north from E. 154th to EE. 155th Streets. No. 705-707 is the Bronx Central Palace, Bronx quarters of the Polski Dom Narodowy (Polish People's Home).\nFebruary 17, 1938.\nP. L. Sperr.\n", "folder" : "Courtlandt Avenue & 154th Street (East), Bronx, NY", "height" : 408, "original_title" : "Bronx: Courtlandt Avenue - 154th Street (East)", "years" : ["1938"]}, "700155f-a" : {"width" : 600, "thumb_url" : "http://oldnyc-assets.nypl.org/thumb/700155f-a.jpg", "image_url" : "http://oldnyc-assets.nypl.org/600px/700155f-a.jpg", "title" : "", "date" : "", "text" : "370 and 376 E. 154th Street, south side, between Courtlandt anc Melrose Avenues. No 370 is the 2 s tory frame house set back from the sidewalk. No. 376 is the 1 story Miller's Machine Shop\nbuilding.\nFebruary 17, 1933.\nP. L. Sperr\n", "folder" : "154th Street & Courtlandt Avenue, Bronx, NY", "height" : 401, "original_title" : "Bronx: 154th Street - Courtlandt Avenue", "years" : [""]}, "700805f-a" : {"width" : 600, "thumb_url" : "http://oldnyc-assets.nypl.org/thumb/700805f-a.jpg", "image_url" : "http://oldnyc-assets.nypl.org/600px/700805f-a.jpg", "title" : "", "date" : "", "text" : "687 to 679 Courtlandt Avenue, at, adjoining and south of the\nS. W. corner of E. 154th Street.\nFebruary 17, 1938.\nP. L. Sperr.\neH 5N: NSeg. 8eD\n", "folder" : "Courtlandt Avenue & 154th Street (East), Bronx, NY", "height" : 402, "original_title" : "Bronx: Courtlandt Avenue - 154th Street (East)", "years" : [""]}} | json_instruct | {"type": "object", "properties": {"700806f-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "string"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "original_title": {"type": "string"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "original_title", "years"]}, "700155f-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "string"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "original_title": {"type": "string"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "original_title", "years"]}, "700805f-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "string"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "original_title": {"type": "string"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "original_title", "years"]}}, "required": ["700806f-a", "700155f-a", "700805f-a"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"appId": {"type": "string"}, "title": {"type": "string"}, "timestamp": {"type": "integer"}, "rating": {"type": "string"}, "notes": {"type": "string"}, "os": {"type": "string"}, "gpuDriver": {"type": "string"}, "specs": {"type": "string"}, "protonVersion": {"type": "string"}}, "required": ["appId", "title", "timestamp", "rating", "notes", "os", "gpuDriver", "specs", "protonVersion"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"appId" : "443380", "title" : "Tokyo Babel", "timestamp" : 1535860794, "rating" : "Silver", "notes" : "Fullscreen and opening video don't work. Everything else works fine.", "os" : "Arch Linux 64-bit (Kernel 4.18.5-zen)", "gpuDriver" : "NVIDIA 396.54", "specs" : "i7-4770 / GTX 770", "protonVersion" : "3.7-5"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"appId": {"type": "string"}, "title": {"type": "string"}, "timestamp": {"type": "integer"}, "rating": {"type": "string"}, "notes": {"type": "string"}, "os": {"type": "string"}, "gpuDriver": {"type": "string"}, "specs": {"type": "string"}, "protonVersion": {"type": "string"}}, "required": ["appId", "title", "timestamp", "rating", "notes", "os", "gpuDriver", "specs", "protonVersion"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"age=0": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=1": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=2": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=3": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=4": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=5": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=6": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=7": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["age=0", "age=1", "age=2", "age=3", "age=4", "age=5", "age=6", "age=7"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"age=0" : {"model" : "farmcraft:block/ginger_stage0"}, "age=1" : {"model" : "farmcraft:block/ginger_stage0"}, "age=2" : {"model" : "farmcraft:block/ginger_stage1"}, "age=3" : {"model" : "farmcraft:block/ginger_stage1"}, "age=4" : {"model" : "farmcraft:block/ginger_stage2"}, "age=5" : {"model" : "farmcraft:block/ginger_stage2"}, "age=6" : {"model" : "farmcraft:block/ginger_stage2"}, "age=7" : {"model" : "farmcraft:block/ginger_stage3"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"age=0": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=1": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=2": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=3": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=4": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=5": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=6": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=7": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["age=0", "age=1", "age=2", "age=3", "age=4", "age=5", "age=6", "age=7"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@ghasemkiani/base": {"type": "string"}, "@ghasemkiani/ethereum": {"type": "string"}, "bignumber.js": {"type": "string"}}, "required": ["@ghasemkiani/base", "@ghasemkiani/ethereum", "bignumber.js"]}}, "required": ["name", "version", "description", "type", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@ghasemkiani/chainlink-eth", "version" : "1.0.0", "description" : "Chainlink oracle price feeds on Ethereum", "type" : "module", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://gitlab.com/ghasemkiani/chainlink-eth.git"}, "keywords" : ["blockchain", "cryptocurrency", "oracle", "price", "feed", "ethereum"], "author" : "Ghasem Kiani", "license" : "MIT", "bugs" : {"url" : "https://gitlab.com/ghasemkiani/chainlink-eth/issues"}, "homepage" : "https://gitlab.com/ghasemkiani/chainlink-eth#readme", "dependencies" : {"@ghasemkiani/base" : "github:ghasemkiani/base", "@ghasemkiani/ethereum" : "github:ghasemkiani/ethereum", "bignumber.js" : "^9.0.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@ghasemkiani/base": {"type": "string"}, "@ghasemkiani/ethereum": {"type": "string"}, "bignumber.js": {"type": "string"}}, "required": ["@ghasemkiani/base", "@ghasemkiani/ethereum", "bignumber.js"]}}, "required": ["name", "version", "description", "type", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["510121104005", "\u745e\u5149\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["510121104006", "\u6ee8\u6c5f\u8def\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["510121104007", "\u6d32\u57ce\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["510121104008", "\u540c\u5174\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["510121104009", "\u6dee\u5e06\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["510121104010", "\u56e2\u7ed3\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["510121104011", "\u5df4\u5fb7\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["510121104012", "\u7ea2\u65b0\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["510121104013", "\u4e94\u661f\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["510121104014", "\u77f3\u5fc3\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["510121104015", "\u7ea2\u5149\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["510121104016", "\u4e07\u798f\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["510121104017", "\u59dc\u68da\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["510121104018", "\u671b\u6c5f\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["510121104019", "\u7cae\u4e30\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["510121104020", "\u91d1\u9f99\u6865\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["510121104021", "\u7ea2\u5ca9\u5bfa\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["510121104022", "\u4e00\u6839\u677e\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["510121104226", "\u5e3d\u9876\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["510121104237", "\u9f9a\u5bb6\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["510121104238", "\u5929\u53f0\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["510121104239", "\u5c0f\u67cf\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["510121104246", "\u8212\u5bb6\u6e7e\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["510121104247", "\u4e91\u9876\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["510121104248", "\u5149\u8363\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["510121104252", "\u957f\u6c5f\u6751\u6c11\u59d4\u5458\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": {"data": {"type": "object", "properties": {"index": {"type": "integer"}, "path": {"type": "string"}, "subchains": {"type": "object", "properties": {"230-2893-2894": {"type": "object", "properties": {"narrator_ids": {"type": "array", "items": {"type": "integer"}}, "verse_paths": {"type": "array", "items": {"type": "string"}}}, "required": ["narrator_ids", "verse_paths"]}, "2893-2894": {"type": "object", "properties": {"narrator_ids": {"type": "array", "items": {"type": "integer"}}, "verse_paths": {"type": "array", "items": {"type": "string"}}}, "required": ["narrator_ids", "verse_paths"]}, "37-230-2893-2894": {"type": "object", "properties": {"narrator_ids": {"type": "array", "items": {"type": "integer"}}, "verse_paths": {"type": "array", "items": {"type": "string"}}}, "required": ["narrator_ids", "verse_paths"]}}, "required": ["230-2893-2894", "2893-2894", "37-230-2893-2894"]}, "titles": {"type": "object", "properties": {"ar": {"type": "string"}}, "required": ["ar"]}, "verse_paths": {"type": "array", "items": {"type": "string"}}}, "required": ["index", "path", "subchains", "titles", "verse_paths"]}, "index": {"type": "integer"}, "kind": {"type": "string"}}, "required": ["data", "index", "kind"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : {"index" : 2894, "path" : "/people/narrators/2894", "subchains" : {"230-2893-2894" : {"narrator_ids" : [230, 2893, 2894], "verse_paths" : ["/books/al-kafi:3:4:7:6"]}, "2893-2894" : {"narrator_ids" : [2893, 2894], "verse_paths" : ["/books/al-kafi:3:4:7:6"]}, "37-230-2893-2894" : {"narrator_ids" : [37, 230, 2893, 2894], "verse_paths" : ["/books/al-kafi:3:4:7:6"]}}, "titles" : {"ar" : "\u0623\u064e\u0628\u0650\u064a \u0627\u0644\u0652\u062d\u064e\u0633\u064e\u0646\u0650 \u0627\u0644\u0652\u0639\u064e\u0633\u0652\u0643\u064e\u0631\u0650\u064a\u0651\u0650 ( \u0639\u0644\u064a\u0647 \u0627\u0644\u0633\u0644\u0627\u0645 )"}, "verse_paths" : ["/books/al-kafi:3:4:7:6"]}, "index" : 2894, "kind" : "person_content"} | json_instruct | {"type": "object", "properties": {"data": {"type": "object", "properties": {"index": {"type": "integer"}, "path": {"type": "string"}, "subchains": {"type": "object", "properties": {"230-2893-2894": {"type": "object", "properties": {"narrator_ids": {"type": "array", "items": {"type": "integer"}}, "verse_paths": {"type": "array", "items": {"type": "string"}}}, "required": ["narrator_ids", "verse_paths"]}, "2893-2894": {"type": "object", "properties": {"narrator_ids": {"type": "array", "items": {"type": "integer"}}, "verse_paths": {"type": "array", "items": {"type": "string"}}}, "required": ["narrator_ids", "verse_paths"]}, "37-230-2893-2894": {"type": "object", "properties": {"narrator_ids": {"type": "array", "items": {"type": "integer"}}, "verse_paths": {"type": "array", "items": {"type": "string"}}}, "required": ["narrator_ids", "verse_paths"]}}, "required": ["230-2893-2894", "2893-2894", "37-230-2893-2894"]}, "titles": {"type": "object", "properties": {"ar": {"type": "string"}}, "required": ["ar"]}, "verse_paths": {"type": "array", "items": {"type": "string"}}}, "required": ["index", "path", "subchains", "titles", "verse_paths"]}, "index": {"type": "integer"}, "kind": {"type": "string"}}, "required": ["data", "index", "kind"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"$schema": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}}, "required": ["id", "type"]}, "companyId": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}}, "required": ["id", "type"]}, "skill": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}}, "required": ["id", "type"]}}, "required": ["id", "companyId", "skill"]}}, "required": ["$schema", "id", "type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "http://json-schema.org/draft-04/schema#", "id" : "http://dmc-dev.geinspire.com/companySkill", "type" : "object", "properties" : {"id" : {"id" : "http://dmc-dev.geinspire.com/companySkill/id", "type" : "integer"}, "companyId" : {"id" : "http://dmc-dev.geinspire.com/companySkill/companyId", "type" : "integer"}, "skill" : {"id" : "http://dmc-dev.geinspire.com/companySkill/skill", "type" : "string"}}} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}}, "required": ["id", "type"]}, "companyId": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}}, "required": ["id", "type"]}, "skill": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}}, "required": ["id", "type"]}}, "required": ["id", "companyId", "skill"]}}, "required": ["$schema", "id", "type", "properties"], "$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": {"code": {"type": "string"}, "name": {"type": "string"}, "name_kana": {"type": "string"}}, "required": ["code", "name", "name_kana"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"code" : "011", "name" : "\u5409\u898b", "name_kana" : "\uff96\uff7c\uff90"}, {"code" : "068", "name" : "\u547c\u5742", "name_kana" : "\uff96\uff8b\uff9e\uff7b\uff76"}, {"code" : "185", "name" : "\u5409\u6577", "name_kana" : "\uff96\uff7c\uff77"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "name_kana": {"type": "string"}}, "required": ["code", "name", "name_kana"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "name": {"type": "string"}}, "required": ["id", "children", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 5413, "children" : [{"id" : 5414, "name" : "Hovertank 3D -- id Software"}], "name" : "Hovertank 3D"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "name": {"type": "string"}}, "required": ["id", "children", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"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": {"ext-curl": {"type": "string"}}, "required": ["ext-curl"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Kampakit\\PostalCodesGermany\\": {"type": "string"}}, "required": ["Kampakit\\PostalCodesGermany\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Kampakit\\PostalCodesGermany\\Tests\\": {"type": "string"}}, "required": ["Kampakit\\PostalCodesGermany\\Tests\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}}, "required": ["providers"]}}, "required": ["laravel"]}}, "required": ["name", "description", "type", "license", "authors", "require", "autoload", "autoload-dev", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "kampakit/postal-codes-germany", "description" : " Laravel package for mapping German postal codes to geographic coordinates without using external APIs ", "type" : "library", "license" : "MIT", "authors" : [{"name" : "Martin Hinrichs", "email" : "mail@martinhinrichs.net", "homepage" : "https://kampateam.org", "role" : "Developer"}], "require" : {"ext-curl" : "*"}, "autoload" : {"psr-4" : {"Kampakit\\PostalCodesGermany\\" : "src/"}}, "autoload-dev" : {"psr-4" : {"Kampakit\\PostalCodesGermany\\Tests\\" : "tests/"}}, "extra" : {"laravel" : {"providers" : ["Kampakit\\PostalCodesGermany\\PostalCodesGermanyServiceProvider"]}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"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": {"ext-curl": {"type": "string"}}, "required": ["ext-curl"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Kampakit\\PostalCodesGermany\\": {"type": "string"}}, "required": ["Kampakit\\PostalCodesGermany\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Kampakit\\PostalCodesGermany\\Tests\\": {"type": "string"}}, "required": ["Kampakit\\PostalCodesGermany\\Tests\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}}, "required": ["providers"]}}, "required": ["laravel"]}}, "required": ["name", "description", "type", "license", "authors", "require", "autoload", "autoload-dev", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-74.077204, 40.725811], [-74.073874, 40.730403], [-74.069785, 40.728725], [-74.07223, 40.725883], [-74.069286, 40.7247], [-74.070944, 40.722872], [-74.077204, 40.725811]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 40840}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"required": {"type": "boolean"}, "minVersion": {"type": "string"}, "package": {"type": "string"}, "compatibilityLevel": {"type": "string"}, "mixins": {"type": "array", "items": {"type": "string"}}, "client": {"type": "array", "items": {"type": "string"}}, "server": {"type": "array", "items": {"type": "string"}}, "injectors": {"type": "object", "properties": {"defaultRequire": {"type": "integer"}}, "required": ["defaultRequire"]}}, "required": ["required", "minVersion", "package", "compatibilityLevel", "mixins", "client", "server", "injectors"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"required" : true, "minVersion" : "0.8", "package" : "fr.catcore.server.translations.api.mixin", "compatibilityLevel" : "JAVA_8", "mixins" : ["LanguageMixin", "ServerPlayerEntityMixin", "ServerResourceManagerMixin", "packet.ClientSettingsC2SPacketAccessor", "text.BaseTextMixin", "text.TranslatableTextMixin"], "client" : ["client.LanguageMixin"], "server" : ["packet.PacketByteBufMixin", "packet.TextSerializerMixin"], "injectors" : {"defaultRequire" : 1}} | json_instruct | {"type": "object", "properties": {"required": {"type": "boolean"}, "minVersion": {"type": "string"}, "package": {"type": "string"}, "compatibilityLevel": {"type": "string"}, "mixins": {"type": "array", "items": {"type": "string"}}, "client": {"type": "array", "items": {"type": "string"}}, "server": {"type": "array", "items": {"type": "string"}}, "injectors": {"type": "object", "properties": {"defaultRequire": {"type": "integer"}}, "required": ["defaultRequire"]}}, "required": ["required", "minVersion", "package", "compatibilityLevel", "mixins", "client", "server", "injectors"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type": "string"}, "media_id": {"type": "string"}, "type_id": {"type": "string"}, "date": {"type": "string"}, "year_start": {"type": "null"}, "year_end": {"type": "null"}, "year_acquired": {"type": "string"}, "decade": {"type": "null"}, "woe:country": {"type": "string"}, "medium": {"type": "string"}, "markings": {"type": "null"}, "signed": {"type": "null"}, "inscribed": {"type": "null"}, "provenance": {"type": "null"}, "dimensions": {"type": "string"}, "creditline": {"type": "string"}, "description": {"type": "string"}, "justification": {"type": "null"}, "type": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "images": {"type": "array", "items": {}}, "participants": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "string"}, "role_id": {"type": "string"}, "person_name": {"type": "string"}, "role_name": {"type": "string"}, "person_url": {"type": "string"}, "role_url": {"type": "string"}}, "required": ["person_id", "role_id", "person_name", "role_name", "person_url", "role_url"]}}, "tombstone": {"type": "object", "properties": {"epitaph": {"type": "string"}}, "required": ["epitaph"]}, "colors": {"type": "array", "items": {}}}, "required": ["id", "tms:id", "accession_number", "title", "url", "department_id", "period_id", "media_id", "type_id", "date", "year_start", "year_end", "year_acquired", "decade", "woe:country", "medium", "markings", "signed", "inscribed", "provenance", "dimensions", "creditline", "description", "justification", "type", "images", "participants", "tombstone", "colors"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "18198959", "tms:id" : "23188", "accession_number" : "1917-4-506-a", "title" : "Drawing, \"The southern part of Berchtesgaden, Bavaria\", June 1868", "url" : "http://collection.cooperhewitt.org/objects/18198959/", "department_id" : "35347493", "period_id" : "35417175", "media_id" : "35415073", "type_id" : "35237093", "date" : "June 1868", "year_start" : null, "year_end" : null, "year_acquired" : "1917", "decade" : null, "woe:country" : "23424977", "medium" : "Graphite, oil on paperboard", "markings" : null, "signed" : null, "inscribed" : null, "provenance" : null, "dimensions" : "Height 32.6 x Width 50.7 cm", "creditline" : "Gift of Louis P. Church", "description" : "The street leading to the Franciscan Church and to the gateway to the Court House which are shown in the left middle distance. The roofs of the houses of the quarter west of it are shown in the right foreground and middle distance. The Watzmann rises in the right background, the Schoenfeld Spitze in the central far distance.", "justification" : null, "type" : {"id" : "35237093", "name" : "Drawing"}, "images" : [], "participants" : [{"person_id" : "18041941", "role_id" : "35236565", "person_name" : "Frederic Edwin Church", "role_name" : "Artist", "person_url" : "http://collection.cooperhewitt.org/people/18041941/", "role_url" : "http://collection.cooperhewitt.org/roles/35236565/"}], "tombstone" : {"epitaph" : "Drawing, \"The southern part of Berchtesgaden, Bavaria\", June 1868.\nJune 1868. Graphite, oil on paperboard. Gift of Louis P. Church. 1917-4-506-a."}, "colors" : []} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type": "string"}, "media_id": {"type": "string"}, "type_id": {"type": "string"}, "date": {"type": "string"}, "year_start": {"type": "null"}, "year_end": {"type": "null"}, "year_acquired": {"type": "string"}, "decade": {"type": "null"}, "woe:country": {"type": "string"}, "medium": {"type": "string"}, "markings": {"type": "null"}, "signed": {"type": "null"}, "inscribed": {"type": "null"}, "provenance": {"type": "null"}, "dimensions": {"type": "string"}, "creditline": {"type": "string"}, "description": {"type": "string"}, "justification": {"type": "null"}, "type": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "images": {"type": "array", "items": {}}, "participants": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "string"}, "role_id": {"type": "string"}, "person_name": {"type": "string"}, "role_name": {"type": "string"}, "person_url": {"type": "string"}, "role_url": {"type": "string"}}, "required": ["person_id", "role_id", "person_name", "role_name", "person_url", "role_url"]}}, "tombstone": {"type": "object", "properties": {"epitaph": {"type": "string"}}, "required": ["epitaph"]}, "colors": {"type": "array", "items": {}}}, "required": ["id", "tms:id", "accession_number", "title", "url", "department_id", "period_id", "media_id", "type_id", "date", "year_start", "year_end", "year_acquired", "decade", "woe:country", "medium", "markings", "signed", "inscribed", "provenance", "dimensions", "creditline", "description", "justification", "type", "images", "participants", "tombstone", "colors"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"index" : 1424, "redacted" : false, "hash" : 3489512003, "blacklisted" : false} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"url": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}}, "required": ["url", "username", "password"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"url" : "THE URL OF YOUR DAEMON INCL. PORT", "username" : "YOUR DAEMON USERNAME", "password" : "YOUR DAEMON PASSWORD"} | json_instruct | {"type": "object", "properties": {"url": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}}, "required": ["url", "username", "password"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"scores": {"type": "array", "items": {"type": "integer"}}}, "required": ["scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"scores" : [4, 2, 8, 7, 5]} | json_instruct | {"type": "object", "properties": {"scores": {"type": "array", "items": {"type": "integer"}}}, "required": ["scores"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"text": {"type": "array", "items": {"type": "string"}}, "lawID": {"type": "string"}, "entityType": {"type": "string"}, "sentenceID": {"type": "string"}, "time": {"type": "string"}}, "required": ["text", "lawID", "entityType", "sentenceID", "time"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : ["that", "of", "another"], "lawID" : "56a20258a18bdf3fadda8c6f", "entityType" : "Unary", "sentenceID" : "56a20258a18bdf3fadda8c70", "time" : "2016\\-02\\-03\\ 21\\:12\\:43\\.340809"} | json_instruct | {"type": "object", "properties": {"text": {"type": "array", "items": {"type": "string"}}, "lawID": {"type": "string"}, "entityType": {"type": "string"}, "sentenceID": {"type": "string"}, "time": {"type": "string"}}, "required": ["text", "lawID", "entityType", "sentenceID", "time"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"schema_version" : "1.2.0", "id" : "GHSA-56cc-g25c-3wc2", "modified" : "2022-05-02T04:00:00Z", "published" : "2022-05-02T04:00:00Z", "aliases" : ["CVE-2009-4976"], "details" : "Cross-site scripting (XSS) vulnerability in webkitpart.cpp in kwebkitpart allows remote attackers to inject arbitrary web script or HTML via a URL associated with a nonexistent domain name, related to a \"universal XSS\" issue, a similar vulnerability to CVE-2010-2536.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2009-4976"}, {"type" : "WEB", "url" : "https://bugs.kde.org/show_bug.cgi?id=217464"}, {"type" : "WEB", "url" : "https://exchange.xforce.ibmcloud.com/vulnerabilities/60878"}, {"type" : "WEB", "url" : "http://websvn.kde.org/?view=rev&revision=1059140"}], "database_specific" : {"cwe_ids" : ["CWE-79"], "severity" : "MODERATE", "github_reviewed" : false}} | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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" : "JOMBANG", "originalFilename" : "hanafi.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 2008, "noUrut" : 1, "nama" : "IMAM HANAFI, S.IP.", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "JOMBANG", "originalFilename" : "FTO HERI.jpeg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 76406, "noUrut" : 2, "nama" : "HERI PURWANTO, S.E., M.Si.", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "JOMBANG", "originalFilename" : "INES.jpeg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 124589, "noUrut" : 3, "nama" : "NESTITI RAHMAWATI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "JOMBANG", "originalFilename" : "m.effendi.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 125564, "noUrut" : 4, "nama" : "MOCHAMMAD EFFENDI", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "JOMBANG", "originalFilename" : "rita.jpeg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 125476, "noUrut" : 5, "nama" : "RITA ANDRIYANI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "JOMBANG", "originalFilename" : "weni.jpeg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 124461, "noUrut" : 6, "nama" : "WENI AGUSTINA", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "JOMBANG", "originalFilename" : "ifan.jpeg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 66331, "noUrut" : 7, "nama" : "Ir.. IFAN WAHYONO HADI", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "JOMBANG", "originalFilename" : "fitri.jpeg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 102291, "noUrut" : 8, "nama" : "FITRI CHUSNUL KHOTIMAH", "stringJenisKelamin" : "Perempuan"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01031038": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01031038"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Topology", "objects" : {"E01031038" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00158227", "LAD11CD" : "E07000218"}, "arcs" : [[0, 1, 2]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00158228", "LAD11CD" : "E07000218"}, "arcs" : [[3, -1, 4]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00158233", "LAD11CD" : "E07000218"}, "arcs" : [[-5, 5, 6, 7, 8]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00158234", "LAD11CD" : "E07000218"}, "arcs" : [[9, -7, 10]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00158235", "LAD11CD" : "E07000218"}, "arcs" : [[-2, -4, -9, 11, 12]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00158236", "LAD11CD" : "E07000218"}, "arcs" : [[-8, -10, 13, -12]]}]}}, "arcs" : [[[8148, 3153], [-539, 519], [-243, -114], [180, -551], [-578, 158], [-461, -352]], [[6507, 2813], [-480, 257], [-1199, 293]], [[4828, 3363], [-32, 982], [-432, 504], [-823, 301], [-3072, 504], [-469, 271], [397, 499], [18, 511], [396, 529], [292, 863], [785, -353], [458, 355], [417, 103], [-940, 309], [367, 1159], [202, 99], [654, -141], [2932, -653], [2081, -1730], [550, -673], [50, -69], [1340, -1924], [-1368, -1292], [-71, -66], [-412, -298]], [[6123, 1760], [-307, 237], [691, 816]], [[8148, 3153], [-350, -292], [-170, 103], [-208, -112], [-1297, -1092]], [[8148, 3153], [508, -501]], [[8656, 2652], [-680, -672], [-652, 92], [-643, -518]], [[6681, 1554], [-200, -177], [-184, 152]], [[6297, 1529], [-234, 79], [60, 152]], [[9319, 1169], [-281, 629], [-1038, -360], [42, 147], [-419, 115], [-709, -184], [118, -132], [-257, 7], [-94, 163]], [[8656, 2652], [1249, -1224], [-586, -259]], [[6297, 1529], [-126, -161], [184, -15], [98, -269], [-631, 162], [-248, -120], [242, -255]], [[5816, 871], [-288, -570], [-1129, -301], [-331, 59], [-133, 836], [893, 2468]], [[9319, 1169], [-613, 85], [-517, -99], [-372, -314], [-2001, 30]]], "transform" : {"scale" : [2.3779238460831994e-06, 2.0625917650402773e-06], "translate" : [-1.628977826635933, 52.618471816394674]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01031038": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01031038"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : "T\u00e9teghem-Coudekerque-Village", "dpt" : "Nord", "inscrits" : 6839, "abs" : 1398, "votants" : 5441, "blancs" : 482, "nuls" : 182, "exp" : 4777, "res" : [{"panneau" : "1", "voix" : 2885}, {"panneau" : "2", "voix" : 1892}]} | 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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"chef": {"type": "object", "properties": {"chef_server_url": {"type": "string"}, "client_key": {"type": "string"}, "node_name": {"type": "string"}}, "required": ["chef_server_url", "client_key", "node_name"]}, "ssl": {"type": "object", "properties": {"verify": {"type": "boolean"}}, "required": ["verify"]}}, "required": ["chef", "ssl"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"chef" : {"chef_server_url" : "https://<changemeonrealservervalue>.com", "client_key" : "./.chef/admin.pem", "node_name" : "admin"}, "ssl" : {"verify" : false}} | json_instruct | {"type": "object", "properties": {"chef": {"type": "object", "properties": {"chef_server_url": {"type": "string"}, "client_key": {"type": "string"}, "node_name": {"type": "string"}}, "required": ["chef_server_url", "client_key", "node_name"]}, "ssl": {"type": "object", "properties": {"verify": {"type": "boolean"}}, "required": ["verify"]}}, "required": ["chef", "ssl"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"output": {"type": "string"}, "namespace": {"type": "string"}, "enum_name": {"type": "string"}, "hashfunc_name": {"type": "string"}, "wide_char": {"type": "boolean"}, "strcmp": {"type": "string"}, "strlen": {"type": "string"}, "factor": {"type": "number"}, "keys": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["output", "namespace", "enum_name", "hashfunc_name", "wide_char", "strcmp", "strlen", "factor", "keys"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"output" : "GameObjectPropertyHash.inl", "namespace" : "LuaSTGPlus", "enum_name" : "GameObjectProperty", "hashfunc_name" : "GameObjectPropertyHash", "wide_char" : false, "strcmp" : "strcmp", "strlen" : "strlen", "factor" : 1.6, "keys" : [["x", "X"], ["y", "Y"], ["dx", "DX"], ["dy", "DY"], ["rot", "ROT"], ["omiga", "OMIGA"], ["timer", "TIMER"], ["vx", "VX"], ["vy", "VY"], ["ax", "AX"], ["ay", "AY"], ["layer", "LAYER"], ["group", "GROUP"], ["hide", "HIDE"], ["bound", "BOUND"], ["navi", "NAVI"], ["colli", "COLLI"], ["status", "STATUS"], ["hscale", "HSCALE"], ["vscale", "VSCALE"], ["class", "CLASS"], ["a", "A"], ["b", "B"], ["rect", "RECT"], ["img", "IMG"], ["ani", "ANI"]]} | json_instruct | {"type": "object", "properties": {"output": {"type": "string"}, "namespace": {"type": "string"}, "enum_name": {"type": "string"}, "hashfunc_name": {"type": "string"}, "wide_char": {"type": "boolean"}, "strcmp": {"type": "string"}, "strlen": {"type": "string"}, "factor": {"type": "number"}, "keys": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["output", "namespace", "enum_name", "hashfunc_name", "wide_char", "strcmp", "strlen", "factor", "keys"], "$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": {"id": {"type": "string"}, "url": {"type": "string"}, "username": {"type": "string"}, "text": {"type": "string"}, "date": {"type": "string"}, "retweet": {"type": "integer"}, "like": {"type": "integer"}}, "required": ["id", "url", "username", "text", "date", "retweet", "like"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "1099252466439282689", "url" : "https://twitter.com/ptnxxx__/status/1099252466439282689", "username" : "", "text" : "\u0e04\u0e37\u0e2d\u0e2d", "date" : "23-02-2019 17:19", "retweet" : 0, "like" : 0}, {"id" : "1097593600022462464", "url" : "https://twitter.com/ptnxxx__/status/1097593600022462464", "username" : "", "text" : "\u0e40\u0e2b\u0e07\u0e32\u0e32\u0e32\u0e2b\u0e19\u0e31\u0e01\u0e01\u0e0155555", "date" : "19-02-2019 03:28", "retweet" : 0, "like" : 0}, {"id" : "1097538099637248001", "url" : "https://twitter.com/ptnxxx__/status/1097538099637248001", "username" : "", "text" : "5555 \u0e2a\u0e07\u0e2a\u0e31\u0e22\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35 #\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e1c\u0e39\u0e49\u0e0a\u0e32\u0e22\u0e41\u0e25\u0e49\u0e27\u0e04\u0e23\u0e31\u0e1a", "date" : "18-02-2019 23:47", "retweet" : 0, "like" : 3}, {"id" : "1097523953390706688", "url" : "https://twitter.com/ptnxxx__/status/1097523953390706688", "username" : "", "text" : "\u0e15\u0e34\u0e14\u0e14\u0e34\u0e19\u0e21\u0e32\u0e01\u0e46\u0e04\u0e23\u0e31\u0e1a5555", "date" : "18-02-2019 22:51", "retweet" : 0, "like" : 5}, {"id" : "1097523608392392704", "url" : "https://twitter.com/ptnxxx__/status/1097523608392392704", "username" : "", "text" : "\u0e08\u0e23\u0e34\u0e07\u0e46\u0e21\u0e35\u0e40\u0e22\u0e2d\u0e30\u0e19\u0e30\u0e04\u0e23\u0e31\u0e1a \u0e41\u0e15\u0e48\u0e40\u0e02\u0e32\u0e04\u0e07\u0e44\u0e21\u0e48\u0e01\u0e25\u0e49\u0e32\u0e41\u0e2a\u0e14\u0e07\u0e15\u0e31\u0e275555", "date" : "18-02-2019 22:49", "retweet" : 0, "like" : 6}, {"id" : "1097517387220283393", "url" : "https://twitter.com/ptnxxx__/status/1097517387220283393", "username" : "", "text" : "\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22\u0e42\u0e0a\u0e04\u0e14\u0e35\u0e17\u0e35\u0e48\u0e21\u0e35\u0e04\u0e19\u0e41\u0e1a\u0e1a\u0e04\u0e38\u0e13 \u0e02\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e17\u0e35\u0e48\u0e04\u0e38\u0e22\u0e01\u0e31\u0e1a\u0e40\u0e14\u0e47\u0e01\u0e18\u0e23\u0e23\u0e21\u0e14\u0e32\u0e46\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e1c\u0e21\u0e04\u0e23\u0e31\u0e1a #\u0e1f\u0e49\u0e32\u0e23\u0e31\u0e01\u0e1e\u0e48\u0e2d #\u0e1f\u0e49\u0e32\u0e23\u0e31\u0e01\u0e1e\u0e48\u0e2d\u0e40\u0e1e\u0e23\u0e32\u0e30\u0e19\u0e42\u0e22\u0e1a\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e1e\u0e48\u0e2d #\u0e1e\u0e23\u0e23\u0e04\u0e2d\u0e19\u0e32\u0e04\u0e15\u0e43\u0e2b\u0e21\u0e48 #\u0e2d\u0e19\u0e32\u0e04\u0e15\u0e43\u0e2b\u0e21\u0e48 pic.twitter.com/uSaHlB6eDQ", "date" : "18-02-2019 22:25", "retweet" : 236, "like" : 138}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "username": {"type": "string"}, "text": {"type": "string"}, "date": {"type": "string"}, "retweet": {"type": "integer"}, "like": {"type": "integer"}}, "required": ["id", "url", "username", "text", "date", "retweet", "like"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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" : "1117030040", "district_id" : "1117030", "name" : "SERULE KAYU"} | 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": "object", "properties": {"scripts": {"type": "object", "properties": {"build-embedded-worker": {"type": "string"}, "build-app": {"type": "string"}, "build": {"type": "string"}}, "required": ["build-embedded-worker", "build-app", "build"]}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"btoa": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["btoa", "webpack", "webpack-cli"]}}, "required": ["scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"scripts" : {"build-embedded-worker" : "node createEmbeddedWorker.js", "build-app" : "npx webpack app.js -o dist/app.bundle.js --mode=production", "build" : "npm run build-embedded-worker && npm run build-app"}, "dependencies" : {}, "devDependencies" : {"btoa" : "1.2.1", "webpack" : "4.43.0", "webpack-cli" : "3.3.11"}} | json_instruct | {"type": "object", "properties": {"scripts": {"type": "object", "properties": {"build-embedded-worker": {"type": "string"}, "build-app": {"type": "string"}, "build": {"type": "string"}}, "required": ["build-embedded-worker", "build-app", "build"]}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"btoa": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["btoa", "webpack", "webpack-cli"]}}, "required": ["scripts", "dependencies", "devDependencies"], "$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#"}
| ["stylelint-config-clean"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Cordova Norte, Tigbauan, Iloilo, Western Visayas (Region VI), PH", "locale" : "ph.western-visayas-region-vi.iloilo.tigbauan.cordova-norte", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "16", "region_reference" : "6", "region_name" : "Western Visayas (Region VI)", "province_id" : "36", "province_reference" : "36", "province_name" : "Iloilo", "city_id" : "1347", "city_reference" : "688", "city_name" : "Tigbauan", "barangay_id" : "39644", "barangay_reference" : "17217", "barangay_name" : "Cordova Norte"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[122.402039, 10.75006], [122.40863, 10.7545], [122.41169, 10.75401], [122.412163, 10.75296], [122.411797, 10.75229], [122.411812, 10.75132], [122.411072, 10.74959], [122.410927, 10.74815], [122.409348, 10.74113], [122.418381, 10.73649], [122.414108, 10.72648], [122.398376, 10.73202], [122.399246, 10.73389], [122.399139, 10.73559], [122.398857, 10.73637], [122.400131, 10.73755], [122.401047, 10.73911], [122.400703, 10.74089], [122.400421, 10.74144], [122.400139, 10.74258], [122.399933, 10.74362], [122.400009, 10.74431], [122.400192, 10.74523], [122.400726, 10.74716], [122.400482, 10.74839], [122.398308, 10.74897], [122.402039, 10.75006]]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "sempervivum", "definition" : "A genus of fleshy-leaved plants, of which the houseleek (Sempervivum tectorum) is the commonest species."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"title": {"type": "string"}, "widget": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}, "description": {"type": "string"}}, "required": ["title", "widget", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "HTML - \u0431\u043b\u043e\u043a", "widget" : {"title" : "HTML - \u0431\u043b\u043e\u043a"}, "description" : "\u0411\u043b\u043e\u043a \u0432\u044b\u0432\u043e\u0434\u0438\u0442 \u043f\u0440\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u0439 HTML \u043d\u0430 \u0441\u0430\u0439\u0442\u0435"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "widget": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}, "description": {"type": "string"}}, "required": ["title", "widget", "description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"packages": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "maintainer": {"type": "string"}, "websiteURL": {"type": "string"}, "email": {"type": "string"}, "help": {"type": "object", "properties": {"online": {"type": "string"}}, "required": ["online"]}, "platforms": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "architecture": {"type": "string"}, "version": {"type": "string"}, "category": {"type": "string"}, "help": {"type": "object", "properties": {"online": {"type": "string"}}, "required": ["online"]}, "url": {"type": "string"}, "archiveFileName": {"type": "string"}, "checksum": {"type": "string"}, "size": {"type": "string"}, "boards": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "toolsDependencies": {"type": "array", "items": {}}}, "required": ["name", "architecture", "version", "category", "help", "url", "archiveFileName", "checksum", "size", "boards", "toolsDependencies"]}}, "tools": {"type": "array", "items": {}}}, "required": ["name", "maintainer", "websiteURL", "email", "help", "platforms", "tools"]}}}, "required": ["packages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"packages" : [{"name" : "HobbyIoT", "maintainer" : "The HobbyIoT Project", "websiteURL" : "https://www.hobbyiot.net/", "email" : "", "help" : {"online" : "https://www.hobbyiot.net/"}, "platforms" : [{"name" : "HobbyIoT Boards", "architecture" : "avr", "version" : "0.1.0", "category" : "Contributed", "help" : {"online" : "https://www.hobbyiot.net/"}, "url" : "https://github.com/sivanovbg/arduino_boards/blob/master/HobbyIoT-master.zip?raw=true", "archiveFileName" : "HobbyIoT-master.zip", "checksum" : "SHA-256:c67c8a938f25335b314b69bddebcfb48363338874d93004c61d35b55c7eeafba", "size" : "92492", "boards" : [{"name" : "HIoT THR V2.1"}], "toolsDependencies" : []}], "tools" : []}]} | json_instruct | {"type": "object", "properties": {"packages": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "maintainer": {"type": "string"}, "websiteURL": {"type": "string"}, "email": {"type": "string"}, "help": {"type": "object", "properties": {"online": {"type": "string"}}, "required": ["online"]}, "platforms": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "architecture": {"type": "string"}, "version": {"type": "string"}, "category": {"type": "string"}, "help": {"type": "object", "properties": {"online": {"type": "string"}}, "required": ["online"]}, "url": {"type": "string"}, "archiveFileName": {"type": "string"}, "checksum": {"type": "string"}, "size": {"type": "string"}, "boards": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "toolsDependencies": {"type": "array", "items": {}}}, "required": ["name", "architecture", "version", "category", "help", "url", "archiveFileName", "checksum", "size", "boards", "toolsDependencies"]}}, "tools": {"type": "array", "items": {}}}, "required": ["name", "maintainer", "websiteURL", "email", "help", "platforms", "tools"]}}}, "required": ["packages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "registering", "definition" : "Recording; -- applied to instruments; having an apparatus which registers; as, a registering thermometer. See Recording."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"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": "null"}, "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": "null"}, "accrediting_agency": {"type": "null"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "'Baltazar Adam Kr\u010deli\u0107' College of Business Administration", "alt_name" : "Visoka \u0161kola za poslovanje i upravljanje \"Baltazar Adam Kr\u010deli\u0107\"", "country" : "Croatia", "state" : null, "address" : {"street" : "Vladimira Novaka 23", "city" : "Zapre\u0161i\u0107", "province" : null, "postal_code" : "10290"}, "contact" : {"telephone" : "+385(1) 3310-321", "website" : "http://www.vspu.hr", "email" : "info@vspu.hr", "fax" : "+385(1) 3310-264"}, "funding" : "Private", "languages" : null, "academic_year" : null, "accrediting_agency" : null} | 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": "null"}, "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": "null"}, "accrediting_agency": {"type": "null"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"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" : 10243, "cartId" : "85f1538a-2f3d-44e8-9b35-37fa72c4fa23", "preferredProducts" : [3930, 1786, 3463, 3728, 3084, 2980], "productReviews" : [{"productId" : 2927, "reviewText" : "I tried to behead it but got truffle all over it.", "reviewDate" : "2018-10-10T23:44:42.3504558+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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "categoryCode": {"type": "string"}, "image": {"type": "object", "properties": {"original": {"type": "string"}}, "required": ["original"]}, "co2": {"type": "number"}, "price": {"type": "number"}, "co2Score": {"type": "number"}, "kcalScore": {"type": "null"}, "priceScore": {"type": "number"}, "totalScore": {"type": "number"}}, "required": ["id", "name", "categoryCode", "image", "co2", "price", "co2Score", "kcalScore", "priceScore", "totalScore"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "107301400000", "name" : "Califora au chocolat", "categoryCode" : "BeSS_01011101", "image" : {"original" : "https://image.migros.ch/original/721bdd7e18f99648381d16b0a605a8558594698c/califora-au-chocolat.jpg"}, "co2" : 72.28150495124213, "price" : 5.95, "co2Score" : 0.9997560848258943, "kcalScore" : null, "priceScore" : 0.5441176470588235, "totalScore" : 0.5442081228910326} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "categoryCode": {"type": "string"}, "image": {"type": "object", "properties": {"original": {"type": "string"}}, "required": ["original"]}, "co2": {"type": "number"}, "price": {"type": "number"}, "co2Score": {"type": "number"}, "kcalScore": {"type": "null"}, "priceScore": {"type": "number"}, "totalScore": {"type": "number"}}, "required": ["id", "name", "categoryCode", "image", "co2", "price", "co2Score", "kcalScore", "priceScore", "totalScore"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : "Elizabeth Bishop", "classification" : "Villanelle", "keywords" : ["Living", "Disappointment", "Failure"], "period" : "", "reference" : "http://www.poetryfoundation.org/poem/176996", "region" : "", "text" : ["The art of losing isn\u2019t hard to master;", "so many things seem filled with the intent", "to be lost that their loss is no disaster.", "Lose something every day. Accept the fluster", "of lost door keys, the hour badly spent.", "The art of losing isn\u2019t hard to master.", "Then practice losing farther, losing faster:", "places, and names, and where it was you meant", "to travel. None of these will bring disaster.", "I lost my mother\u2019s watch. And look! my last, or", "next-to-last, of three loved houses went.", "The art of losing isn\u2019t hard to master.", "I lost two cities, lovely ones. And, vaster,", "some realms I owned, two rivers, a continent.", "I miss them, but it wasn\u2019t a disaster.", "\u2014Even losing you (the joking voice, a gesture", "I love) I shan\u2019t have lied. It\u2019s evident", "the art of losing\u2019s not too hard to master", "though it may look like (", "it!) like disaster."], "title" : "One Art", "year" : ""} | json_instruct | {"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"mithril.js": {"type": "string"}, "mithril.min.js": {"type": "string"}}, "required": ["mithril.js", "mithril.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"mithril.js" : "sha256-NNnEOldX7Ry5wXUG1Sy7Ga++gHq+8PjoNodakaMk3bc=", "mithril.min.js" : "sha256-mKfVm6LcAsQD4Y+qaslVUrcoedFcsRZSLwXaHu9951k="} | json_instruct | {"type": "object", "properties": {"mithril.js": {"type": "string"}, "mithril.min.js": {"type": "string"}}, "required": ["mithril.js", "mithril.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"css/emojionearea.css": {"type": "string"}, "css/emojionearea.min.css": {"type": "string"}, "js/emojionearea.js": {"type": "string"}, "js/emojionearea.min.js": {"type": "string"}}, "required": ["css/emojionearea.css", "css/emojionearea.min.css", "js/emojionearea.js", "js/emojionearea.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"css/emojionearea.css" : "sha512-objFkt8TZe3oicrUJI0lrxWwmUmsvGnnn27Z5Hc7kORrIE9XT0mUrSaA2l5oy3DJAW2VmSoiMObtR9EUs27Y9Q==", "css/emojionearea.min.css" : "sha512-QTcXOHR8JEdCJcQ96WUp3hSPhNw8zfBzCGiwgK9KDvZRanSCCQp/jA7VB+4nPiPTZxWTbdw90j2kSBXCIQKhVw==", "js/emojionearea.js" : "sha512-SCxyOy8VXCcEYZze0h64k3BQfeUaqmI1i7fUbBMOyuFfTnpkXtkRF7O28kdStj0jblITmdVK/3LmKE9RfOmmXw==", "js/emojionearea.min.js" : "sha512-Pi7Y0nEUM/AOJDxXLvUfOn3i+ItoKRyJDt3VcHA2wROUcsOaXFPEsPSbNTQF+kBLyMGgY9kFfrdByn02RewxjQ=="} | json_instruct | {"type": "object", "properties": {"css/emojionearea.css": {"type": "string"}, "css/emojionearea.min.css": {"type": "string"}, "js/emojionearea.js": {"type": "string"}, "js/emojionearea.min.js": {"type": "string"}}, "required": ["css/emojionearea.css", "css/emojionearea.min.css", "js/emojionearea.js", "js/emojionearea.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"Tools": {"type": "array", "items": {"type": "string"}}, "Languages": {"type": "array", "items": {"type": "string"}}, "Applications": {"type": "array", "items": {"type": "string"}}}, "required": ["Tools", "Languages", "Applications"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Tools" : ["7zip", "docker-cli", "docker-desktop", "nuget.commandline", "poshgit", "powershell-core", "putty", "yarn"], "Languages" : ["dotnetcore-sdk", "javaruntime", "nodejs-lts", "python", "ruby"], "Applications" : ["FiraCode", "Firefox", "git-fork", "GoogleChrome", "libreoffice", "rapidee", "slack", "spacesniffer", "spotify", "visualstudiocode"]} | json_instruct | {"type": "object", "properties": {"Tools": {"type": "array", "items": {"type": "string"}}, "Languages": {"type": "array", "items": {"type": "string"}}, "Applications": {"type": "array", "items": {"type": "string"}}}, "required": ["Tools", "Languages", "Applications"], "$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"}, "author": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "flat": {"type": "boolean"}, "workspaces": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "release": {"type": "string"}, "list": {"type": "string"}, "versions": {"type": "string"}}, "required": ["test", "release", "list", "versions"]}, "devDependencies": {"type": "object", "properties": {"typescript": {"type": "string"}}, "required": ["typescript"]}}, "required": ["name", "version", "description", "author", "repository", "license", "private", "flat", "workspaces", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@barlus/framework", "version" : "0.1.1", "description" : "Barlus Project", "author" : "Mamble LLC", "repository" : "https://github.com/barlus/framework.git", "license" : "MIT", "private" : true, "flat" : true, "workspaces" : ["packs/*", "tests/*", "samples/*"], "scripts" : {"test" : "tester ./tests/index.ts", "release" : "node --harmony -r @barlus/bone/register ./tool/publish.ts", "list" : "node --harmony -r @barlus/bone/register ./tool/list.ts", "versions" : "node --harmony -r @barlus/bone/register ./tool/version.ts"}, "devDependencies" : {"typescript" : "^2.9.0-dev.20180506"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "flat": {"type": "boolean"}, "workspaces": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "release": {"type": "string"}, "list": {"type": "string"}, "versions": {"type": "string"}}, "required": ["test", "release", "list", "versions"]}, "devDependencies": {"type": "object", "properties": {"typescript": {"type": "string"}}, "required": ["typescript"]}}, "required": ["name", "version", "description", "author", "repository", "license", "private", "flat", "workspaces", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "dependencies": {"type": "object", "properties": {"@babel/runtime": {"type": "string"}, "@marcopeg/dotted": {"type": "string"}, "@marcopeg/template": {"type": "string"}, "clone-deep": {"type": "string"}, "isomorphic-fetch": {"type": "string"}}, "required": ["@babel/runtime", "@marcopeg/dotted", "@marcopeg/template", "clone-deep", "isomorphic-fetch"]}, "devDependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "@forrestjs/babel-preset-package": {"type": "string"}, "babel-polyfill": {"type": "string"}, "cross-env": {"type": "string"}, "jest": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "@forrestjs/babel-preset-package", "babel-polyfill", "cross-env", "jest"]}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "repository": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "test": {"type": "string"}, "tdd": {"type": "string"}, "build": {"type": "string"}, "prepare": {"type": "string"}, "watch": {"type": "string"}, "watch:to": {"type": "string"}}, "required": ["clean", "test", "tdd", "build", "prepare", "watch", "watch:to"]}, "gitHead": {"type": "string"}}, "required": ["name", "description", "version", "author", "bugs", "dependencies", "devDependencies", "homepage", "keywords", "license", "publishConfig", "repository", "scripts", "gitHead"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "fetch-resolver", "description" : "Generate custom fetch resolver functions for REST and GraphQL using a JSON definition", "version" : "1.12.0", "author" : "Marco Pegoraro <marco.pegoraro@gmail.com", "bugs" : {"url" : "https://github.com/marcopeg/npm-packages/issues"}, "dependencies" : {"@babel/runtime" : "^7.4.4", "@marcopeg/dotted" : "^1.12.0", "@marcopeg/template" : "^1.12.0", "clone-deep" : "^4.0.1", "isomorphic-fetch" : "^2.2.1"}, "devDependencies" : {"@babel/cli" : "^7.4.4", "@babel/core" : "^7.4.4", "@forrestjs/babel-preset-package" : "^2.9.4", "babel-polyfill" : "^6.26.0", "cross-env" : "^5.1.4", "jest" : "^25.1.0"}, "homepage" : "https://github.com/marcopeg/npm-packages/tree/master/packages/fetch-resolver#readme", "keywords" : ["template", "tpl", "variables", "mustache"], "license" : "MIT", "publishConfig" : {"access" : "public"}, "repository" : "https://github.com/marcopeg/npm-packages/tree/master/packages/fetch-resolver", "scripts" : {"clean" : "rm -rf node_modules && rm -f yarn.lock && rm -f package-lock.json && rm -rf lib", "test" : "jest", "tdd" : "jest --runInBand --watchAll --testTimeout=10000", "build" : "babel src --out-dir . --ignore '**/*.test.js'", "prepare" : "cross-env NODE_ENV=production npm run build", "watch" : "babel -w src --out-dir . --ignore '**/*.test.js'", "watch:to" : "babel -w src --out-dir \"${TARGET}/node_modules/${npm_package_name}\" --ignore '**/*.test.js'"}, "gitHead" : "300484c766bd894999ac37a6cb41375fdb744cfa"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "dependencies": {"type": "object", "properties": {"@babel/runtime": {"type": "string"}, "@marcopeg/dotted": {"type": "string"}, "@marcopeg/template": {"type": "string"}, "clone-deep": {"type": "string"}, "isomorphic-fetch": {"type": "string"}}, "required": ["@babel/runtime", "@marcopeg/dotted", "@marcopeg/template", "clone-deep", "isomorphic-fetch"]}, "devDependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "@forrestjs/babel-preset-package": {"type": "string"}, "babel-polyfill": {"type": "string"}, "cross-env": {"type": "string"}, "jest": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "@forrestjs/babel-preset-package", "babel-polyfill", "cross-env", "jest"]}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "repository": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "test": {"type": "string"}, "tdd": {"type": "string"}, "build": {"type": "string"}, "prepare": {"type": "string"}, "watch": {"type": "string"}, "watch:to": {"type": "string"}}, "required": ["clean", "test", "tdd", "build", "prepare", "watch", "watch:to"]}, "gitHead": {"type": "string"}}, "required": ["name", "description", "version", "author", "bugs", "dependencies", "devDependencies", "homepage", "keywords", "license", "publishConfig", "repository", "scripts", "gitHead"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"tags": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "description": {"type": "string"}, "attributes": {"type": "array", "items": {}}}, "required": ["label", "description", "attributes"]}}}, "required": ["tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"tags" : [{"label" : "wv-add-timelog", "description" : "", "attributes" : []}, {"label" : "wv-timelog-list", "description" : "", "attributes" : [{"label" : "current-user", "description" : "", "required" : false}, {"label" : "is-billable", "description" : "", "required" : false}, {"label" : "is-debug", "description" : "", "required" : false}, {"label" : "records", "description" : "", "required" : false}, {"label" : "related-records", "description" : "", "required" : false}, {"label" : "site-root-url", "description" : "", "required" : false}]}, {"label" : "wv-timelog", "description" : "", "attributes" : []}]} | json_instruct | {"type": "object", "properties": {"tags": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "description": {"type": "string"}, "attributes": {"type": "array", "items": {}}}, "required": ["label", "description", "attributes"]}}}, "required": ["tags"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "dependencies": {"type": "object", "properties": {"connect-multiparty": {"type": "string"}, "express": {"type": "string"}, "forever": {"type": "string"}, "lodash": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["connect-multiparty", "express", "forever", "lodash", "react", "react-dom"]}, "devDependencies": {"type": "object", "properties": {"babel-preset-es2015": {"type": "string"}, "babel-preset-react": {"type": "string"}, "babelify": {"type": "string"}, "browserify": {"type": "string"}}, "required": ["babel-preset-es2015", "babel-preset-react", "babelify", "browserify"]}}, "required": ["scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "build" : "browserify client.js -o bundle.js -t [ babelify --presets [ es2015 react ] ]"}, "dependencies" : {"connect-multiparty" : "^2.0.0", "express" : "^4.13.3", "forever" : "^0.15.1", "lodash" : "^4.17.21", "react" : "^0.14.3", "react-dom" : "^0.14.3"}, "devDependencies" : {"babel-preset-es2015" : "^6.1.18", "babel-preset-react" : "^6.1.18", "babelify" : "^7.2.0", "browserify" : "^12.0.1"}} | json_instruct | {"type": "object", "properties": {"scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "dependencies": {"type": "object", "properties": {"connect-multiparty": {"type": "string"}, "express": {"type": "string"}, "forever": {"type": "string"}, "lodash": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["connect-multiparty", "express", "forever", "lodash", "react", "react-dom"]}, "devDependencies": {"type": "object", "properties": {"babel-preset-es2015": {"type": "string"}, "babel-preset-react": {"type": "string"}, "babelify": {"type": "string"}, "browserify": {"type": "string"}}, "required": ["babel-preset-es2015", "babel-preset-react", "babelify", "browserify"]}}, "required": ["scripts", "dependencies", "devDependencies"], "$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": {"guid": {"type": "string"}, "start": {"type": "string"}, "finish": {"type": "string"}, "fileName": {"type": "string"}}, "required": ["guid", "start", "finish", "fileName"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"guid" : "5814d409-1897-0f47-1821-ddde7fdf3ec1", "start" : "2016-07-04T13:42:45Z", "finish" : "2016-07-04T13:42:45Z", "fileName" : "test_20160704_164245285.json"}, {"guid" : "5814d409-1897-0f47-1821-ddde7fdf3ec1", "start" : "2016-07-04T13:42:27Z", "finish" : "2016-07-04T13:42:27Z", "fileName" : "test_20160704_164227913.json"}, {"guid" : "5814d409-1897-0f47-1821-ddde7fdf3ec1", "start" : "2016-07-04T13:42:13Z", "finish" : "2016-07-04T13:42:13Z", "fileName" : "test_20160704_164213489.json"}, {"guid" : "5814d409-1897-0f47-1821-ddde7fdf3ec1", "start" : "2016-07-04T13:41:55Z", "finish" : "2016-07-04T13:41:55Z", "fileName" : "test_20160704_164155982.json"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"guid": {"type": "string"}, "start": {"type": "string"}, "finish": {"type": "string"}, "fileName": {"type": "string"}}, "required": ["guid", "start", "finish", "fileName"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "geometry_name": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "integer"}, "nome": {"type": "string"}, "cod": {"type": "integer"}, "ptotalvia": {"type": "integer"}, "ppasseio1": {"type": "integer"}, "ppasseio2": {"type": "integer"}, "leidata": {"type": "string"}, "hierarquia": {"type": "null"}, "bairro": {"type": "string"}, "abrevlogr": {"type": "null"}, "pavto": {"type": "null"}, "anopavtoin": {"type": "null"}, "loteamnome": {"type": "string"}, "nomeloteamento": {"type": "string"}}, "required": ["id", "nome", "cod", "ptotalvia", "ppasseio1", "ppasseio2", "leidata", "hierarquia", "bairro", "abrevlogr", "pavto", "anopavtoin", "loteamnome", "nomeloteamento"]}}, "required": ["type", "id", "geometry", "geometry_name", "properties"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"type" : "Feature", "id" : "viewsistemaviariocompleto.fid-cda359b_16bd380d5a7_4d3c", "geometry" : {"type" : "MultiLineString", "coordinates" : [[[-48.74291662, -26.87040824], [-48.74286654, -26.86968292], [-48.74267796, -26.86740957], [-48.7428938, -26.86739314], [-48.74279073, -26.86635972], [-48.74258468, -26.86636211], [-48.74234897, -26.86368066], [-48.74177529, -26.85704628]]]}, "geometry_name" : "geom", "properties" : {"id" : 1540, "nome" : "R.Jo\u00e3o Ant\u00f4nio Martins", "cod" : 1565, "ptotalvia" : 0, "ppasseio1" : 0, "ppasseio2" : 0, "leidata" : "5970/2011", "hierarquia" : null, "bairro" : "Espinheiros", "abrevlogr" : null, "pavto" : null, "anopavtoin" : null, "loteamnome" : "-", "nomeloteamento" : "-"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "geometry_name": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "integer"}, "nome": {"type": "string"}, "cod": {"type": "integer"}, "ptotalvia": {"type": "integer"}, "ppasseio1": {"type": "integer"}, "ppasseio2": {"type": "integer"}, "leidata": {"type": "string"}, "hierarquia": {"type": "null"}, "bairro": {"type": "string"}, "abrevlogr": {"type": "null"}, "pavto": {"type": "null"}, "anopavtoin": {"type": "null"}, "loteamnome": {"type": "string"}, "nomeloteamento": {"type": "string"}}, "required": ["id", "nome", "cod", "ptotalvia", "ppasseio1", "ppasseio2", "leidata", "hierarquia", "bairro", "abrevlogr", "pavto", "anopavtoin", "loteamnome", "nomeloteamento"]}}, "required": ["type", "id", "geometry", "geometry_name", "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": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "compression": {"type": "string"}, "config": {"type": "string"}, "cookie-parser": {"type": "string"}, "cors": {"type": "string"}, "express": {"type": "string"}, "express-validation": {"type": "string"}, "helmet": {"type": "string"}, "http-status": {"type": "string"}, "joi": {"type": "string"}, "mongoose": {"type": "string"}, "morgan": {"type": "string"}}, "required": ["body-parser", "compression", "config", "cookie-parser", "cors", "express", "express-validation", "helmet", "http-status", "joi", "mongoose", "morgan"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "private", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "authentication_service", "version" : "1.0.0", "description" : "Servi\u00e7o de autentica\u00e7\u00e3o para os 4 tipos de grant types propostos no OAuth 2", "main" : "index.js", "scripts" : {"start" : "nodemon index.js", "test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : "git+https://github.com/alonmota/authentication_service.git", "keywords" : ["node.js", "express", "OAuth2"], "author" : "Alon Mota", "license" : "MIT", "bugs" : {"url" : "https://github.com/alonmota/authentication_service/issues"}, "homepage" : "https://github.com/alonmota/authentication_service#readme", "private" : false, "dependencies" : {"body-parser" : "^1.19.0", "compression" : "^1.7.4", "config" : "^3.2.2", "cookie-parser" : "^1.4.4", "cors" : "^2.8.5", "express" : "^4.17.1", "express-validation" : "^1.0.2", "helmet" : "^3.20.0", "http-status" : "^1.3.2", "joi" : "^14.3.1", "mongoose" : "^5.6.9", "morgan" : "^1.9.1"}, "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"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "compression": {"type": "string"}, "config": {"type": "string"}, "cookie-parser": {"type": "string"}, "cors": {"type": "string"}, "express": {"type": "string"}, "express-validation": {"type": "string"}, "helmet": {"type": "string"}, "http-status": {"type": "string"}, "joi": {"type": "string"}, "mongoose": {"type": "string"}, "morgan": {"type": "string"}}, "required": ["body-parser", "compression", "config", "cookie-parser", "cors", "express", "express-validation", "helmet", "http-status", "joi", "mongoose", "morgan"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "private", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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" : "PUNCAK JAYA", "originalFilename" : "KEMILES.jpg", "namaPartai" : "PARTAI BERKARYA", "id" : 232573, "noUrut" : 1, "nama" : "KEMILES ENUMBI", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "PUNCAK JAYA", "originalFilename" : "YOMITON.JPG", "namaPartai" : "PARTAI BERKARYA", "id" : 286858, "noUrut" : 2, "nama" : "YOMITON WONDA", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "PUNCAK JAYA", "originalFilename" : "MELERA.jpg", "namaPartai" : "PARTAI BERKARYA", "id" : 232966, "noUrut" : 3, "nama" : "MELERA WONDA", "stringJenisKelamin" : "Perempuan"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"0.1.2": {"type": "string"}}, "required": ["0.1.2"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"0.1.2" : "0.12.17"} | json_instruct | {"type": "object", "properties": {"0.1.2": {"type": "string"}}, "required": ["0.1.2"], "$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.