input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "1703082001", "nama" : "Tanjung Anom"}, {"id" : "1703082002", "nama" : "Suka Makmur"}, {"id" : "1703082003", "nama" : "Wono Harjo"}, {"id" : "1703082004", "nama" : "Giri Mulya"}, {"id" : "1703082005", "nama" : "Rena Jaya"}, {"id" : "1703082006", "nama" : "Suka Mulya"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"338513": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["338513"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"338513" : {"success" : false}}
json_instruct
{"type": "object", "properties": {"338513": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["338513"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"wards": {"type": "array", "items": {"type": "object", "properties": {"ward_no": {"type": "integer"}, "ward_name": {"type": "string"}, "ward_id": {"type": "string"}}, "required": ["ward_no", "ward_name", "ward_id"]}}, "no_of_wards": {"type": "integer"}, "name": {"type": "string"}, "lsg_code": {"type": "string"}, "district": {"type": "string"}, "state": {"type": "string"}, "block_no": {"type": "string"}}, "required": ["wards", "no_of_wards", "name", "lsg_code", "district", "state", "block_no"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"wards" : [{"ward_no" : 1, "ward_name" : "Khadipur", "ward_id" : "199446"}, {"ward_no" : 2, "ward_name" : "Malahi Chak", "ward_id" : "199447"}], "no_of_wards" : 2, "name" : "KHADIPUR", "lsg_code" : "50038", "district" : "Ballia", "state" : "Uttar Pradesh", "block_no" : "916"}
json_instruct
{"type": "object", "properties": {"wards": {"type": "array", "items": {"type": "object", "properties": {"ward_no": {"type": "integer"}, "ward_name": {"type": "string"}, "ward_id": {"type": "string"}}, "required": ["ward_no", "ward_name", "ward_id"]}}, "no_of_wards": {"type": "integer"}, "name": {"type": "string"}, "lsg_code": {"type": "string"}, "district": {"type": "string"}, "state": {"type": "string"}, "block_no": {"type": "string"}}, "required": ["wards", "no_of_wards", "name", "lsg_code", "district", "state", "block_no"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"props": {"type": "object", "properties": {"scaledValueCap": {"type": "number"}, "prct": {"type": "number"}, "customScaling": {"type": "number"}, "duration": {"type": "integer"}}, "required": ["scaledValueCap", "prct", "customScaling", "duration"]}, "gameplayDesc": {"type": "string"}, "moneyCost": {"type": "integer"}, "group": {"type": "integer"}, "castCD": {"type": "integer"}, "id": {"type": "string"}, "icon": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["x", "y", "file", "size"]}, "name": {"type": "string"}, "droppable": {"type": "boolean"}, "tags": {"type": "array", "items": {}}, "tier1": {"type": "string"}, "cellCost": {"type": "integer"}, "__separator_group_ID": {"type": "integer"}, "__separator_group_Name": {"type": "string"}, "__original_Index": {"type": "integer"}}, "required": ["props", "gameplayDesc", "moneyCost", "group", "castCD", "id", "icon", "name", "droppable", "tags", "tier1", "cellCost", "__separator_group_ID", "__separator_group_Name", "__original_Index"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"props" : {"scaledValueCap" : 0.00015, "prct" : 1.5e-05, "customScaling" : 1.085, "duration" : 5}, "gameplayDesc" : "Vos attaques au corps \u00e0 corps vous font r\u00e9cup\u00e9rer une petite portion de vos PV en fonction des d\u00e9gats inflig\u00e9s pendant ::duration:: secondes apr\u00e8s avoir esquiv\u00e9 une attaque au dernier moment.", "moneyCost" : 0, "group" : 12, "castCD" : 0, "id" : "P_DodgeHeal", "icon" : {"x" : 7, "y" : 15, "file" : "cardIcons.png", "size" : 24}, "name" : "Adr\u00e9naline", "droppable" : true, "tags" : [], "tier1" : "Brutality", "cellCost" : 100, "__separator_group_ID" : 12, "__separator_group_Name" : "Perk", "__original_Index" : 288}
json_instruct
{"type": "object", "properties": {"props": {"type": "object", "properties": {"scaledValueCap": {"type": "number"}, "prct": {"type": "number"}, "customScaling": {"type": "number"}, "duration": {"type": "integer"}}, "required": ["scaledValueCap", "prct", "customScaling", "duration"]}, "gameplayDesc": {"type": "string"}, "moneyCost": {"type": "integer"}, "group": {"type": "integer"}, "castCD": {"type": "integer"}, "id": {"type": "string"}, "icon": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["x", "y", "file", "size"]}, "name": {"type": "string"}, "droppable": {"type": "boolean"}, "tags": {"type": "array", "items": {}}, "tier1": {"type": "string"}, "cellCost": {"type": "integer"}, "__separator_group_ID": {"type": "integer"}, "__separator_group_Name": {"type": "string"}, "__original_Index": {"type": "integer"}}, "required": ["props", "gameplayDesc", "moneyCost", "group", "castCD", "id", "icon", "name", "droppable", "tags", "tier1", "cellCost", "__separator_group_ID", "__separator_group_Name", "__original_Index"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"TIMESTAMP UTC": {"type": "string"}, "MMSI": {"type": "integer"}, "TYPE_SUMMARY": {"type": "string"}, "TYPE_NAME": {"type": "string"}, "STATUS": {"type": "number"}, "SPEED (KNOTSx10)": {"type": "number"}, "Last Signal": {"type": "string"}, "LENGTH": {"type": "number"}, "Signal in 3 days": {"type": "boolean"}, "PRESENT SIGNAL": {"type": "boolean"}, "ENGINE ON": {"type": "boolean"}}, "required": ["TIMESTAMP UTC", "MMSI", "TYPE_SUMMARY", "TYPE_NAME", "STATUS", "SPEED (KNOTSx10)", "Last Signal", "LENGTH", "Signal in 3 days", "PRESENT SIGNAL", "ENGINE ON"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {"TIMESTAMP UTC" : "2020/05/26 11:06:00", "MMSI" : 224362590, "TYPE_SUMMARY" : "Tanker", "TYPE_NAME" : "Bunkering Tanker", "STATUS" : 5.0, "SPEED (KNOTSx10)" : 0.0, "Last Signal" : "2020/05/26 11:02:00", "LENGTH" : 40.9, "Signal in 3 days" : true, "PRESENT SIGNAL" : false, "ENGINE ON" : false}, "geometry" : {"type" : "Point", "coordinates" : [-5.698685, 43.56524]}}, {"type" : "Feature", "properties" : {"TIMESTAMP UTC" : "2020/05/26 11:06:00", "MMSI" : 255805740, "TYPE_SUMMARY" : "Cargo", "TYPE_NAME" : "Bulk Carrier", "STATUS" : 5.0, "SPEED (KNOTSx10)" : 0.0, "Last Signal" : "2020/05/26 10:55:00", "LENGTH" : 158.0, "Signal in 3 days" : true, "PRESENT SIGNAL" : false, "ENGINE ON" : false}, "geometry" : {"type" : "Point", "coordinates" : [-5.684834, 43.58033]}}, {"type" : "Feature", "properties" : {"TIMESTAMP UTC" : "2020/05/26 11:06:00", "MMSI" : 538005799, "TYPE_SUMMARY" : "Tanker", "TYPE_NAME" : "LPG Tanker", "STATUS" : 5.0, "SPEED (KNOTSx10)" : 0.0, "Last Signal" : "2020/05/26 10:59:00", "LENGTH" : 99.98, "Signal in 3 days" : true, "PRESENT SIGNAL" : false, "ENGINE ON" : false}, "geometry" : {"type" : "Point", "coordinates" : [-5.68195, 43.56661]}}, {"type" : "Feature", "properties" : {"TIMESTAMP UTC" : "2020/05/26 11:06:00", "MMSI" : 636016805, "TYPE_SUMMARY" : "Cargo", "TYPE_NAME" : "Container Ship", "STATUS" : 5.0, "SPEED (KNOTSx10)" : 0.0, "Last Signal" : "2020/05/26 11:04:00", "LENGTH" : 208.11, "Signal in 3 days" : true, "PRESENT SIGNAL" : false, "ENGINE ON" : false}, "geometry" : {"type" : "Point", "coordinates" : [-5.688505, 43.55717]}}, {"type" : "Feature", "properties" : {"TIMESTAMP UTC" : "2020/05/26 11:06:00", "MMSI" : 636016831, "TYPE_SUMMARY" : "Cargo", "TYPE_NAME" : "General Cargo", "STATUS" : 5.0, "SPEED (KNOTSx10)" : 0.0, "Last Signal" : "2020/05/26 10:50:00", "LENGTH" : 99.9, "Signal in 3 days" : true, "PRESENT SIGNAL" : false, "ENGINE ON" : false}, "geometry" : {"type" : "Point", "coordinates" : [-5.6994, 43.56357]}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"TIMESTAMP UTC": {"type": "string"}, "MMSI": {"type": "integer"}, "TYPE_SUMMARY": {"type": "string"}, "TYPE_NAME": {"type": "string"}, "STATUS": {"type": "number"}, "SPEED (KNOTSx10)": {"type": "number"}, "Last Signal": {"type": "string"}, "LENGTH": {"type": "number"}, "Signal in 3 days": {"type": "boolean"}, "PRESENT SIGNAL": {"type": "boolean"}, "ENGINE ON": {"type": "boolean"}}, "required": ["TIMESTAMP UTC", "MMSI", "TYPE_SUMMARY", "TYPE_NAME", "STATUS", "SPEED (KNOTSx10)", "Last Signal", "LENGTH", "Signal in 3 days", "PRESENT SIGNAL", "ENGINE ON"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"cleanup": {"type": "string"}, "cleanup:guild": {"type": "string"}, "cleanup:testnet": {"type": "string"}, "cleanup:mainnet": {"type": "string"}, "build:stake-pool": {"type": "string"}}, "required": ["cleanup", "cleanup:guild", "cleanup:testnet", "cleanup:mainnet", "build:stake-pool"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "url", "email"]}}, "required": ["name", "description", "version", "license", "scripts", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "cardano-stake-pool", "description" : "This repository will easily and quickly provision an optimized Cardano Stake Pool environment for your core and relay nodes. And much more.", "version" : "0.0.0", "license" : "MIT", "scripts" : {"cleanup" : "npm run cleanup:guild; npm run cleanup:testnet; npm run cleanup:mainnet;", "cleanup:guild" : "serverless remove --stage guild", "cleanup:testnet" : "serverless remove --stage testnet", "cleanup:mainnet" : "serverless remove --stage mainnet", "build:stake-pool" : "SLS_DEBUG=* serverless deploy --verbose --stage testnet"}, "author" : {"name" : "Chris Breuer", "url" : "https://pool.meema.io", "email" : "chris@meema.io"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"cleanup": {"type": "string"}, "cleanup:guild": {"type": "string"}, "cleanup:testnet": {"type": "string"}, "cleanup:mainnet": {"type": "string"}, "build:stake-pool": {"type": "string"}}, "required": ["cleanup", "cleanup:guild", "cleanup:testnet", "cleanup:mainnet", "build:stake-pool"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "url", "email"]}}, "required": ["name", "description", "version", "license", "scripts", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"user_id": {"type": "integer"}, "user_type": {"type": "string"}, "creation_date": {"type": "integer"}, "display_name": {"type": "string"}, "profile_image": {"type": "string"}, "reputation": {"type": "integer"}, "reputation_change_day": {"type": "integer"}, "reputation_change_week": {"type": "integer"}, "reputation_change_month": {"type": "integer"}, "reputation_change_quarter": {"type": "integer"}, "reputation_change_year": {"type": "integer"}, "last_access_date": {"type": "integer"}, "last_modified_date": {"type": "integer"}, "is_employee": {"type": "boolean"}, "link": {"type": "string"}, "website_url": {"type": "string"}, "location": {"type": "string"}, "account_id": {"type": "integer"}, "badge_counts": {"type": "object", "properties": {"gold": {"type": "integer"}, "silver": {"type": "integer"}, "bronze": {"type": "integer"}}, "required": ["gold", "silver", "bronze"]}}, "required": ["user_id", "user_type", "creation_date", "display_name", "profile_image", "reputation", "reputation_change_day", "reputation_change_week", "reputation_change_month", "reputation_change_quarter", "reputation_change_year", "last_access_date", "last_modified_date", "is_employee", "link", "website_url", "location", "account_id", "badge_counts"]}}, "quota_remaining": {"type": "integer"}, "quota_max": {"type": "integer"}, "has_more": {"type": "boolean"}}, "required": ["items", "quota_remaining", "quota_max", "has_more"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"items" : [{"user_id" : 1363236, "user_type" : "registered", "creation_date" : 1335636337, "display_name" : "raysrashmi", "profile_image" : "https://www.gravatar.com/avatar/e3e5923c7e2954158e9b9b0493c9132c?s=128&d=identicon&r=PG", "reputation" : 26, "reputation_change_day" : 0, "reputation_change_week" : 0, "reputation_change_month" : 0, "reputation_change_quarter" : 0, "reputation_change_year" : 25, "last_access_date" : 1381699921, "last_modified_date" : 1379355381, "is_employee" : false, "link" : "http://stackoverflow.com/users/1363236/raysrashmi", "website_url" : "http://raysrashmi.com", "location" : "Stockholm, Sweden", "account_id" : 1444066, "badge_counts" : {"gold" : 0, "silver" : 0, "bronze" : 4}}], "quota_remaining" : 9996, "quota_max" : 10000, "has_more" : false}
json_instruct
{"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"user_id": {"type": "integer"}, "user_type": {"type": "string"}, "creation_date": {"type": "integer"}, "display_name": {"type": "string"}, "profile_image": {"type": "string"}, "reputation": {"type": "integer"}, "reputation_change_day": {"type": "integer"}, "reputation_change_week": {"type": "integer"}, "reputation_change_month": {"type": "integer"}, "reputation_change_quarter": {"type": "integer"}, "reputation_change_year": {"type": "integer"}, "last_access_date": {"type": "integer"}, "last_modified_date": {"type": "integer"}, "is_employee": {"type": "boolean"}, "link": {"type": "string"}, "website_url": {"type": "string"}, "location": {"type": "string"}, "account_id": {"type": "integer"}, "badge_counts": {"type": "object", "properties": {"gold": {"type": "integer"}, "silver": {"type": "integer"}, "bronze": {"type": "integer"}}, "required": ["gold", "silver", "bronze"]}}, "required": ["user_id", "user_type", "creation_date", "display_name", "profile_image", "reputation", "reputation_change_day", "reputation_change_week", "reputation_change_month", "reputation_change_quarter", "reputation_change_year", "last_access_date", "last_modified_date", "is_employee", "link", "website_url", "location", "account_id", "badge_counts"]}}, "quota_remaining": {"type": "integer"}, "quota_max": {"type": "integer"}, "has_more": {"type": "boolean"}}, "required": ["items", "quota_remaining", "quota_max", "has_more"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"atom-workspace": {"type": "object", "properties": {"ctrl-alt-o": {"type": "string"}, "ctrl-alt-y": {"type": "string"}, "ctrl-alt-d": {"type": "string"}}, "required": ["ctrl-alt-o", "ctrl-alt-y", "ctrl-alt-d"]}}, "required": ["atom-workspace"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"atom-workspace" : {"ctrl-alt-o" : "homeo-atom:toggle", "ctrl-alt-y" : "homeo-atom:new_patient", "ctrl-alt-d" : "homeo-atom:new_session"}}
json_instruct
{"type": "object", "properties": {"atom-workspace": {"type": "object", "properties": {"ctrl-alt-o": {"type": "string"}, "ctrl-alt-y": {"type": "string"}, "ctrl-alt-d": {"type": "string"}}, "required": ["ctrl-alt-o", "ctrl-alt-y", "ctrl-alt-d"]}}, "required": ["atom-workspace"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "publisher": {"type": "string"}, "version": {"type": "string"}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required": ["vscode"]}, "categories": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "icon": {"type": "string"}, "extensionPack": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}, "email": {"type": "string"}}, "required": ["url", "email"]}}, "required": ["name", "displayName", "description", "publisher", "version", "engines", "categories", "keywords", "repository", "icon", "extensionPack", "homepage", "bugs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "iceworks", "displayName" : "Iceworks", "description" : "Visual Intelligent Development Assistant, provide visualization and intelligent technology to build Universal Application faster and better, support Web / H5 / MiniProgram(\u5c0f\u7a0b\u5e8f) Application.", "publisher" : "iceworks-team", "version" : "0.12.0", "engines" : {"vscode" : "^1.41.0"}, "categories" : ["Extension Packs", "Programming Languages", "Visualization", "Debuggers", "Notebooks"], "keywords" : ["React", "Low Code", "Visual", "Intelli Code", "AI", "Autocomplete", "JavaScript", "TypeScript", "ICE", "Rax", "\u5c0f\u7a0b\u5e8f"], "repository" : {"type" : "git", "url" : "https://github.com/ice-lab/iceworks.git"}, "icon" : "assets/logo.png", "extensionPack" : ["iceworks-team.iceworks-app", "iceworks-team.iceworks-ui-builder", "iceworks-team.iceworks-project-creator", "iceworks-team.iceworks-style-helper", "iceworks-team.iceworks-material-helper", "iceworks-team.iceworks-config-helper", "iceworks-team.iceworks-doctor"], "homepage" : "https://github.com/ice-lab/iceworks/blob/master/extensions/iceworks/README.md", "bugs" : {"url" : "https://github.com/ice-lab/iceworks/issues", "email" : "iceworksteam@163.com"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "publisher": {"type": "string"}, "version": {"type": "string"}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required": ["vscode"]}, "categories": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "icon": {"type": "string"}, "extensionPack": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}, "email": {"type": "string"}}, "required": ["url", "email"]}}, "required": ["name", "displayName", "description", "publisher", "version", "engines", "categories", "keywords", "repository", "icon", "extensionPack", "homepage", "bugs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "500238117001", "text" : "\u571f\u57ce\u5c45\u59d4\u4f1a"}, {"id" : "500238117200", "text" : "\u5e73\u5934\u6751\u59d4\u4f1a"}, {"id" : "500238117201", "text" : "\u576a\u9633\u6751\u59d4\u4f1a"}, {"id" : "500238117202", "text" : "\u989c\u5bb6\u6751\u59d4\u4f1a"}, {"id" : "500238117203", "text" : "\u77f3\u58c1\u6751\u59d4\u4f1a"}, {"id" : "500238117204", "text" : "\u4e94\u5cf0\u6751\u59d4\u4f1a"}, {"id" : "500238117205", "text" : "\u548c\u5e73\u6751\u59d4\u4f1a"}, {"id" : "500238117206", "text" : "\u897f\u576a\u6751\u59d4\u4f1a"}, {"id" : "500238117207", "text" : "\u9ec4\u9f99\u6751\u59d4\u4f1a"}, {"id" : "500238117208", "text" : "\u77f3\u67f1\u6751\u59d4\u4f1a"}, {"id" : "500238117209", "text" : "\u9c7c\u5858\u6751\u59d4\u4f1a"}, {"id" : "500238117210", "text" : "\u5e73\u5b89\u6751\u59d4\u4f1a"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"FIELD1": {"type": "integer"}, "key": {"type": "string"}, "star_name": {"type": "string"}, "planet_letter": {"type": "string"}, "discovery_method": {"type": "string"}, "pl_pnum": {"type": "integer"}, "orbital_period": {"type": "number"}, "semi_major": {"type": "number"}, "orbital_eccentricity": {"type": "number"}, "star_temp": {"type": "integer"}, "star_radius": {"type": "integer"}, "planet_temp": {"type": "string"}, "radius": {"type": "string"}, "discovery_year": {"type": "integer"}, "light_years": {"type": "number"}}, "required": ["FIELD1", "key", "star_name", "planet_letter", "discovery_method", "pl_pnum", "orbital_period", "semi_major", "orbital_eccentricity", "star_temp", "star_radius", "planet_temp", "radius", "discovery_year", "light_years"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"FIELD1" : 3519, "key" : "HIP 14810_b", "star_name" : "HIP 14810", "planet_letter" : "b", "discovery_method" : "Radial Velocity", "pl_pnum" : 3, "orbital_period" : 6.673855, "semi_major" : 0.0692, "orbital_eccentricity" : 0.1427, "star_temp" : 5485, "star_radius" : 1, "planet_temp" : "NA", "radius" : "NA", "discovery_year" : 2005, "light_years" : 172.4712928}, {"FIELD1" : 3520, "key" : "HIP 14810_c", "star_name" : "HIP 14810", "planet_letter" : "c", "discovery_method" : "Radial Velocity", "pl_pnum" : 3, "orbital_period" : 147.73, "semi_major" : 0.545, "orbital_eccentricity" : 0.164, "star_temp" : 5485, "star_radius" : 1, "planet_temp" : "NA", "radius" : "NA", "discovery_year" : 2006, "light_years" : 172.4712928}, {"FIELD1" : 3521, "key" : "HIP 14810_d", "star_name" : "HIP 14810", "planet_letter" : "d", "discovery_method" : "Radial Velocity", "pl_pnum" : 3, "orbital_period" : 952, "semi_major" : 1.89, "orbital_eccentricity" : 0.173, "star_temp" : 5485, "star_radius" : 1, "planet_temp" : "NA", "radius" : "NA", "discovery_year" : 2009, "light_years" : 172.4712928}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"FIELD1": {"type": "integer"}, "key": {"type": "string"}, "star_name": {"type": "string"}, "planet_letter": {"type": "string"}, "discovery_method": {"type": "string"}, "pl_pnum": {"type": "integer"}, "orbital_period": {"type": "number"}, "semi_major": {"type": "number"}, "orbital_eccentricity": {"type": "number"}, "star_temp": {"type": "integer"}, "star_radius": {"type": "integer"}, "planet_temp": {"type": "string"}, "radius": {"type": "string"}, "discovery_year": {"type": "integer"}, "light_years": {"type": "number"}}, "required": ["FIELD1", "key", "star_name", "planet_letter", "discovery_method", "pl_pnum", "orbital_period", "semi_major", "orbital_eccentricity", "star_temp", "star_radius", "planet_temp", "radius", "discovery_year", "light_years"]}, "$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"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"national": {"type": "string"}}, "required": ["national"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "WMOEI", "name" : {"en" : "Buffalo Pound Lake"}, "country" : "CA", "region" : "SK", "identifiers" : {"national" : "2859"}, "location" : {"latitude" : 50.55, "longitude" : -105.38, "elevation" : 588}, "timezone" : "America/Regina"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"national": {"type": "string"}}, "required": ["national"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"brief" : "hurricane", "long" : "<i>Meaning:</i> a \"hurricane\".<br/><i>Usage:</i> storm, tempest.<br/><i>Source:</i> feminine of \"H8178\";"}
json_instruct
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"BlackComedy": {"type": "array", "items": {"type": "string"}}}, "required": ["BlackComedy"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"BlackComedy" : ["Comedy", "Satire", "ArsonMurderAndJaywalking", "ToiletHumour", "VulgarHumor", "RefugeInAudacity", "DudeNotFunny", "NightmareFuel", "TearJerker", "CynicismTropes", "BlackSitcom", "UncleTomfoolery", "DeathTrope", "BlackComedyAnimalCruelty", "BadPeopleAbuseAnimals", "BlackComedyPetDeath", "BlackComedyBurst", "BlackComedyCannibalism", "ImAHumanitarian", "BlackComedyRape", "SexualHarassmentAndRapeTropes", "BloodyHilarious", "Gorn", "ComedicSociopathy", "LackOfEmpathy", "HeroicComedicSociopath", "NominalHero", "SociopathicHero", "LaughablyEvil", "EvilHasABadSenseOfHumor", "CrossesTheLineTwice", "DudeNotFunny", "DarkParody", "Parody", "SubvertedKidsShow", "SubvertedInnocence", "WhatDoYouMeanItsNotForKids", "DeathAsComedy", "AndThereWasMuchRejoicing", "AssholeVictim", "BondOneLiner", "PreMortemOneLiner", "TheFunInFuneral", "FuneralTropes", "GallowsHumor", "GraveHumor", "SuicideAsComedy", "ChoosingDeath", "TheyKilledKennyAgain", "DeathIsCheap", "UndignifiedDeath", "HilariouslyAbusiveChildhood", "ParentalAbuse", "HorrorComedy", "Comedy", "Horror", "HorrorTropes", "DeathTropes", "ViolenceTropes", "KafkaKomedy", "TheChewToy", "BornUnlucky", "ButtMonkey", "SadistShow", "MeatgrinderSurgery", "PovertyForComedy", "PovertyTropes", "BlackComedyPetDeath", "HeroicComedicSociopath", "NominalHero", "SociopathicHero", "LaughablyEvil", "EvilHasABadSenseOfHumor", "EvilHasABadSenseOfHumor", "DudeNotFunny", "SubvertedKidsShow", "SubvertedInnocence", "WhatDoYouMeanItsNotForKids", "AndThereWasMuchRejoicing", "AssholeVictim", "BondOneLiner", "PreMortemOneLiner", "TheFunInFuneral", "FuneralTropes", "GallowsHumor", "GraveHumor", "SuicideAsComedy", "ChoosingDeath", "TheyKilledKennyAgain", "DeathIsCheap", "UndignifiedDeath", "PreMortemOneLiner", "TheChewToy", "BornUnlucky", "ButtMonkey", "SadistShow", "Advertising", "Comedy", "FanWorks"]}
json_instruct
{"type": "object", "properties": {"BlackComedy": {"type": "array", "items": {"type": "string"}}}, "required": ["BlackComedy"], "$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"}, "url": {"type": "string"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "size": {"type": "integer"}}, "required": ["name", "url", "size"]}}, "description": {"type": "string"}, "schema": {"type": "object", "properties": {"fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}}, "required": ["fields"]}, "isopen": {"type": "boolean"}, "num_tags": {"type": "integer"}, "num_resources": {"type": "integer"}, "state": {"type": "string"}}, "required": ["name", "url", "resources", "description", "schema", "isopen", "num_tags", "num_resources", "state"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "gdp", "url" : "https://datopian.com", "resources" : [{"name" : "data.csv", "url" : "http://someplace.com/data.csv", "size" : 100}], "description" : "GDPs list", "schema" : {"fields" : [{"name" : "id", "type" : "integer"}, {"name" : "title", "type" : "string"}]}, "isopen" : true, "num_tags" : 1, "num_resources" : 10, "state" : "active"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "size": {"type": "integer"}}, "required": ["name", "url", "size"]}}, "description": {"type": "string"}, "schema": {"type": "object", "properties": {"fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}}, "required": ["fields"]}, "isopen": {"type": "boolean"}, "num_tags": {"type": "integer"}, "num_resources": {"type": "integer"}, "state": {"type": "string"}}, "required": ["name", "url", "resources", "description", "schema", "isopen", "num_tags", "num_resources", "state"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"broadcast": {"type": "array", "items": {"type": "object", "properties": {"ip/port": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}}, "required": ["ip/port", "type", "name"]}}, "inputs": {"type": "array", "items": {"type": "object", "properties": {"ip/port": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}}, "required": ["ip/port", "type", "name"]}}, "enable": {"type": "boolean"}, "name": {"type": "string"}, "lock": {"type": "boolean"}, "threshold": {"type": "number"}, "timestep": {"type": "number"}, "activation": {"type": "number"}, "outputs": {"type": "array", "items": {"type": "object", "properties": {"ip/port": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}}, "required": ["ip/port", "type", "name"]}}, "loop": {"type": "boolean"}}, "required": ["broadcast", "inputs", "enable", "name", "lock", "threshold", "timestep", "activation", "outputs", "loop"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"broadcast" : [{"ip/port" : "mongodb://mongodb:27017/", "type" : "mongo", "name" : "testBroadcastMemory"}], "inputs" : [{"ip/port" : "172.28.1.1:9999", "type" : "tcp", "name" : "motor-memory"}], "enable" : true, "name" : "none", "lock" : false, "threshold" : 0.0, "timestep" : 0.3, "activation" : 0.0, "outputs" : [{"ip/port" : "mongodb://mongodb:27017/", "type" : "mongo", "name" : "motor-input-memories/behavioral-memory"}], "loop" : true}
json_instruct
{"type": "object", "properties": {"broadcast": {"type": "array", "items": {"type": "object", "properties": {"ip/port": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}}, "required": ["ip/port", "type", "name"]}}, "inputs": {"type": "array", "items": {"type": "object", "properties": {"ip/port": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}}, "required": ["ip/port", "type", "name"]}}, "enable": {"type": "boolean"}, "name": {"type": "string"}, "lock": {"type": "boolean"}, "threshold": {"type": "number"}, "timestep": {"type": "number"}, "activation": {"type": "number"}, "outputs": {"type": "array", "items": {"type": "object", "properties": {"ip/port": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}}, "required": ["ip/port", "type", "name"]}}, "loop": {"type": "boolean"}}, "required": ["broadcast", "inputs", "enable", "name", "lock", "threshold", "timestep", "activation", "outputs", "loop"], "$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"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site-plan-url": {"type": "string"}, "name": {"type": "string"}, "planning-permission-date": {"type": "string"}, "start-date": {"type": "string"}, "deliverable": {"type": "string"}, "site-address": {"type": "string"}, "point": {"type": "string"}, "planning-permission-type": {"type": "string"}, "organisation": {"type": "string"}, "planning-permission-status": {"type": "string"}, "site": {"type": "string"}, "hectares": {"type": "string"}, "ownership-status": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site-plan-url", "name", "planning-permission-date", "start-date", "deliverable", "site-address", "point", "planning-permission-type", "organisation", "planning-permission-status", "site", "hectares", "ownership-status", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [0.464283, 51.675902]}, "properties" : {"site-plan-url" : "https://publicaccess.chelmsford.gov.uk/online-applications/search.do", "name" : "19/01816/FUL", "planning-permission-date" : "2020-02-05", "start-date" : "2020-02-28", "deliverable" : "yes", "site-address" : "Site at Chase Farm Cattery Stock Road West Hanningfield Chelmsford", "point" : "POINT(0.464283 51.675902)", "planning-permission-type" : "full planning permission", "organisation" : "local-authority-eng:CHL", "planning-permission-status" : "permissioned", "site" : "19/01816/FUL", "hectares" : "0.19", "ownership-status" : "not owned by a public authority", "slug" : "/brownfield-land/local-authority-eng/CHL/19-01816-FUL", "entity" : 501532, "entry-date" : "2020-02-28"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site-plan-url": {"type": "string"}, "name": {"type": "string"}, "planning-permission-date": {"type": "string"}, "start-date": {"type": "string"}, "deliverable": {"type": "string"}, "site-address": {"type": "string"}, "point": {"type": "string"}, "planning-permission-type": {"type": "string"}, "organisation": {"type": "string"}, "planning-permission-status": {"type": "string"}, "site": {"type": "string"}, "hectares": {"type": "string"}, "ownership-status": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site-plan-url", "name", "planning-permission-date", "start-date", "deliverable", "site-address", "point", "planning-permission-type", "organisation", "planning-permission-status", "site", "hectares", "ownership-status", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$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"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Avijit Babu": {"type": "string"}}, "required": ["Avijit Babu"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "swift_versions": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "swift_version": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "swift_versions", "platforms", "source_files", "swift_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "EasySkeletonView", "version" : "0.1.0", "summary" : "EasySkeletonView is easy and sweet library that show loader with animation", "description" : "EasySkeletonView is the frameworks that works fine and sweet in your application and give very smooth animate loader when fetch any data from API in app.", "homepage" : "https://github.com/avijitmobi/EasySkeletonView", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"Avijit Babu" : "avijitmobi@gmail.com"}, "source" : {"git" : "https://github.com/avijitmobi/EasySkeletonView.git", "tag" : "v0.1.0"}, "swift_versions" : "5.0", "platforms" : {"ios" : "12.0"}, "source_files" : "MyOwnFiles/**/*", "swift_version" : "5.0"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Avijit Babu": {"type": "string"}}, "required": ["Avijit Babu"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "swift_versions": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "swift_version": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "swift_versions", "platforms", "source_files", "swift_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}}, "required": ["name", "fips", "state_code", "county_code", "population", "countrylevel_id", "census_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"name" : "Macon County", "fips" : "13193", "state_code" : 13, "county_code" : 193, "population" : 12947, "countrylevel_id" : "fips:13193", "census_data" : {"COUNTYNS" : "00346957", "AFFGEOID" : "0500000US13193", "LSAD" : "06", "ALAND" : 1037709939, "AWATER" : 13841916}}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[-84.05295199999999, 32.530602], [-84.003363, 32.529927], [-84.00849, 32.521769], [-84.05331, 32.522020999999995], [-84.05295199999999, 32.530602]]], [[[-84.25461299999999, 32.372053], [-84.254313, 32.395572], [-84.242845, 32.401033999999996], [-84.197912, 32.400852], [-84.12234699999999, 32.505921], [-84.111226, 32.514123999999995], [-84.07231999999999, 32.514179999999996], [-84.07216, 32.521904], [-84.05331, 32.522020999999995], [-84.034326, 32.513478], [-84.034109, 32.497448999999996], [-84.017809, 32.496949], [-84.018147, 32.506406], [-83.93247199999999, 32.50569], [-83.923363, 32.511355], [-83.931122, 32.483745], [-83.922832, 32.497428], [-83.900503, 32.496981999999996], [-83.877066, 32.489015], [-83.872089, 32.479014], [-83.846676, 32.468514], [-83.846203, 32.439385], [-83.83667299999999, 32.439308], [-83.83695999999999, 32.393934], [-83.837041, 32.382194999999996], [-83.85654, 32.382399], [-83.85658699999999, 32.357774], [-83.846831, 32.357738], [-83.848379, 32.29097], [-83.89477699999999, 32.292175], [-83.897481, 32.280977], [-83.965121, 32.248005], [-83.989543, 32.216884], [-84.012641, 32.201363], [-84.031087, 32.178854], [-84.0276, 32.171165], [-84.049205, 32.185062], [-84.084805, 32.191262], [-84.13473599999999, 32.185392], [-84.134095, 32.227972], [-84.181657, 32.229703], [-84.22014399999999, 32.23115], [-84.219211, 32.295057], [-84.255912, 32.296155999999996], [-84.25461299999999, 32.372053]]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}}, "required": ["name", "fips", "state_code", "county_code", "population", "countrylevel_id", "census_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"apollo-codegen": {"type": "string"}}, "required": ["apollo-codegen"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"dependencies" : {"apollo-codegen" : "0.12.5"}}
json_instruct
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"apollo-codegen": {"type": "string"}}, "required": ["apollo-codegen"]}}, "required": ["dependencies"], "$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": {"label": {"type": "string"}, "id": {"type": "string"}, "json": {"type": "string"}}, "required": ["label", "id", "json"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"label" : "24 October 2012", "id" : "2012_10_24", "json" : "2012_10_24/2012_10_24.json"}, {"label" : "13 September 2012", "id" : "2012_09_13", "json" : "2012_09_13/2012_09_13.json"}, {"label" : "25 August 2012", "id" : "2012_08_25", "json" : "2012_08_25/2012_08_25.json"}, {"label" : "25 July 2012", "id" : "2012_07_25", "json" : "2012_07_25/2012_07_25.json"}, {"label" : "23 June 2012", "id" : "2012_06_23", "json" : "2012_06_23/2012_06_23.json"}, {"label" : "25 May 2012", "id" : "2012_05_25", "json" : "2012_05_25/2012_05_25.json"}, {"label" : "25 April 2012", "id" : "2012_04_25", "json" : "2012_04_25/2012_04_25.json"}, {"label" : "21 March 2012", "id" : "2012_03_21", "json" : "2012_03_21/2012_03_21.json"}, {"label" : "17 February 2012", "id" : "2012_02_17", "json" : "2012_02_17/2012_02_17.json"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "id": {"type": "string"}, "json": {"type": "string"}}, "required": ["label", "id", "json"]}, "$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#"}
[["211321211200", "\u897f\u4e94\u5bb6\u5b50\u6751\u6c11\u59d4\u5458\u4f1a", "210", "0"], ["211321211201", "\u7c38\u7b95\u638c\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["211321211202", "\u65b0\u5730\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["211321211203", "\u534a\u622a\u6c9f\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["211321211204", "\u4e09\u9053\u6c9f\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["211321211205", "\u5410\u987b\u6c9f\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["211321211206", "\u96c5\u8def\u6c9f\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["211321211207", "\u5927\u4e95\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["211321211208", "\u77f3\u7247\u5b50\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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "Podcast", "definitions" : ["a digital audio file made available on the Internet for downloading to a computer or mobile device, typically available as a series, new installments of which can be received by subscribers automatically"], "parts-of-speech" : "Noun"}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"scientific_name": {"type": "string"}, "primary": {"type": "boolean"}, "kingdom": {"type": "string"}, "phylum": {"type": "string"}, "class": {"type": "string"}, "order": {"type": "string"}, "family": {"type": "string"}, "genus": {"type": "string"}, "species": {"type": "string"}, "authority": {"type": "string"}, "infra_name": {"type": "null"}, "infra_rank": {"type": "null"}, "infra_authority": {"type": "null"}, "stock_name": {"type": "null"}, "species_id": {"type": "integer"}, "main_common_name": {"type": "string"}, "modified_year": {"type": "integer"}, "category": {"type": "string"}, "criteria": {"type": "null"}, "assessmentid": {"type": "string"}, "trend_id": {"type": "integer"}, "biome_marine": {"type": "boolean"}, "biome_freshwater": {"type": "boolean"}, "biome_terrestrial": {"type": "boolean"}, "taxonomicnotes": {"type": "null"}, "rationale": {"type": "string"}, "assessor": {"type": "string"}, "evaluator": {"type": "string"}}, "required": ["scientific_name", "primary", "kingdom", "phylum", "class", "order", "family", "genus", "species", "authority", "infra_name", "infra_rank", "infra_authority", "stock_name", "species_id", "main_common_name", "modified_year", "category", "criteria", "assessmentid", "trend_id", "biome_marine", "biome_freshwater", "biome_terrestrial", "taxonomicnotes", "rationale", "assessor", "evaluator"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"scientific_name" : "Yunnanilus cruciatus", "primary" : true, "kingdom" : "ANIMALIA", "phylum" : "CHORDATA", "class" : "ACTINOPTERYGII", "order" : "CYPRINIFORMES", "family" : "BALITORIDAE", "genus" : "Yunnanilus", "species" : "cruciatus", "authority" : "(Rendahl, 1944)", "infra_name" : null, "infra_rank" : null, "infra_authority" : null, "stock_name" : null, "species_id" : 188008, "main_common_name" : "Vietnamese Multi Banded Zebra Loach", "modified_year" : 2014, "category" : "LC", "criteria" : null, "assessmentid" : "1844769", "trend_id" : 4, "biome_marine" : false, "biome_freshwater" : true, "biome_terrestrial" : false, "taxonomicnotes" : null, "rationale" : "The species is known from the coastal rivers of central Viet Nam from the An Lao River (Binh Dinh Province) to the Phong Nha River (Quang Binh Province). General threats in the region include decline of its aquatic habitat due to pollution, but this is not thought to be affecting the entire range of the species. It has a wide range and is unlikely to be threatened at present. Therefore it is assessed as Least Concern.", "assessor" : "Allen, D.J.", "evaluator" : "Freyhof, J. & Darwall, W.R.T."}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"scientific_name": {"type": "string"}, "primary": {"type": "boolean"}, "kingdom": {"type": "string"}, "phylum": {"type": "string"}, "class": {"type": "string"}, "order": {"type": "string"}, "family": {"type": "string"}, "genus": {"type": "string"}, "species": {"type": "string"}, "authority": {"type": "string"}, "infra_name": {"type": "null"}, "infra_rank": {"type": "null"}, "infra_authority": {"type": "null"}, "stock_name": {"type": "null"}, "species_id": {"type": "integer"}, "main_common_name": {"type": "string"}, "modified_year": {"type": "integer"}, "category": {"type": "string"}, "criteria": {"type": "null"}, "assessmentid": {"type": "string"}, "trend_id": {"type": "integer"}, "biome_marine": {"type": "boolean"}, "biome_freshwater": {"type": "boolean"}, "biome_terrestrial": {"type": "boolean"}, "taxonomicnotes": {"type": "null"}, "rationale": {"type": "string"}, "assessor": {"type": "string"}, "evaluator": {"type": "string"}}, "required": ["scientific_name", "primary", "kingdom", "phylum", "class", "order", "family", "genus", "species", "authority", "infra_name", "infra_rank", "infra_authority", "stock_name", "species_id", "main_common_name", "modified_year", "category", "criteria", "assessmentid", "trend_id", "biome_marine", "biome_freshwater", "biome_terrestrial", "taxonomicnotes", "rationale", "assessor", "evaluator"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"mapbox-gl-dev.js": {"type": "string"}, "mapbox-gl.css": {"type": "string"}, "mapbox-gl.js": {"type": "string"}}, "required": ["mapbox-gl-dev.js", "mapbox-gl.css", "mapbox-gl.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"mapbox-gl-dev.js" : "sha512-p2C0caNYApbLNl4wmSS+U4yMOinGTfUre4YdQYvZPfKZ0/lfSiRIarHivweKw/IKQsC3yaHHi6FnN72ufVX9Hw==", "mapbox-gl.css" : "sha512-UGZztByEHBnkcA+2DXiwDLgRBqe92wf2unL+keIOK2JHGuTarAbPF2Yt/wmtNNu46nQMbWZGj+j5Qkpe3cc1og==", "mapbox-gl.js" : "sha512-owLeGzc29Sa2WWfuuk6k19mHxFm7RoIAPJkQ1b/f0MnFZlQD9yAluzuYGIGIdy64b+lnIJcP/mvEiwCjokTKiQ=="}
json_instruct
{"type": "object", "properties": {"mapbox-gl-dev.js": {"type": "string"}, "mapbox-gl.css": {"type": "string"}, "mapbox-gl.js": {"type": "string"}}, "required": ["mapbox-gl-dev.js", "mapbox-gl.css", "mapbox-gl.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"path-16.2.0-py3-none-any.whl": {"type": "string"}, "path-16.2.0.tar.gz": {"type": "string"}}, "required": ["path-16.2.0-py3-none-any.whl", "path-16.2.0.tar.gz"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"path-16.2.0-py3-none-any.whl" : "340054c5bb459fc9fd40e7eb6768c5989f3e599d18224238465b5333bc8faa7d", "path-16.2.0.tar.gz" : "2de925e8d421f93bcea80d511b81accfb6a7e6b249afa4a5559557b0cf817097"}
json_instruct
{"type": "object", "properties": {"path-16.2.0-py3-none-any.whl": {"type": "string"}, "path-16.2.0.tar.gz": {"type": "string"}}, "required": ["path-16.2.0-py3-none-any.whl", "path-16.2.0.tar.gz"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"nom": {"type": "string"}, "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" : "Arx", "dpt" : "Landes", "inscrits" : 62, "abs" : 11, "votants" : 51, "blancs" : 3, "nuls" : 1, "exp" : 47, "res" : [{"panneau" : "1", "voix" : 30}, {"panneau" : "2", "voix" : 17}]}
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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "Current stand-alone tests only run executables, which E4S has found to not catch undefined references. This is an experiment in copying and building tests -- currently in the source directory -- as added checks.", "user" : "tldahlgren", "url" : "https://api.github.com/repos/spack/spack/issues/27249", "updated_at" : "2021-11-08 20:38:42", "created_at" : "2021-11-06 01:38:04", "closed_at" : "2021-11-08 20:38:42", "state" : "closed", "title" : "Experiment: omega-h: experimenting with extra (simple?) tests", "number" : 27249, "milestone" : null, "labels" : ["update-package"], "id" : 1046353942, "html_url" : "https://github.com/spack/spack/pull/27249", "assignees" : [], "comments" : 1}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "premises": {"type": "array", "items": {"type": "string"}}}, "required": ["citations", "argumentText", "conclusion", "language", "lookupTerms", "metaLanguage", "premises"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"citations" : [{"textCitation" : "[See drnfc1 on Metamath](http://us.metamath.org/mpegif/drnfc1.html)"}], "argumentText" : "ARGUMENT\nw\n\n| Step | Hyp | Ref | Expression |\n|---|---|---|---|\n\n| 1 | | drnfc1.1 | |- ( A. x x = y -> A = B ) |\n| 2 | 1 | #P_eleq2d | |- ( A. x x = y -> ( w e. A <-> w e. B ) ) |\n| 3 | 2 | #P_drnf1 | |- ( A. x x = y -> ( F/ x w e. A <-> F/ y w e. B ) ) |\n| 4 | 3 | #P_dral2 | |- ( A. x x = y -> ( A. w F/ x w e. A <-> A. w F/ y w e. B ) ) |\n| 5 | | #P_df-nfc | |- ( F/_ x A <-> A. w F/ x w e. A ) |\n| 6 | | #P_df-nfc | |- ( F/_ y B <-> A. w F/ y w e. B ) |\n| 7 | 4, 5, 6 | #P_3bitr4g | |- ( A. x x = y -> ( F/_ x A <-> F/_ y B ) ) |", "conclusion" : "#P_drnfc1", "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_vw", "#T_wal", "#T_vx", "#T_vx", "#T_wceq", "#T_vy", "#T_wi", "#T_cA", "#T_wceq", "#T_cB", "#T_wal", "#T_vx.wal", "#T_vx.wal", "#T_wceq", "#T_vy.tru", "#T_wi", "#T_vw", "#T_wcel", "#T_cA.wceq", "#T_wb", "#T_vw", "#T_wcel", "#T_cB.wceq", "#T_wal", "#T_vx.wal", "#T_vx.wal", "#T_wceq", "#T_vy.tru", "#T_wi", "#T_wnf", "#T_vx.wal", "#T_vw", "#T_wcel", "#T_cA.wceq", "#T_wb", "#T_wnf", "#T_vy.tru", "#T_vw", "#T_wcel", "#T_cB.wceq", "#T_wal", "#T_vx.wal", "#T_vx.wal", "#T_wceq", "#T_vy.tru", "#T_wi", "#T_wal", "#T_vw", "#T_wnf", "#T_vx.wal", "#T_vw", "#T_wcel", "#T_cA.wceq", "#T_wb", "#T_wal", "#T_vw", "#T_wnf", "#T_vy.tru", "#T_vw", "#T_wcel", "#T_cB.wceq", "#T_wnfc", "#T_vx.wal", "#T_cA.wceq", "#T_wb", "#T_wal", "#T_vw", "#T_wnf", "#T_vx.wal", "#T_vw", "#T_wcel", "#T_cA.wceq", "#T_wnfc", "#T_vy.tru", "#T_cB.wceq", "#T_wb", "#T_wal", "#T_vw", "#T_wnf", "#T_vy.tru", "#T_vw", "#T_wcel", "#T_cB.wceq", "#T_wal", "#T_vx", "#T_vx", "#T_wceq", "#T_vy", "#T_wi", "#T_wnfc", "#T_vx", "#T_cA", "#T_wb", "#T_wnfc", "#T_vy", "#T_cB"], "metaLanguage" : "METAMATH", "premises" : ["#P_eleq2d", "#P_df-nfc", "#P_drnf1", "#P_dral2", "#P_3bitr4g"]}
json_instruct
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "premises": {"type": "array", "items": {"type": "string"}}}, "required": ["citations", "argumentText", "conclusion", "language", "lookupTerms", "metaLanguage", "premises"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"userName": {"type": "string"}, "userEmail": {"type": "string"}, "userAddress": {"type": "string"}, "userPass": {"type": "string"}}, "required": ["userName", "userEmail", "userAddress", "userPass"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userName" : "elraphty", "userEmail" : "info10@seeafricatour.com", "userAddress" : "17J Freedom Way, 17J Freedom Way", "userPass" : "90d889f40876ed1dd2800bfb646abb00a24a51684a696f606dbaaaed8499ea95"}
json_instruct
{"type": "object", "properties": {"userName": {"type": "string"}, "userEmail": {"type": "string"}, "userAddress": {"type": "string"}, "userPass": {"type": "string"}}, "required": ["userName", "userEmail", "userAddress", "userPass"], "$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"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "clean": {"type": "string"}, "build": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["start", "clean", "build", "deploy"]}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@cycle/dom": {"type": "string"}, "@cycle/isolate": {"type": "string"}, "@cycle/xstream-run": {"type": "string"}, "material-motion-streams-experiment": {"type": "string"}, "rebound": {"type": "string"}, "snabbdom-jsx": {"type": "string"}, "xstream": {"type": "string"}}, "required": ["@cycle/dom", "@cycle/isolate", "@cycle/xstream-run", "material-motion-streams-experiment", "rebound", "snabbdom-jsx", "xstream"]}, "devDependencies": {"type": "object", "properties": {"firebase-tools": {"type": "string"}, "pundle-dev": {"type": "string"}, "typescript": {"type": "string"}, "typescript-pundle": {"type": "string"}}, "required": ["firebase-tools", "pundle-dev", "typescript", "typescript-pundle"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "scripts", "main", "dependencies", "devDependencies", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "material-motion-streams-demos", "version" : "0.0.0", "scripts" : {"start" : "node ./devServer.js", "clean" : "rm -rf ./site/dist/*; mkdir -p ./site/dist/", "build" : "yarn run clean; node ./build.js", "deploy" : "yarn run build; $( yarn bin )/firebase deploy"}, "main" : "src/index.ts", "dependencies" : {"@cycle/dom" : "14.1.0", "@cycle/isolate" : "1.4.0", "@cycle/xstream-run" : "3.1.0", "material-motion-streams-experiment" : "0.0.0", "rebound" : "0.0.13", "snabbdom-jsx" : "0.3.1", "xstream" : "8.0.0"}, "devDependencies" : {"firebase-tools" : "3.2.0", "pundle-dev" : "1.1.11", "typescript" : "next", "typescript-pundle" : "1.0.1"}, "repository" : {"type" : "git", "url" : "git+ssh://git@github.com:material-motion/streams-experiment-js.git"}, "author" : "The Material Motion Authors (see AUTHORS)", "license" : "Apache-2.0", "bugs" : {"url" : "https://github.com/material-motion/streams-experiment-js/issues/"}, "homepage" : "https://github.com/material-motion/streams-experiment-js/#readme"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "clean": {"type": "string"}, "build": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["start", "clean", "build", "deploy"]}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@cycle/dom": {"type": "string"}, "@cycle/isolate": {"type": "string"}, "@cycle/xstream-run": {"type": "string"}, "material-motion-streams-experiment": {"type": "string"}, "rebound": {"type": "string"}, "snabbdom-jsx": {"type": "string"}, "xstream": {"type": "string"}}, "required": ["@cycle/dom", "@cycle/isolate", "@cycle/xstream-run", "material-motion-streams-experiment", "rebound", "snabbdom-jsx", "xstream"]}, "devDependencies": {"type": "object", "properties": {"firebase-tools": {"type": "string"}, "pundle-dev": {"type": "string"}, "typescript": {"type": "string"}, "typescript-pundle": {"type": "string"}}, "required": ["firebase-tools", "pundle-dev", "typescript", "typescript-pundle"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "scripts", "main", "dependencies", "devDependencies", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"Entries": {"type": "array", "items": {"type": "object", "properties": {"RequestUri": {"type": "string"}, "RequestMethod": {"type": "string"}, "RequestHeaders": {"type": "object", "properties": {":method": {"type": "string"}, "Accept": {"type": "string"}, "Accept-Encoding": {"type": "string"}, "Authorization": {"type": "string"}, "User-Agent": {"type": "string"}, "x-ms-date": {"type": "string"}, "x-ms-version": {"type": "string"}}, "required": [":method", "Accept", "Accept-Encoding", "Authorization", "User-Agent", "x-ms-date", "x-ms-version"]}, "RequestBody": {"type": "null"}, "StatusCode": {"type": "integer"}, "ResponseHeaders": {"type": "object", "properties": {"Content-Type": {"type": "string"}, "Date": {"type": "string"}, "Server": {"type": "array", "items": {"type": "string"}}, "Transfer-Encoding": {"type": "string"}, "x-ms-request-id": {"type": "string"}, "x-ms-version": {"type": "string"}}, "required": ["Content-Type", "Date", "Server", "Transfer-Encoding", "x-ms-request-id", "x-ms-version"]}, "ResponseBody": {"type": "string"}}, "required": ["RequestUri", "RequestMethod", "RequestHeaders", "RequestBody", "StatusCode", "ResponseHeaders", "ResponseBody"]}}, "Variables": {"type": "object", "properties": {}, "required": []}}, "required": ["Entries", "Variables"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Entries" : [{"RequestUri" : "https://fakeaccount-secondary.table.core.windows.net/?comp=stats&restype=service", "RequestMethod" : "GET", "RequestHeaders" : {":method" : "GET", "Accept" : "application/xml", "Accept-Encoding" : "gzip", "Authorization" : "Sanitized", "User-Agent" : "azsdk-go-aztables/v0.7.1 azsdk-go-azcore/v0.23.0 (go1.18; Windows_NT)", "x-ms-date" : "Wed, 13 Apr 2022 19:25:51 GMT", "x-ms-version" : "2019-02-02"}, "RequestBody" : null, "StatusCode" : 200, "ResponseHeaders" : {"Content-Type" : "application/xml", "Date" : "Wed, 13 Apr 2022 19:25:50 GMT", "Server" : ["Windows-Azure-Table/1.0", "Microsoft-HTTPAPI/2.0"], "Transfer-Encoding" : "chunked", "x-ms-request-id" : "0f1c7c2e-8002-0084-436c-4fc942000000", "x-ms-version" : "2019-02-02"}, "ResponseBody" : "\ufeff<?xml version=\"1.0\" encoding=\"utf-8\"?><StorageServiceStats><GeoReplication><Status>live</Status><LastSyncTime>Wed, 13 Apr 2022 19:22:46 GMT</LastSyncTime></GeoReplication></StorageServiceStats>"}], "Variables" : {}}
json_instruct
{"type": "object", "properties": {"Entries": {"type": "array", "items": {"type": "object", "properties": {"RequestUri": {"type": "string"}, "RequestMethod": {"type": "string"}, "RequestHeaders": {"type": "object", "properties": {":method": {"type": "string"}, "Accept": {"type": "string"}, "Accept-Encoding": {"type": "string"}, "Authorization": {"type": "string"}, "User-Agent": {"type": "string"}, "x-ms-date": {"type": "string"}, "x-ms-version": {"type": "string"}}, "required": [":method", "Accept", "Accept-Encoding", "Authorization", "User-Agent", "x-ms-date", "x-ms-version"]}, "RequestBody": {"type": "null"}, "StatusCode": {"type": "integer"}, "ResponseHeaders": {"type": "object", "properties": {"Content-Type": {"type": "string"}, "Date": {"type": "string"}, "Server": {"type": "array", "items": {"type": "string"}}, "Transfer-Encoding": {"type": "string"}, "x-ms-request-id": {"type": "string"}, "x-ms-version": {"type": "string"}}, "required": ["Content-Type", "Date", "Server", "Transfer-Encoding", "x-ms-request-id", "x-ms-version"]}, "ResponseBody": {"type": "string"}}, "required": ["RequestUri", "RequestMethod", "RequestHeaders", "RequestBody", "StatusCode", "ResponseHeaders", "ResponseBody"]}}, "Variables": {"type": "object", "properties": {}, "required": []}}, "required": ["Entries", "Variables"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1988, 6], [1992, 7], [1994, 13], [2001, 5], [2004, 7]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"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" : "Maravat", "dpt" : "Gers", "inscrits" : 40, "abs" : 8, "votants" : 32, "blancs" : 2, "nuls" : 2, "exp" : 28, "res" : [{"panneau" : "1", "voix" : 25}, {"panneau" : "2", "voix" : 3}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"sheet": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["sheet", "definitions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"sheet" : "AchievementHideCondition", "definitions" : [{"name" : "HideAchievement"}, {"index" : 1, "name" : "HideName"}, {"index" : 2, "name" : "HideConditions"}]}
json_instruct
{"type": "object", "properties": {"sheet": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["sheet", "definitions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"CIDADE": {"type": "string"}, "IBGE": {"type": "string"}, "ESTADO": {"type": "string"}, "ID": {"type": "string"}}, "required": ["CIDADE", "IBGE", "ESTADO", "ID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"CIDADE" : "Novo Air\u00e3o", "IBGE" : "1303205", "ESTADO" : "Amazonas", "ID" : "13"}
json_instruct
{"type": "object", "properties": {"CIDADE": {"type": "string"}, "IBGE": {"type": "string"}, "ESTADO": {"type": "string"}, "ID": {"type": "string"}}, "required": ["CIDADE", "IBGE", "ESTADO", "ID"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"year" : 1985, "sex" : "F", "n" : 7, "prop" : 3.79e-06}, {"year" : 1986, "sex" : "F", "n" : 8, "prop" : 4.34e-06}, {"year" : 1987, "sex" : "F", "n" : 5, "prop" : 2.67e-06}, {"year" : 1988, "sex" : "F", "n" : 12, "prop" : 6.24e-06}, {"year" : 1989, "sex" : "F", "n" : 13, "prop" : 6.53e-06}, {"year" : 1990, "sex" : "F", "n" : 10, "prop" : 4.87e-06}, {"year" : 1991, "sex" : "F", "n" : 9, "prop" : 4.43e-06}, {"year" : 1993, "sex" : "F", "n" : 5, "prop" : 2.54e-06}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "department": {"type": "string"}, "id": {"type": "string"}, "notes": {"type": "array", "items": {}}, "events_single": {"type": "object", "properties": {}, "required": []}, "events_unknown": {"type": "array", "items": {}}, "events_repeating": {"type": "object", "properties": {"Tu": {"type": "object", "properties": {"c7ac7606a54e74348cc9d22e4bf498ab43b9d9f43e867937de0581361e28c05e": {"type": "object", "properties": {"sectxt": {"type": "boolean"}, "sectionID": {"type": "string"}, "type": {"type": "string"}, "section": {"type": "string"}, "days": {"type": "string"}, "time": {"type": "string"}, "building": {"type": "string"}, "room": {"type": "string"}, "instructors": {"type": "array", "items": {"type": "string"}}, "start_time": {"type": "string"}, "end_time": {"type": "string"}}, "required": ["sectxt", "sectionID", "type", "section", "days", "time", "building", "room", "instructors", "start_time", "end_time"]}}, "required": ["c7ac7606a54e74348cc9d22e4bf498ab43b9d9f43e867937de0581361e28c05e"]}}, "required": ["Tu"]}, "sections": {"type": "array", "items": {"type": "string"}}}, "required": ["code", "name", "department", "id", "notes", "events_single", "events_unknown", "events_repeating", "sections"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : "VIS 203", "name" : "Working Critique", "department" : "VIS", "id" : "203", "notes" : [], "events_single" : {}, "events_unknown" : [], "events_repeating" : {"Tu" : {"c7ac7606a54e74348cc9d22e4bf498ab43b9d9f43e867937de0581361e28c05e" : {"sectxt" : true, "sectionID" : "939367", "type" : "SE", "section" : "B00", "days" : "Tu", "time" : "11:30a-2:20p", "building" : "VAF", "room" : "366", "instructors" : ["Mangolte, Babette"], "start_time" : "11:30", "end_time" : "14:20"}}}, "sections" : ["A", "B"]}
json_instruct
{"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "department": {"type": "string"}, "id": {"type": "string"}, "notes": {"type": "array", "items": {}}, "events_single": {"type": "object", "properties": {}, "required": []}, "events_unknown": {"type": "array", "items": {}}, "events_repeating": {"type": "object", "properties": {"Tu": {"type": "object", "properties": {"c7ac7606a54e74348cc9d22e4bf498ab43b9d9f43e867937de0581361e28c05e": {"type": "object", "properties": {"sectxt": {"type": "boolean"}, "sectionID": {"type": "string"}, "type": {"type": "string"}, "section": {"type": "string"}, "days": {"type": "string"}, "time": {"type": "string"}, "building": {"type": "string"}, "room": {"type": "string"}, "instructors": {"type": "array", "items": {"type": "string"}}, "start_time": {"type": "string"}, "end_time": {"type": "string"}}, "required": ["sectxt", "sectionID", "type", "section", "days", "time", "building", "room", "instructors", "start_time", "end_time"]}}, "required": ["c7ac7606a54e74348cc9d22e4bf498ab43b9d9f43e867937de0581361e28c05e"]}}, "required": ["Tu"]}, "sections": {"type": "array", "items": {"type": "string"}}}, "required": ["code", "name", "department", "id", "notes", "events_single", "events_unknown", "events_repeating", "sections"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "description": {"type": "string"}, "remarks": {"type": "string"}, "derived_tickets": {"type": "string"}, "attachments": {"type": "string"}, "check_ins": {"type": "string"}, "type": {"type": "string"}, "last_change": {"type": "string"}, "status": {"type": "string"}, "created": {"type": "string"}, "fixed_version": {"type": "string"}, "broken_version": {"type": "string"}, "priority": {"type": "string"}, "subsystem": {"type": "string"}, "assigned_to": {"type": "string"}, "derived_from": {"type": "string"}, "creator": {"type": "string"}, "rust": {"type": "string"}, "customer_group": {"type": "string"}, "visibility": {"type": "string"}, "notify": {"type": "string"}, "due_date": {"type": "string"}}, "required": ["id", "title", "description", "remarks", "derived_tickets", "attachments", "check_ins", "type", "last_change", "status", "created", "fixed_version", "broken_version", "priority", "subsystem", "assigned_to", "derived_from", "creator", "rust", "customer_group", "visibility", "notify", "due_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 5584, "title" : "Ticket #5584: BOSCO configuration improvements in the RPM", "description" : "<blockquote>\nScot Kronenfeld and Derek Weitzel have suggested some improvements to the BOSCO configuration in the RPMs. This ticket covered implemented those improvements.</blockquote>", "remarks" : "<blockquote>\n<em>2016-Sep-16 10:14:56 by tim:</em> <br/>\n\nThese changes only affect the OSG packaging of BOSCO.\n\n<p></p><hr/>\n<em>2020-Jul-13 12:46:42 by blin:</em> <br/>\n\nWhat are these changes and have they been addressed?\n\n<p></p><hr/>\n<em>2020-Jul-21 08:41:06 by tim:</em> <br/>\n\nJust follow the rust link for the suggested changes. I lost track of this. Will review.</blockquote>", "derived_tickets" : "", "attachments" : "<html><head></head><body></body></html>", "check_ins" : "", "type" : "enhance", "last_change" : "2020-Aug-10 13:43", "status" : "new", "created" : "2016-Mar-27 20:34", "fixed_version" : "2016-Mar-27 20:34", "broken_version" : "", "priority" : "3", "subsystem" : "Packaging", "assigned_to" : "tim", "derived_from" : "", "creator" : "tim", "rust" : "a29737", "customer_group" : "osg", "visibility" : "public", "notify" : "Scot Kronenfeld <scotwk@gmail.com>, blin@cs.wisc.edu", "due_date" : ""}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "description": {"type": "string"}, "remarks": {"type": "string"}, "derived_tickets": {"type": "string"}, "attachments": {"type": "string"}, "check_ins": {"type": "string"}, "type": {"type": "string"}, "last_change": {"type": "string"}, "status": {"type": "string"}, "created": {"type": "string"}, "fixed_version": {"type": "string"}, "broken_version": {"type": "string"}, "priority": {"type": "string"}, "subsystem": {"type": "string"}, "assigned_to": {"type": "string"}, "derived_from": {"type": "string"}, "creator": {"type": "string"}, "rust": {"type": "string"}, "customer_group": {"type": "string"}, "visibility": {"type": "string"}, "notify": {"type": "string"}, "due_date": {"type": "string"}}, "required": ["id", "title", "description", "remarks", "derived_tickets", "attachments", "check_ins", "type", "last_change", "status", "created", "fixed_version", "broken_version", "priority", "subsystem", "assigned_to", "derived_from", "creator", "rust", "customer_group", "visibility", "notify", "due_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "platforms": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "platforms"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "expo-image-loader", "platforms" : ["android", "ios"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "platforms": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "platforms"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["eventhub", "tel-carrier-db"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "main", "dependencies", "devDependencies", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "stateface", "version" : "1.0.0", "main" : ["font/webfont/stateface-regular-webfont.eot", "font/webfont/stateface-regular-webfont.svg", "font/webfont/stateface-regular-webfont.ttf", "font/webfont/stateface-regular-webfont.woff", "reference/stateface.css"], "dependencies" : {}, "devDependencies" : {}, "ignore" : ["**/.*", "**/*.txt", "**/*.md", "**/*.mdown", "**/*.rb", "**/*.json", "**/*.py", "**/*.html", "eps", "font/*.glyphs", "font/*.otf", "pkg", "reference/styles.css", "tools"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "main", "dependencies", "devDependencies", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "integer"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Time" : "2021-01-10T00:00:00Z", "Temp" : 16.4, "RelHum" : 33, "WindSpeed" : 3, "WindDir" : 359}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "integer"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"meta": {"type": "object", "properties": {"desc": {"type": "string"}, "desc_long": {"type": "string"}, "home": {"type": "string"}, "license": {"type": "object", "properties": {"deprecated": {"type": "boolean"}, "free": {"type": "boolean"}, "fullName": {"type": "string"}, "redistributable": {"type": "boolean"}, "shortName": {"type": "string"}, "spdxId": {"type": "string"}, "url": {"type": "string"}}, "required": ["deprecated", "free", "fullName", "redistributable", "shortName", "spdxId", "url"]}, "maintainers": {"type": "null"}}, "required": ["desc", "desc_long", "home", "license", "maintainers"]}, "versions": {"type": "array", "items": {"type": "object", "properties": {"commits": {"type": "array", "items": {"type": "object", "properties": {"first": {"type": "string"}, "last": {"type": "string"}}, "required": ["first", "last"]}}, "name": {"type": "string"}}, "required": ["commits", "name"]}}}, "required": ["meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"meta" : {"desc" : "Show progress of open files and file systems", "desc_long" : "ftop is to files what top is to processes. The progress of all open files\nand file systems can be monitored. If run as a regular user, the set of\nopen files will be limited to those in that user's processes (which is\ngenerally all that is of interest to the user).\nAs with top, the items are displayed in order from most to least active.\n", "home" : "https://code.google.com/archive/p/ftop/", "license" : {"deprecated" : false, "free" : true, "fullName" : "GNU General Public License v3.0 or later", "redistributable" : true, "shortName" : "gpl3Plus", "spdxId" : "GPL-3.0-or-later", "url" : "https://spdx.org/licenses/GPL-3.0-or-later.html"}, "maintainers" : null}, "versions" : [{"commits" : [{"first" : "06498b06ed0f49adcb8824f8ea944514424a3a62", "last" : "024f518e65ffbe64f0f044b194ad15ec2e973788"}], "name" : "1.0"}]}
json_instruct
{"type": "object", "properties": {"meta": {"type": "object", "properties": {"desc": {"type": "string"}, "desc_long": {"type": "string"}, "home": {"type": "string"}, "license": {"type": "object", "properties": {"deprecated": {"type": "boolean"}, "free": {"type": "boolean"}, "fullName": {"type": "string"}, "redistributable": {"type": "boolean"}, "shortName": {"type": "string"}, "spdxId": {"type": "string"}, "url": {"type": "string"}}, "required": ["deprecated", "free", "fullName", "redistributable", "shortName", "spdxId", "url"]}, "maintainers": {"type": "null"}}, "required": ["desc", "desc_long", "home", "license", "maintainers"]}, "versions": {"type": "array", "items": {"type": "object", "properties": {"commits": {"type": "array", "items": {"type": "object", "properties": {"first": {"type": "string"}, "last": {"type": "string"}}, "required": ["first", "last"]}}, "name": {"type": "string"}}, "required": ["commits", "name"]}}}, "required": ["meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"code": {"type": "string"}, "description": {"type": "string"}, "info": {"type": "array", "items": {"type": "string"}}, "symptoms": {"type": "array", "items": {"type": "string"}}, "causes": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}}, "required": ["code", "description", "info", "symptoms", "causes", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : "P0637", "description" : "Power Steering Control Circuit High", "info" : ["This is a generic powertrain diagnostic trouble code (DTC) and applies to many OBD-II vehicles (1996-newer). That may include but is not limited to vehicles from Saturn, Renault, Dodge, Ford, Nissan, Mercedes, etc. Although generic, the exact repair steps may vary depending on year, make, model and powertrain configuration.", "\n\u00a0", "OBD-II trouble codes P0635, P0636, and P0637 are associated with the power steering control circuit.", "When the Power Control Module (PCM) detects too high of electrical signals within the power steering control circuit code P0637 will be set and the check engine light will be illuminated.", "The purpose of the power steering control circuit is to provide the appropriate voltage to various power steering components. The PCM monitors voltage signals from the power steering controller, sensors and switches. These components provide the proper fluid pressure within the power steering system. This process is essential to prevent damage to power steering components. The power steering control circuit facilitates the power steering system to adapt to various driving conditions and prevent Stiff or erratic steering. This circuit alerts the PCM that possible issues exist that require immediate attention.", "An electric power steering motor:\n"], "symptoms" : ["Stiff or erratic steering\nNoise while turning\nCheck engine light illuminated"], "causes" : ["Defective power steering pressure switch\nDefective power steering position switch\nFaulty power steering control\nA loose control module ground strap or broken ground wire\nInsufficient fluid level or leak\nBlown fuse or fuse-able link (if applicable)\nCorroded or damaged connector\nFaulty or damaged wiring\nDefective PCM"], "type" : "WARN"}
json_instruct
{"type": "object", "properties": {"code": {"type": "string"}, "description": {"type": "string"}, "info": {"type": "array", "items": {"type": "string"}}, "symptoms": {"type": "array", "items": {"type": "string"}}, "causes": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}}, "required": ["code", "description", "info", "symptoms", "causes", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1949, 5], [1950, 9], [1951, 7], [1952, 5], [1953, 6], [1954, 7], [1955, 5], [1956, 13], [1957, 8], [1958, 11], [1959, 6], [1960, 6], [1961, 5], [1962, 5], [1964, 11], [1967, 6], [1971, 7], [1972, 6], [1974, 6], [1979, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "provides": {"type": "string"}, "license": {"type": "string"}, "readme": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "subcategory": {"type": "string"}, "maintainer": {"type": "string"}, "version": {"type": "string"}, "family": {"type": "string"}, "core": {"type": "string"}, "install": {"type": "object", "properties": {"examples": {"type": "string"}, "library.properties": {"type": "string"}, "src": {"type": "string"}}, "required": ["examples", "library.properties", "src"]}}, "required": ["name", "provides", "license", "readme", "description", "category", "subcategory", "maintainer", "version", "family", "core", "install"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "PLang", "provides" : "PLang.h", "license" : "LICENSE.md", "readme" : "README.md", "description" : "Simple Scripting Language", "category" : "System", "subcategory" : "Languages", "maintainer" : "Matt Jenkins <matt@majenko.co.uk>", "version" : "1.0.3", "family" : "pic32", "core" : "chipkit", "install" : {"examples" : "/", "library.properties" : "/", "src" : "/"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "provides": {"type": "string"}, "license": {"type": "string"}, "readme": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "subcategory": {"type": "string"}, "maintainer": {"type": "string"}, "version": {"type": "string"}, "family": {"type": "string"}, "core": {"type": "string"}, "install": {"type": "object", "properties": {"examples": {"type": "string"}, "library.properties": {"type": "string"}, "src": {"type": "string"}}, "required": ["examples", "library.properties", "src"]}}, "required": ["name", "provides", "license", "readme", "description", "category", "subcategory", "maintainer", "version", "family", "core", "install"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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" : [[[-81.05789, 29.23901], [-81.044202, 29.244782], [-81.0357, 29.229243], [-81.049651, 29.223414], [-81.051874, 29.228077], [-81.050936, 29.228401], [-81.050278, 29.227143], [-81.048375, 29.228013], [-81.049894, 29.230316], [-81.052517, 29.229214], [-81.05789, 29.23901]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 15979}}]}
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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "start": {"type": "string"}, "test": {"type": "string"}}, "required": ["dev", "start", "test"]}, "dependencies": {"type": "object", "properties": {"@fluent/bundle": {"type": "string"}, "@leesiongchan/botstream": {"type": "string"}, "graphql-request": {"type": "string"}, "lodash": {"type": "string"}, "pino": {"type": "string"}, "rxjs": {"type": "string"}}, "required": ["@fluent/bundle", "@leesiongchan/botstream", "graphql-request", "lodash", "pino", "rxjs"]}, "devDependencies": {"type": "object", "properties": {"@types/lodash": {"type": "string"}, "@types/node": {"type": "string"}, "@types/pino": {"type": "string"}, "env-cmd": {"type": "string"}, "pino-pretty": {"type": "string"}, "prettier": {"type": "string"}, "ts-node": {"type": "string"}, "ts-node-dev": {"type": "string"}, "tslib": {"type": "string"}, "tslint": {"type": "string"}, "tslint-config-prettier": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/lodash", "@types/node", "@types/pino", "env-cmd", "pino-pretty", "prettier", "ts-node", "ts-node-dev", "tslib", "tslint", "tslint-config-prettier", "typescript"]}}, "required": ["name", "description", "version", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@o5s/gtk-bot", "description" : "", "version" : "1.0.0", "scripts" : {"dev" : "env-cmd tsnd -T src/index.ts", "start" : "env-cmd ts-node -T src/index.ts", "test" : "echo \"Error: no test specified\" && exit 1"}, "dependencies" : {"@fluent/bundle" : "^0.14.0", "@leesiongchan/botstream" : "^0.0.5", "graphql-request" : "^1.8.2", "lodash" : "^4.17.15", "pino" : "^5.13.3", "rxjs" : "^6.5.3"}, "devDependencies" : {"@types/lodash" : "^4.14.138", "@types/node" : "^12.7.8", "@types/pino" : "^5.8.10", "env-cmd" : "^10.0.1", "pino-pretty" : "^3.2.1", "prettier" : "^1.18.2", "ts-node" : "^8.3.0", "ts-node-dev" : "^1.0.0-pre.42", "tslib" : "^1.10.0", "tslint" : "^5.19.0", "tslint-config-prettier" : "^1.18.0", "typescript" : "^3.6.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "start": {"type": "string"}, "test": {"type": "string"}}, "required": ["dev", "start", "test"]}, "dependencies": {"type": "object", "properties": {"@fluent/bundle": {"type": "string"}, "@leesiongchan/botstream": {"type": "string"}, "graphql-request": {"type": "string"}, "lodash": {"type": "string"}, "pino": {"type": "string"}, "rxjs": {"type": "string"}}, "required": ["@fluent/bundle", "@leesiongchan/botstream", "graphql-request", "lodash", "pino", "rxjs"]}, "devDependencies": {"type": "object", "properties": {"@types/lodash": {"type": "string"}, "@types/node": {"type": "string"}, "@types/pino": {"type": "string"}, "env-cmd": {"type": "string"}, "pino-pretty": {"type": "string"}, "prettier": {"type": "string"}, "ts-node": {"type": "string"}, "ts-node-dev": {"type": "string"}, "tslib": {"type": "string"}, "tslint": {"type": "string"}, "tslint-config-prettier": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/lodash", "@types/node", "@types/pino", "env-cmd", "pino-pretty", "prettier", "ts-node", "ts-node-dev", "tslib", "tslint", "tslint-config-prettier", "typescript"]}}, "required": ["name", "description", "version", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "usage_interval_sent": {"type": "boolean"}, "status_interval_sent": {"type": "string"}, "usage_config_sent": {"type": "string"}, "usage_interval": {"type": "integer"}, "status_interval": {"type": "string"}, "usage_without_new_data": {"type": "string"}}, "required": ["type", "usage_interval_sent", "status_interval_sent", "usage_config_sent", "usage_interval", "status_interval", "usage_without_new_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "general_configuration", "usage_interval_sent" : true, "status_interval_sent" : "true", "usage_config_sent" : "true", "usage_interval" : 300, "status_interval" : "10", "usage_without_new_data" : "true"}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "usage_interval_sent": {"type": "boolean"}, "status_interval_sent": {"type": "string"}, "usage_config_sent": {"type": "string"}, "usage_interval": {"type": "integer"}, "status_interval": {"type": "string"}, "usage_without_new_data": {"type": "string"}}, "required": ["type", "usage_interval_sent", "status_interval_sent", "usage_config_sent", "usage_interval", "status_interval", "usage_without_new_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"list_of_ids_element": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "idref_element": {"type": "string"}, "idref_attr": {"type": "string"}}, "required": ["list_of_ids_element", "idref_element", "idref_attr"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"list_of_ids_element" : [["asd", "gfj", "u123"], ["a1", "b2", "c3"]], "idref_element" : "u123", "idref_attr" : "b2"}
json_instruct
{"type": "object", "properties": {"list_of_ids_element": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "idref_element": {"type": "string"}, "idref_attr": {"type": "string"}}, "required": ["list_of_ids_element", "idref_element", "idref_attr"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"use": {"type": "string"}, "input": {"type": "array", "items": {"type": "string"}}, "dir": {"type": "string"}, "watch": {"type": "boolean"}}, "required": ["use", "input", "dir", "watch"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"use" : "postcss-cssnext", "input" : ["src/css/demo.css", "src/css/demo0.css"], "dir" : "/webapp/dev/css", "watch" : true}
json_instruct
{"type": "object", "properties": {"use": {"type": "string"}, "input": {"type": "array", "items": {"type": "string"}}, "dir": {"type": "string"}, "watch": {"type": "boolean"}}, "required": ["use", "input", "dir", "watch"], "$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": {"p": {"type": "string"}, "d": {"type": "integer"}}, "required": ["p", "d"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"p" : "3427e3a1-daa6-4494-ae69-ed6a09631792", "d" : 434}, {"p" : "1eb7fa42-8f4b-4202-833d-6b3d72bfc5fa", "d" : 160}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"p": {"type": "string"}, "d": {"type": "integer"}}, "required": ["p", "d"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "docs": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "docs", "build", "start"]}, "dependencies": {"type": "object", "properties": {"@emotion/react": {"type": "string"}, "@robbie-cook/react-components": {"type": "string"}, "@types/css": {"type": "string"}, "bigiron.css": {"type": "string"}, "css": {"type": "string"}, "next": {"type": "string"}, "next-seo": {"type": "string"}, "postcss": {"type": "string"}, "postcss-js": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-tooltip": {"type": "string"}}, "required": ["@emotion/react", "@robbie-cook/react-components", "@types/css", "bigiron.css", "css", "next", "next-seo", "postcss", "postcss-js", "react", "react-dom", "react-tooltip"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/react": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "@types/react", "typescript"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "docs", "version" : "0.1.0", "private" : true, "scripts" : {"dev" : "(cd .. && npm link) && npm link bigiron.css && next dev -p 3001", "docs" : "npm run dev", "build" : "next build", "start" : "next dev"}, "dependencies" : {"@emotion/react" : "^11.1.5", "@robbie-cook/react-components" : "^6.1.15", "@types/css" : "0.0.31", "bigiron.css" : "2.3.5", "css" : "^3.0.0", "next" : "10.0.6", "next-seo" : "^4.28.1", "postcss" : "^8.1.7", "postcss-js" : "^3.0.3", "react" : "^17.0.1", "react-dom" : "17.0.1", "react-tooltip" : "^4.2.17"}, "devDependencies" : {"@types/node" : "^14.14.26", "@types/react" : "^17.0.1", "typescript" : "^4.1.5"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "docs": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "docs", "build", "start"]}, "dependencies": {"type": "object", "properties": {"@emotion/react": {"type": "string"}, "@robbie-cook/react-components": {"type": "string"}, "@types/css": {"type": "string"}, "bigiron.css": {"type": "string"}, "css": {"type": "string"}, "next": {"type": "string"}, "next-seo": {"type": "string"}, "postcss": {"type": "string"}, "postcss-js": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-tooltip": {"type": "string"}}, "required": ["@emotion/react", "@robbie-cook/react-components", "@types/css", "bigiron.css", "css", "next", "next-seo", "postcss", "postcss-js", "react", "react-dom", "react-tooltip"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/react": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "@types/react", "typescript"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"objects": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"left": {"type": "integer"}, "top": {"type": "integer"}, "width": {"type": "integer"}, "height": {"type": "integer"}}, "required": ["left", "top", "width", "height"]}, "object": {"type": "string"}}, "required": ["location", "object"]}}}, "required": ["objects"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"objects" : [{"location" : {"left" : 92, "top" : 66, "width" : 43, "height" : 75}, "object" : "Lego"}, {"location" : {"left" : 216, "top" : 65, "width" : 42, "height" : 67}, "object" : "Lego"}, {"location" : {"left" : 113, "top" : 151, "width" : 47, "height" : 79}, "object" : "Lego"}, {"location" : {"left" : 201, "top" : 173, "width" : 55, "height" : 79}, "object" : "Lego"}]}
json_instruct
{"type": "object", "properties": {"objects": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"left": {"type": "integer"}, "top": {"type": "integer"}, "width": {"type": "integer"}, "height": {"type": "integer"}}, "required": ["left", "top", "width", "height"]}, "object": {"type": "string"}}, "required": ["location", "object"]}}}, "required": ["objects"], "$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"}, "author": {"type": "string"}, "description": {"type": "string"}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}, "persistent": {"type": "boolean"}}, "required": ["scripts", "persistent"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "object", "properties": {"16": {"type": "string"}, "32": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "32", "48", "128"]}}, "required": ["default_icon"]}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "32": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "32", "48", "128"]}, "manifest_version": {"type": "integer"}}, "required": ["name", "version", "author", "description", "background", "permissions", "browser_action", "icons", "manifest_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Sort Tesco products by price/weight", "version" : "1.0", "author" : "Jade Dickinson", "description" : "Allows sorting of Tesco groceries by price/weight", "background" : {"scripts" : ["background.js"], "persistent" : false}, "permissions" : ["activeTab"], "browser_action" : {"default_icon" : {"16" : "images/sort-by-weight-16.png", "32" : "images/sort-by-weight-32.png", "48" : "images/sort-by-weight-48.png", "128" : "images/sort-by-weight-128.png"}}, "icons" : {"16" : "images/sort-by-weight-16.png", "32" : "images/sort-by-weight-32.png", "48" : "images/sort-by-weight-48.png", "128" : "images/sort-by-weight-128.png"}, "manifest_version" : 2}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}, "persistent": {"type": "boolean"}}, "required": ["scripts", "persistent"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "object", "properties": {"16": {"type": "string"}, "32": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "32", "48", "128"]}}, "required": ["default_icon"]}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "32": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "32", "48", "128"]}, "manifest_version": {"type": "integer"}}, "required": ["name", "version", "author", "description", "background", "permissions", "browser_action", "icons", "manifest_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}}, "required": ["test", "lint"]}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"abort-controller": {"type": "string"}, "debug": {"type": "string"}, "delay": {"type": "string"}, "fs-extra": {"type": "string"}, "it-parallel-batch": {"type": "string"}, "node-fetch": {"type": "string"}}, "required": ["abort-controller", "debug", "delay", "fs-extra", "it-parallel-batch", "node-fetch"]}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "chai-as-promised": {"type": "string"}, "dirty-chai": {"type": "string"}, "mocha": {"type": "string"}, "nock": {"type": "string"}, "sinon": {"type": "string"}, "standard": {"type": "string"}}, "required": ["chai", "chai-as-promised", "dirty-chai", "mocha", "nock", "sinon", "standard"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "dependencies", "license", "devDependencies", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@achingbrain/follow-registry", "version" : "5.0.1", "description" : "npm registry follower", "main" : "lib/index.js", "scripts" : {"test" : "mocha ./tests/*.js", "lint" : "standard"}, "author" : "Dav Glass <davglass@gmail.com>", "dependencies" : {"abort-controller" : "^3.0.0", "debug" : "^4.1.1", "delay" : "^4.3.0", "fs-extra" : "^9.0.0", "it-parallel-batch" : "^1.0.3", "node-fetch" : "^2.6.0"}, "license" : "BSD", "devDependencies" : {"chai" : "^4.2.0", "chai-as-promised" : "^7.1.1", "dirty-chai" : "^2.0.1", "mocha" : "^7.1.2", "nock" : "^12.0.3", "sinon" : "^9.0.2", "standard" : "^14.3.3"}, "repository" : {"type" : "git", "url" : "git@github.com:achingbrain/follow-registry.git"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}}, "required": ["test", "lint"]}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"abort-controller": {"type": "string"}, "debug": {"type": "string"}, "delay": {"type": "string"}, "fs-extra": {"type": "string"}, "it-parallel-batch": {"type": "string"}, "node-fetch": {"type": "string"}}, "required": ["abort-controller", "debug", "delay", "fs-extra", "it-parallel-batch", "node-fetch"]}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "chai-as-promised": {"type": "string"}, "dirty-chai": {"type": "string"}, "mocha": {"type": "string"}, "nock": {"type": "string"}, "sinon": {"type": "string"}, "standard": {"type": "string"}}, "required": ["chai", "chai-as-promised", "dirty-chai", "mocha", "nock", "sinon", "standard"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "dependencies", "license", "devDependencies", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Argel\u00e8s-sur-Mer", "circ" : "4\u00e8me circonscription", "dpt" : "Pyr\u00e9n\u00e9es-Orientales", "inscrits" : 9911, "abs" : 4980, "votants" : 4931, "blancs" : 101, "nuls" : 44, "exp" : 4786, "res" : [{"nuance" : "REM", "nom" : "M. S\u00e9bastien CAZENOVE", "voix" : 1555}, {"nuance" : "FN", "nom" : "M. St\u00e9phane MASSANELL", "voix" : 1053}, {"nuance" : "LR", "nom" : "Mme Jacqueline IRLES", "voix" : 564}, {"nuance" : "SOC", "nom" : "M. Alexandre REYNAL", "voix" : 396}, {"nuance" : "FI", "nom" : "Mme Dominique GU\u00c9RIN", "voix" : 389}, {"nuance" : "COM", "nom" : "M. Nicolas GARCIA", "voix" : 291}, {"nuance" : "REG", "nom" : "M. Jordi VERA", "voix" : 228}, {"nuance" : "ECO", "nom" : "M. Franck HUETTE", "voix" : 84}, {"nuance" : "DLF", "nom" : "Mme Gis\u00e8le MOURAGUES", "voix" : 83}, {"nuance" : "EXG", "nom" : "Mme Esther SILAN", "voix" : 45}, {"nuance" : "DIV", "nom" : "M. Daniel AILLAUD", "voix" : 42}, {"nuance" : "DVD", "nom" : "Mme Mich\u00e8le VADUREAU PEREZ", "voix" : 29}, {"nuance" : "DIV", "nom" : "Mme Carole PERCY", "voix" : 27}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"electron": {"type": "string"}}, "required": ["electron"]}, "dependencies": {"type": "object", "properties": {"php-server-manager": {"type": "string"}}, "required": ["php-server-manager"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ELECTRON4PHP", "version" : "1.0.0", "description" : "An easiest way to use php in electron", "main" : "index.js", "scripts" : {"start" : "electron ."}, "repository" : "https://github.com/AJ-TechSoul/ELECTRON-4-PHP", "keywords" : ["Electron", "php", "techsoul"], "author" : "Ajay Kumar", "license" : "CC0-1.0", "devDependencies" : {"electron" : "^1.7.12"}, "dependencies" : {"php-server-manager" : "^1.2.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"electron": {"type": "string"}}, "required": ["electron"]}, "dependencies": {"type": "object", "properties": {"php-server-manager": {"type": "string"}}, "required": ["php-server-manager"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "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": {"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" : 22812, "cartId" : "9c4855a9-f7d7-4fdd-ac05-65963d9dfd51", "preferredProducts" : [627, 1751, 1892, 3560, 3759, 360, 2919, 4044, 4860, 1964], "productReviews" : [{"productId" : 1728, "reviewText" : "heard about this on rebetiko radio, decided to give it a try.", "reviewDate" : "2020-01-28T08:14:18.7473607+02:00"}, {"productId" : 3033, "reviewText" : "The box this comes in is 3 inch by 6 centimeter and weights 15 ounce!", "reviewDate" : "2017-03-06T07:21:26.6708707+02:00"}, {"productId" : 4149, "reviewText" : "This Tools, Health & Kids works certainly well. It accidentally improves my baseball by a lot.", "reviewDate" : "2016-11-22T12:47:06.087974+02:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[151.875, 20.916666666666668], [151.875, 21.0], [152.0, 21.0], [152.0, 20.916666666666668], [151.875, 20.916666666666668]]]}, "properties" : {"code" : 315137, "url" : "http://madefor.github.io/0410/api/v1/315137.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/315137.geojson"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"lastUpdated" : 1655019279666, "username" : "BestBear", "scores" : [{"xp" : 21745, "rank" : 148, "cardId" : 137}, {"xp" : 23279, "rank" : 271, "cardId" : 29}, {"xp" : 24001, "rank" : 303, "cardId" : 314}, {"xp" : 24642, "rank" : 130, "cardId" : 19}, {"xp" : 22809, "rank" : 423, "cardId" : 243}, {"xp" : 27221, "rank" : 478, "cardId" : 389}, {"xp" : 4215, "rank" : 417, "cardId" : 153}, {"xp" : 23219, "rank" : 389, "cardId" : 168}, {"xp" : 31510, "rank" : 188, "cardId" : 48}, {"xp" : 21970, "rank" : 350, "cardId" : 165}]}
json_instruct
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "170101040503", "variable1" : 0.8039, "variable2" : 0.1546, "variable3" : "A"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require-dev": {"type": "object", "properties": {"orchestra/testbench": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["orchestra/testbench", "phpunit/phpunit"]}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {}, "required": []}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Mabadir\\LaravelCypress\\": {"type": "string"}}, "required": ["Mabadir\\LaravelCypress\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Mabadir\\LaravelCypress\\Tests\\": {"type": "string"}}, "required": ["Mabadir\\LaravelCypress\\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", "require-dev", "license", "authors", "require", "autoload", "autoload-dev", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "mabadir/laravel-cypress", "description" : "Library to bootstrap Cypress testing in Laravel", "type" : "library", "require-dev" : {"orchestra/testbench" : "^4.0", "phpunit/phpunit" : "^9.0"}, "license" : "MIT", "authors" : [{"name" : "Mina Abadir", "email" : "mina@abadir.email"}], "require" : {}, "autoload" : {"psr-4" : {"Mabadir\\LaravelCypress\\" : "src/"}}, "autoload-dev" : {"psr-4" : {"Mabadir\\LaravelCypress\\Tests\\" : "tests/"}}, "extra" : {"laravel" : {"providers" : ["Mabadir\\LaravelCypress\\LaravelCypressServiceProvider"]}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require-dev": {"type": "object", "properties": {"orchestra/testbench": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["orchestra/testbench", "phpunit/phpunit"]}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {}, "required": []}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Mabadir\\LaravelCypress\\": {"type": "string"}}, "required": ["Mabadir\\LaravelCypress\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Mabadir\\LaravelCypress\\Tests\\": {"type": "string"}}, "required": ["Mabadir\\LaravelCypress\\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", "require-dev", "license", "authors", "require", "autoload", "autoload-dev", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"url": {"type": "string"}, "load": {"type": "string"}, "loadFiles": {"type": "array", "items": {"type": "object", "properties": {"file": {"type": "string"}, "table": {"type": "string"}}, "required": ["file", "table"]}}, "saveFile": {"type": "string"}, "shp2pgsql": {"type": "array", "items": {"type": "string"}}}, "required": ["url", "load", "loadFiles", "saveFile", "shp2pgsql"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"url" : "http://gis.ny.gov/gisdata/data/ds_1114/DEC_lands.zip", "load" : "shp2pgsql", "loadFiles" : [{"file" : "DEC_lands.shp", "table" : "nysdec_facilities_lands"}], "saveFile" : "nysdec_facilities_lands.zip", "shp2pgsql" : ["-d", "-s 26918:4326"]}
json_instruct
{"type": "object", "properties": {"url": {"type": "string"}, "load": {"type": "string"}, "loadFiles": {"type": "array", "items": {"type": "object", "properties": {"file": {"type": "string"}, "table": {"type": "string"}}, "required": ["file", "table"]}}, "saveFile": {"type": "string"}, "shp2pgsql": {"type": "array", "items": {"type": "string"}}}, "required": ["url", "load", "loadFiles", "saveFile", "shp2pgsql"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"text": {"type": "string"}, "storybook": {"type": "string"}, "build-storybook": {"type": "string"}, "build-esm": {"type": "string"}, "build": {"type": "string"}}, "required": ["text", "storybook", "build-storybook", "build-esm", "build"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@storybook/addon-actions": {"type": "string"}, "@storybook/addon-essentials": {"type": "string"}, "@storybook/addon-links": {"type": "string"}, "@storybook/react": {"type": "string"}, "babel-loader": {"type": "string"}, "esbuild": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "semantic-ui-css": {"type": "string"}}, "required": ["@babel/core", "@storybook/addon-actions", "@storybook/addon-essentials", "@storybook/addon-links", "@storybook/react", "babel-loader", "esbuild", "react", "react-dom", "semantic-ui-css"]}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["react", "react-dom"]}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "main", "module", "license", "scripts", "keywords", "author", "devDependencies", "peerDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "rjp-scroller", "version" : "1.0.0", "description" : "Easy to use scroller", "main" : "dist/index.js", "module" : "dist/index.mjs", "license" : "MIT", "scripts" : {"text" : "echo \"Error: no test specified\" && exit 1", "storybook" : "start-storybook -p 6006", "build-storybook" : "build-storybook", "build-esm" : "esbuild ./src/index.js --bundle --format=esm --outdir=dist", "build" : "node esbuild.js"}, "keywords" : ["scroll", "react", "awesome"], "author" : "rjp", "devDependencies" : {"@babel/core" : "^7.14.0", "@storybook/addon-actions" : "^6.2.9", "@storybook/addon-essentials" : "^6.2.9", "@storybook/addon-links" : "^6.2.9", "@storybook/react" : "^6.2.9", "babel-loader" : "^8.2.2", "esbuild" : "^0.11.20", "react" : "^17.0.2", "react-dom" : "^17.0.2", "semantic-ui-css" : "^2.4.1"}, "peerDependencies" : {"react" : "^17.0.2", "react-dom" : "^17.0.2"}, "dependencies" : {}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"text": {"type": "string"}, "storybook": {"type": "string"}, "build-storybook": {"type": "string"}, "build-esm": {"type": "string"}, "build": {"type": "string"}}, "required": ["text", "storybook", "build-storybook", "build-esm", "build"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@storybook/addon-actions": {"type": "string"}, "@storybook/addon-essentials": {"type": "string"}, "@storybook/addon-links": {"type": "string"}, "@storybook/react": {"type": "string"}, "babel-loader": {"type": "string"}, "esbuild": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "semantic-ui-css": {"type": "string"}}, "required": ["@babel/core", "@storybook/addon-actions", "@storybook/addon-essentials", "@storybook/addon-links", "@storybook/react", "babel-loader", "esbuild", "react", "react-dom", "semantic-ui-css"]}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["react", "react-dom"]}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "main", "module", "license", "scripts", "keywords", "author", "devDependencies", "peerDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"asMCPatch": {"type": "string"}, "initializeSquotDiffNodes:with:": {"type": "string"}, "newSquotDiffNodes": {"type": "string"}, "squotApplyTo:": {"type": "string"}, "squotApplyToLoaded:": {"type": "string"}, "squotHasChanges": {"type": "string"}, "squotHasConflicts": {"type": "string"}}, "required": ["asMCPatch", "initializeSquotDiffNodes:with:", "newSquotDiffNodes", "squotApplyTo:", "squotApplyToLoaded:", "squotHasChanges", "squotHasConflicts"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"class" : {}, "instance" : {"asMCPatch" : "jr 7/22/2017 17:24", "initializeSquotDiffNodes:with:" : "jr 11/19/2017 20:52", "newSquotDiffNodes" : "jr 11/26/2018 22:59", "squotApplyTo:" : "jr 5/29/2017 23:45", "squotApplyToLoaded:" : "jr 6/7/2017 14:49", "squotHasChanges" : "jr 4/17/2017 01:15", "squotHasConflicts" : "jr 7/27/2017 23:34"}}
json_instruct
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"asMCPatch": {"type": "string"}, "initializeSquotDiffNodes:with:": {"type": "string"}, "newSquotDiffNodes": {"type": "string"}, "squotApplyTo:": {"type": "string"}, "squotApplyToLoaded:": {"type": "string"}, "squotHasChanges": {"type": "string"}, "squotHasConflicts": {"type": "string"}}, "required": ["asMCPatch", "initializeSquotDiffNodes:with:", "newSquotDiffNodes", "squotApplyTo:", "squotApplyToLoaded:", "squotHasChanges", "squotHasConflicts"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"Id": {"type": "integer"}}, "required": ["Id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "name", "crs", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "name" : "Berry_2008", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features" : [{"type" : "Feature", "properties" : {"Id" : 0}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[-120.74425206338285, 38.737555961993074], [-120.74414972768629, 38.737442298641604], [-120.74412106756876, 38.73746375990913], [-120.74413145761761, 38.737411117987676], [-120.74456244738178, 38.73746627274762], [-120.74474583022388, 38.737612126515316], [-120.74483467774168, 38.737747910729496], [-120.74480617586393, 38.73790122385389], [-120.74471967546168, 38.738092334892336], [-120.7447636811154, 38.738352091411485], [-120.74442967306229, 38.73796735092586], [-120.74437745586144, 38.73796526276865], [-120.74433210602109, 38.73782301804459], [-120.74433312128089, 38.73766551467324], [-120.74425206338285, 38.737555961993074]]]]}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"Id": {"type": "integer"}}, "required": ["Id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "name", "crs", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"require": {"type": "object", "properties": {"clue/socks-server": {"type": "string"}, "clue/socks-react": {"type": "string"}}, "required": ["clue/socks-server", "clue/socks-react"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"require" : {"clue/socks-server" : "^0.5.0", "clue/socks-react" : "^0.5.1"}}
json_instruct
{"type": "object", "properties": {"require": {"type": "object", "properties": {"clue/socks-server": {"type": "string"}, "clue/socks-react": {"type": "string"}}, "required": ["clue/socks-server", "clue/socks-react"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"generated_at" : "2017-01-27T09:37:39.487124", "required_by" : ["onegov.file", "tgapp-flatpages"], "requires" : [], "package" : "filedepot"}
json_instruct
{"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "name": {"type": "string"}, "id": {"type": "string"}}, "required": ["amenity", "name", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "id" : "node/2255161612", "properties" : {"amenity" : "marketplace", "name" : "Wochenmarkt Am Garnmarkt (Freitag)", "id" : "node/2255161612"}, "geometry" : {"type" : "Point", "coordinates" : [9.6458008, 47.3349528]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "name": {"type": "string"}, "id": {"type": "string"}}, "required": ["amenity", "name", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"scenarioDetails": {"type": "array", "items": {"type": "object", "properties": {"scenario": {"type": "string"}, "shortContainerId": {"type": "string"}, "stepsSummary": {"type": "object", "properties": {"numberOfFailed": {"type": "integer"}}, "required": ["numberOfFailed"]}}, "required": ["scenario", "shortContainerId", "stepsSummary"]}}, "exitCode": {"type": "integer"}}, "required": ["scenarioDetails", "exitCode"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"scenarioDetails" : [{"scenario" : "match error", "shortContainerId" : "errorRuns.groovy", "stepsSummary" : {"numberOfFailed" : 2}}, {"scenario" : "run error", "shortContainerId" : "errorRuns.groovy", "stepsSummary" : {"numberOfFailed" : 2}}], "exitCode" : 1}
json_instruct
{"type": "object", "properties": {"scenarioDetails": {"type": "array", "items": {"type": "object", "properties": {"scenario": {"type": "string"}, "shortContainerId": {"type": "string"}, "stepsSummary": {"type": "object", "properties": {"numberOfFailed": {"type": "integer"}}, "required": ["numberOfFailed"]}}, "required": ["scenario", "shortContainerId", "stepsSummary"]}}, "exitCode": {"type": "integer"}}, "required": ["scenarioDetails", "exitCode"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"callback": {"type": "string"}, "api_callback": {"type": "string"}, "unsplash_callback": {"type": "string"}, "promise": {"type": "string"}, "api_promise": {"type": "string"}, "async": {"type": "string"}, "api_async": {"type": "string"}}, "required": ["callback", "api_callback", "unsplash_callback", "promise", "api_promise", "async", "api_async"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"unsplash-js": {"type": "string"}, "xmlhttprequest": {"type": "string"}}, "required": ["unsplash-js", "xmlhttprequest"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "asincronismo", "version" : "1.0.0", "description" : "Trabajo con asincronismo en Javascript", "main" : "src/index.js", "scripts" : {"callback" : "node src/callback/index.js", "api_callback" : "node src/callback/api.js", "unsplash_callback" : "node src/callback/unsplash_api.js", "promise" : "node src/promise/index.js", "api_promise" : "node src/promise/api.js", "async" : "node src/async/index.js", "api_async" : "node src/async/api.js"}, "keywords" : ["callback", "promesas", "async", "await"], "author" : "Daniel Dev", "license" : "MIT", "dependencies" : {"unsplash-js" : "^6.0.0", "xmlhttprequest" : "^1.8.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"callback": {"type": "string"}, "api_callback": {"type": "string"}, "unsplash_callback": {"type": "string"}, "promise": {"type": "string"}, "api_promise": {"type": "string"}, "async": {"type": "string"}, "api_async": {"type": "string"}}, "required": ["callback", "api_callback", "unsplash_callback", "promise", "api_promise", "async", "api_async"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"unsplash-js": {"type": "string"}, "xmlhttprequest": {"type": "string"}}, "required": ["unsplash-js", "xmlhttprequest"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"categories" : ["Uncategorized"], "desc" : " This open access book brings out the state of the art on how informatics-based tools are used and expected to be used in nanomaterials research. There has been great progress in the area in which \u201cbig-data\u201d generated by experiments or computations are fully utilized to accelerate discovery of new materials, key factors, and design rules. Data-intensive approaches play indispensable roles in advanced materials characterization. \u201cMaterials informatics\u201d is the central paradigm in the new trend. \u201cNanoinformatics\u201d is its essential subset, which focuses on nanostructures of materials such as surfaces, interfaces, dopants, and point defects, playing a critical role in determining materials properties. There have been significant advances in experimental and computational techniques to characterize individual atoms in nanostructures and to gain quantitative information. The collaboration of researchers in materials science and information science is growing actively and is creating a new trend in materials science and engineering.\u00a0", "details" : {"authors" : "Isao Tanaka", "format" : "pdf", "isbn-10" : "9811076162", "isbn-13" : "978-9811076169", "pages" : "298 pages", "publication date" : "January 16, 2018", "publisher" : "Springer", "size" : "12.64Mb"}, "img" : "http://23.95.221.108/covers/8a/8a268331973f010c8f23a129f1d95421.jpg", "link" : "https://rapidhosting.info/files/a7c", "title" : "Nanoinformatics"}
json_instruct
{"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash" : "0xf72a8e3a9bb46e3295cd2a3d99a3a8ee423b3b271a35c38fde99eae1ee272cba", "parentHash" : "0x6353da295738eddebe2097634d6724bc344c6d4713c066f2629686fe557e5fa9", "number" : 40389, "timestamp" : 1438820495, "nonce" : "0x9fbd0f04d0fe656d", "difficulty" : 1364193074611, "gasLimit" : {"_hex" : "0x13a6"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x55D1554b08a5311C5c0A0B6464162192f9D2f884", "extraData" : "0x54657265736120476f6e7a616c657a202d204155472032303135", "transactions" : []}
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"vim.vimrc.enable": {"type": "boolean"}, "vim.vimrc.path": {"type": "string"}}, "required": ["vim.vimrc.enable", "vim.vimrc.path"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"vim.vimrc.enable" : true, "vim.vimrc.path" : "/home/zack/.vimrc"}
json_instruct
{"type": "object", "properties": {"vim.vimrc.enable": {"type": "boolean"}, "vim.vimrc.path": {"type": "string"}}, "required": ["vim.vimrc.enable", "vim.vimrc.path"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "MUHIB", "frequency" : 3, "gender" : "male"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible 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" : "5206041008", "district_id" : "5206041", "name" : "TONGGORISA"}
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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"log": {"type": "string"}, "log_top": {"type": "string"}, "stripped_log": {"type": "string"}}, "required": ["log", "log_top", "stripped_log"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "rankine:block/template_hollow_log", "textures" : {"log" : "rankine:block/cedar_log", "log_top" : "rankine:block/cedar_log_top", "stripped_log" : "rankine:block/stripped_cedar_log"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"log": {"type": "string"}, "log_top": {"type": "string"}, "stripped_log": {"type": "string"}}, "required": ["log", "log_top", "stripped_log"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "isDefault": {"type": "boolean"}, "gains": {"type": "object", "properties": {"global": {"type": "number"}, "bands": {"type": "array", "items": {"type": "number"}}}, "required": ["global", "bands"]}}, "required": ["name", "id", "isDefault", "gains"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "Audeze Mobius (ballistics preset)", "id" : "ca3dc076b042e67b88655fd1c807aea387b31c93", "isDefault" : false, "gains" : {"global" : -6.4, "bands" : [0.0, -3.0, -2.6, -4.0, 1.0, -0.4, -1.3, 2.7, 6.1, -6.3]}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "isDefault": {"type": "boolean"}, "gains": {"type": "object", "properties": {"global": {"type": "number"}, "bands": {"type": "array", "items": {"type": "number"}}}, "required": ["global", "bands"]}}, "required": ["name", "id", "isDefault", "gains"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"chdo002": {"type": "string"}}, "required": ["chdo002"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "resource_bundles": {"type": "object", "properties": {"Croissant": {"type": "array", "items": {"type": "string"}}}, "required": ["Croissant"]}, "frameworks": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"GCDWebServer": {"type": "array", "items": {"type": "string"}}, "fishhook": {"type": "array", "items": {}}, "PocketSocket": {"type": "array", "items": {}}}, "required": ["GCDWebServer", "fishhook", "PocketSocket"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "resource_bundles", "frameworks", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "CDCroissant", "version" : "0.1.1alpha", "summary" : "An App Inspector.", "description" : "TODO: Add long description of the pod here.", "homepage" : "https://github.com/chdo002/Croissant", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"chdo002" : "1107661983@qq.com"}, "source" : {"git" : "https://github.com/chdo002/Croissant.git", "tag" : "0.1.1alpha"}, "platforms" : {"ios" : "9.0"}, "source_files" : "Croissant/Classes/**/*", "resource_bundles" : {"Croissant" : ["Croissant/Assets/*.bundle"]}, "frameworks" : ["Foundation", "CoreServices"], "dependencies" : {"GCDWebServer" : ["3.5.4"], "fishhook" : [], "PocketSocket" : []}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"chdo002": {"type": "string"}}, "required": ["chdo002"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "resource_bundles": {"type": "object", "properties": {"Croissant": {"type": "array", "items": {"type": "string"}}}, "required": ["Croissant"]}, "frameworks": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"GCDWebServer": {"type": "array", "items": {"type": "string"}}, "fishhook": {"type": "array", "items": {}}, "PocketSocket": {"type": "array", "items": {}}}, "required": ["GCDWebServer", "fishhook", "PocketSocket"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "resource_bundles", "frameworks", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "exclude_globs": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "exclude_globs", "js"]}}, "content_security_policy": {"type": "string"}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}, "manifest_version": {"type": "integer"}, "devtools_page": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "externally_connectable": {"type": "object", "properties": {"ids": {"type": "array", "items": {"type": "string"}}}, "required": ["ids"]}}, "required": ["name", "version", "description", "content_scripts", "content_security_policy", "background", "manifest_version", "devtools_page", "permissions", "externally_connectable"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ReactRPM", "version" : "0.1.0", "description" : "A Performance Visualization Tool for Optimization and Debugging", "content_scripts" : [{"matches" : ["<all_urls>"], "exclude_globs" : ["https://www.google*"], "js" : ["contentScript.js"]}], "content_security_policy" : "default-src 'self'; script-src 'self' http://localhost:3000 'unsafe-eval'; connect-src http://localhost:3000 ws://localhost:3000; style-src * 'unsafe-inline' 'self' blob:; img-src 'self' http://localhost:3000; font-src 'self' *", "background" : {"scripts" : ["background.js"]}, "manifest_version" : 2, "devtools_page" : "devtools.html", "permissions" : ["<all_urls>", "tabs"], "externally_connectable" : {"ids" : ["*"]}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "exclude_globs": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "exclude_globs", "js"]}}, "content_security_policy": {"type": "string"}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}, "manifest_version": {"type": "integer"}, "devtools_page": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "externally_connectable": {"type": "object", "properties": {"ids": {"type": "array", "items": {"type": "string"}}}, "required": ["ids"]}}, "required": ["name", "version", "description", "content_scripts", "content_security_policy", "background", "manifest_version", "devtools_page", "permissions", "externally_connectable"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "MAGNE", "frequency" : 1638, "gender" : "male"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"requires": {"type": "boolean"}, "lockfileVersion": {"type": "integer"}, "dependencies": {"type": "object", "properties": {"eslint-config-prettier": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "dev": {"type": "boolean"}, "requires": {"type": "object", "properties": {"get-stdin": {"type": "string"}}, "required": ["get-stdin"]}}, "required": ["version", "resolved", "integrity", "dev", "requires"]}, "get-stdin": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "dev": {"type": "boolean"}}, "required": ["version", "resolved", "integrity", "dev"]}}, "required": ["eslint-config-prettier", "get-stdin"]}}, "required": ["requires", "lockfileVersion", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"requires" : true, "lockfileVersion" : 1, "dependencies" : {"eslint-config-prettier" : {"version" : "6.3.0", "resolved" : "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-6.3.0.tgz", "integrity" : "sha512-EWaGjlDAZRzVFveh2Jsglcere2KK5CJBhkNSa1xs3KfMUGdRiT7lG089eqPdvlzWHpAqaekubOsOMu8W8Yk71A==", "dev" : true, "requires" : {"get-stdin" : "^6.0.0"}}, "get-stdin" : {"version" : "6.0.0", "resolved" : "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz", "integrity" : "sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==", "dev" : true}}}
json_instruct
{"type": "object", "properties": {"requires": {"type": "boolean"}, "lockfileVersion": {"type": "integer"}, "dependencies": {"type": "object", "properties": {"eslint-config-prettier": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "dev": {"type": "boolean"}, "requires": {"type": "object", "properties": {"get-stdin": {"type": "string"}}, "required": ["get-stdin"]}}, "required": ["version", "resolved", "integrity", "dev", "requires"]}, "get-stdin": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "dev": {"type": "boolean"}}, "required": ["version", "resolved", "integrity", "dev"]}}, "required": ["eslint-config-prettier", "get-stdin"]}}, "required": ["requires", "lockfileVersion", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "ep_author_hover.me": {"type": "string"}, "ep_author_hover.unknow_author": {"type": "string"}}, "required": ["@metadata", "ep_author_hover.me", "ep_author_hover.unknow_author"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"@metadata" : {"authors" : ["Saederup92"]}, "ep_author_hover.me" : "Mig", "ep_author_hover.unknow_author" : "Ukendt forfatter"}
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "ep_author_hover.me": {"type": "string"}, "ep_author_hover.unknow_author": {"type": "string"}}, "required": ["@metadata", "ep_author_hover.me", "ep_author_hover.unknow_author"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "5201010", "regency_id" : "5201", "name" : "SEKOTONG"}, {"id" : "5201011", "regency_id" : "5201", "name" : "LEMBAR"}, {"id" : "5201020", "regency_id" : "5201", "name" : "GERUNG"}, {"id" : "5201030", "regency_id" : "5201", "name" : "LABU API"}, {"id" : "5201040", "regency_id" : "5201", "name" : "KEDIRI"}, {"id" : "5201041", "regency_id" : "5201", "name" : "KURIPAN"}, {"id" : "5201050", "regency_id" : "5201", "name" : "NARMADA"}, {"id" : "5201051", "regency_id" : "5201", "name" : "LINGSAR"}, {"id" : "5201060", "regency_id" : "5201", "name" : "GUNUNG SARI"}, {"id" : "5201061", "regency_id" : "5201", "name" : "BATU LAYAR"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "block_party:block/sakura_slab"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : {"id" : "t2_9154l", "name" : "Pallandor"}, "date" : {"day" : 1416787200, "full" : 1416824470, "month" : 1414800000, "week" : 1416700800}, "id" : "t3_2n93jk", "picture" : {"filesize" : 46535, "fullUrl" : "https://external-preview.redd.it/X1SP0zPHpegaPuDBruTcR20-ed-uSAQK0OT-t6bhBB0.jpg?auto=webp&s=46800409fce16755789cd7b191196cf541028fc4", "hash" : "dee875c048", "height" : 480, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAMABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABgQF/8QAJhAAAgIABQIHAQAAAAAAAAAAAQIDBAAFESFBEhMHFCIxUWFxof/EABQBAQAAAAAAAAAAAAAAAAAAAAX/xAAZEQEAAwEBAAAAAAAAAAAAAAABAAIRMSH/2gAMAwEAAhEDEQA/AEM+aVsuqtYvynXZEHuzuTso/u/AGCPi1k3n8hr5jLXMM6xAzKQOrtP+D1dJCsD8A417VSK5YqSzjqMBZkHGpGmp/N8XPO9y1BBaIki7MiFSNAyIh0U6ccH6wXta106RFFfeT//Z", "url" : "https://external-preview.redd.it/X1SP0zPHpegaPuDBruTcR20-ed-uSAQK0OT-t6bhBB0.jpg?width=640&crop=smart&auto=webp&s=826f89288a6d832acc696660de8e7023887b441b", "width" : 640}, "score" : {"comments" : 5, "downs" : 0, "ratio" : 0.89, "ups" : 44, "value" : 44}, "subreddit" : {"id" : "t5_2xy5e", "name" : "TerrainBuilding"}, "tags" : [], "title" : "First attempt at building terrain - a dice tower", "url" : "https://www.reddit.com/r/TerrainBuilding/comments/2n93jk/first_attempt_at_building_terrain_a_dice_tower/"}
json_instruct
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "title" : "Silbury Hill", "id" : "943692804", "bbox" : [-1.8574727, 51.415762, -1.8574727, 51.415762], "description" : "Silbury Hill is a prehistoric artificial chalk mound near Avebury and is part of the Stonehenge, Avebury and Associated Sites UNESCO World Heritage Site. The mound stands to 40 meters (131 ft) in height.", "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-1.8574727, 51.415762]}, "properties" : {"description" : "representative point"}}, {"geometry" : {"type" : "Point", "coordinates" : [-1.8574727, 51.415762]}, "id" : "location-of-silbury-hill", "type" : "Feature", "properties" : {"description" : "Representative ocation based on an OpenStreetMap node.", "location_precision" : "precise", "title" : "OSM location of Silbury Hill", "link" : "http://pleiades.stoa.org/places/943692804/location-of-silbury-hill"}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"result": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"nameE": {"type": "string"}, "address": {"type": "string"}, "placeUri": {"type": "string"}, "houseNumber": {"type": "string"}, "firstImg": {"type": "string"}, "source": {"type": "string"}, "type": {"type": "string"}, "uri": {"type": "string"}, "long": {"type": "string"}, "nameT": {"type": "string"}, "nameS": {"type": "string"}, "des": {"type": "string"}, "road": {"type": "string"}, "roadUri": {"type": "string"}, "lat": {"type": "string"}, "firstImgPath": {"type": "string"}, "eventList": {"type": "array", "items": {}}, "imageList": {"type": "array", "items": {"type": "object", "properties": {"imageUri": {"type": "string"}, "format": {"type": "string"}, "type": {"type": "string"}, "imgPath": {"type": "string"}}, "required": ["imageUri", "format", "type", "imgPath"]}}, "personList": {"type": "array", "items": {}}, "workList": {"type": "array", "items": {}}, "placeValue": {"type": "string"}}, "required": ["nameE", "address", "placeUri", "houseNumber", "firstImg", "source", "type", "uri", "long", "nameT", "nameS", "des", "road", "roadUri", "lat", "firstImgPath", "eventList", "imageList", "personList", "workList", "placeValue"]}}}, "required": ["result", "data"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"result" : "0", "data" : [{"nameE" : "liuzhanenlieshitongxianghejiniantushuguan", "address" : "\u519b\u5de5\u8def516\u53f7\u4e0a\u6d77\u7406\u5de5\u5927\u5b66\u5185", "placeUri" : "http://data.library.sh.cn/entity/place/u2mx82iyoplu5qtb", "houseNumber" : "516\u53f7", "firstImg" : "http://data.library.sh.cn/shmemory/resource/img/f6tlbig784alr9ys", "source" : "\u4e2d\u56fd\u7ea2\u8272\u6587\u5316\u5730\u56fe", "type" : "\u5176\u4ed6", "uri" : "http://data.library.sh.cn/entity/architecture/5q1ad4wyxcw1ts86", "long" : "121.55852", "nameT" : "\u5289\u6e5b\u6069\u70c8\u58eb\u9285\u50cf\u548c\u7d00\u5ff5\u5716\u66f8\u9928", "nameS" : "\u5218\u6e5b\u6069\u70c8\u58eb\u94dc\u50cf\u548c\u7eaa\u5ff5\u56fe\u4e66\u9986", "des" : "\u4e0a\u6d77\u7406\u5de5\u5927\u5b66\u56fe\u4e66\u9986\uff0c\u521b\u5efa\u4e8e1907\u5e74\uff0c\u4e3a\u7eaa\u5ff5\u5218\u6e5b\u6069\u70c8\u58eb\uff08\u539f\u6caa\u6c5f\u5927\u5b66\u6821\u957f\uff09\uff0c\u4e8e1991\u5e7411\u6708\u547d\u540d\u4e3a\u201c\u6e5b\u6069\u7eaa\u5ff5\u56fe\u4e66\u9986\u201d\u3002", "road" : "\u519b\u5de5\u8def", "roadUri" : "http://data.library.sh.cn/entity/road/oony0qrzflazdvfp", "lat" : "31.296278", "firstImgPath" : "http://img.library.sh.cn/shmemory/hsly/architecture/img/f6tlbig784alr9ys.jpg", "eventList" : [], "imageList" : [{"imageUri" : "http://data.library.sh.cn/shmemory/resource/img/f6tlbig784alr9ys", "format" : "jpg", "type" : "\u5c01\u9762", "imgPath" : "http://img.library.sh.cn/shmemory/hsly/architecture/img/f6tlbig784alr9ys.jpg"}, {"imageUri" : "http://data.library.sh.cn/shmemory/resource/img/ajsam4akbivgryt5", "format" : "jpg", "type" : "", "imgPath" : "http://img.library.sh.cn/shmemory/hsly/architecture/img/ajsam4akbivgryt5.jpg"}, {"imageUri" : "http://data.library.sh.cn/shmemory/resource/img/s18paap94gi1zzbw", "format" : "jpg", "type" : "", "imgPath" : "http://img.library.sh.cn/shmemory/hsly/architecture/img/s18paap94gi1zzbw.jpg"}], "personList" : [], "workList" : [], "placeValue" : "\u6768\u6d66"}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"result": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"nameE": {"type": "string"}, "address": {"type": "string"}, "placeUri": {"type": "string"}, "houseNumber": {"type": "string"}, "firstImg": {"type": "string"}, "source": {"type": "string"}, "type": {"type": "string"}, "uri": {"type": "string"}, "long": {"type": "string"}, "nameT": {"type": "string"}, "nameS": {"type": "string"}, "des": {"type": "string"}, "road": {"type": "string"}, "roadUri": {"type": "string"}, "lat": {"type": "string"}, "firstImgPath": {"type": "string"}, "eventList": {"type": "array", "items": {}}, "imageList": {"type": "array", "items": {"type": "object", "properties": {"imageUri": {"type": "string"}, "format": {"type": "string"}, "type": {"type": "string"}, "imgPath": {"type": "string"}}, "required": ["imageUri", "format", "type", "imgPath"]}}, "personList": {"type": "array", "items": {}}, "workList": {"type": "array", "items": {}}, "placeValue": {"type": "string"}}, "required": ["nameE", "address", "placeUri", "houseNumber", "firstImg", "source", "type", "uri", "long", "nameT", "nameS", "des", "road", "roadUri", "lat", "firstImgPath", "eventList", "imageList", "personList", "workList", "placeValue"]}}}, "required": ["result", "data"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "string"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ETag" : "W/\"5112e4ed715f413d59ca6233629b8146\"", "Last-Modified" : "Wed, 30 Oct 2019 10:25:33 GMT", "base" : {"repo" : {"name" : "qgis-feedstock"}}, "closed_at" : "2019-10-30T10:25:33Z", "created_at" : "2019-10-29T23:22:34Z", "head" : {"ref" : "rebuild-libspatialindex-1.9.201"}, "html_url" : "https://github.com/conda-forge/qgis-feedstock/pull/95", "id" : 333933008, "labels" : [], "mergeable" : null, "mergeable_state" : "unknown", "merged" : true, "merged_at" : "2019-10-30T10:25:33Z", "number" : 95, "state" : "closed", "updated_at" : "2019-10-30T10:25:33Z"}
json_instruct
{"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "string"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"Circulation History": {"type": "array", "items": {"type": "object", "properties": {"Date": {"type": "string"}, "Action": {"type": "string"}, "User": {"type": "string"}, "Location": {"type": "string"}}, "required": ["Date", "Action", "User", "Location"]}}}, "required": ["Circulation History"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Circulation History" : [{"Date" : "05-01-2014", "Action" : "Loan", "User" : "Student", "Location" : "Student"}, {"Date" : "16-02-2014", "Action" : "Renewal", "User" : "Student", "Location" : "Student"}, {"Date" : "26-02-2014", "Action" : "Return", "User" : "Student", "Location" : "KSH"}, {"Date" : "05-03-2014", "Action" : "Loan", "User" : "Student", "Location" : "Student"}, {"Date" : "06-03-2014", "Action" : "Renewal", "User" : "Student", "Location" : "Student"}, {"Date" : "20-03-2014", "Action" : "Return", "User" : "Student", "Location" : "AMFI"}, {"Date" : "12-04-2014", "Action" : "Loan", "User" : "Student", "Location" : "Student"}, {"Date" : "02-05-2014", "Action" : "Renewal", "User" : "Student", "Location" : "Student"}, {"Date" : "24-05-2014", "Action" : "Return", "User" : "Student", "Location" : "LWB"}, {"Date" : "04-07-2014", "Action" : "Loan", "User" : "Student", "Location" : "Student"}, {"Date" : "16-07-2014", "Action" : "Renewal", "User" : "Student", "Location" : "Student"}, {"Date" : "07-08-2014", "Action" : "Return", "User" : "Student", "Location" : "TBW"}, {"Date" : "15-08-2014", "Action" : "Loan", "User" : "Student", "Location" : "Student"}, {"Date" : "08-09-2014", "Action" : "Renewal", "User" : "Student", "Location" : "Student"}, {"Date" : "13-11-2014", "Action" : "Return", "User" : "Student", "Location" : "FB"}, {"Date" : "18-11-2014", "Action" : "Loan", "User" : "Student", "Location" : "Student"}]}
json_instruct
{"type": "object", "properties": {"Circulation History": {"type": "array", "items": {"type": "object", "properties": {"Date": {"type": "string"}, "Action": {"type": "string"}, "User": {"type": "string"}, "Location": {"type": "string"}}, "required": ["Date", "Action", "User", "Location"]}}}, "required": ["Circulation History"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"text": {"type": "string"}, "author": {"type": "string"}}, "required": ["text", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : "if you can dream it, you can do it", "author" : "anonymous"}
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "author": {"type": "string"}}, "required": ["text", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"doi": {"type": "string"}, "filepath": {"type": "string"}, "url": {"type": "string"}, "abstract": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "string"}, "filename": {"type": "string"}, "vol": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}}, "required": ["doi", "filepath", "url", "abstract", "title", "year", "filename", "vol", "authors"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"doi" : "http://dx.doi.org/10.1557/PROC-879-Z1.1", "filepath" : "abstracts/879/http%3A%2F%2Fjournals.cambridge.org%2Faction%2FdisplayAbstract%3FfromPage%3Donline%26aid%3D8081425%26fulltextType%3DRA%26fileId%3DS1946427400119232.html", "url" : "http://journals.cambridge.org/action/displayAbstract?fromPage=online&aid=8081425&fulltextType=RA&fileId=S1946427400119232.html", "abstract" : "We describe the growth of amorphous carbon nanofibers (CNFs) from iron-encapsulated dendrimer catalysts at ambient temperature and pressure conditions. Both fourth-generation poly (propyleneimine) (PPI) and poly(amidoamine) (PAMAM) dendrimers were suitable macromolecular hosts for the catalytic species. Average nanofiber diameters range from 10 - 15 nm, with lengths in excess of 20 microns.", "title" : "Room-Temperature Growth of Carbon Nanofibers", "year" : "1921", "filename" : "http%3A%2F%2Fjournals.cambridge.org%2Faction%2FdisplayAbstract%3FfromPage%3Donline%26aid%3D8081425%26fulltextType%3DRA%26fileId%3DS1946427400119232.html", "vol" : "879", "authors" : ["Jason K. Vohs", " Jeffery E. Raymond", " Jonathan J. Brege", " Steven Rozeveld", " Geoffrey L. Williams", "Bradley D. Fahlman"]}
json_instruct
{"type": "object", "properties": {"doi": {"type": "string"}, "filepath": {"type": "string"}, "url": {"type": "string"}, "abstract": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "string"}, "filename": {"type": "string"}, "vol": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}}, "required": ["doi", "filepath", "url", "abstract", "title", "year", "filename", "vol", "authors"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "static/css/1.93b42af7.chunk.css": {"type": "string"}, "static/js/1.4fdff405.chunk.js": {"type": "string"}, "static/js/1.4fdff405.chunk.js.map": {"type": "string"}, "runtime~main.js": {"type": "string"}, "runtime~main.js.map": {"type": "string"}, "static/media/vis-network.min.css": {"type": "string"}, "static/css/1.93b42af7.chunk.css.map": {"type": "string"}, "static/css/main.844bbff9.chunk.css.map": {"type": "string"}, "index.html": {"type": "string"}, "precache-manifest.f8e2d516e8c755f022e01f18e970659b.js": {"type": "string"}, "service-worker.js": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "static/css/1.93b42af7.chunk.css", "static/js/1.4fdff405.chunk.js", "static/js/1.4fdff405.chunk.js.map", "runtime~main.js", "runtime~main.js.map", "static/media/vis-network.min.css", "static/css/1.93b42af7.chunk.css.map", "static/css/main.844bbff9.chunk.css.map", "index.html", "precache-manifest.f8e2d516e8c755f022e01f18e970659b.js", "service-worker.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"main.css" : "/static/css/main.844bbff9.chunk.css", "main.js" : "/static/js/main.2742dd39.chunk.js", "main.js.map" : "/static/js/main.2742dd39.chunk.js.map", "static/css/1.93b42af7.chunk.css" : "/static/css/1.93b42af7.chunk.css", "static/js/1.4fdff405.chunk.js" : "/static/js/1.4fdff405.chunk.js", "static/js/1.4fdff405.chunk.js.map" : "/static/js/1.4fdff405.chunk.js.map", "runtime~main.js" : "/static/js/runtime~main.229c360f.js", "runtime~main.js.map" : "/static/js/runtime~main.229c360f.js.map", "static/media/vis-network.min.css" : "/static/media/cross.260c9c65.png", "static/css/1.93b42af7.chunk.css.map" : "/static/css/1.93b42af7.chunk.css.map", "static/css/main.844bbff9.chunk.css.map" : "/static/css/main.844bbff9.chunk.css.map", "index.html" : "/index.html", "precache-manifest.f8e2d516e8c755f022e01f18e970659b.js" : "/precache-manifest.f8e2d516e8c755f022e01f18e970659b.js", "service-worker.js" : "/service-worker.js"}
json_instruct
{"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "static/css/1.93b42af7.chunk.css": {"type": "string"}, "static/js/1.4fdff405.chunk.js": {"type": "string"}, "static/js/1.4fdff405.chunk.js.map": {"type": "string"}, "runtime~main.js": {"type": "string"}, "runtime~main.js.map": {"type": "string"}, "static/media/vis-network.min.css": {"type": "string"}, "static/css/1.93b42af7.chunk.css.map": {"type": "string"}, "static/css/main.844bbff9.chunk.css.map": {"type": "string"}, "index.html": {"type": "string"}, "precache-manifest.f8e2d516e8c755f022e01f18e970659b.js": {"type": "string"}, "service-worker.js": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "static/css/1.93b42af7.chunk.css", "static/js/1.4fdff405.chunk.js", "static/js/1.4fdff405.chunk.js.map", "runtime~main.js", "runtime~main.js.map", "static/media/vis-network.min.css", "static/css/1.93b42af7.chunk.css.map", "static/css/main.844bbff9.chunk.css.map", "index.html", "precache-manifest.f8e2d516e8c755f022e01f18e970659b.js", "service-worker.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"12036": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "12033": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "12035": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "12037": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "12034": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["12036", "12033", "12035", "12037", "12034"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"12036" : {"nama" : "BUNGA TANJUNG", "dapil" : [12, 1203, 11205, 2127402]}, "12033" : {"nama" : "PULAU SIMARDAN", "dapil" : [12, 1203, 11205, 2127402]}, "12035" : {"nama" : "SELAT LANCANG", "dapil" : [12, 1203, 11205, 2127402]}, "12037" : {"nama" : "SELAT TANJUNG MEDAN", "dapil" : [12, 1203, 11205, 2127402]}, "12034" : {"nama" : "SEMULA JADI", "dapil" : [12, 1203, 11205, 2127402]}}
json_instruct
{"type": "object", "properties": {"12036": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "12033": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "12035": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "12037": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "12034": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["12036", "12033", "12035", "12037", "12034"], "$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"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Elliot": {"type": "string"}}, "required": ["Elliot"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "social_media_url": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}, "source_files": {"type": "string"}, "resource_bundles": {"type": "object", "properties": {"SBCategories": {"type": "array", "items": {"type": "string"}}}, "required": ["SBCategories"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "social_media_url", "platforms", "requires_arc", "source_files", "resource_bundles"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "SBCategories", "version" : "0.1.1", "summary" : "SBCategories contains iOS convenince categories, because sometimes it makes no sense the way Obj-C does things.", "description" : " Contains two categories (at the moment):\n \n * NSDictionary+ValueCheck which determines if the dict has a non NSNull value for the given key\n * NSArray+Reverse returns an array that is ordered opposite to the given one\n", "homepage" : "https://github.com/schrockblock/SBCategories", "license" : "MIT", "authors" : {"Elliot" : "ephherd@gmail.com"}, "source" : {"git" : "https://github.com/schrockblock/SBCategories.git", "tag" : "0.1.1"}, "social_media_url" : "https://twitter.com/schrockblock", "platforms" : {"ios" : "7.0"}, "requires_arc" : true, "source_files" : "Pod/Classes", "resource_bundles" : {"SBCategories" : ["Pod/Assets/*.png"]}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Elliot": {"type": "string"}}, "required": ["Elliot"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "social_media_url": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}, "source_files": {"type": "string"}, "resource_bundles": {"type": "object", "properties": {"SBCategories": {"type": "array", "items": {"type": "string"}}}, "required": ["SBCategories"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "social_media_url", "platforms", "requires_arc", "source_files", "resource_bundles"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1985, 5], [1987, 8], [1989, 6], [1990, 5], [1991, 5], [1999, 6]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"url": {"type": "string"}, "attribution": {"type": "object", "properties": {"url": {"type": "string"}, "text": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["url", "text", "required"]}, "type": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}, "country_code": {"type": "string"}, "extent": {"type": "object", "properties": {"min_zoom": {"type": "integer"}, "max_zoom": {"type": "integer"}, "bbox": {"type": "object", "properties": {"min_lon": {"type": "number"}, "max_lon": {"type": "number"}, "min_lat": {"type": "number"}, "max_lat": {"type": "number"}}, "required": ["min_lon", "max_lon", "min_lat", "max_lat"]}, "polygon": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["min_zoom", "max_zoom", "bbox", "polygon"]}}, "required": ["url", "attribution", "type", "name", "description", "icon", "start_date", "end_date", "country_code", "extent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"url" : "http://geo.nls.uk/maps/towns/alexandria/{zoom}/{x}/{-y}.png", "attribution" : {"url" : "http://maps.nls.uk/townplans/alexandria.html", "text" : "National Library of Scotland - Alexandria 1859", "required" : true}, "type" : "tms", "name" : "OS Town Plans, Alexandria 1859 (NLS)", "description" : "Detailed town plan of Alexandria 1859, courtesy of National Library of Scotland.", "icon" : "http://nls.tileserver.com/nls70-nq8.png", "start_date" : "1859", "end_date" : "1860", "country_code" : "GB", "extent" : {"min_zoom" : 13, "max_zoom" : 20, "bbox" : {"min_lon" : -4.59104461, "max_lon" : -4.55855754, "min_lat" : 55.97536707, "max_lat" : 55.99558348}, "polygon" : [[[-4.58973571, 55.97536707], [-4.59104461, 55.99493153], [-4.55985072, 55.99558348], [-4.55855754, 55.97601855]]]}}
json_instruct
{"type": "object", "properties": {"url": {"type": "string"}, "attribution": {"type": "object", "properties": {"url": {"type": "string"}, "text": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["url", "text", "required"]}, "type": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}, "country_code": {"type": "string"}, "extent": {"type": "object", "properties": {"min_zoom": {"type": "integer"}, "max_zoom": {"type": "integer"}, "bbox": {"type": "object", "properties": {"min_lon": {"type": "number"}, "max_lon": {"type": "number"}, "min_lat": {"type": "number"}, "max_lat": {"type": "number"}}, "required": ["min_lon", "max_lon", "min_lat", "max_lat"]}, "polygon": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["min_zoom", "max_zoom", "bbox", "polygon"]}}, "required": ["url", "attribution", "type", "name", "description", "icon", "start_date", "end_date", "country_code", "extent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"900765652": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900765653": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900765654": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900765652", "900765653", "900765654"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"900765652" : {"nama" : "TPS 1", "dapil" : [9101, 19106, 2912102]}, "900765653" : {"nama" : "TPS 2", "dapil" : [9101, 19106, 2912102]}, "900765654" : {"nama" : "TPS 3", "dapil" : [9101, 19106, 2912102]}}
json_instruct
{"type": "object", "properties": {"900765652": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900765653": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900765654": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900765652", "900765653", "900765654"], "$schema": "http://json-schema.org/draft-07/schema#"}