input
stringlengths 159
2.05k
| output
stringlengths 5
10.3k
| task
stringclasses 1
value | schema
stringlengths 100
1.99k
|
---|---|---|---|
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : [{"d" : [{"e" : ["\ufff9`Misa'ayamay~ `kako~ `to~ `talangawan~.\ufffa\ufffb\u6211\u5728\u6bba\u516c\u96de\u4e86\u3002"], "f" : "\u6b63\u5728\u6bba\u9ce5\u3001\u6bba\u96de\u3002"}, {"e" : ["\ufff9`O~ `cima~ `ko~ `misa'ayamay~ `to~ `tawinaan~ `a~ `koko'~ `ako~?\ufffa\ufffb\u662f\u8ab0\u6bba\u6211\u7684\u6bcd\u96de\u5462\uff1f"], "f" : "\u6307\u6bba\u9ce5\u8005\u3001\u6bba\u96de\u8005\u3002"}]}], "stem" : "'ayam", "t" : "misa'ayamay"} | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "coverArt": {"type": "string"}, "copyright_year": {"type": "string"}, "genres": {"type": "array", "items": {"type": "string"}}, "supporters": {"type": "array", "items": {"type": "object", "properties": {"role": {"type": "string"}, "name": {"type": "string"}}, "required": ["role", "name"]}}, "sections": {"type": "array", "items": {"type": "object", "properties": {"section": {"type": "integer"}, "title": {"type": "string"}, "readers": {"type": "array", "items": {"type": "integer"}}, "path": {"type": "string"}, "duration": {"type": "integer"}}, "required": ["section", "title", "readers", "path", "duration"]}}}, "required": ["title", "description", "duration", "language", "authors", "coverArt", "copyright_year", "genres", "supporters", "sections"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Inquiry into the Effects of Ardent Spirits upon the Human Body and Mind, with an Account of the Means of Preventing, and of the Remedies for Curing Them", "description" : "Written when the United States extended only to the Mississippi River, by one of the signers of the Declaration of Independence, this short work explores the physical, social, and mental effects of distilled liquors; the classes of people prone to intoxication by them; suggested drinks to use instead of them; and remedies for intoxication and for their habitual use. He takes a medical view of alcoholism, exploring the physical causes rather than blaming moral failure as the cause. Alcoholic drinks that are not distilled (beer, ales, wines, etc.) are viewed as wholesome drinks, and opium is suggested for pain as being without bad effects or addictive qualities. (Summary by TriciaG)", "duration" : 3873, "language" : "English", "authors" : [{"id" : "13212", "name" : "Dr. Benjamin Rush"}], "coverArt" : "https://archive.org/download/ardentspirits_1801_librivox/inquiry_effects_ardent_1802.jpg", "copyright_year" : "1815", "genres" : ["Essays & Short Works", "Medical", "Social Science (Culture & Anthropology)"], "supporters" : [{"role" : "Read by", "name" : "TriciaG"}, {"role" : "Book Coordinator", "name" : "TriciaG"}, {"role" : "Meta Coordinator", "name" : "TriciaG"}, {"role" : "Proof Listener", "name" : "Joy M."}], "sections" : [{"section" : 1, "title" : "Part I", "readers" : [3157], "path" : "https://www.archive.org/download/ardentspirits_1801_librivox/ardentspirits_01_rush_64kb.mp3", "duration" : 1282}, {"section" : 2, "title" : "Part II", "readers" : [3157], "path" : "https://www.archive.org/download/ardentspirits_1801_librivox/ardentspirits_02_rush_64kb.mp3", "duration" : 1612}, {"section" : 3, "title" : "Part III", "readers" : [3157], "path" : "https://www.archive.org/download/ardentspirits_1801_librivox/ardentspirits_03_rush_64kb.mp3", "duration" : 979}]} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "coverArt": {"type": "string"}, "copyright_year": {"type": "string"}, "genres": {"type": "array", "items": {"type": "string"}}, "supporters": {"type": "array", "items": {"type": "object", "properties": {"role": {"type": "string"}, "name": {"type": "string"}}, "required": ["role", "name"]}}, "sections": {"type": "array", "items": {"type": "object", "properties": {"section": {"type": "integer"}, "title": {"type": "string"}, "readers": {"type": "array", "items": {"type": "integer"}}, "path": {"type": "string"}, "duration": {"type": "integer"}}, "required": ["section", "title", "readers", "path", "duration"]}}}, "required": ["title", "description", "duration", "language", "authors", "coverArt", "copyright_year", "genres", "supporters", "sections"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "test": {"type": "string"}, "test-jest": {"type": "string"}, "test-pw": {"type": "string"}, "test-pw-debug": {"type": "string"}}, "required": ["dev", "test", "test-jest", "test-pw", "test-pw-debug"]}, "devDependencies": {"type": "object", "properties": {"@playwright/test": {"type": "string"}, "@types/jest": {"type": "string"}, "cross-env": {"type": "string"}, "jest": {"type": "string"}, "ts-jest": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}, "vite": {"type": "string"}}, "required": ["@playwright/test", "@types/jest", "cross-env", "jest", "ts-jest", "ts-node", "typescript", "vite"]}}, "required": ["name", "private", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "tests", "private" : true, "scripts" : {"dev" : "vite", "test" : "npm run test-jest && npm run test-pw", "test-jest" : "jest", "test-pw" : "npx playwright test", "test-pw-debug" : "cross-env PWDEBUG=1 npm run test-pw"}, "devDependencies" : {"@playwright/test" : "^1.19.2", "@types/jest" : "^27.4.1", "cross-env" : "^7.0.3", "jest" : "^27.5.1", "ts-jest" : "^27.1.3", "ts-node" : "^10.6.0", "typescript" : "^4.6.2", "vite" : "^2.8.6"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "test": {"type": "string"}, "test-jest": {"type": "string"}, "test-pw": {"type": "string"}, "test-pw-debug": {"type": "string"}}, "required": ["dev", "test", "test-jest", "test-pw", "test-pw-debug"]}, "devDependencies": {"type": "object", "properties": {"@playwright/test": {"type": "string"}, "@types/jest": {"type": "string"}, "cross-env": {"type": "string"}, "jest": {"type": "string"}, "ts-jest": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}, "vite": {"type": "string"}}, "required": ["@playwright/test", "@types/jest", "cross-env", "jest", "ts-jest", "ts-node", "typescript", "vite"]}}, "required": ["name", "private", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-118.286807, 34.076474], [-118.283044, 34.076126], [-118.284372, 34.074043], [-118.284334, 34.068528], [-118.286799, 34.068982], [-118.286807, 34.076474]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 7534}}]} | 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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"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" : "7407020001", "district_id" : "7407020", "name" : "WAITII BARAT"}, {"id" : "7407020002", "district_id" : "7407020", "name" : "WAITII"}, {"id" : "7407020003", "district_id" : "7407020", "name" : "LAMANGGAU"}, {"id" : "7407020013", "district_id" : "7407020", "name" : "PATUA"}, {"id" : "7407020014", "district_id" : "7407020", "name" : "ONEMAY"}, {"id" : "7407020015", "district_id" : "7407020", "name" : "WAHA"}, {"id" : "7407020016", "district_id" : "7407020", "name" : "RUNDUMA"}, {"id" : "7407020017", "district_id" : "7407020", "name" : "TEEMOANE"}, {"id" : "7407020018", "district_id" : "7407020", "name" : "KOLLO SOHA"}, {"id" : "7407020019", "district_id" : "7407020", "name" : "PATUA II"}] | json_instruct | {"type": "array", "items": {"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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [".git", "test"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}}}, "required": ["name", "main", "description", "version", "keywords", "maintainers"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "my-package", "main" : "index.js", "description" : "this is circle size ", "version" : "1.0.0", "keywords" : ["circle", "yanyunchangfeng"], "maintainers" : [{"name" : "yanyunchangfeng", "email" : "[email protected]", "url" : "https://zhuanlan.zhihu.com/yanyunchangfeng"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}}}, "required": ["name", "main", "description", "version", "keywords", "maintainers"], "$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" : "moblocks:block/furnitures/coffee_tables/items/nether_brick_coffee_table_item"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d80a40bcd007aec4f29bf6d3f9135d65c2de88bf"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {".js" : "d95c1cc7b55cbd82ef5e2af0172e21dac6c2a1ea.js"} | json_instruct | {"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"para-0.0.8-py3-none-any.whl": {"type": "string"}, "para-0.0.8.tar.gz": {"type": "string"}}, "required": ["para-0.0.8-py3-none-any.whl", "para-0.0.8.tar.gz"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"para-0.0.8-py3-none-any.whl" : "c63b030658cafd84f8fabfc000142324d51c7440e50ef5012fd1a54972ca25f4", "para-0.0.8.tar.gz" : "46c3232ae9d8ea9d886cfd08cdd112892202bed8645f40b6255597ba4cfef217"} | json_instruct | {"type": "object", "properties": {"para-0.0.8-py3-none-any.whl": {"type": "string"}, "para-0.0.8.tar.gz": {"type": "string"}}, "required": ["para-0.0.8-py3-none-any.whl", "para-0.0.8.tar.gz"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"Name": {"type": "string"}, "Brawn": {"type": "integer"}, "Agility": {"type": "integer"}, "Intellect": {"type": "integer"}, "Cunning": {"type": "integer"}, "Willpower": {"type": "integer"}, "Presence": {"type": "integer"}, "Soak": {"type": "integer"}, "WoundThreshold": {"type": "integer"}, "StrainThreshold": {"type": "integer"}, "MeleeDefense": {"type": "integer"}, "RangedDefense": {"type": "integer"}, "Talents": {"type": "null"}, "Abilities": {"type": "array", "items": {}}, "Skills": {"type": "array", "items": {"type": "string"}}, "Equipment": {"type": "array", "items": {"type": "string"}}}, "required": ["Name", "Brawn", "Agility", "Intellect", "Cunning", "Willpower", "Presence", "Soak", "WoundThreshold", "StrainThreshold", "MeleeDefense", "RangedDefense", "Talents", "Abilities", "Skills", "Equipment"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "Howler", "Brawn" : 4, "Agility" : 3, "Intellect" : 1, "Cunning" : 2, "Willpower" : 3, "Presence" : 2, "Soak" : 5, "WoundThreshold" : 14, "StrainThreshold" : 13, "MeleeDefense" : 0, "RangedDefense" : 0, "Talents" : null, "Abilities" : [], "Skills" : ["Coordination", "Athletics", "Medicine", "Perception", "Stealth"], "Equipment" : ["bite (1)", "quills (1)"]} | json_instruct | {"type": "object", "properties": {"Name": {"type": "string"}, "Brawn": {"type": "integer"}, "Agility": {"type": "integer"}, "Intellect": {"type": "integer"}, "Cunning": {"type": "integer"}, "Willpower": {"type": "integer"}, "Presence": {"type": "integer"}, "Soak": {"type": "integer"}, "WoundThreshold": {"type": "integer"}, "StrainThreshold": {"type": "integer"}, "MeleeDefense": {"type": "integer"}, "RangedDefense": {"type": "integer"}, "Talents": {"type": "null"}, "Abilities": {"type": "array", "items": {}}, "Skills": {"type": "array", "items": {"type": "string"}}, "Equipment": {"type": "array", "items": {"type": "string"}}}, "required": ["Name", "Brawn", "Agility", "Intellect", "Cunning", "Willpower", "Presence", "Soak", "WoundThreshold", "StrainThreshold", "MeleeDefense", "RangedDefense", "Talents", "Abilities", "Skills", "Equipment"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"leaderboardDescription": {"type": "string"}, "leaderboardExplainer_level": {"type": "string"}, "leaderboardExplainer_messages": {"type": "string"}, "leaderboardExtendedUsage": {"type": "string"}, "leaderboardFooter": {"type": "string"}, "leaderboardNoData_level": {"type": "string"}, "leaderboardNoData_messages": {"type": "string"}, "level": {"type": "string"}, "levelDescription": {"type": "string"}, "levelExtendedUsage": {"type": "string"}, "levelrolesAddSuccess": {"type": "string"}, "levelrolesAlready": {"type": "string"}, "levelrolesDescription": {"type": "string"}, "levelrolesExtendedUsage": {"type": "string"}, "levelrolesNoExist": {"type": "string"}, "levelrolesNone": {"type": "string"}, "levelrolesRemoveSuccess": {"type": "string"}}, "required": ["leaderboardDescription", "leaderboardExplainer_level", "leaderboardExplainer_messages", "leaderboardExtendedUsage", "leaderboardFooter", "leaderboardNoData_level", "leaderboardNoData_messages", "level", "levelDescription", "levelExtendedUsage", "levelrolesAddSuccess", "levelrolesAlready", "levelrolesDescription", "levelrolesExtendedUsage", "levelrolesNoExist", "levelrolesNone", "levelrolesRemoveSuccess"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"leaderboardDescription" : "", "leaderboardExplainer_level" : "", "leaderboardExplainer_messages" : "", "leaderboardExtendedUsage" : "", "leaderboardFooter" : "", "leaderboardNoData_level" : "", "leaderboardNoData_messages" : "", "level" : "Nivel", "levelDescription" : "Vista tu nivel en el servidor y la cantidad de experiencia que tienes.", "levelExtendedUsage" : "{{mention}}", "levelrolesAddSuccess" : "", "levelrolesAlready" : "", "levelrolesDescription" : "", "levelrolesExtendedUsage" : "", "levelrolesNoExist" : "", "levelrolesNone" : "", "levelrolesRemoveSuccess" : ""} | json_instruct | {"type": "object", "properties": {"leaderboardDescription": {"type": "string"}, "leaderboardExplainer_level": {"type": "string"}, "leaderboardExplainer_messages": {"type": "string"}, "leaderboardExtendedUsage": {"type": "string"}, "leaderboardFooter": {"type": "string"}, "leaderboardNoData_level": {"type": "string"}, "leaderboardNoData_messages": {"type": "string"}, "level": {"type": "string"}, "levelDescription": {"type": "string"}, "levelExtendedUsage": {"type": "string"}, "levelrolesAddSuccess": {"type": "string"}, "levelrolesAlready": {"type": "string"}, "levelrolesDescription": {"type": "string"}, "levelrolesExtendedUsage": {"type": "string"}, "levelrolesNoExist": {"type": "string"}, "levelrolesNone": {"type": "string"}, "levelrolesRemoveSuccess": {"type": "string"}}, "required": ["leaderboardDescription", "leaderboardExplainer_level", "leaderboardExplainer_messages", "leaderboardExtendedUsage", "leaderboardFooter", "leaderboardNoData_level", "leaderboardNoData_messages", "level", "levelDescription", "levelExtendedUsage", "levelrolesAddSuccess", "levelrolesAlready", "levelrolesDescription", "levelrolesExtendedUsage", "levelrolesNoExist", "levelrolesNone", "levelrolesRemoveSuccess"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"bottom": {"type": "string"}, "top": {"type": "string"}}, "required": ["bottom", "top"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "cch:item/door_item", "textures" : {"bottom" : "block/birch_door_bottom", "top" : "block/birch_door_top"}} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"bottom": {"type": "string"}, "top": {"type": "string"}}, "required": ["bottom", "top"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "moduleType": {"type": "array", "items": {}}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "jquery": {"type": "string"}}, "required": ["bootstrap", "jquery"]}}, "required": ["name", "description", "main", "authors", "license", "keywords", "homepage", "moduleType", "private", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "gulp-bower-test", "description" : "Temperary bower.json file for testing", "main" : "index.js", "authors" : ["Crevil <https://github.com/Crevil>"], "license" : "MIT", "keywords" : ["gulp", "gulp-bower"], "homepage" : "git://github.com/zont/gulp-bower.git", "moduleType" : [], "private" : true, "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"bootstrap" : "~3.3.6", "jquery" : "1.8.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "moduleType": {"type": "array", "items": {}}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "jquery": {"type": "string"}}, "required": ["bootstrap", "jquery"]}}, "required": ["name", "description", "main", "authors", "license", "keywords", "homepage", "moduleType", "private", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"Dashboard.h1": {"type": "string"}, "Dashboard.h2-1": {"type": "string"}, "Dashboard.h2-2": {"type": "string"}, "Dashboard.h3-1": {"type": "string"}, "Dashboard.h3-2": {"type": "string"}, "Dashboard.p-1": {"type": "string"}, "Dashboard.p-2": {"type": "string"}, "Tags.title": {"type": "string"}, "Tags.search_placeholder": {"type": "string"}, "Tags.search": {"type": "string"}, "Tags.add": {"type": "string"}, "Tags.delete": {"type": "string"}, "Tags.edit": {"type": "string"}}, "required": ["Dashboard.h1", "Dashboard.h2-1", "Dashboard.h2-2", "Dashboard.h3-1", "Dashboard.h3-2", "Dashboard.p-1", "Dashboard.p-2", "Tags.title", "Tags.search_placeholder", "Tags.search", "Tags.add", "Tags.delete", "Tags.edit"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Dashboard.h1" : "Suicrux.", "Dashboard.h2-1" : "Intro", "Dashboard.h2-2" : "How it works?", "Dashboard.h3-1" : "Suicrux.", "Dashboard.h3-2" : "Suicrux.", "Dashboard.p-1" : "In progress.", "Dashboard.p-2" : "In progress.", "Tags.title" : "Tags", "Tags.search_placeholder" : "Search", "Tags.search" : "Search", "Tags.add" : "Add", "Tags.delete" : "Delete", "Tags.edit" : "Edit"} | json_instruct | {"type": "object", "properties": {"Dashboard.h1": {"type": "string"}, "Dashboard.h2-1": {"type": "string"}, "Dashboard.h2-2": {"type": "string"}, "Dashboard.h3-1": {"type": "string"}, "Dashboard.h3-2": {"type": "string"}, "Dashboard.p-1": {"type": "string"}, "Dashboard.p-2": {"type": "string"}, "Tags.title": {"type": "string"}, "Tags.search_placeholder": {"type": "string"}, "Tags.search": {"type": "string"}, "Tags.add": {"type": "string"}, "Tags.delete": {"type": "string"}, "Tags.edit": {"type": "string"}}, "required": ["Dashboard.h1", "Dashboard.h2-1", "Dashboard.h2-2", "Dashboard.h3-1", "Dashboard.h3-2", "Dashboard.p-1", "Dashboard.p-2", "Tags.title", "Tags.search_placeholder", "Tags.search", "Tags.add", "Tags.delete", "Tags.edit"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : 3529040, "parent" : 3529, "name" : "GILIGENTENG", "latitude" : null, "longitude" : null, "postal" : [69482], "children" : [3529040001, 3529040002, 3529040003, 3529040004, 3529040005, 3529040006, 3529040007, 3529040008]} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["babel-preset-mahalo"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "pkg_version": {"type": "string"}, "rebuild": {"type": "integer"}, "bottles": {"type": "object", "properties": {"arm64_monterey": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "arm64_big_sur": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "monterey": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "big_sur": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "catalina": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "x86_64_linux": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["arm64_monterey", "arm64_big_sur", "monterey", "big_sur", "catalina", "x86_64_linux"]}, "dependencies": {"type": "array", "items": {}}}, "required": ["name", "pkg_version", "rebuild", "bottles", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "yaegi", "pkg_version" : "0.12.0", "rebuild" : 0, "bottles" : {"arm64_monterey" : {"url" : "https://ghcr.io/v2/homebrew/core/yaegi/blobs/sha256:827d118bcd1e205c6fc7e5e31bd6efaec628c16c4e7289b86426922d4d2e9506"}, "arm64_big_sur" : {"url" : "https://ghcr.io/v2/homebrew/core/yaegi/blobs/sha256:3dca5101dd81e6243629cca9788814c75988b775230d5564fa047a71b2a8ce8d"}, "monterey" : {"url" : "https://ghcr.io/v2/homebrew/core/yaegi/blobs/sha256:65d4fd34d037f1412344655397c44980125f043ba0b4e77c0d2df14239baf338"}, "big_sur" : {"url" : "https://ghcr.io/v2/homebrew/core/yaegi/blobs/sha256:fdef900d47c60cb90039109a222a0053fb30b979c92abed2a9386508e4015f0c"}, "catalina" : {"url" : "https://ghcr.io/v2/homebrew/core/yaegi/blobs/sha256:2749d8b7b7b227d21995907856e2648c3f2ca2e690acf91070392661a3ccd8a3"}, "x86_64_linux" : {"url" : "https://ghcr.io/v2/homebrew/core/yaegi/blobs/sha256:1c2e7729b8065d1a4f57ced852da9ee8584b3445f1bd7bef3e1a0cb8fbfe2181"}}, "dependencies" : []} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "pkg_version": {"type": "string"}, "rebuild": {"type": "integer"}, "bottles": {"type": "object", "properties": {"arm64_monterey": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "arm64_big_sur": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "monterey": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "big_sur": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "catalina": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "x86_64_linux": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["arm64_monterey", "arm64_big_sur", "monterey", "big_sur", "catalina", "x86_64_linux"]}, "dependencies": {"type": "array", "items": {}}}, "required": ["name", "pkg_version", "rebuild", "bottles", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"templmd5": {"type": "string"}, "number": {"type": "string"}, "title": {"type": "string"}, "BACKCOLOR": {"type": "string"}, "FRONTCOLOR": {"type": "string"}, "filemd5": {"type": "string"}}, "required": ["templmd5", "number", "title", "BACKCOLOR", "FRONTCOLOR", "filemd5"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"templmd5" : "523d4615240572e66d3c9373d01f37cd", "number" : "391", "title" : "Azienda Usl #Parma cerca con urgenza medici da assumere", "BACKCOLOR" : "black", "FRONTCOLOR" : "white", "filemd5" : "e80dc393300e6713b6a49bbfa88be899"} | json_instruct | {"type": "object", "properties": {"templmd5": {"type": "string"}, "number": {"type": "string"}, "title": {"type": "string"}, "BACKCOLOR": {"type": "string"}, "FRONTCOLOR": {"type": "string"}, "filemd5": {"type": "string"}}, "required": ["templmd5", "number", "title", "BACKCOLOR", "FRONTCOLOR", "filemd5"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"author": {"type": "string"}, "email": {"type": "string"}, "plugin_name": {"type": "string"}, "short_description": {"type": "string"}}, "required": ["author", "email", "plugin_name", "short_description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : "", "email" : "", "plugin_name" : "", "short_description" : ""} | json_instruct | {"type": "object", "properties": {"author": {"type": "string"}, "email": {"type": "string"}, "plugin_name": {"type": "string"}, "short_description": {"type": "string"}}, "required": ["author", "email", "plugin_name", "short_description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"working": {"type": "array", "items": {"type": "integer"}}, "writehierarchy": {"type": "array", "items": {"type": "integer"}}, "writexmlschema": {"type": "array", "items": {"type": "integer"}}, "winner": {"type": "array", "items": {"type": "integer"}}, "window": {"type": "array", "items": {"type": "integer"}}, "writetoadminconsole": {"type": "array", "items": {"type": "integer"}}, "works": {"type": "array", "items": {"type": "integer"}}, "write": {"type": "array", "items": {"type": "integer"}}, "wrong": {"type": "array", "items": {"type": "integer"}}, "web": {"type": "array", "items": {"type": "integer"}}, "writes": {"type": "array", "items": {"type": "integer"}}, "windows": {"type": "array", "items": {"type": "integer"}}, "welcome": {"type": "array", "items": {"type": "integer"}}, "work": {"type": "array", "items": {"type": "integer"}}, "withdrawing": {"type": "array", "items": {"type": "integer"}}, "win": {"type": "array", "items": {"type": "integer"}}, "writexml": {"type": "array", "items": {"type": "integer"}}, "witch": {"type": "array", "items": {"type": "integer"}}, "wants": {"type": "array", "items": {"type": "integer"}}, "withdrawed": {"type": "array", "items": {"type": "integer"}}, "won": {"type": "array", "items": {"type": "integer"}}, "writeschema": {"type": "array", "items": {"type": "integer"}}, "wich": {"type": "array", "items": {"type": "integer"}}, "wait": {"type": "array", "items": {"type": "integer"}}, "winning": {"type": "array", "items": {"type": "integer"}}}, "required": ["working", "writehierarchy", "writexmlschema", "winner", "window", "writetoadminconsole", "works", "write", "wrong", "web", "writes", "windows", "welcome", "work", "withdrawing", "win", "writexml", "witch", "wants", "withdrawed", "won", "writeschema", "wich", "wait", "winning"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"working" : [34865153], "writehierarchy" : [25100299, 32571403, 36306955, 38469643], "writexmlschema" : [25100296, 30474248, 30408712, 32571400, 36306952, 38469640], "winner" : [6160385, 9895937, 22020097, 27918337, 29032449, 36831233], "window" : [1048577, 1572865, 2228227, 6684673, 7602178, 11206657, 11796481, 11993089, 12320769, 19136517, 23134209, 25034753, 25362433, 26869761, 29949953, 31129601, 33751041, 37224451, 38207489], "writetoadminconsole" : [5832705, 24641537, 29556739, 37617665], "works" : [4915201], "write" : [720897, 1835009, 14614529, 18546689, 25100296, 30474244, 30408708, 32571400, 36306952, 37617665, 38469640], "wrong" : [3211266, 5505025, 5701634, 19988481, 32702465, 38010881], "web" : [35258369], "writes" : [25100312, 30474256, 30408720, 32571416, 36306968, 38469656], "windows" : [7602180, 19136516, 19857409, 21430276, 23134212, 24444932, 31129604, 38207492], "welcome" : [22347778, 32768001], "work" : [2228226, 4521985, 5636097, 15466497, 17104898, 23396353, 29818881], "withdrawing" : [14811137, 19005441, 37617665], "win" : [11862017, 28835841, 28901377], "writexml" : [25100304, 30474248, 30408712, 32571408, 36306960, 38469648], "witch" : [23134209, 26279937, 29949953], "wants" : [2228227, 21430273, 23134209, 24444929], "withdrawed" : [10878977, 24641537, 37617665], "won" : [1376258, 1507330, 2228225, 2621442, 6160385, 7602177, 9895937, 15138818, 19595265, 22020097, 23461889, 24641537, 26214401, 27918337, 29032449, 30212097, 33685505, 36831233, 37486593, 37617665], "writeschema" : [25100296, 30474244, 30408708, 32571400, 36306952, 38469640], "wich" : [1376257, 1966081, 6946817, 9437185, 17694721, 17825794, 20774913, 22609922, 23199746, 24641537, 26214401, 34734082, 37486593, 37617665], "wait" : [7602177, 19595265, 26804225], "winning" : [1638401, 11468801, 21823489]} | json_instruct | {"type": "object", "properties": {"working": {"type": "array", "items": {"type": "integer"}}, "writehierarchy": {"type": "array", "items": {"type": "integer"}}, "writexmlschema": {"type": "array", "items": {"type": "integer"}}, "winner": {"type": "array", "items": {"type": "integer"}}, "window": {"type": "array", "items": {"type": "integer"}}, "writetoadminconsole": {"type": "array", "items": {"type": "integer"}}, "works": {"type": "array", "items": {"type": "integer"}}, "write": {"type": "array", "items": {"type": "integer"}}, "wrong": {"type": "array", "items": {"type": "integer"}}, "web": {"type": "array", "items": {"type": "integer"}}, "writes": {"type": "array", "items": {"type": "integer"}}, "windows": {"type": "array", "items": {"type": "integer"}}, "welcome": {"type": "array", "items": {"type": "integer"}}, "work": {"type": "array", "items": {"type": "integer"}}, "withdrawing": {"type": "array", "items": {"type": "integer"}}, "win": {"type": "array", "items": {"type": "integer"}}, "writexml": {"type": "array", "items": {"type": "integer"}}, "witch": {"type": "array", "items": {"type": "integer"}}, "wants": {"type": "array", "items": {"type": "integer"}}, "withdrawed": {"type": "array", "items": {"type": "integer"}}, "won": {"type": "array", "items": {"type": "integer"}}, "writeschema": {"type": "array", "items": {"type": "integer"}}, "wich": {"type": "array", "items": {"type": "integer"}}, "wait": {"type": "array", "items": {"type": "integer"}}, "winning": {"type": "array", "items": {"type": "integer"}}}, "required": ["working", "writehierarchy", "writexmlschema", "winner", "window", "writetoadminconsole", "works", "write", "wrong", "web", "writes", "windows", "welcome", "work", "withdrawing", "win", "writexml", "witch", "wants", "withdrawed", "won", "writeschema", "wich", "wait", "winning"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"n_dim" : 5, "n_trials" : 340, "objective" : "deap_combo1_on_cube", "white" : "optuna_random_clone", "black" : "pymoo_nelder", "traceback" : ["passing", "passing"], "best_val" : [9.017236892847514, 0.4795675765698373], "best_x" : [[0.38853160085278726, 0.5754108119962519, 0.39838968420882637, 0.6821127318329976, 0.45858949414554706], [0.5249140131129765, 0.5396733140874278, 0.5281323972618976, 0.5375710613065919, 0.5381624375349892]], "feval_count" : [340, 340], "n_trials_instructed" : [340, 340], "passing" : [true, true], "completed" : true, "points" : 0.0, "winner" : "pymoo_nelder_cube", "loser" : "optuna_random_cube_clone"} | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"yang_message": {"type": "object", "properties": {"interfaces": {"type": "object", "properties": {"interface": {"type": "object", "properties": {"FastEthernet0/2": {"type": "object", "properties": {"state": {"type": "object", "properties": {"oper_status": {"type": "string"}}, "required": ["oper_status"]}}, "required": ["state"]}}, "required": ["FastEthernet0/2"]}}, "required": ["interface"]}}, "required": ["interfaces"]}, "message_details": {"type": "object", "properties": {"severity": {"type": "integer"}, "facility": {"type": "integer"}, "messageId": {"type": "string"}, "pri": {"type": "string"}, "host": {"type": "string"}, "tag": {"type": "string"}, "time": {"type": "string"}, "timeZone": {"type": "null"}, "date": {"type": "string"}, "message": {"type": "string"}, "milliseconds": {"type": "string"}}, "required": ["severity", "facility", "messageId", "pri", "host", "tag", "time", "timeZone", "date", "message", "milliseconds"]}, "facility": {"type": "integer"}, "ip": {"type": "string"}, "error": {"type": "string"}, "host": {"type": "string"}, "yang_model": {"type": "string"}, "timestamp": {"type": "integer"}, "os": {"type": "string"}, "severity": {"type": "integer"}}, "required": ["yang_message", "message_details", "facility", "ip", "error", "host", "yang_model", "timestamp", "os", "severity"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"yang_message" : {"interfaces" : {"interface" : {"FastEthernet0/2" : {"state" : {"oper_status" : "UP"}}}}}, "message_details" : {"severity" : 5, "facility" : 23, "messageId" : "1440", "pri" : "189", "host" : "test-switch1", "tag" : "LINEPROTO-5-UPDOWN", "time" : "13:35:45", "timeZone" : null, "date" : "Jun 1", "message" : "Line protocol on Interface FastEthernet0/2, changed state to up", "milliseconds" : "562"}, "facility" : 23, "ip" : "127.0.0.1", "error" : "INTERFACE_UP", "host" : "test-switch1", "yang_model" : "openconfig-interfaces", "timestamp" : 1527860145, "os" : "ios", "severity" : 5} | json_instruct | {"type": "object", "properties": {"yang_message": {"type": "object", "properties": {"interfaces": {"type": "object", "properties": {"interface": {"type": "object", "properties": {"FastEthernet0/2": {"type": "object", "properties": {"state": {"type": "object", "properties": {"oper_status": {"type": "string"}}, "required": ["oper_status"]}}, "required": ["state"]}}, "required": ["FastEthernet0/2"]}}, "required": ["interface"]}}, "required": ["interfaces"]}, "message_details": {"type": "object", "properties": {"severity": {"type": "integer"}, "facility": {"type": "integer"}, "messageId": {"type": "string"}, "pri": {"type": "string"}, "host": {"type": "string"}, "tag": {"type": "string"}, "time": {"type": "string"}, "timeZone": {"type": "null"}, "date": {"type": "string"}, "message": {"type": "string"}, "milliseconds": {"type": "string"}}, "required": ["severity", "facility", "messageId", "pri", "host", "tag", "time", "timeZone", "date", "message", "milliseconds"]}, "facility": {"type": "integer"}, "ip": {"type": "string"}, "error": {"type": "string"}, "host": {"type": "string"}, "yang_model": {"type": "string"}, "timestamp": {"type": "integer"}, "os": {"type": "string"}, "severity": {"type": "integer"}}, "required": ["yang_message", "message_details", "facility", "ip", "error", "host", "yang_model", "timestamp", "os", "severity"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"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" : "1705031015", "district_id" : "1705031", "name" : "MEKAR SARI"} | 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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Taltal, Masinloc, Zambales, Central Luzon (Region III), PH", "locale" : "ph.central-luzon-region-iii.zambales.masinloc.taltal", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "6", "region_reference" : "3", "region_name" : "Central Luzon (Region III)", "province_id" : "79", "province_reference" : "79", "province_name" : "Zambales", "city_id" : "844", "city_reference" : "1567", "city_name" : "Masinloc", "barangay_id" : "24378", "barangay_reference" : "39937", "barangay_name" : "Taltal"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[119.963051, 15.57829], [119.95948, 15.57399], [119.950844, 15.56688], [119.950844, 15.56778], [119.950546, 15.56806], [119.950546, 15.56861], [119.950279, 15.56889], [119.950279, 15.56972], [119.949272, 15.57073], [119.949173, 15.57083], [119.949142, 15.57101], [119.94912, 15.57121], [119.948929, 15.57153], [119.94873, 15.57191], [119.948418, 15.57223], [119.948067, 15.57255], [119.947693, 15.57283], [119.947281, 15.57303], [119.94696, 15.57332], [119.946617, 15.57354], [119.946281, 15.57369], [119.945923, 15.57381], [119.945549, 15.57391], [119.945183, 15.57409], [119.944733, 15.57416], [119.944252, 15.57417], [119.943771, 15.57417], [119.943336, 15.57417], [119.942947, 15.57417], [119.942596, 15.57417], [119.942223, 15.57417], [119.941803, 15.57417], [119.941307, 15.57412], [119.941269, 15.5741], [119.941063, 15.57411], [119.940811, 15.57411], [119.934097, 15.59983], [119.936943, 15.59911], [119.939507, 15.59797], [119.940933, 15.59704], [119.942619, 15.59614], [119.945633, 15.59402], [119.946587, 15.59198], [119.946953, 15.59004], [119.947769, 15.58768], [119.948738, 15.58571], [119.950478, 15.58392], [119.952293, 15.58247], [119.954422, 15.58121], [119.959007, 15.57851], [119.961212, 15.5776], [119.963051, 15.57829]]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"symbol" : "LKR", "name" : "Polkalokr", "decimals" : 18, "address" : "0x80ce3027a70e0a928d9268994e9b85d03bd4cdcf"} | json_instruct | {"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"10313": {"type": "string"}}, "required": ["10313"]}, "timeto": {"type": "object", "properties": {"10313": {"type": "number"}}, "required": ["10313"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 12347, "title" : ["[Wyvern Keep, City Clerk]"], "description" : ["Thick walnut bookshelves run from the floor to the ceiling on all the walls of this spacious office. The shelves even extend above the doorsill, making use of every bit of available wall space. Heavy tomes, ledgers, and volume after volume of legal documents crowd the shelves. Lanterns suspended from the varnished ceiling beams cast ample light to illuminate the room. A large, polished walnut desk with an accompanying straight-backed chair occupies a place on the red marble floor in the room's center."], "paths" : ["Obvious exits: none"], "location" : "Ta'Vaalor", "wayto" : {"10313" : "go archway"}, "timeto" : {"10313" : 0.2}, "image" : "en-ta_vaalor-wyverns_keep-1488759285.png", "image_coords" : [309, 606, 452, 668], "tags" : ["debt"]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"10313": {"type": "string"}}, "required": ["10313"]}, "timeto": {"type": "object", "properties": {"10313": {"type": "number"}}, "required": ["10313"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"MusicVol": {"type": "integer"}, "fullscreen": {"type": "boolean"}, "resolution": {"type": "integer"}, "sfxVol": {"type": "integer"}}, "required": ["MusicVol", "fullscreen", "resolution", "sfxVol"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"MusicVol" : 0, "fullscreen" : false, "resolution" : 1, "sfxVol" : -8} | json_instruct | {"type": "object", "properties": {"MusicVol": {"type": "integer"}, "fullscreen": {"type": "boolean"}, "resolution": {"type": "integer"}, "sfxVol": {"type": "integer"}}, "required": ["MusicVol", "fullscreen", "resolution", "sfxVol"], "$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"}, "license": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "scss": {"type": "string"}, "main.scss": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "mocha": {"type": "string"}, "node-sass": {"type": "string"}, "sass": {"type": "string"}}, "required": ["chai", "mocha", "node-sass", "sass"]}}, "required": ["name", "version", "license", "description", "keywords", "repository", "homepage", "author", "scss", "main.scss", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "sass-hsv", "version" : "1.0.2", "license" : "MIT", "description" : "A simple helper to introduce HSV/HSB model support to SASS", "keywords" : ["sass", "hsv", "hsl"], "repository" : {"type" : "git", "url" : "https://gitlab.com/sandfox/sass-hsv"}, "homepage" : "https://sandfox.dev/js/sass-hsv.html", "author" : {"name" : "Anton Smirnov", "email" : "[email protected]", "url" : "https://sandfox.me/"}, "scss" : "_hsv.scss", "main.scss" : "_hsv.scss", "scripts" : {"test" : "mocha"}, "devDependencies" : {"chai" : "^4.3.4", "mocha" : "^9.1.1", "node-sass" : "*", "sass" : "*"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "scss": {"type": "string"}, "main.scss": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "mocha": {"type": "string"}, "node-sass": {"type": "string"}, "sass": {"type": "string"}}, "required": ["chai", "mocha", "node-sass", "sass"]}}, "required": ["name", "version", "license", "description", "keywords", "repository", "homepage", "author", "scss", "main.scss", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "key": {"type": "string"}}, "required": ["src", "key"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"src" : "../../images/img01.png", "key" : "01"}, {"src" : "../../images/img02.png", "key" : "02"}, {"src" : "../../images/img03.png", "key" : "03"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "key": {"type": "string"}}, "required": ["src", "key"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d849-13", "text" : "-- /he Sul cu^_\nSCRIPT ORE;\nMOS'IC:\nANNCR:\nMUSIC;\nLSRCH:\nMUSIC;\nAWNCR;\nMUSIC;\n7&\nJOHN LERCH\nREPORT FROM JAPAN\nTHEME. ESTABLISH (5 SECONDS) UNDER\nREPORT FROM JAPAN (EMPHASIS) A program of infor\u00ac\nmation and commentary treating current issues in\njapan. This program is produced on tape record\u00ac\ning 'in Tokyo.\" Here, now is your host; John Lerch.\nTHEME - OUT\nThis is our introductory report from Japan.\nFirst, we\u2019ll take a bird\u2019s eye view of the country,\nits people, and the strengthening national economy.\nDOCUMENTARY (NSUSREEL) ESTABLISH UNDER\nHIGHLIGHTS IN THE NE US--FROM JAPAN.\nThe growth of population in Japan is phenomenal.\nOUT\nLERCH; . The Japanese population has grown at the rate\nof 7.3 par cent curing the past five years, and\nthe' nation\u2019s six major cities are faced with an\nincreasing influx of people from the rural areas\naccording to a report just released from the Statist\nBureau.\nJapan now ranks fifth in the world following\nMUSIC;\nStates. Japan ranks with the Netherlands and\nBelgium as one of the countries with the highest\nrate of population density. There arc now five\n\u2022cities in Japan with over\"1 million people.\nTokyo: 6,900,000; Osaka: 2,500,000; Nagoya,\n1,300,000; Kyoto: 1,200,000; Yokohama: 1,150,000\nand Kobe an even million.\nDOCmS NT ARY. UP. UNDER"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"js": {"type": "array", "items": {"type": "string"}}, "css": {"type": "array", "items": {}}, "types": {"type": "array", "items": {"type": "string"}}, "src-repo": {"type": "string"}, "last-tag": {"type": "string"}, "last-sync": {"type": "string"}}, "required": ["js", "css", "types", "src-repo", "last-tag", "last-sync"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"js" : ["js/dataTables.rowReorder.js", "js/dataTables.rowReorder.min.js"], "css" : [], "types" : ["types/types.d.ts"], "src-repo" : "http://github.com/DataTables/RowReorder", "last-tag" : "1.2.8", "last-sync" : "89ad12411c77cee65855542fc71eb3f782472ee1"} | json_instruct | {"type": "object", "properties": {"js": {"type": "array", "items": {"type": "string"}}, "css": {"type": "array", "items": {}}, "types": {"type": "array", "items": {"type": "string"}}, "src-repo": {"type": "string"}, "last-tag": {"type": "string"}, "last-sync": {"type": "string"}}, "required": ["js", "css", "types", "src-repo", "last-tag", "last-sync"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : [{"d" : [{"e" : ["\ufff9`Kofiten~ `ko~ `takamayan~.\ufffa\ufffb\u628a\u624b\u8896\u6263\u7dca\u3002"], "f" : "\u628a(\u9215\u6263)\u6263\u7dca\uff0c\u641e\u4e00\u81f4\u4e86\u3002"}]}], "stem" : "kofit", "t" : "kofiten"} | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "build:babel": {"type": "string"}, "build:dts": {"type": "string"}, "prepack": {"type": "string"}}, "required": ["test", "build", "build:babel", "build:dts", "prepack"]}, "peerDependencies": {"type": "object", "properties": {"gatsby": {"type": "string"}, "@karrotmarket/gatsby-source-greenhouse-jobboard": {"type": "string"}}, "required": ["gatsby", "@karrotmarket/gatsby-source-greenhouse-jobboard"]}, "dependencies": {"type": "object", "properties": {"html-entities": {"type": "string"}}, "required": ["html-entities"]}, "devDependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "@karrotmarket/gatsby-source-greenhouse-jobboard": {"type": "string"}, "@types/common-tags": {"type": "string"}, "@types/jest": {"type": "string"}, "@types/node": {"type": "string"}, "babel-jest": {"type": "string"}, "babel-preset-gatsby-package": {"type": "string"}, "common-tags": {"type": "string"}, "concurrently": {"type": "string"}, "gatsby": {"type": "string"}, "jest": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "@karrotmarket/gatsby-source-greenhouse-jobboard", "@types/common-tags", "@types/jest", "@types/node", "babel-jest", "babel-preset-gatsby-package", "common-tags", "concurrently", "gatsby", "jest", "typescript"]}}, "required": ["name", "version", "private", "scripts", "peerDependencies", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@karrotmarket/gatsby-transformer-job-post", "version" : "0.0.1", "private" : true, "scripts" : {"test" : "jest", "build" : "concurrently \"yarn:build:*\"", "build:babel" : "babel gatsby -d . -x .ts --presets gatsby-package", "build:dts" : "tsc --emitDeclarationOnly --skipLibCheck", "prepack" : "yarn build"}, "peerDependencies" : {"gatsby" : "^2.25.0 || ^3.0.0 || ^4.0.0", "@karrotmarket/gatsby-source-greenhouse-jobboard" : "^0.3.0 || ^0.4.0"}, "dependencies" : {"html-entities" : "2.3.2"}, "devDependencies" : {"@babel/cli" : "7.16.8", "@babel/core" : "7.16.7", "@karrotmarket/gatsby-source-greenhouse-jobboard" : "0.4.0", "@types/common-tags" : "1.8.1", "@types/jest" : "27.4.0", "@types/node" : "16.11.19", "babel-jest" : "27.4.6", "babel-preset-gatsby-package" : "2.5.0", "common-tags" : "1.8.2", "concurrently" : "7.0.0", "gatsby" : "next", "jest" : "27.4.7", "typescript" : "4.5.4"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "build:babel": {"type": "string"}, "build:dts": {"type": "string"}, "prepack": {"type": "string"}}, "required": ["test", "build", "build:babel", "build:dts", "prepack"]}, "peerDependencies": {"type": "object", "properties": {"gatsby": {"type": "string"}, "@karrotmarket/gatsby-source-greenhouse-jobboard": {"type": "string"}}, "required": ["gatsby", "@karrotmarket/gatsby-source-greenhouse-jobboard"]}, "dependencies": {"type": "object", "properties": {"html-entities": {"type": "string"}}, "required": ["html-entities"]}, "devDependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "@karrotmarket/gatsby-source-greenhouse-jobboard": {"type": "string"}, "@types/common-tags": {"type": "string"}, "@types/jest": {"type": "string"}, "@types/node": {"type": "string"}, "babel-jest": {"type": "string"}, "babel-preset-gatsby-package": {"type": "string"}, "common-tags": {"type": "string"}, "concurrently": {"type": "string"}, "gatsby": {"type": "string"}, "jest": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "@karrotmarket/gatsby-source-greenhouse-jobboard", "@types/common-tags", "@types/jest", "@types/node", "babel-jest", "babel-preset-gatsby-package", "common-tags", "concurrently", "gatsby", "jest", "typescript"]}}, "required": ["name", "version", "private", "scripts", "peerDependencies", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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" : "1109120023", "district_id" : "1109120", "name" : "BUCUE"} | 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#"} |
Generate a valid JSON object that conforms to the following 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" : "RANYA", "frequency" : 2069, "gender" : "female"}] | 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#"} |
Please provide a valid JSON object following this 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": {"lianghuajian": {"type": "string"}}, "required": ["lianghuajian"]}, "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" : "MentalCounselsdk", "version" : "1.0.32", "summary" : "Base sdk for project MentalCounsel.", "description" : "A sdk for better develop the project MentalCounsel.", "homepage" : "https://github.com/lianghuajian/MentalCounselsdk", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"lianghuajian" : "[email protected]"}, "source" : {"git" : "https://github.com/lianghuajian/MentalCounselsdk.git", "tag" : "1.0.32"}, "swift_versions" : "5.0", "platforms" : {"ios" : "9.0"}, "source_files" : "MentalCounselsdk/Classes/*.swift", "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": {"lianghuajian": {"type": "string"}}, "required": ["lianghuajian"]}, "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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"codestyle": {"type": "object", "properties": {"service": {"type": "string"}, "secret": {"type": "string"}, "events": {"type": "object", "properties": {"push": {"type": "string"}, "pull_request": {"type": "string"}}, "required": ["push", "pull_request"]}}, "required": ["service", "secret", "events"]}, "ci": {"type": "object", "properties": {"service": {"type": "string"}, "apiRoot": {"type": "string"}, "states": {"type": "object", "properties": {"passed": {"type": "string"}, "failed": {"type": "string"}, "error": {"type": "string"}}, "required": ["passed", "failed", "error"]}}, "required": ["service", "apiRoot", "states"]}}, "required": ["codestyle", "ci"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"codestyle" : {"service" : "github", "secret" : "supersecretsecret", "events" : {"push" : "/home/stylebot/check_push.sh", "pull_request" : "/home/stylebot/check_pr.sh"}}, "ci" : {"service" : "travis", "apiRoot" : "https://api.travis-ci.com", "states" : {"passed" : "/home/deploybot/destroy_the_world.sh", "failed" : "/home/deploybot/wakeup.sh", "error" : "/home/deploybot/wakeup.sh"}}} | json_instruct | {"type": "object", "properties": {"codestyle": {"type": "object", "properties": {"service": {"type": "string"}, "secret": {"type": "string"}, "events": {"type": "object", "properties": {"push": {"type": "string"}, "pull_request": {"type": "string"}}, "required": ["push", "pull_request"]}}, "required": ["service", "secret", "events"]}, "ci": {"type": "object", "properties": {"service": {"type": "string"}, "apiRoot": {"type": "string"}, "states": {"type": "object", "properties": {"passed": {"type": "string"}, "failed": {"type": "string"}, "error": {"type": "string"}}, "required": ["passed", "failed", "error"]}}, "required": ["service", "apiRoot", "states"]}}, "required": ["codestyle", "ci"], "$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"}, "dependencies": {"type": "object", "properties": {"cors": {"type": "string"}, "firebase-admin": {"type": "string"}, "firebase-functions": {"type": "string"}, "nodemailer": {"type": "string"}, "sanitize": {"type": "string"}}, "required": ["cors", "firebase-admin", "firebase-functions", "nodemailer", "sanitize"]}, "devDependencies": {"type": "object", "properties": {"tslint": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["tslint", "typescript"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "private": {"type": "boolean"}}, "required": ["name", "description", "dependencies", "devDependencies", "engines", "private"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "functions", "description" : "Cloud Functions for Firebase", "dependencies" : {"cors" : "^2.8.4", "firebase-admin" : "^8.7.0", "firebase-functions" : "^3.3.0", "nodemailer" : "^4.6.8", "sanitize" : "^2.1.0"}, "devDependencies" : {"tslint" : "~5.19.0", "typescript" : "~3.6.2"}, "engines" : {"node" : "10"}, "private" : true} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"cors": {"type": "string"}, "firebase-admin": {"type": "string"}, "firebase-functions": {"type": "string"}, "nodemailer": {"type": "string"}, "sanitize": {"type": "string"}}, "required": ["cors", "firebase-admin", "firebase-functions", "nodemailer", "sanitize"]}, "devDependencies": {"type": "object", "properties": {"tslint": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["tslint", "typescript"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "private": {"type": "boolean"}}, "required": ["name", "description", "dependencies", "devDependencies", "engines", "private"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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" : "Attorney", "definitions" : ["A person, typically a lawyer, appointed to act for another in business or legal matters.", "A lawyer.", "A solicitor."], "parts-of-speech" : "Noun"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"t" : "mahomikay", "h" : [{"d" : [{"f" : "\uff08\u6307\u8eab\u9ad4\uff09\u865b\u507d\u4e86\uff0c\u8870\u5f31\u4e86\u3002"}, {"f" : "\u6307\u865b\u5f31\u3001\u8870\u5f31\u7684\uff08\u8eab\u9ad4\uff09\u3002", "e" : ["\ufff9`Mahomik~`ay~ `ko~ `tireng~ `no~ `faki~.\ufffa\ufffb\u723a\u723a\u7684\u8eab\u9ad4\u5f88\u865b\u5f31\u4e86\u3002"]}]}], "stem" : "homik"} | json_instruct | {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "NOR COULD MY MEMORY RETAIN THEM IN THAT ORDER.", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/11617.json"} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "integer"}, "feedsPub": {"type": "integer"}}, "required": ["feedly", "inoreader", "feedsPub"]}, "failedSources": {"type": "object", "properties": {}, "required": []}}, "required": ["totalSubs", "subsInEachSource", "failedSources"]}, "lastModified": {"type": "integer"}}, "required": ["status", "data", "lastModified"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status" : 200, "data" : {"totalSubs" : 3181, "subsInEachSource" : {"feedly" : 2501, "inoreader" : 680, "feedsPub" : 0}, "failedSources" : {}}, "lastModified" : 1615522430339} | json_instruct | {"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "integer"}, "feedsPub": {"type": "integer"}}, "required": ["feedly", "inoreader", "feedsPub"]}, "failedSources": {"type": "object", "properties": {}, "required": []}}, "required": ["totalSubs", "subsInEachSource", "failedSources"]}, "lastModified": {"type": "integer"}}, "required": ["status", "data", "lastModified"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"ID": {"type": "string"}, "Name": {"type": "string"}, "Tags": {"type": "array", "items": {"type": "string"}}, "Address": {"type": "string"}, "Port": {"type": "integer"}}, "required": ["ID", "Name", "Tags", "Address", "Port"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ID" : "example2", "Name" : "example2", "Tags" : ["specific", "v1"], "Address" : "127.0.0.1", "Port" : 8000} | json_instruct | {"type": "object", "properties": {"ID": {"type": "string"}, "Name": {"type": "string"}, "Tags": {"type": "array", "items": {"type": "string"}}, "Address": {"type": "string"}, "Port": {"type": "integer"}}, "required": ["ID", "Name", "Tags", "Address", "Port"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "config": {"type": "object", "properties": {"classmap-authoritative": {"type": "boolean"}}, "required": ["classmap-authoritative"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"App\\": {"type": "string"}}, "required": ["App\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}}, "required": ["name", "description", "type", "license", "config", "autoload", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "openfaas/function-php8", "description" : "Template for function in PHP 8", "type" : "project", "license" : "proprietary", "config" : {"classmap-authoritative" : true}, "autoload" : {"psr-4" : {"App\\" : "src/"}}, "require" : {"php" : "^8.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "config": {"type": "object", "properties": {"classmap-authoritative": {"type": "boolean"}}, "required": ["classmap-authoritative"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"App\\": {"type": "string"}}, "required": ["App\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}}, "required": ["name", "description", "type", "license", "config", "autoload", "require"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "homepage"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Arbiter\\": {"type": "string"}}, "required": ["Arbiter\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Arbiter\\": {"type": "string"}}, "required": ["Arbiter\\"]}}, "required": ["psr-4"]}}, "required": ["name", "type", "description", "keywords", "homepage", "license", "authors", "require", "autoload", "autoload-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "arbiter/arbiter", "type" : "library", "description" : "An Action system for Action-Domain-Responder.", "keywords" : ["adr", "action domain responder"], "homepage" : "https://github.com/arbiterphp/Arbiter.Arbiter", "license" : "MIT", "authors" : [{"name" : "Arbiter.Arbiter Contributors", "homepage" : "https://github.com/arbiterphp/Arbiter.Arbiter/contributors"}], "require" : {"php" : ">=5.5.0"}, "autoload" : {"psr-4" : {"Arbiter\\" : "src/"}}, "autoload-dev" : {"psr-4" : {"Arbiter\\" : "tests/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "homepage"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Arbiter\\": {"type": "string"}}, "required": ["Arbiter\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Arbiter\\": {"type": "string"}}, "required": ["Arbiter\\"]}}, "required": ["psr-4"]}}, "required": ["name", "type", "description", "keywords", "homepage", "license", "authors", "require", "autoload", "autoload-dev"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"displayName": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"naughtyattributes": {"type": "string"}, "unirx": {"type": "string"}}, "required": ["naughtyattributes", "unirx"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["displayName", "name", "version", "description", "dependencies", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"displayName" : "unity-data-binding", "name" : "unitydatabinding", "version" : "1.0.0", "description" : "unity-data-binding", "dependencies" : {"naughtyattributes" : "2.0.8", "unirx" : "6.2.2"}, "author" : "crowdoka", "license" : "MIT", "bugs" : {"url" : "https://github.com/crowdoka/unity-data-binding/issues"}, "homepage" : "https://github.com/crowdoka/unity-data-binding"} | json_instruct | {"type": "object", "properties": {"displayName": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"naughtyattributes": {"type": "string"}, "unirx": {"type": "string"}}, "required": ["naughtyattributes", "unirx"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["displayName", "name", "version", "description", "dependencies", "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": {"devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-plugin-import"]}}, "required": ["devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"devDependencies" : {"eslint" : "^7.32.0", "eslint-config-airbnb-base" : "^14.2.1", "eslint-plugin-import" : "^2.25.2"}} | json_instruct | {"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-plugin-import"]}}, "required": ["devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"actual": {"type": "number"}, "country": {"type": "string"}, "currency": {"type": "string"}, "forecast": {"type": "number"}, "name": {"type": "string"}, "previous": {"type": "number"}, "timestamp": {"type": "integer"}, "volatility": {"type": "integer"}}, "required": ["actual", "country", "currency", "forecast", "name", "previous", "timestamp", "volatility"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"actual" : 87.3, "country" : "Germany", "currency" : "EUR", "forecast" : 87.5, "name" : "German Ifo Business Climate Index", "previous" : 87.7, "timestamp" : 1038301200, "volatility" : 2}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"actual": {"type": "number"}, "country": {"type": "string"}, "currency": {"type": "string"}, "forecast": {"type": "number"}, "name": {"type": "string"}, "previous": {"type": "number"}, "timestamp": {"type": "integer"}, "volatility": {"type": "integer"}}, "required": ["actual", "country", "currency", "forecast", "name", "previous", "timestamp", "volatility"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "template": {"type": "object", "properties": {"forceLanguage": {"type": "string"}}, "required": ["forceLanguage"]}, "url": {"type": "string"}}, "required": ["title", "name", "version", "description", "template", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Silent Auction API Documentation", "name" : "Silent Auction API", "version" : "1.0.0", "description" : "Sellers can post items for auction, buyers can bid on items!", "template" : {"forceLanguage" : "en"}, "url" : "https://silent-auction-bw.herokuapp.com"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "template": {"type": "object", "properties": {"forceLanguage": {"type": "string"}}, "required": ["forceLanguage"]}, "url": {"type": "string"}}, "required": ["title", "name", "version", "description", "template", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "null"}}, "required": ["id", "source", "verse_id", "verse_count", "reference", "title", "html", "audit"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 9384, "source" : "benson", "verse_id" : 18517, "verse_count" : 3, "reference" : "43:11\u201313", "title" : "", "html" : " <p> <a class=\"isa\" verses=\"eyIxODUxNyI6M30=\">Isaiah 43:11-13</a>. <i>Besides me there is no saviour \u2014 </i> None that can and does save his worshippers: wherein is implied, that the false gods were not only weak and unable to save those that trusted in them, but also were their destroyers, as being the great cause of their ruin. <i>I have declared, and have saved </i>\u2014I first foretold your deliverance, and then effected it. <i>And l have showed, when there was no strange god, </i> &c.\u2014Rather, <i>I made it known; nor was it any strange god. </i> So Bishop Lowth. This divine prescience and predicting of future events is thus repeatedly insisted upon, because it is the principal argument used here, and in chap. 41., to determine this controversy between Jehovah and idols. <i>Yea, before the day was </i>\u2014Before all time: or, which is the same, from all eternity. <i>I am he </i>\u2014I am God, and have proved myself to be so. <i>None can deliver out of my hands </i>\u2014None of those that are called gods can save them whom I will destroy. Therefore they are impotent, and consequently no gods. <i>I will work, and who shall let it? </i>\u2014Nor can they hinder me in any other work which I resolve to do. </p> ", "audit" : null} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "null"}}, "required": ["id", "source", "verse_id", "verse_count", "reference", "title", "html", "audit"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"accountLinkingWhitelistedDomains": {"type": "null"}, "asin": {"type": "string"}, "averageRating": {"type": "integer"}, "canDisable": {"type": "boolean"}, "capabilities": {"type": "null"}, "category": {"type": "null"}, "description": {"type": "string"}, "enablement": {"type": "null"}, "exampleInteractions": {"type": "array", "items": {"type": "string"}}, "firstReleaseDate": {"type": "number"}, "homepageLinkText": {"type": "null"}, "homepageLinkUrl": {"type": "null"}, "id": {"type": "string"}, "imageAltText": {"type": "string"}, "imageUrl": {"type": "string"}, "inAppPurchasingSupported": {"type": "boolean"}, "launchPhrase": {"type": "string"}, "name": {"type": "string"}, "numberOfReviews": {"type": "integer"}, "pamsPartnerId": {"type": "null"}, "permissions": {"type": "null"}, "privacyPolicyUrl": {"type": "string"}, "shortDescription": {"type": "string"}, "skillTypes": {"type": "null"}, "stage": {"type": "string"}, "termsOfUseUrl": {"type": "null"}, "vendorId": {"type": "string"}, "vendorName": {"type": "string"}}, "required": ["accountLinkingWhitelistedDomains", "asin", "averageRating", "canDisable", "capabilities", "category", "description", "enablement", "exampleInteractions", "firstReleaseDate", "homepageLinkText", "homepageLinkUrl", "id", "imageAltText", "imageUrl", "inAppPurchasingSupported", "launchPhrase", "name", "numberOfReviews", "pamsPartnerId", "permissions", "privacyPolicyUrl", "shortDescription", "skillTypes", "stage", "termsOfUseUrl", "vendorId", "vendorName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"accountLinkingWhitelistedDomains" : null, "asin" : "B01MTRY21F", "averageRating" : 0, "canDisable" : true, "capabilities" : null, "category" : null, "description" : "This skill tells you a random famous quote every time you want to. Perfect when you need motivation.", "enablement" : null, "exampleInteractions" : ["Alexa, open Famous Quotes", "Alexa, ask famous quotes to motivate me", "Alexa, ask famous quotes to tell me one"], "firstReleaseDate" : 1480754154.038, "homepageLinkText" : null, "homepageLinkUrl" : null, "id" : "amzn1.ask.skill.7c130fd8-4597-4c25-b431-6748e673cb95", "imageAltText" : "Famous Quotes icon", "imageUrl" : "https://github.com/dale3h/alexa-skills-list/raw/master/skills/B01MTRY21F/skill_icon", "inAppPurchasingSupported" : false, "launchPhrase" : "famous quotes", "name" : "Famous Quotes", "numberOfReviews" : 0, "pamsPartnerId" : null, "permissions" : null, "privacyPolicyUrl" : "", "shortDescription" : "Tells you a random quote from famous persons", "skillTypes" : null, "stage" : "live", "termsOfUseUrl" : null, "vendorId" : "M18A1XNNMA53L", "vendorName" : "Imperium Apps GmbH"} | json_instruct | {"type": "object", "properties": {"accountLinkingWhitelistedDomains": {"type": "null"}, "asin": {"type": "string"}, "averageRating": {"type": "integer"}, "canDisable": {"type": "boolean"}, "capabilities": {"type": "null"}, "category": {"type": "null"}, "description": {"type": "string"}, "enablement": {"type": "null"}, "exampleInteractions": {"type": "array", "items": {"type": "string"}}, "firstReleaseDate": {"type": "number"}, "homepageLinkText": {"type": "null"}, "homepageLinkUrl": {"type": "null"}, "id": {"type": "string"}, "imageAltText": {"type": "string"}, "imageUrl": {"type": "string"}, "inAppPurchasingSupported": {"type": "boolean"}, "launchPhrase": {"type": "string"}, "name": {"type": "string"}, "numberOfReviews": {"type": "integer"}, "pamsPartnerId": {"type": "null"}, "permissions": {"type": "null"}, "privacyPolicyUrl": {"type": "string"}, "shortDescription": {"type": "string"}, "skillTypes": {"type": "null"}, "stage": {"type": "string"}, "termsOfUseUrl": {"type": "null"}, "vendorId": {"type": "string"}, "vendorName": {"type": "string"}}, "required": ["accountLinkingWhitelistedDomains", "asin", "averageRating", "canDisable", "capabilities", "category", "description", "enablement", "exampleInteractions", "firstReleaseDate", "homepageLinkText", "homepageLinkUrl", "id", "imageAltText", "imageUrl", "inAppPurchasingSupported", "launchPhrase", "name", "numberOfReviews", "pamsPartnerId", "permissions", "privacyPolicyUrl", "shortDescription", "skillTypes", "stage", "termsOfUseUrl", "vendorId", "vendorName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"collections": {"type": "array", "items": {"type": "object", "properties": {"fullName": {"type": "string"}, "methods": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "count": {"type": "integer"}}, "required": ["name", "type", "count"]}}}, "required": ["fullName", "methods"]}}}, "required": ["collections"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"collections" : [{"fullName" : "KaVE.RS.Commons.Settings.KaVE.RS.Commons.Settings.ModelStoreSettings", "methods" : [{"name" : "KaVE.RS.Commons.Settings.KaVE.RS.Commons.Settings.ModelStoreSettings()", "type" : "CTOR", "count" : 4}]}]} | json_instruct | {"type": "object", "properties": {"collections": {"type": "array", "items": {"type": "object", "properties": {"fullName": {"type": "string"}, "methods": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "count": {"type": "integer"}}, "required": ["name", "type", "count"]}}}, "required": ["fullName", "methods"]}}}, "required": ["collections"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["vertices"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vertices" : [[36, 48], [38, 51], [40, 48], [30, 31], [36, 37], [50, 15], [54, 13], [48, 54], [51, 19], [29, 42], [12, 62], [43, 52], [53, 42], [33, 65], [9, 70], [19, 67], [53, 34], [52, 30], [41, 68], [17, 73], [51, 31], [48, 27], [45, 78], [53, 75], [61, 79], [63, 37], [68, 40], [63, 40], [63, 37], [74, 79], [69, 61], [69, 72], [66, 49], [69, 33], [72, 29], [72, 55], [83, 78], [76, 51], [79, 70], [94, 57], [81, 59], [81, 54], [84, 57], [93, 62], [96, 67]]} | json_instruct | {"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["vertices"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"imports": {"type": "array", "items": {"type": "string"}}, "props": {"type": "object", "properties": {}, "required": []}}, "required": ["imports", "props"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"imports" : ["../base/all.json"], "props" : {}} | json_instruct | {"type": "object", "properties": {"imports": {"type": "array", "items": {"type": "string"}}, "props": {"type": "object", "properties": {}, "required": []}}, "required": ["imports", "props"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"station" : [{"pref_cd" : 27, "line_cd" : 99622, "line_name" : "\u5927\u962a\u30e1\u30c8\u30ed\u5343\u65e5\u524d\u7dda", "station_cd" : 9962204, "station_g_cd" : 9962204, "station_name" : "\u897f\u9577\u5800", "lon" : 135.487223, "lat" : 34.675256}]} | json_instruct | {"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"qrious.js": {"type": "string"}, "qrious.min.js": {"type": "string"}}, "required": ["qrious.js", "qrious.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"qrious.js" : "sha512-htfScewKHBtgVZnAtjDLznsdGwfcKj1ZdLwyFaSC5A5viWWTuZvd+JuLsqGE0eGS3G4AvoH7YNHFdwacQoPiQg==", "qrious.min.js" : "sha512-Y4w6VSw4RFo7JF4+8kj2zTFv3rIp1DMRfkq/59rAbLXypkuBv9WPpbKyzzihUmUdnGkcn85BPKEec7hRl0+AsA=="} | json_instruct | {"type": "object", "properties": {"qrious.js": {"type": "string"}, "qrious.min.js": {"type": "string"}}, "required": ["qrious.js", "qrious.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "filename": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "autoupdate": {"type": "object", "properties": {"source": {"type": "string"}, "target": {"type": "string"}, "fileMap": {"type": "array", "items": {"type": "object", "properties": {"basePath": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["basePath", "files"]}}}, "required": ["source", "target", "fileMap"]}}, "required": ["name", "filename", "description", "homepage", "license", "keywords", "repository", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ol3", "filename" : "ol.js", "description" : "Build tools and sources for developing OpenLayers based mapping applications", "homepage" : "http://openlayers.org/", "license" : "BSD-2-Clause", "keywords" : ["map", "openlayers", "maps"], "repository" : {"type" : "git", "url" : "https://github.com/openlayers/ol3"}, "autoupdate" : {"source" : "npm", "target" : "openlayers", "fileMap" : [{"basePath" : "dist", "files" : ["**/*"]}]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "filename": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "autoupdate": {"type": "object", "properties": {"source": {"type": "string"}, "target": {"type": "string"}, "fileMap": {"type": "array", "items": {"type": "object", "properties": {"basePath": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["basePath", "files"]}}}, "required": ["source", "target", "fileMap"]}}, "required": ["name", "filename", "description", "homepage", "license", "keywords", "repository", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "fb148563208b77109057063c00104b6c0bf84b02"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d362-44", "text" : "Smlmm&vry Budget jar to Part-od July 1, 1%!? -\nSatnay (Detail below)\nSSEarles and M\u00abw\nik.*@\nSplice and l&penaes\u00a9\nMMMMliii Wagmmm\ntom*\nmi aaa\u00bb\u00ab\nTSfector\nAssociate Biiwfcor\nSM&ptMijr\nC3tarl**$texia\nRetirement (8.133? of salaries)\n\u2022forioamte Conpcnootion (1.95 of salaries)\nT0*U\nSeminars and Xrentl\nTW, HHSTTr)\n\u00bb,179.oo\n2,21)2.00\n\u25a0 li35.oo\n.00\n12,000.00\n1,53b.00\n700.00\nli90.00\n38b.00\ntom.\nand Tisp\u00aenscs\nr^^SS^peim\nOffice Supplies and \"spouses\n^telephone and megraph\nf 600.00\nl#\u00a32j2.00\naSsgqg\nI 200.00\n\u25a0 ISS.CC\n. .00\nW\no? 50\u00bb2l\u00bb3 la to snount terewith wnjaostod from to V. \u00a3.\nSMlogg Foundation. ms is to balance wssstetag Ssem to f3iil,000\narlgtoUs' granted to cower to tooe-year period, July 1, 1956 - Juste\n30, 1939. Qraita hare teen made each of to toco years, as fbUowst\n1956- 1957\n1957- 1958\n1958- 1959\nTorn\n11.6,221.00\n84,686,00\nta.8Wi.oo a.)\n^,7X'flS\n(1) the actual amount reweiied this fiscal year was $j5,9Wu Boaewsr Hj.lOQ\nof this is being held as a castinsmey item, la accordance with to Foundati*x*s\nletter tc us of . ms amount is included in to total remaining\nof $8,2li9.\nHJSicac\nicyio/SS"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"clicked": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "value": {"type": "boolean"}, "reflectToAttribute": {"type": "boolean"}, "observer": {"type": "string"}}, "required": ["name", "type", "value", "reflectToAttribute", "observer"]}}, "required": ["clicked"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"clicked" : {"name" : "clicked", "type" : "Boolean", "value" : false, "reflectToAttribute" : true, "observer" : "_clickedChanged"}} | json_instruct | {"type": "object", "properties": {"clicked": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "value": {"type": "boolean"}, "reflectToAttribute": {"type": "boolean"}, "observer": {"type": "string"}}, "required": ["name", "type", "value", "reflectToAttribute", "observer"]}}, "required": ["clicked"], "$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"}, "symbol": {"type": "string"}, "type": {"type": "string"}, "decimals": {"type": "integer"}, "description": {"type": "string"}, "website": {"type": "string"}, "explorer": {"type": "string"}, "status": {"type": "string"}, "id": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["name", "symbol", "type", "decimals", "description", "website", "explorer", "status", "id", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Crypto Cavemen", "symbol" : "CAVE", "type" : "SPL", "decimals" : 6, "description" : "The Crypto Cavemen Club is an exclusive NFT community comprised of the world's most prehistoric generation of humans.", "website" : "https://cryptocavemen.io/", "explorer" : "https://solscan.io/token/4SZjjNABoqhbd4hnapbvoEPEqT8mnNkfbEoAwALf1V8t", "status" : "active", "id" : "4SZjjNABoqhbd4hnapbvoEPEqT8mnNkfbEoAwALf1V8t", "links" : [{"name" : "twitter", "url" : "https://twitter.com/TheCavemenClub"}, {"name" : "coinmarketcap", "url" : "https://coinmarketcap.com/currencies/crypto-cavemen-club/"}, {"name" : "coingecko", "url" : "https://coingecko.com/en/coins/cave"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "type": {"type": "string"}, "decimals": {"type": "integer"}, "description": {"type": "string"}, "website": {"type": "string"}, "explorer": {"type": "string"}, "status": {"type": "string"}, "id": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["name", "symbol", "type", "decimals", "description", "website", "explorer", "status", "id", "links"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"copyright": {"type": "string"}, "url": {"type": "string"}}, "required": ["copyright", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"copyright" : "Whizark", "url" : "https://github.com/whizark"} | json_instruct | {"type": "object", "properties": {"copyright": {"type": "string"}, "url": {"type": "string"}}, "required": ["copyright", "url"], "$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"}, "typings": {"type": "null"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "author": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"fast-json-patch": {"type": "string"}}, "required": ["fast-json-patch"]}}, "required": ["name", "version", "typings", "description", "main", "scripts", "author", "repository", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@types/fast-json-patch", "version" : "1.1.5", "typings" : null, "description" : "Stub TypeScript definitions entry for JSON-Patch, which provides its own types definitions", "main" : "", "scripts" : {}, "author" : "", "repository" : "https://github.com/Starcounter-Jack/JSON-Patch", "license" : "MIT", "dependencies" : {"fast-json-patch" : "*"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "typings": {"type": "null"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "author": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"fast-json-patch": {"type": "string"}}, "required": ["fast-json-patch"]}}, "required": ["name", "version", "typings", "description", "main", "scripts", "author", "repository", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "includedInParent": {"type": "boolean"}, "mtime": {"type": "integer"}}, "required": ["name", "includedInParent", "mtime"]}}, "generated": {"type": "object", "properties": {"js": {"type": "string"}}, "required": ["js"]}, "hash": {"type": "string"}, "cacheData": {"type": "object", "properties": {"env": {"type": "object", "properties": {}, "required": []}}, "required": ["env"]}}, "required": ["dependencies", "generated", "hash", "cacheData"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dependencies" : [{"name" : "/Users/miguelangel.duran/Dev/react-slidy/package.json", "includedInParent" : true, "mtime" : 1521561109568}, {"name" : "/Users/miguelangel.duran/Dev/react-slidy/.babelrc", "includedInParent" : true, "mtime" : 1520271563719}, {"name" : "/Users/miguelangel.duran/Dev/react-slidy/node_modules/lowlight/node_modules/highlight.js/package.json", "includedInParent" : true, "mtime" : 1520272392441}], "generated" : {"js" : "module.exports=function(e){var n=\"div mod in and or not xor asserterror begin case do downto else end exit for if of repeat then to until while with var\",a=[e.C_LINE_COMMENT_MODE,e.COMMENT(/\\{/,/\\}/,{relevance:0}),e.COMMENT(/\\(\\*/,/\\*\\)/,{relevance:10})],r={className:\"string\",begin:/'/,end:/'/,contains:[{begin:/''/}]},s={className:\"string\",begin:/(#\\d+)+/},i={className:\"function\",beginKeywords:\"procedure\",end:/[:;]/,keywords:\"procedure|10\",contains:[e.TITLE_MODE,{className:\"params\",begin:/\\(/,end:/\\)/,keywords:n,contains:[r,s]}].concat(a)},o={className:\"class\",begin:\"OBJECT (Table|Form|Report|Dataport|Codeunit|XMLport|MenuSuite|Page|Query) (\\\\d+) ([^\\\\r\\\\n]+)\",returnBegin:!0,contains:[e.TITLE_MODE,i]};return{case_insensitive:!0,keywords:{keyword:n,literal:\"false true\"},illegal:/\\/\\*/,contains:[r,s,{className:\"number\",begin:\"\\\\b\\\\d+(\\\\.\\\\d+)?(DT|D|T)\",relevance:0},{className:\"string\",begin:'\"',end:'\"'},e.NUMBER_MODE,o,i]}};"}, "hash" : "f83f9fb0c2690cbe746a43b18d120c15", "cacheData" : {"env" : {}}} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "includedInParent": {"type": "boolean"}, "mtime": {"type": "integer"}}, "required": ["name", "includedInParent", "mtime"]}}, "generated": {"type": "object", "properties": {"js": {"type": "string"}}, "required": ["js"]}, "hash": {"type": "string"}, "cacheData": {"type": "object", "properties": {"env": {"type": "object", "properties": {}, "required": []}}, "required": ["env"]}}, "required": ["dependencies", "generated", "hash", "cacheData"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : [[[-122.346681, 37.811027], [-122.34093, 37.81953], [-122.341039, 37.826457], [-122.317478, 37.832307], [-122.312273, 37.832201], [-122.318746, 37.835417], [-122.319421, 37.836799], [-122.28113, 37.827462], [-122.293994, 37.811415], [-122.297863, 37.813297], [-122.302446, 37.806982], [-122.310768, 37.808798], [-122.320197, 37.809318], [-122.323551, 37.808039], [-122.327803, 37.807658], [-122.328704, 37.809858], [-122.346681, 37.811027]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 7175}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 1125906949, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "2e2ccff65a35cac7cb8633a86eeddb5e", "wof:id" : 1125906949, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [0.88447, 44.96609, 0.88447, 44.96609], "geometry" : {"coordinates" : [0.88447, 44.96609], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"uuid": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "children", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"uuid" : "2d872ff5-2926-4d6a-8510-ae64623446a3", "children" : ["f483dac4-9630-44c3-9e1b-453b45892cd2"], "befores" : [{"name" : "check_ui", "status" : "passed", "start" : 1635095471284, "stop" : 1635095471284}], "start" : 1635095471284, "stop" : 1635095472849} | json_instruct | {"type": "object", "properties": {"uuid": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "children", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x678042580304a7f32dd03b027d90083818dc16a1", "tool" : "honeybadger", "start" : 1565814575.2244756, "end" : 1565814584.4254231, "duration" : 9.200947523117065, "analysis" : [{"errors" : [], "file" : "/unique_chucks/45/0x678042580304a7f32dd03b027d90083818dc16a1.sol", "name" : "EtherealFoundationOwned"}, {"errors" : [], "file" : "/unique_chucks/45/0x678042580304a7f32dd03b027d90083818dc16a1.sol", "name" : "EtherealTipJar"}]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "musicType": {"type": "string"}, "musicNo": {"type": "string"}}, "required": ["title", "author", "musicType", "musicNo"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "\u831c\u3055\u3059-TV\u52a8\u753b\u300a\u590f\u76ee\u53cb\u4eba\u5e10 \u4f0d\u300b\u7247\u5c3e\u66f2", "author" : "Aimer", "musicType" : "\u52a8\u6f2b", "musicNo" : "0007203"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "musicType": {"type": "string"}, "musicNo": {"type": "string"}}, "required": ["title", "author", "musicType", "musicNo"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"version": {"type": "integer"}, "isRoot": {"type": "boolean"}, "tools": {"type": "object", "properties": {"cake.tool": {"type": "object", "properties": {"version": {"type": "string"}, "commands": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "commands"]}, "dotnet-format": {"type": "object", "properties": {"version": {"type": "string"}, "commands": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "commands"]}, "Codecov.Tool": {"type": "object", "properties": {"version": {"type": "string"}, "commands": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "commands"]}}, "required": ["cake.tool", "dotnet-format", "Codecov.Tool"]}}, "required": ["version", "isRoot", "tools"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : 1, "isRoot" : true, "tools" : {"cake.tool" : {"version" : "1.0.0-rc0002", "commands" : ["dotnet-cake"]}, "dotnet-format" : {"version" : "5.0.147901", "commands" : ["dotnet-format"]}, "Codecov.Tool" : {"version" : "1.12.3", "commands" : ["codecov"]}}} | json_instruct | {"type": "object", "properties": {"version": {"type": "integer"}, "isRoot": {"type": "boolean"}, "tools": {"type": "object", "properties": {"cake.tool": {"type": "object", "properties": {"version": {"type": "string"}, "commands": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "commands"]}, "dotnet-format": {"type": "object", "properties": {"version": {"type": "string"}, "commands": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "commands"]}, "Codecov.Tool": {"type": "object", "properties": {"version": {"type": "string"}, "commands": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "commands"]}}, "required": ["cake.tool", "dotnet-format", "Codecov.Tool"]}}, "required": ["version", "isRoot", "tools"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "tournament": {"type": "string"}, "type": {"type": "string"}, "date": {"type": "string"}, "time": {"type": "string"}, "visitor": {"type": "string"}, "visitorScore": {"type": "string"}, "home": {"type": "string"}, "homeScore": {"type": "string"}, "status": {"type": "string"}, "isoDate": {"type": "integer"}, "tournamentName": {"type": "string"}}, "required": ["id", "tournament", "type", "date", "time", "visitor", "visitorScore", "home", "homeScore", "status", "isoDate", "tournamentName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "waterloo_ringette_u14a_2", "tournament" : "waterloo_ringette", "type" : "RR", "date" : "Fri Jan 10", "time" : "9:00A", "visitor" : "Oshawa", "visitorScore" : "1", "home" : "West Ottawa - F", "homeScore" : "5", "status" : "Official", "isoDate" : 1578628800000, "tournamentName" : "Waterloo"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "tournament": {"type": "string"}, "type": {"type": "string"}, "date": {"type": "string"}, "time": {"type": "string"}, "visitor": {"type": "string"}, "visitorScore": {"type": "string"}, "home": {"type": "string"}, "homeScore": {"type": "string"}, "status": {"type": "string"}, "isoDate": {"type": "integer"}, "tournamentName": {"type": "string"}}, "required": ["id", "tournament", "type", "date", "time", "visitor", "visitorScore", "home", "homeScore", "status", "isoDate", "tournamentName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"results" : [{"tech" : 3, "pts" : 633, "connections" : 184830, "capacity" : 441138, "investments" : 2425172}, {"tech" : 1, "pts" : 14, "connections" : 8593, "capacity" : 7164, "investments" : 1031919}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "insurmountability", "definition" : "The state or quality of being insurmountable."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["purescript-featurespec"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cam/image_array" : "2620_cam-image_array_.jpg", "user/angle" : 0.986, "user/throttle" : 0.368, "user/mode" : "user", "pos/pos_x" : 63.00759, "pos/pos_y" : 0.5540763, "pos/pos_z" : 79.85011, "pos/speed" : 10.34668, "pos/cte" : -3.368897, "milliseconds" : 142255} | json_instruct | {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\ud68c\uae30": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4": {"type": "object", "properties": {"\uc0c1\uc815\uc77c": {"type": "array", "items": {"type": "string"}}, "\uc758\uacb0\uc77c": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uba85": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uacb0\uacfc": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\ub85d": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc0c1\uc815\uc77c", "\uc758\uacb0\uc77c", "\ud68c\uc758\uba85", "\ud68c\uc758\uacb0\uacfc", "\ud68c\uc758\ub85d"]}, "parsed_date": {"type": "string"}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4", "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4", "parsed_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\uc758\uc548\uc811\uc218\uc815\ubcf4" : {"\uc758\uc548\ubc88\ud638" : ["040424"], "\uc81c\uc548\uc77c\uc790" : ["1958-06-27"], "\uc81c\uc548\uc790" : ["\uc5c4\uc0c1\uc12d\uc758\uc6d0\uc67814\uc778"], "\ubb38\uc11c" : ["\uc758\uc548\uc6d0\ubb38"], "\uc81c\uc548\ud68c\uae30" : ["\uc81c4\ub300(1958~1960)\uc81c29\ud68c"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4" : {"\uc0c1\uc815\uc77c" : [""], "\uc758\uacb0\uc77c" : ["1958-06-27"], "\ud68c\uc758\uba85" : ["\uc81c28\ud68c\uc81c12\ucc28"], "\ud68c\uc758\uacb0\uacfc" : ["\uc6d0\uc548\uac00\uacb0"], "\ud68c\uc758\ub85d" : [""]}, "parsed_date" : "2021-02-17"} | json_instruct | {"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\ud68c\uae30": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4": {"type": "object", "properties": {"\uc0c1\uc815\uc77c": {"type": "array", "items": {"type": "string"}}, "\uc758\uacb0\uc77c": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uba85": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uacb0\uacfc": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\ub85d": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc0c1\uc815\uc77c", "\uc758\uacb0\uc77c", "\ud68c\uc758\uba85", "\ud68c\uc758\uacb0\uacfc", "\ud68c\uc758\ub85d"]}, "parsed_date": {"type": "string"}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4", "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4", "parsed_date"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"status": {"type": "integer"}, "startTimes": {"type": "array", "items": {"type": "integer"}}, "objectiveValue": {"type": "number"}, "solverRuntimeInMilliseconds": {"type": "integer"}, "optional": {"type": "object", "properties": {}, "required": []}}, "required": ["status", "startTimes", "objectiveValue", "solverRuntimeInMilliseconds", "optional"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status" : 3, "startTimes" : [7, 4, 60, 101, 18, 47, 115, 88, 75, 43], "objectiveValue" : 309.0, "solverRuntimeInMilliseconds" : 0, "optional" : {}} | json_instruct | {"type": "object", "properties": {"status": {"type": "integer"}, "startTimes": {"type": "array", "items": {"type": "integer"}}, "objectiveValue": {"type": "number"}, "solverRuntimeInMilliseconds": {"type": "integer"}, "optional": {"type": "object", "properties": {}, "required": []}}, "required": ["status", "startTimes", "objectiveValue", "solverRuntimeInMilliseconds", "optional"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"html_attributions": {"type": "array", "items": {}}, "results": {"type": "array", "items": {"type": "object", "properties": {"business_status": {"type": "string"}, "geometry": {"type": "object", "properties": {"location": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "viewport": {"type": "object", "properties": {"northeast": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "southwest": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}, "required": ["northeast", "southwest"]}}, "required": ["location", "viewport"]}, "icon": {"type": "string"}, "icon_background_color": {"type": "string"}, "icon_mask_base_uri": {"type": "string"}, "name": {"type": "string"}, "photos": {"type": "array", "items": {"type": "object", "properties": {"height": {"type": "integer"}, "html_attributions": {"type": "array", "items": {"type": "string"}}, "photo_reference": {"type": "string"}, "width": {"type": "integer"}}, "required": ["height", "html_attributions", "photo_reference", "width"]}}, "place_id": {"type": "string"}, "rating": {"type": "integer"}, "reference": {"type": "string"}, "scope": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}, "user_ratings_total": {"type": "integer"}, "vicinity": {"type": "string"}}, "required": ["business_status", "geometry", "icon", "icon_background_color", "icon_mask_base_uri", "name", "photos", "place_id", "rating", "reference", "scope", "types", "user_ratings_total", "vicinity"]}}, "status": {"type": "string"}}, "required": ["html_attributions", "results", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"html_attributions" : [], "results" : [{"business_status" : "OPERATIONAL", "geometry" : {"location" : {"lat" : 25.8215884, "lng" : 90.0115479}, "viewport" : {"northeast" : {"lat" : 25.8230454302915, "lng" : 90.01306033029151}, "southwest" : {"lat" : 25.82034746970849, "lng" : 90.0103623697085}}}, "icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/v1/png_71/school-71.png", "icon_background_color" : "#7B9EB0", "icon_mask_base_uri" : "https://maps.gstatic.com/mapfiles/place_api/icons/v2/school_pinlet", "name" : "Babilgre Government L P School", "photos" : [{"height" : 1944, "html_attributions" : ["<a href=\"https://maps.google.com/maps/contrib/111963372606556996279\">C T K Marak</a>"], "photo_reference" : "Aap_uEBtnnwC9Jc1V3xokQqv0LOiBiCPW2GsXGBANfySk680suhPhAkxgZ50QJx-AyOImuh5rK5FXRux-eSyXKsdW5yBuy4y4DmK26o7dCdfA4MmV-4kNmvgnMqulN2vzu9M2u_igiDwy5dQ_GuMQ-VrwZ0KLzBMWa7h2ieb9ezPa5CL67ps", "width" : 2592}], "place_id" : "ChIJt4y3nZEHWDcRknwEIPcTm2A", "rating" : 1, "reference" : "ChIJt4y3nZEHWDcRknwEIPcTm2A", "scope" : "GOOGLE", "types" : ["primary_school", "school", "point_of_interest", "establishment"], "user_ratings_total" : 1, "vicinity" : "R2C6+JJM, Nolbari"}], "status" : "OK"} | json_instruct | {"type": "object", "properties": {"html_attributions": {"type": "array", "items": {}}, "results": {"type": "array", "items": {"type": "object", "properties": {"business_status": {"type": "string"}, "geometry": {"type": "object", "properties": {"location": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "viewport": {"type": "object", "properties": {"northeast": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "southwest": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}, "required": ["northeast", "southwest"]}}, "required": ["location", "viewport"]}, "icon": {"type": "string"}, "icon_background_color": {"type": "string"}, "icon_mask_base_uri": {"type": "string"}, "name": {"type": "string"}, "photos": {"type": "array", "items": {"type": "object", "properties": {"height": {"type": "integer"}, "html_attributions": {"type": "array", "items": {"type": "string"}}, "photo_reference": {"type": "string"}, "width": {"type": "integer"}}, "required": ["height", "html_attributions", "photo_reference", "width"]}}, "place_id": {"type": "string"}, "rating": {"type": "integer"}, "reference": {"type": "string"}, "scope": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}, "user_ratings_total": {"type": "integer"}, "vicinity": {"type": "string"}}, "required": ["business_status", "geometry", "icon", "icon_background_color", "icon_mask_base_uri", "name", "photos", "place_id", "rating", "reference", "scope", "types", "user_ratings_total", "vicinity"]}}, "status": {"type": "string"}}, "required": ["html_attributions", "results", "status"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"os": {"type": "string"}, "python": {"type": "string"}, "heartbeatAt": {"type": "string"}, "startedAt": {"type": "string"}, "docker": {"type": "null"}, "cpu_count": {"type": "integer"}, "cuda": {"type": "null"}, "args": {"type": "array", "items": {}}, "state": {"type": "string"}, "program": {"type": "string"}, "codePath": {"type": "string"}, "git": {"type": "object", "properties": {"remote": {"type": "string"}, "commit": {"type": "string"}}, "required": ["remote", "commit"]}, "email": {"type": "string"}, "root": {"type": "string"}, "host": {"type": "string"}, "username": {"type": "string"}, "executable": {"type": "string"}}, "required": ["os", "python", "heartbeatAt", "startedAt", "docker", "cpu_count", "cuda", "args", "state", "program", "codePath", "git", "email", "root", "host", "username", "executable"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"os" : "Windows-10-10.0.22000-SP0", "python" : "3.9.1", "heartbeatAt" : "2022-01-20T08:38:12.882852", "startedAt" : "2022-01-20T08:38:09.104706", "docker" : null, "cpu_count" : 8, "cuda" : null, "args" : [], "state" : "running", "program" : "C:\\Users\\Durita Kvilt\\OneDrive\\Menneske orienteret kunstig intelligens\\Machine learning operations\\mlops_fuzzy-fish-waffle\\src\\models\\train_model.py", "codePath" : "src\\models\\train_model.py", "git" : {"remote" : "https://github.com/koldbrandt/mlops_fuzzy-fish-waffle.git", "commit" : "241c5ac7b9a3394e95dde776d577cb471ff76982"}, "email" : "[email protected]", "root" : "C:/Users/Durita Kvilt/OneDrive/Menneske orienteret kunstig intelligens/Machine learning operations/mlops_fuzzy-fish-waffle", "host" : "LAPTOP-SA0HOGOT", "username" : "Durita Kvilt", "executable" : "C:\\Users\\Durita Kvilt\\AppData\\Local\\Programs\\Python\\Python39\\python.exe"} | json_instruct | {"type": "object", "properties": {"os": {"type": "string"}, "python": {"type": "string"}, "heartbeatAt": {"type": "string"}, "startedAt": {"type": "string"}, "docker": {"type": "null"}, "cpu_count": {"type": "integer"}, "cuda": {"type": "null"}, "args": {"type": "array", "items": {}}, "state": {"type": "string"}, "program": {"type": "string"}, "codePath": {"type": "string"}, "git": {"type": "object", "properties": {"remote": {"type": "string"}, "commit": {"type": "string"}}, "required": ["remote", "commit"]}, "email": {"type": "string"}, "root": {"type": "string"}, "host": {"type": "string"}, "username": {"type": "string"}, "executable": {"type": "string"}}, "required": ["os", "python", "heartbeatAt", "startedAt", "docker", "cpu_count", "cuda", "args", "state", "program", "codePath", "git", "email", "root", "host", "username", "executable"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 1125869999, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "d2bc4e68a3e94f72992a0172c504376f", "wof:id" : 1125869999}, "bbox" : [7.1073, 46.41987, 7.1073, 46.41987], "geometry" : {"coordinates" : [7.1073, 46.41987], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"polymer": {"type": "string"}, "paper-elements": {"type": "string"}, "iron-elements": {"type": "string"}}, "required": ["polymer", "paper-elements", "iron-elements"]}}, "required": ["name", "description", "main", "authors", "license", "homepage", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "uiuc-better-catalog", "description" : "Improved course explorer & registration system", "main" : "main.js", "authors" : ["Chada Kengradomying", "Fang Lu", "Jingxiang Lin", "Tanitpong"], "license" : "MIT", "homepage" : "https://github.com/ilufang/uiuc-better-catalog", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"polymer" : "Polymer#^1.7.0", "paper-elements" : "PolymerElements/paper-elements#^1.0.7", "iron-elements" : "PolymerElements/iron-elements#^1.0.10"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"polymer": {"type": "string"}, "paper-elements": {"type": "string"}, "iron-elements": {"type": "string"}}, "required": ["polymer", "paper-elements", "iron-elements"]}}, "required": ["name", "description", "main", "authors", "license", "homepage", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["description", "homepage"]}, "versions": {"type": "object", "properties": {"0.3.0.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.3.0.0"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"latest_version" : ["0.3.0.0"], "meta" : {"description" : "Execute SQL code against data contained in one or more comma-separated-value (CSV) files", "homepage" : "none"}, "versions" : {"0.3.0.0" : {"sha256" : "0a29601a2b490d430e91d087e47955b9a95164a34b2964e47506c1b3c522bbbf", "url" : "https://files.pythonhosted.org/packages/2f/37/d23827998c941d34d89eefadffceed6fcf197e6c16e417ebea8d2d221806/querycsv-0.3.0.0.zip"}}} | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["description", "homepage"]}, "versions": {"type": "object", "properties": {"0.3.0.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.3.0.0"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "import { DEFAULT_LOCALE } from '../../i18n/index';\nimport { CHANGE_LOCALE_SUCCESS } from '../../actions/localeActions';\nexport default (function (initialLocale) {\n if (initialLocale === void 0) {\n initialLocale = DEFAULT_LOCALE;\n }\n\n return function (previousLocale, action) {\n if (previousLocale === void 0) {\n previousLocale = initialLocale;\n }\n\n switch (action.type) {\n case CHANGE_LOCALE_SUCCESS:\n return action.payload.locale;\n\n default:\n return previousLocale;\n }\n };\n});", "map" : null, "metadata" : {}, "sourceType" : "module"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"x" : 0.00777444, "y" : 0.4214}, {"x" : 0.0318074, "y" : 0.5463}, {"x" : 0.0705942, "y" : 0.6349}, {"x" : 0.141424, "y" : 0.6902}, {"x" : 0.320161, "y" : 0.7442}, {"x" : 0.714109, "y" : 0.8072}, {"x" : 1.4395, "y" : 0.8648}, {"x" : 3.28451, "y" : 0.9238}, {"x" : 7.28141, "y" : 0.9648}, {"x" : 12.3978, "y" : 0.9784}, {"x" : 17.4361, "y" : 0.9824}, {"x" : 22.4477, "y" : 0.9839}, {"x" : 27.4683, "y" : 0.9849}, {"x" : 32.4813, "y" : 0.9857}, {"x" : 37.4863, "y" : 0.9861}, {"x" : 42.4965, "y" : 0.986}, {"x" : 47.49, "y" : 0.9854}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"translations": {"type": "object", "properties": {"fr": {"type": "string"}, "en": {"type": "string"}}, "required": ["fr", "en"]}, "rarity": {"type": "integer"}, "power": {"type": "integer"}, "nature": {"type": "integer"}, "french_masculine": {"type": "integer"}, "french_plural": {"type": "integer"}}, "required": ["translations", "rarity", "power", "nature", "french_masculine", "french_plural"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"translations" : {"fr" : "\ud83c\udfb0 **Machine \u00e0 sous**", "en" : "\ud83c\udfb0 **Slot machine**"}, "rarity" : 4, "power" : 142, "nature" : 6, "french_masculine" : 0, "french_plural" : 0} | json_instruct | {"type": "object", "properties": {"translations": {"type": "object", "properties": {"fr": {"type": "string"}, "en": {"type": "string"}}, "required": ["fr", "en"]}, "rarity": {"type": "integer"}, "power": {"type": "integer"}, "nature": {"type": "integer"}, "french_masculine": {"type": "integer"}, "french_plural": {"type": "integer"}}, "required": ["translations", "rarity", "power", "nature", "french_masculine", "french_plural"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"documentSentiment": {"type": "object", "properties": {"magnitude": {"type": "number"}, "score": {"type": "number"}}, "required": ["magnitude", "score"]}, "language": {"type": "string"}, "sentences": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "object", "properties": {"content": {"type": "string"}, "beginOffset": {"type": "integer"}}, "required": ["content", "beginOffset"]}, "sentiment": {"type": "object", "properties": {"magnitude": {"type": "number"}, "score": {"type": "number"}}, "required": ["magnitude", "score"]}}, "required": ["text", "sentiment"]}}}, "required": ["documentSentiment", "language", "sentences"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"documentSentiment" : {"magnitude" : 0.6, "score" : -0.6}, "language" : "en", "sentences" : [{"text" : {"content" : "Well, I stand up next to a mountain \rAnd I chop it down with the edge of my hand \rYeah \rWell, I stand up next to a mountain \rAnd I chop it down with the edge of my hand \rWell, I pick up all the pieces and make an island \rMight even raise a little sand \rYeah \r'Cause I'm a voodoo child \rLord knows I'm a voodoo child baby \rI want to say one more last thing \rI didn't mean to take up all your sweet time \rI'll give it right back to ya one of these days \rHahaha \rI said I didn't mean to take up all your sweet time \rI'll give it right back one of these days \rOh yeah \rIf I don't meet you no more in this world then uh \rI'll meet ya on the next one \rAnd don't be late \rDon't be late \r'Cause I'm a voodoo child voodoo child \rLord knows I'm a voodoo child \rHey hey hey \rI'm a voodoo child baby \rI don't take no for an answer \rQuestion no \rYeah", "beginOffset" : 0}, "sentiment" : {"magnitude" : 0.6, "score" : -0.6}}]} | json_instruct | {"type": "object", "properties": {"documentSentiment": {"type": "object", "properties": {"magnitude": {"type": "number"}, "score": {"type": "number"}}, "required": ["magnitude", "score"]}, "language": {"type": "string"}, "sentences": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "object", "properties": {"content": {"type": "string"}, "beginOffset": {"type": "integer"}}, "required": ["content", "beginOffset"]}, "sentiment": {"type": "object", "properties": {"magnitude": {"type": "number"}, "score": {"type": "number"}}, "required": ["magnitude", "score"]}}, "required": ["text", "sentiment"]}}}, "required": ["documentSentiment", "language", "sentences"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "AGAR", "frequency" : 135, "males" : "1.4814814814814816 %", "females" : "98.51851851851852 %"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"_comment": {"type": "string"}, "device_password": {"type": "string"}, "device_groupid": {"type": "string"}}, "required": ["_comment", "device_password", "device_groupid"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_comment" : "Set a default device password, and set the 'device_groupid' field to the TeamViewer group ID of the 'Unassigned' group (create if necessary).", "device_password" : "xxxx", "device_groupid" : "123456789"} | json_instruct | {"type": "object", "properties": {"_comment": {"type": "string"}, "device_password": {"type": "string"}, "device_groupid": {"type": "string"}}, "required": ["_comment", "device_password", "device_groupid"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id_5153": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_5153"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id_5153" : {"publicdate" : "2011-04-21 21:20:31", "title" : "The Doctor's Dilemma"}} | json_instruct | {"type": "object", "properties": {"id_5153": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_5153"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"uuid": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"uuid" : "1369a8f1-aeba-47b4-985d-ac264a710f7f", "befores" : [{"name" : "atom_masses", "status" : "passed", "start" : 1635703664328, "stop" : 1635703664329}], "start" : 1635703664328, "stop" : 1635703664349} | json_instruct | {"type": "object", "properties": {"uuid": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "trap_type": {"type": "string"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "trap_type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 71060915, "name" : "Feather Wind", "is_illegal" : false, "is_custom" : false, "text" : "When a Spell/Trap Card is activated while you control a face-up \"Elemental HERO Avian\": Negate the activation and destroy it.", "images" : ["https://storage.googleapis.com/ygoprodeck.com/pics/71060915.jpg"], "type" : "Trap", "trap_type" : "Counter"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "trap_type": {"type": "string"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "trap_type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x452af6c2068d2158081b97c7e0185fe418bcd8ee", "tool" : "honeybadger", "start" : 1565831057.4214604, "end" : 1565831115.7784028, "duration" : 58.35694241523743, "analysis" : [{"errors" : [], "file" : "/unique_chucks/27/0x452af6c2068d2158081b97c7e0185fe418bcd8ee.sol", "name" : "SKWVesting1"}, {"errors" : [], "file" : "/unique_chucks/27/0x452af6c2068d2158081b97c7e0185fe418bcd8ee.sol", "name" : "SafeMath"}]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"geometry" : {"type" : "Point", "coordinates" : [-92.15, 31.21]}, "type" : "Feature", "id" : "71331", "properties" : {"other_cities" : "Vick", "city" : "Effie", "state" : "LA", "county" : "Avoyelles Parish"}} | json_instruct | {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"username": {"type": "string"}, "additional_items": {"type": "array", "items": {}}, "items": {"type": "object", "properties": {"1": {"type": "string"}, "3": {"type": "string"}, "2": {"type": "string"}, "5": {"type": "string"}, "4": {"type": "string"}}, "required": ["1", "3", "2", "5", "4"]}, "tweet_id": {"type": "string"}, "timespent": {"type": "number"}, "starttime": {"type": "number"}, "itemcount": {"type": "string"}, "savingtime": {"type": "number"}}, "required": ["username", "additional_items", "items", "tweet_id", "timespent", "starttime", "itemcount", "savingtime"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"username" : "user01", "additional_items" : [], "items" : {"1" : "negative", "3" : "neutral", "2" : "negative", "5" : "negative", "4" : "negative"}, "tweet_id" : "572762596882952192", "timespent" : 12.989162921906, "starttime" : 1429609094.8298, "itemcount" : "5", "savingtime" : 1429609107.819} | json_instruct | {"type": "object", "properties": {"username": {"type": "string"}, "additional_items": {"type": "array", "items": {}}, "items": {"type": "object", "properties": {"1": {"type": "string"}, "3": {"type": "string"}, "2": {"type": "string"}, "5": {"type": "string"}, "4": {"type": "string"}}, "required": ["1", "3", "2", "5", "4"]}, "tweet_id": {"type": "string"}, "timespent": {"type": "number"}, "starttime": {"type": "number"}, "itemcount": {"type": "string"}, "savingtime": {"type": "number"}}, "required": ["username", "additional_items", "items", "tweet_id", "timespent", "starttime", "itemcount", "savingtime"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"t" : "silsilen", "h" : [{"d" : [{"f" : "\u628a\u2026\u5206\u6210\u4efd\u5206\u767c\u3002", "e" : ["\ufff9`Silsil~`e~`n~ `ko~ `'odax~ `no~ `wawa~.\ufffa\ufffb\u628a\u5b69\u5b50\u7684\u7cd6\u679c\u5206\u6210\u767c\u3002"]}, {"f" : "\u628a\u2026\u6492\u653e\u3001\u6492\u4e0b\u3002", "e" : ["\ufff9`Silsil~`e~`n~ `ko~ `koyasi~ `i~ `omah~.\ufffa\ufffb\u628a\u80a5\u6599\u6492\u653e\u5730\u88e1\u3002"], "s" : ["`yasyasen~"]}]}], "stem" : "silsil"} | json_instruct | {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "cookie-parser": {"type": "string"}, "express": {"type": "string"}, "jade": {"type": "string"}, "morgan": {"type": "string"}, "mysql": {"type": "string"}, "opts": {"type": "string"}, "socket.io": {"type": "string"}, "socket.io-redis": {"type": "string"}}, "required": ["body-parser", "cookie-parser", "express", "jade", "morgan", "mysql", "opts", "socket.io", "socket.io-redis"]}, "description": {"type": "string"}, "main": {"type": "string"}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "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", "private", "scripts", "dependencies", "description", "main", "devDependencies", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "socket.io-redis-sample", "version" : "0.0.2", "private" : true, "scripts" : {"start" : "node app"}, "dependencies" : {"body-parser" : "^1.7.0", "cookie-parser" : "^1.3.2", "express" : "^4.8.7", "jade" : "^1.6.0", "morgan" : "^1.3.0", "mysql" : "^2.5.5", "opts" : "^1.2.2", "socket.io" : "^1.0.6", "socket.io-redis" : "^0.1.3"}, "description" : "This is simple node.js application with Express.js 4, Socket.IO 1.x and socket.io-redis.", "main" : "app.js", "devDependencies" : {}, "repository" : {"type" : "git", "url" : "git://github.com/stoshiya/socket.io-redis-sample.git"}, "author" : "Toshiya SAITOH <[email protected]>", "license" : "MIT", "bugs" : {"url" : "https://github.com/stoshiya/socket.io-RedisStore-sample/issues"}, "homepage" : "https://github.com/stoshiya/socket.io-RedisStore-sample"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "cookie-parser": {"type": "string"}, "express": {"type": "string"}, "jade": {"type": "string"}, "morgan": {"type": "string"}, "mysql": {"type": "string"}, "opts": {"type": "string"}, "socket.io": {"type": "string"}, "socket.io-redis": {"type": "string"}}, "required": ["body-parser", "cookie-parser", "express", "jade", "morgan", "mysql", "opts", "socket.io", "socket.io-redis"]}, "description": {"type": "string"}, "main": {"type": "string"}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "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", "private", "scripts", "dependencies", "description", "main", "devDependencies", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["430482101002", "\u67cf\u574a\u5c45\u59d4\u4f1a", "121", "0"], ["430482101003", "\u65b0\u8857\u5c45\u59d4\u4f1a", "121", "0"], ["430482101004", "\u6768\u5bb6\u6e7e\u5c45\u59d4\u4f1a", "121", "0"], ["430482101200", "\u5c0f\u67cf\u6751\u59d4\u4f1a", "220", "0"], ["430482101201", "\u6597\u5cad\u6751\u59d4\u4f1a", "220", "0"], ["430482101203", "\u8881\u76ca\u6751\u59d4\u4f1a", "220", "0"], ["430482101204", "\u4e1c\u767d\u6751\u59d4\u4f1a", "220", "0"], ["430482101206", "\u6850\u5e02\u6751\u59d4\u4f1a", "220", "0"], ["430482101207", "\u65b0\u5efa\u6751\u59d4\u4f1a", "220", "0"], ["430482101211", "\u6613\u5858\u6751\u59d4\u4f1a", "220", "0"], ["430482101213", "\u7ea2\u6ce5\u6751\u59d4\u4f1a", "220", "0"], ["430482101214", "\u5b9c\u5143\u6751\u59d4\u4f1a", "220", "0"], ["430482101218", "\u8346\u6797\u6751\u59d4\u4f1a", "220", "0"], ["430482101220", "\u6c99\u6c34\u6751\u59d4\u4f1a", "220", "0"], ["430482101223", "\u5927\u576a\u6751\u59d4\u4f1a", "220", "0"], ["430482101227", "\u9ca4\u9c7c\u6751\u59d4\u4f1a", "220", "0"], ["430482101228", "\u4e07\u677e\u6751\u59d4\u4f1a", "220", "0"], ["430482101230", "\u8054\u5408\u6751\u59d4\u4f1a", "220", "0"], ["430482101232", "\u67cf\u574a\u6751\u59d4\u4f1a", "122", "0"], ["430482101234", "\u5927\u65b0\u6751\u59d4\u4f1a", "122", "0"], ["430482101238", "\u65b0\u67cf\u6751\u59d4\u4f1a", "220", "0"], ["430482101239", "\u8bae\u6cc9\u6751\u59d4\u4f1a", "220", "0"], ["430482101240", "\u65b0\u5bcc\u6751\u59d4\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site-address": {"type": "string"}, "start-date": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "site-plan-url": {"type": "string"}, "hectares": {"type": "string"}, "notes": {"type": "string"}, "organisation": {"type": "string"}, "point": {"type": "string"}, "site": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "name": {"type": "string"}, "deliverable": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site-address", "start-date", "minimum-net-dwellings", "site-plan-url", "hectares", "notes", "organisation", "point", "site", "maximum-net-dwellings", "name", "deliverable", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-2.209831, 53.462305]}, "properties" : {"site-address" : "328-336 Stockport Road", "start-date" : "2019-12-31", "minimum-net-dwellings" : "96", "site-plan-url" : "https://mappinggm.org.uk/gmodin/?lyrs=brownfield_2019_gm#os_maps_light/18/53.462305/-2.209831", "hectares" : "0.309921", "notes" : "Approx 'MinNetDwellings' expected however proposals for a higher number of dwellings will be considered. No maximum has been set but all proposals must be in line with the Council's design quality requirements and any relevant Council-endorsed planning framework or masterplan", "organisation" : "local-authority-eng:MAN", "point" : "POINT(-2.209831 53.462305)", "site" : "Ardw1901", "maximum-net-dwellings" : "96", "name" : "Ardw1901", "deliverable" : "yes", "slug" : "/brownfield-land/local-authority-eng/MAN/Ardw1901", "entity" : 487195, "entry-date" : "2019-12-31"}} | 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-address": {"type": "string"}, "start-date": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "site-plan-url": {"type": "string"}, "hectares": {"type": "string"}, "notes": {"type": "string"}, "organisation": {"type": "string"}, "point": {"type": "string"}, "site": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "name": {"type": "string"}, "deliverable": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site-address", "start-date", "minimum-net-dwellings", "site-plan-url", "hectares", "notes", "organisation", "point", "site", "maximum-net-dwellings", "name", "deliverable", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.