input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "numbe...
{"locationData" : {"relativeBoundingBox" : {"xmin" : 0.17796732, "width" : 0.0630016, "ymin" : 0.41816747, "height" : 0.112002954}, "relativeKeypoints" : [{"y" : 0.50216824, "x" : 0.17659926}, {"y" : 0.45333254, "x" : 0.23771039}, {"y" : 0.45001003, "x" : 0.23516063}, {"y" : 0.45395306, "x" : 0.22906114}, {"y" : 0.4616...
json_instruct
{"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "number"}}, "required": ["xmin", "width", "ymin", "height"]}, "relativeKeyp...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "child_ref": {"type": "array", "items": {"type": "string"}}, "children": {"type": "object", "properties": {"Owner": {"type": "object", "properties": {"description": {"type": "string"}...
{"type" : "compound", "child_ref" : ["../ref/entity.json"], "children" : {"Owner" : {"description" : "UUID of the entity that made this llama spit", "type" : "compound", "children" : {"OwnerUUIDMost" : {"type" : "long", "description" : "UUIDMost of the owner"}, "OwnerUUIDLeast" : {"type" : "long", "description" : "UUID...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "child_ref": {"type": "array", "items": {"type": "string"}}, "children": {"type": "object", "properties": {"Owner": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}, "children": {"type": "object", "properties": ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"internal_motor_pid": {"type": "array", "items": {"type": "integer"}}, "tilter_pid_consts": {"type": "array", "items": {"type": "integer"}}, "front_right_port": {"type": "integer"}, "back_left_port": {"type": "intege...
{"internal_motor_pid" : [1, 0, 0, 0], "tilter_pid_consts" : [1, 0, 0, 0], "front_right_port" : 20, "back_left_port" : 4, "front_left_port" : 18, "back_right_port" : 2, "left_intake_port" : 6, "right_intake_port" : 8, "tilter_port" : 19, "lift_port" : 9, "front_right_reversed" : 0, "back_left_reversed" : 1, "front_left_...
json_instruct
{"type": "object", "properties": {"internal_motor_pid": {"type": "array", "items": {"type": "integer"}}, "tilter_pid_consts": {"type": "array", "items": {"type": "integer"}}, "front_right_port": {"type": "integer"}, "back_left_port": {"type": "integer"}, "front_left_port": {"type": "integer"}, "back_right_port": {"type...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"assessment": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "integer"}}, "required": ["name", "weight"]}}}, "required": ["assessment"], "$schema": "http://...
{"assessment" : [{"name" : "Tutorials & Workshop Participation / Submissions ", "weight" : 20}, {"name" : "Draft Case Study Report", "weight" : 10}, {"name" : "Student Case Study presentations", "weight" : 15}, {"name" : "Final Case Study Report", "weight" : 50}, {"name" : "Peer Assessment of two Case Study Submissions...
json_instruct
{"type": "object", "properties": {"assessment": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "integer"}}, "required": ["name", "weight"]}}}, "required": ["assessment"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"JavaScript": {"type": "integer"}, "CSS": {"type": "integer"}, "HTML": {"type": "integer"}}, "required": ["JavaScript", "CSS", "HTML"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"JavaScript" : 100655, "CSS" : 17614, "HTML" : 2580}
json_instruct
{"type": "object", "properties": {"JavaScript": {"type": "integer"}, "CSS": {"type": "integer"}, "HTML": {"type": "integer"}}, "required": ["JavaScript", "CSS", "HTML"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"profiles": {"type": "object", "properties": {"Cli": {"type": "object", "properties": {"commandName": {"type": "string"}, "commandLineArgs": {"type": "string"}}, "required": ["commandName", "commandLineArgs"]}}, "required": ["C...
{"profiles" : {"Cli" : {"commandName" : "Project", "commandLineArgs" : "source.vtl -m test_model.json -d Json -t tsql -n Json -o output.sql -c -v"}}}
json_instruct
{"type": "object", "properties": {"profiles": {"type": "object", "properties": {"Cli": {"type": "object", "properties": {"commandName": {"type": "string"}, "commandLineArgs": {"type": "string"}}, "required": ["commandName", "commandLineArgs"]}}, "required": ["Cli"]}}, "required": ["profiles"], "$schema": "http://json-s...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "labels": {"type": "array", "items": {"type": "string"}}, "data": {"type": "object", "properties": {"name": {"type": "string"}, "latLng": {"type": "object", "properties": {"lat": {"type": "number"}, "l...
{"id" : "n68", "labels" : ["MapMarker"], "data" : {"name" : "n68", "latLng" : {"lat" : 25.085598897064752, "lng" : -79.8046875}, "markerStyle" : "image"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "labels": {"type": "array", "items": {"type": "string"}}, "data": {"type": "object", "properties": {"name": {"type": "string"}, "latLng": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "mar...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"data": {"type": "object", "properties": {"html": {"type": "string"}}, "required": ["html"]}, "code": {"type": "integer"}}, "required": ["data", "code"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"data" : {"html" : "PGgzPuWmguS9lemBv+WFjeatu+mUge+8nzwvaDM+CjxociAvPgo8cD5KYXZhIOWkmue6v+eoi+S4reeahOatu+mUgSDmrbvplIHmmK/mjIfkuKTkuKrmiJbkuKTkuKrku6XkuIrnmoTov5vnqIvlnKjmiafooYzov4fnqIvkuK3vvIzlm6DkuonlpLrotYTmupDogIzpgKDmiJDnmoTkuIDnp43kupLnm7jnrYnlvoXnmoTnjrDosaHvvIzoi6Xml6DlpJblipvkvZznlKjvvIzlroPku6zpg73lsIbml6D...
json_instruct
{"type": "object", "properties": {"data": {"type": "object", "properties": {"html": {"type": "string"}}, "required": ["html"]}, "code": {"type": "integer"}}, "required": ["data", "code"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"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":...
{"id" : 20938, "title" : ["[Monsoon Jungle, Interior]"], "description" : ["Fresh salt air travels downstream from the unseen ocean, mingling with the smells of mango and fresh greenery. Following the flow of the river, trees laden with globular green and red fruit line the water's edge in clustered stands. Between th...
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": {"20939"...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "...
{"name" : "Leetsaver", "description" : "This allows users to bookmark their important links in the discuss section or the solution section of LeetCode", "version" : "1.0.0", "manifest_version" : 2, "browser_action" : {"default_icon" : "logo2.png", "default_popup" : "index.html"}, "commands" : {"_execute_action" : {"sug...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_ico...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"test2": {"type": "string"}}, "required": ["test2"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"test2" : "Test2"}
json_instruct
{"type": "object", "properties": {"test2": {"type": "string"}}, "required": ["test2"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following 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": "st...
{"\uc758\uc548\uc811\uc218\uc815\ubcf4" : {"\uc758\uc548\ubc88\ud638" : ["2105246"], "\uc81c\uc548\uc77c\uc790" : ["2020-11-12"], "\uc81c\uc548\uc790" : ["\uc548\ubbfc\uc11d\uc758\uc6d0\ub4f112\uc778"], "\ubb38\uc11c" : ["\uc758\uc548\uc6d0\ubb38"], "\uc81c\uc548\ud68c\uae30" : ["\uc81c21\ub300(2020~2024)\uc81c382\ud68...
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": "s...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"specials": {"type": "object", "properties": {"holy": {"type": "object", "properties": {"azerite": {"type": "object", "properties": {"Radiant Incandescence": {"type": "string"}, "Zealotry": {"type": "string"}, "Martyr...
{"specials" : {"holy" : {"azerite" : {"Radiant Incandescence" : "452:!!ILVL!!", "Zealotry" : "396:!!ILVL!!", "Martyr's Breath" : "139:!!ILVL!!", "Avenger's Might" : "125:!!ILVL!!", "Synergistic Growth" : "102:!!ILVL!!", "Moment of Compassion" : "188:!!ILVL!!", "Breaking Dawn" : "394:!!ILVL!!", "Divine Revelations" : "2...
json_instruct
{"type": "object", "properties": {"specials": {"type": "object", "properties": {"holy": {"type": "object", "properties": {"azerite": {"type": "object", "properties": {"Radiant Incandescence": {"type": "string"}, "Zealotry": {"type": "string"}, "Martyr's Breath": {"type": "string"}, "Avenger's Might": {"type": "string"}...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"900025168": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900025169": {"type": "object", "properties": {"n...
{"900025168" : {"nama" : "TPS 1", "dapil" : [1203, 11211, 2120603]}, "900025169" : {"nama" : "TPS 2", "dapil" : [1203, 11211, 2120603]}, "900025170" : {"nama" : "TPS 3", "dapil" : [1203, 11211, 2120603]}, "900025171" : {"nama" : "TPS 4", "dapil" : [1203, 11211, 2120603]}}
json_instruct
{"type": "object", "properties": {"900025168": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900025169": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"images": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "dataset_id": {"type": "integer"}, "path": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "file...
{"images" : [{"id" : 32, "dataset_id" : 13, "path" : "/datasets/3key/val/p.jpg", "width" : 1280, "height" : 720, "file_name" : "p.jpg"}], "categories" : [{"id" : 7, "name" : "pink-fla", "supercategory" : "", "color" : "#1e5af0", "metadata" : {}, "keypoints" : ["head", "neck", "body"], "skeleton" : []}], "annotations" :...
json_instruct
{"type": "object", "properties": {"images": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "dataset_id": {"type": "integer"}, "path": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "file_name": {"type": "string"}}, "required": ["id", "dataset_id...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required"...
{"track" : "julia", "exercise" : "collatz-conjecture", "id" : "8182f90586524e55a9a877116748b5ca", "url" : "https://exercism.io/my/solutions/8182f90586524e55a9a877116748b5ca", "handle" : "bovine3dom", "is_requester" : true, "auto_approve" : false}
json_instruct
{"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_reques...
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "321112100200", "text" : "\u9ad8\u6865\u6751\u59d4\u4f1a"}, {"id" : "321112100201", "text" : "\u9547\u626c\u6751\u59d4\u4f1a"}, {"id" : "321112100202", "text" : "\u5eb7\u6cf0\u6751\u59d4\u4f1a"}, {"id" : "321112100203", "text" : "\u4eac\u6c5f\u6751\u59d4\u4f1a"}, {"id" : "321112100204", "text" : "\u5b89\u4e30\...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "preinstall": {"type":...
{"name" : "hs-form-search", "version" : "1.0.0", "description" : "Form Search", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "preinstall" : "npx npm-force-resolutions"}, "resolutions" : {"js-yaml" : "4.1.0", "is-svg" : "4.3.0", "glob-parent" : "5.1.2"}, "author" : "HS", "dev...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "preinstall": {"type": "string"}}, "required": ["test", "preinstall"]}, "resolutions": {"ty...
Please provide a valid JSON object following this 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": ...
{"n_dim" : 5, "n_trials" : 130, "objective" : "markowitz_skew_on_cube", "white" : "hebo_batch", "black" : "pymoo_unsga3", "traceback" : ["passing", "passing"], "best_val" : [-0.05105728370508207, -0.013020783590886376], "best_x" : [[5.4344414477810045e-05, 0.0007797625521602397, 0.9993779113647693, 9.0986061673732e-07,...
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": {...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"version": {"type": "string"}, "book": {"type": "string"}, "chapter": {"type": "integer"}, "verse": {"type": "integer"}, "word": {"type": "string"}}, "required": ["version", "book", "chapter", "verse", "word"], ...
{"version" : "english_NIV", "book" : "Joshua", "chapter" : 13, "verse" : 22, "word" : "In addition to those slain in battle, the Israelites had put to the sword Balaam son of Beor, who practiced divination."}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "book": {"type": "string"}, "chapter": {"type": "integer"}, "verse": {"type": "integer"}, "word": {"type": "string"}}, "required": ["version", "book", "chapter", "verse", "word"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "t...
{"directions" : ["Combine potatoes, onion, turkey, ham, celery, carrots, asparagus, peas, and butternut squash in a large pot. Pour chicken broth and water over mixture; bring to a boil. Reduce heat to medium and simmer soup until potatoes and squash are tender, 10 to 15 minutes. Stir Italian seasoning, white pepper, s...
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "r...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1996, 6], [1997, 8], [1999, 5], [2000, 5], [2001, 7], [2002, 7], [2003, 7], [2004, 6], [2006, 7], [2009, 6], [2010, 5], [2011, 6], [2012, 6], [2014, 6]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "state": {"type": "string"}, "details": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "prov...
{"id" : "a1", "name" : "an-agreement-name", "state" : "started", "details" : {"id" : "a1", "type" : "agreement", "name" : "an-agreement-name", "provider" : {"id" : "a-provider", "name" : "A provider"}, "client" : {"id" : "a-client", "name" : "A client"}, "creation" : "2020-01-01T17:09:45Z", "expiration" : "2021-01-01T1...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "state": {"type": "string"}, "details": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "provider": {"type": "object", "properties": {"id": {"type": "string"}, "nam...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "valueHash": {"type": "integer"}, "inputsHash": {"type": "integer"}}, "required": ["value", "valueHash", "inputsHash"], "$schema": "http://json-schema.org/dra...
{"value" : ["-deprecation", "-feature", "-unchecked"], "valueHash" : 1320538811, "inputsHash" : -1981949957}
json_instruct
{"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "valueHash": {"type": "integer"}, "inputsHash": {"type": "integer"}}, "required": ["value", "valueHash", "inputsHash"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"netapp_volumes_snapshots_edit_title": {"type": "string"}, "netapp_volumes_snapshots_edit_id_label": {"type": "string"}, "netapp_volumes_snapshots_edit_name_label": {"type": "string"}, "netapp_volumes_snapshots_edit_description...
{"netapp_volumes_snapshots_edit_title" : "Modyfikuj snapshot", "netapp_volumes_snapshots_edit_id_label" : "ID snapshota", "netapp_volumes_snapshots_edit_name_label" : "Nazwa snapshota (opcjonalnie)", "netapp_volumes_snapshots_edit_description_label" : "Opis (opcjonalnie)", "netapp_volumes_snapshots_edit_confirm" : "Zat...
json_instruct
{"type": "object", "properties": {"netapp_volumes_snapshots_edit_title": {"type": "string"}, "netapp_volumes_snapshots_edit_id_label": {"type": "string"}, "netapp_volumes_snapshots_edit_name_label": {"type": "string"}, "netapp_volumes_snapshots_edit_description_label": {"type": "string"}, "netapp_volumes_snapshots_edit...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"Outdoors": {"type": "array", "items": {"type": "string"}}, "Food": {"type": "array", "items": {"type": "string"}}, "Music": {"type": "array", "items": {"type": "string"}}, "Coding": {"type": "array", "items": {"type": "string"...
{"Outdoors" : ["hiking", "skydiving"], "Food" : ["carrots", "raw turnips"], "Music" : ["country", "EDM", "rap"], "Coding" : ["html", "JavaScript", "Java", "Script"]}
json_instruct
{"type": "object", "properties": {"Outdoors": {"type": "array", "items": {"type": "string"}}, "Food": {"type": "array", "items": {"type": "string"}}, "Music": {"type": "array", "items": {"type": "string"}}, "Coding": {"type": "array", "items": {"type": "string"}}}, "required": ["Outdoors", "Food", "Music", "Coding"], "...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"block": {"type": "string"}, "item": {"type": "string"}, "max_drops": {"type": "integer"}, "chance": {"type": "number"}}, "required": ["block", "item", "max_drops", "chance"], "$schema": "http://json-schema.org/draft...
{"block" : "minecraft:coal_ore", "item" : "minecraft:diamond", "max_drops" : 1, "chance" : 0.001}
json_instruct
{"type": "object", "properties": {"block": {"type": "string"}, "item": {"type": "string"}, "max_drops": {"type": "integer"}, "chance": {"type": "number"}}, "required": ["block", "item", "max_drops", "chance"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"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-sch...
{"word" : "Unsentimental", "definitions" : ["Not displaying or influenced by sentimental feelings."], "parts-of-speech" : "Adjective"}
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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"minimum_run_duration": {"type": "number"}, "runs": {"type": "array", "items": {"type": "object", "properties": {"duration": {"type": "integer"}, "start": {"type": "integer"}, "peak": {"type": "number"}, "tags": {"typ...
{"minimum_run_duration" : 100.0, "runs" : [{"duration" : 254, "start" : 251014, "peak" : 71.56365504788695, "tags" : []}, {"duration" : 501, "start" : 1566234, "peak" : 70.99203122998539, "tags" : []}, {"duration" : 180, "start" : 2410674, "peak" : 70.93523730708026, "tags" : []}, {"duration" : 186, "start" : 3263747, ...
json_instruct
{"type": "object", "properties": {"minimum_run_duration": {"type": "number"}, "runs": {"type": "array", "items": {"type": "object", "properties": {"duration": {"type": "integer"}, "start": {"type": "integer"}, "peak": {"type": "number"}, "tags": {"type": "array", "items": {}}}, "required": ["duration", "start", "peak",...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"panels": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "desc": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {...
{"panels" : [{"id" : "1", "title" : "Panel 1", "desc" : "Description 1", "links" : [{"url" : "url1", "title" : "link1"}, {"url" : "url2", "title" : "link2"}, {"url" : "url3", "title" : "link3"}]}, {"id" : "2", "title" : "Panel 2", "desc" : "Description 2", "links" : [{"url" : "url1", "title" : "link1"}, {"url" : "url2"...
json_instruct
{"type": "object", "properties": {"panels": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "desc": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "title": {"type": "string"}}, "requ...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "script...
{"name" : "litstack/2fa", "license" : "MIT", "authors" : [{"name" : "cbl", "email" : "lennart.carbe@gmail.com"}], "scripts" : {"test" : "vendor/bin/phpunit"}, "autoload" : {"psr-4" : {"Litstack\\TwoFA\\" : "src"}}, "autoload-dev" : {"psr-4" : {"Tests\\" : "tests/"}}, "require" : {"bacon/bacon-qr-code" : "^2.0", "pragma...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "scripts": {"type": "object", "properties": {"test": {"type": "s...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"postinstall": {"type": "string"}, "lint": {"type": "string"},...
{"name" : "@susisu/system-f-omega", "version" : "0.0.0", "description" : "", "main" : "index.js", "scripts" : {"postinstall" : "flow-typed install", "lint" : "eslint index.js lib --fix", "flow" : "flow check", "start" : "babel-node index.js", "full" : "npm run lint && npm run flow && npm start"}, "author" : "Susisu <su...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"postinstall": {"type": "string"}, "lint": {"type": "string"}, "flow": {"type": "string"}, "start": {"type": "string"},...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "int...
{"nom" : "Asni\u00e8res-en-Poitou", "dpt" : "Deux-S\u00e8vres", "inscrits" : 144, "abs" : 38, "votants" : 106, "blancs" : 13, "nuls" : 4, "exp" : 89, "res" : [{"panneau" : "1", "voix" : 65}, {"panneau" : "2", "voix" : 24}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"inputs": {"type": "array", "items": {"type": "string"}}, "outputs": {"type": "array", "items": {"type": "string"}}}, "required": ["inputs", "outputs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"inputs" : ["3 1 5\n3 2 5\n2 4 2\n1 2\n", "4 2 11\n2 4 6 6\n6 4 2 1\n1 2\n2 3\n", "10 5 100\n70 67 8 64 28 82 18 61 82 7\n596434 595982 237932 275698 361351 850374 936914 877996 789231 331012\n1 7\n2 4\n3 6\n5 7\n1 5\n", "10 5 100\n64 90 3 94 96 97 52 54 82 31\n796554 444893 214351 43810 684158 555762 686198 339093 38...
json_instruct
{"type": "object", "properties": {"inputs": {"type": "array", "items": {"type": "string"}}, "outputs": {"type": "array", "items": {"type": "string"}}}, "required": ["inputs", "outputs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"examine": {"type": "string"}, "bonuses": {"type": "array", "items": {"type": "integer"}}, "realPrice": {"type": "integer"}}, "required": ["examine", "bonuses", "realPrice"], "$schema": "http://json-schema.org/d...
{"examine" : "Designer leg protection.", "bonuses" : [0, 0, 0, -21, -7, 8, 7, 6, -4, 7, 0, 0, 0, 0, 0, 0, 0, 0], "realPrice" : 71}
json_instruct
{"type": "object", "properties": {"examine": {"type": "string"}, "bonuses": {"type": "array", "items": {"type": "integer"}}, "realPrice": {"type": "integer"}}, "required": ["examine", "bonuses", "realPrice"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", ...
{"place_name" : "Livingston", "state_name" : "Kentucky", "state_abbrv" : "KY", "lat" : "37.3074", "long" : "-84.2318"}
json_instruct
{"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"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" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-72.748878, 41.544279], [-72.734864, 41.544327], [-72.733584, 41.546158], [-72.722879, 41.547952], [-72.711665, 41.548653], [-72.711203, 41.547719], [-72.694554, 41.549531], [-72.688199, 41.538631], [-72.688093, 41.537033...
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": "numbe...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": ...
{"appid" : 522030, "name" : "Eclipse: New Dawn for the Galaxy", "windows" : true, "mac" : true, "linux" : false, "early_access" : false, "lookup_time" : 1491001291}
json_instruct
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "...
{"name" : "react-checkbox-tree", "version" : "0.2.0", "description" : "A simple react tree widget with checkboxes on every level that are separate from the toggling functionality", "main" : "index.js", "scripts" : {"start" : "ENV=dev webpack -p -d --watch", "build" : "rm -rf build && ENV=prod webpack -p && cp ./src/ind...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "build"]}, "repository": {"type": "obj...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "requir...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[141.375, 43.083333333333336], [141.375, 43.166666666666664], [141.5, 43.166666666666664], [141.5, 43.083333333333336], [141.375, 43.083333333333336]]]}, "properties" : {"code" : 644153, "url" : "http://madefor.github.io/0410/api/v1/644153.geojson...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "short_name": {"type": "string"}, "start_url": {"type": "string"}, "display": {"type": "string"}, "background_color": {"type": "string"}, "theme_color": {"type": "string"}, "descripti...
{"name" : "HydroApp", "short_name" : "HydroApp", "start_url" : ".", "display" : "standalone", "background_color" : "#000", "theme_color" : "#24272d", "description" : "A starter Web App", "prefer_related_applications" : false, "icons" : [{"src" : "@public/icon48.png", "sizes" : "48x48", "type" : "image/png"}, {"src" : "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "short_name": {"type": "string"}, "start_url": {"type": "string"}, "display": {"type": "string"}, "background_color": {"type": "string"}, "theme_color": {"type": "string"}, "description": {"type": "string"}, "prefer_related_applications": {"type": "boolean"}...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "emai...
{"name" : "carlescliment/query-builder", "version" : "v1.0.8", "authors" : [{"name" : "Carles Climent", "email" : "carlescliment@gmail.com"}, {"name" : "Stephen O'Flynn", "email" : "flynniec6@gmail.com"}], "require" : {}, "require-dev" : {"phpunit/phpunit" : "*"}, "autoload" : {"psr-0" : {"carlescliment\\QueryBuilder" ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {}, "required": []},...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "attribute": {"type": "string"}, "type": {"type": "string"}, "cmc": {"type": "integer"}, "racesOrTraits": {"type": "array", "items": {}}, "text": {"type": "string"}, "set": {"type": "string...
{"name" : "Art of Sinbad", "attribute" : "Wind", "type" : "Spell:Chant-Instant", "cmc" : 1, "racesOrTraits" : [], "text" : "Prevent the next damage that would be dealt by target resonator.", "set" : "The Moon Priestess Returns", "code" : "MPR-057", "rarity" : "C", "thumbnailImage" : "../assets/img/cards/MPR/057.jpg", "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "attribute": {"type": "string"}, "type": {"type": "string"}, "cmc": {"type": "integer"}, "racesOrTraits": {"type": "array", "items": {}}, "text": {"type": "string"}, "set": {"type": "string"}, "code": {"type": "string"}, "rarity": {"type": "string"}, "thumbn...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "version", "description", "title", "url...
{"name" : "lucy", "version" : "0.1.0", "description" : "lucy tools projetc api docs", "title" : "Lucy Tools API Docs", "url" : "http://api.lucy.singlar.org/v1"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "version", "description", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"atlas": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "string"}, "texrect": {"type": "string"}, "transparent": {"type": "string"}}, "required": ["na...
{"atlas" : [{"name" : "rotate", "size" : "64;64", "texrect" : "0;0;64;64", "transparent" : "255;255;255"}, {"name" : "delete", "size" : "64;64", "texrect" : "64;0;64;64", "transparent" : "255;255;255"}, {"name" : "top", "size" : "64;64", "texrect" : "0;64;64;64", "transparent" : "255;255;255"}, {"name" : "bottom", "siz...
json_instruct
{"type": "object", "properties": {"atlas": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "string"}, "texrect": {"type": "string"}, "transparent": {"type": "string"}}, "required": ["name", "size", "texrect", "transparent"]}}, "file": {"type": "string"}, "resour...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type...
{"geometry" : {"type" : "Point", "coordinates" : [-122.53, 47.75]}, "type" : "Feature", "id" : "98342", "properties" : {"other_cities" : "", "city" : "Indianola", "state" : "WA", "county" : "Kitsap County"}}
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_c...
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...
{"id" : 101759861, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "e6b1cf327af69c74dfc2d87f8e9933b3", "wof:id" : 101759861, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [3.96983185079404, 49.34161745373507, 3.98833293307814, 49.34997451708165...
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": ["...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"workspaceDataFilters": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "columnName": {"type": "string"}, "dataSourceId": {"type": "string"}, "work...
{"workspaceDataFilters" : [{"id" : "Store ID", "title" : "Store ID filter", "columnName" : "store_id", "dataSourceId" : "dvdrental", "workspace" : {"id" : "dvdrental", "type" : "workspace"}, "workspaceDataFilterSettings" : [{"id" : "leithbridge", "title" : "Leithbridge store", "filterValues" : [1], "workspace" : {"id" ...
json_instruct
{"type": "object", "properties": {"workspaceDataFilters": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "columnName": {"type": "string"}, "dataSourceId": {"type": "string"}, "workspace": {"type": "object", "properties": {"id": {"type": "string"}, "ty...
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/d...
[{"year" : 1913, "sex" : "F", "n" : 5, "prop" : 7.63e-06}, {"year" : 1916, "sex" : "F", "n" : 5, "prop" : 4.61e-06}, {"year" : 1919, "sex" : "F", "n" : 7, "prop" : 5.96e-06}, {"year" : 1921, "sex" : "F", "n" : 6, "prop" : 4.69e-06}, {"year" : 1922, "sex" : "F", "n" : 6, "prop" : 4.81e-06}, {"year" : 1924, "sex" : "F", ...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALEN...
{"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "OBS_FREQUENCY_DISTRIBUTION" : {"Y_NUM_PERSONS" : 0, "X_COUNT" : 1}, "OBSERVATIONS_BY_TYPE" : {"CONCEPT_NAME" :...
json_instruct
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRE...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "serve": {"type": "string"}}, "required": ["dev", "build", "serve"]...
{"name" : "react-compostate-vite", "version" : "0.2.1-beta.10", "scripts" : {"dev" : "vite", "build" : "vite build", "serve" : "vite preview"}, "dependencies" : {"compostate" : "0.2.1-beta.10", "react" : "^17.0.0", "react-compostate" : "0.2.1-beta.10", "react-dom" : "^17.0.0"}, "devDependencies" : {"@types/react" : "^1...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "serve": {"type": "string"}}, "required": ["dev", "build", "serve"]}, "dependencies": {"type": "object", "properties": {"compo...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type":...
{"contract" : "0xc84fd2ef1fe4ae7269da00c074d5625447c3f879", "tool" : "mythril", "start" : 1563640252.1339848, "end" : 1563640256.7484646, "duration" : 4.6144797801971436, "analysis" : {"error" : null, "issues" : [], "success" : true}}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "bo...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "eggPlugin": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["name", "description", "eggPlugin"], "$s...
{"name" : "hypertrons-error-manager", "description" : "Error plugin for hypertrons", "eggPlugin" : {"name" : "errorManager"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "eggPlugin": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["name", "description", "eggPlugin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "p...
{"hash" : "0xe6cc09514268fd1b70636496e8a67dadc49d38a9807ffc8e827a21d0e6cb1516", "parentHash" : "0x5af3e9e0f74c64f932777c79c2511470bea9f78e3dadd5779402e30091aee281", "number" : 58239, "timestamp" : 1439117317, "nonce" : "0x208e3b4d23a02084", "difficulty" : 1720836022150, "gasLimit" : {"_hex" : "0x2fe431"}, "gasUsed" : {...
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"rokid_webhook": {"type": "object", "properties": {"version": {"type": "string"}, "local_location": {"type": "string"}, "remote_location": {"type": "string"}, "visit_repo": {"type": "string"}, "changelog": {"type": "s...
{"rokid_webhook" : {"version" : "0.1.3", "local_location" : "/custom_components/rokid_webhook/__init__.py", "remote_location" : "https://raw.githubusercontent.com/jihao/rokid-webhook-hass/master/custom_components/rokid_webhook/__init__.py", "visit_repo" : "https://github.com/jihao/rokid-webhook-hass", "changelog" : "ht...
json_instruct
{"type": "object", "properties": {"rokid_webhook": {"type": "object", "properties": {"version": {"type": "string"}, "local_location": {"type": "string"}, "remote_location": {"type": "string"}, "visit_repo": {"type": "string"}, "changelog": {"type": "string"}, "resources": {"type": "array", "items": {"type": "string"}}}...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"produc...
{"userId" : 97115, "cartId" : "3b119bff-0bf7-40a9-b641-f631264f3889", "preferredProducts" : [700, 207], "productReviews" : [{"productId" : 2403, "reviewText" : "I tried to vomit it but got bonbon all over it.", "reviewDate" : "2016-09-11T15:27:04.8993832+03:00"}, {"productId" : 3509, "reviewText" : "The box this comes ...
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"meta": {"type": "object", "properties": {"title": {"type": "string"}, "titleTemplate": {"type": "string"}, "description": {"type": "string"}, "siteUrl": {"type": "string"}, "image": {"type": "string"}, "twitt...
{"meta" : {"title" : "kohaluka(\u30b3\u30cf\u30eb\u30ab)", "titleTemplate" : "%s", "description" : "\u7de8\u307f\u7269\u3001\u30ec\u30b8\u30f3\u30a2\u30af\u30bb\u30b5\u30ea\u30fc\u3001\u6d88\u3057\u30b4\u30e0\u30cf\u30f3\u30b3\u3001\u7c98\u571f\u30a2\u30af\u30bb\u30b5\u30ea\u30fc\u306a\u3069\u3001\u30cf\u30f3\u30c9\u30...
json_instruct
{"type": "object", "properties": {"meta": {"type": "object", "properties": {"title": {"type": "string"}, "titleTemplate": {"type": "string"}, "description": {"type": "string"}, "siteUrl": {"type": "string"}, "image": {"type": "string"}, "twitterUsername": {"type": "string"}}, "required": ["title", "titleTemplate", "des...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "4aae82cbe2c880ac70684b4f4d3699b3af2de9cd"}
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": {"name": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {...
{"name" : "static-localize", "description" : "This package generates static files for each locale", "bin" : "./bin/static-localize", "author" : "lion-man44 <lion44man@gmail.com>", "license" : "MIT", "version" : "1.2.2", "scripts" : {"dry-test" : "./bin/static-localize --sourceFile ./example/src/index.html --inputYaml ....
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dry-test": {"type": "string"}, "test": {"type": "string"},...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"server": {"type": "object", "properties": {"OS-DCF:diskConfig": {"type": "string"}, "id": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {"href": {"type": "string"}, "rel": {"type":...
{"server" : {"OS-DCF:diskConfig" : "MANUAL", "id" : "26f7fbee-8ce1-4c28-887a-bfe8e4bb10fe", "links" : [{"href" : "http://127.0.0.1/v1.1/68/servers/26f7fbee-8ce1-4c28-887a-bfe8e4bb10fe", "rel" : "self"}, {"href" : "http://127.0.0.1/68/servers/26f7fbee-8ce1-4c28-887a-bfe8e4bb10fe", "rel" : "bookmark"}], "adminPass" : "ra...
json_instruct
{"type": "object", "properties": {"server": {"type": "object", "properties": {"OS-DCF:diskConfig": {"type": "string"}, "id": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {"href": {"type": "string"}, "rel": {"type": "string"}}, "required": ["href", "rel"]}}, "adminPass": {"typ...
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": {"error...
{"contract" : "0xab2dc8c089d59e7c32618eedcac59be8b1e54cba", "tool" : "honeybadger", "start" : 1565800741.3580413, "end" : 1565800858.708683, "duration" : 117.35064172744751, "analysis" : [{"errors" : [], "file" : "/unique_chucks/30/0xab2dc8c089d59e7c32618eedcac59be8b1e54cba.sol", "name" : "Authorizable"}, {"errors" : [...
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": "strin...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"responses": {"type": "array", "items": {"type": "object", "properties": {"labelAnnotations": {"type": "array", "items": {"type": "object", "properties": {"mid": {"type": "string"}, "description": {"type": "string"}, ...
{"responses" : [{"labelAnnotations" : [{"mid" : "/m/09j2d", "description" : "Clothing", "score" : 0.99083328, "topicality" : 0.99083328}, {"mid" : "/m/09j1x", "description" : "Undergarment", "score" : 0.98631626, "topicality" : 0.98631626}, {"mid" : "/m/0hgs8s2", "description" : "Swimsuit bottom", "score" : 0.97311306,...
json_instruct
{"type": "object", "properties": {"responses": {"type": "array", "items": {"type": "object", "properties": {"labelAnnotations": {"type": "array", "items": {"type": "object", "properties": {"mid": {"type": "string"}, "description": {"type": "string"}, "score": {"type": "number"}, "topicality": {"type": "number"}}, "requ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, ...
{"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {"label:cs" : "K\u0159\u00ed\u017e v ulici Dr. Richtra v T\u0159e\u0161ti", "P31" : "http://www.wikidata.org/entity/Q2309609", "P31^label:cs" : "Pam\u011btn\u00ed k\u0159\u00ed\u017e", "P131^label:cs" : "T\u0159e\u0161\u0165", "P6736" : "3...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords":...
{"name" : "angular-primus", "version" : "1.0.1", "homepage" : "https://github.com/neoziro/angular-primus", "authors" : ["Greg Berg\u00e9 <neoziro@gmail.com>"], "description" : "Primus provider for Angular.", "main" : "angular-primus.js", "keywords" : ["primus", "angular", "provider"], "license" : "MIT", "ignore" : ["**...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "...
{"directions" : ["Preheat oven to 375 degrees F (190 degrees C). Bake sweet potatoes until soft, about 45 minutes. Remove potatoes, and set aside until cool enough to handle. Then peel, and place in a large bowl. With a large fork or potato masher, mash potatoes for 15 to 20 seconds (they do not need to be mashed smoot...
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "r...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "isDefault": {"type": "boolean"}, "gains": {"type": "object", "properties": {"global": {"type": "number"}, "bands": {"type": "array", ...
[{"name" : "AKG K518 DJ", "id" : "bf2c16490637a9a04dabf602ad94c01d8a128e2e", "isDefault" : false, "gains" : {"global" : -7.5, "bands" : [6.8, 3.3, 0.6, -2.5, 3.5, -0.8, -2.1, -0.8, 2.1, -0.5]}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "isDefault": {"type": "boolean"}, "gains": {"type": "object", "properties": {"global": {"type": "number"}, "bands": {"type": "array", "items": {"type": "number"}}}, "required": ["global", "bands"]}}, "requ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"editor.detectIndentation": {"type": "boolean"}, "editor.formatOnSave": {"type": "boolean"}, "editor.tabSize": {"type": "integer"}, "eslint.autoFixOnSave": {"type": "boolean"}, "tslint.autoFixOnSave": {"type": "boole...
{"editor.detectIndentation" : false, "editor.formatOnSave" : true, "editor.tabSize" : 2, "eslint.autoFixOnSave" : true, "tslint.autoFixOnSave" : true, "prettier.eslintIntegration" : false, "prettier.parser" : "babylon", "prettier.semi" : false, "prettier.requireConfig" : true, "jest.autoEnable" : false, "clang-format.l...
json_instruct
{"type": "object", "properties": {"editor.detectIndentation": {"type": "boolean"}, "editor.formatOnSave": {"type": "boolean"}, "editor.tabSize": {"type": "integer"}, "eslint.autoFixOnSave": {"type": "boolean"}, "tslint.autoFixOnSave": {"type": "boolean"}, "prettier.eslintIntegration": {"type": "boolean"}, "prettier.par...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, ...
{"author" : {"id" : "t2_6cwa3", "name" : "rougefalcon5"}, "date" : {"day" : 1526860800, "full" : 1526902139, "month" : 1525132800, "week" : 1526774400}, "id" : "t3_8l03ea", "picture" : {"filesize" : 75040, "fullUrl" : "https://external-preview.redd.it/MCkTWLMYtUODiXB76Aj5-W6XE09I3ynVTusNlV2OYQc.jpg?auto=webp&s=f247156d...
json_instruct
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}},...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"defaultApplicationName": {"type": "string"}, "domain": {"type": "string"}, "firstSupportedLocaleWithFallback:": {"type"...
{"class" : {}, "instance" : {"defaultApplicationName" : "pmm 5/8/2010 21:41", "domain" : "pmm 5/8/2010 22:13", "firstSupportedLocaleWithFallback:" : "JohanBrichau 10/2/2014 22:14", "fistSupportedLocaleWithFallback:" : "pmm 10/26/2014 12:13", "localeId" : "pmm 5/10/2010 22:38", "translate:" : "pmm 5/8/2010 21:50", "tran...
json_instruct
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"defaultApplicationName": {"type": "string"}, "domain": {"type": "string"}, "firstSupportedLocaleWithFallback:": {"type": "string"}, "fistSupportedLocaleWithFallback:": {"type":...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "file_url": {"type": "string"}, "custom_fields": {"type": "object", "properties": {"edition": {"type": "integer"}, "date": {"type": "integer"}, "compiler"...
{"name" : "OneForArt #1488 - Ironside Gray", "description" : "A Ironside Gray pixel.", "file_url" : "https://ipfs.io/ipfs/bafkreigsm2pajygy7zfwg4rg6mqvj74x6ajw7fbrpff7wai6lnntgykll4", "custom_fields" : {"edition" : 1, "date" : 1642619894221, "compiler" : "HashLips Art Engine"}, "attributes" : [{"trait_type" : "name", "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "file_url": {"type": "string"}, "custom_fields": {"type": "object", "properties": {"edition": {"type": "integer"}, "date": {"type": "integer"}, "compiler": {"type": "string"}}, "required": ["edition", "date", "compiler"]}, ...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"an3.93:2.1": {"type": "string"}, "an3.93:4.1": {"type": "string"}, "an3.93:6.2": {"type": "string"}, "an3.93:6.4": {"type": "string"}, "an3.93:6.13": {"type": "string"}}, "required": ["an3.93:2.1", "an3.93:4.1", "an3.93:6.2...
{"an3.93:2.1" : "tir\u012b\u1e6d\u0101nipi \u2192 tir\u012b\u1e6dak\u0101nipi (bj, sya-all, pts1ed) | ajinampi \u2192 ajin\u0101nipi (bj, sya-all, pts1ed)", "an3.93:4.1" : "rukkham\u016bla\u1e41 sus\u0101na\u1e41 \u2192 rukkham\u016bla\u1e41 bhus\u0101g\u0101ra\u1e41 sus\u0101na\u1e41 (mr) | bhus\u0101g\u0101ra\u1e41 \...
json_instruct
{"type": "object", "properties": {"an3.93:2.1": {"type": "string"}, "an3.93:4.1": {"type": "string"}, "an3.93:6.2": {"type": "string"}, "an3.93:6.4": {"type": "string"}, "an3.93:6.13": {"type": "string"}}, "required": ["an3.93:2.1", "an3.93:4.1", "an3.93:6.2", "an3.93:6.4", "an3.93:6.13"], "$schema": "http://json-schem...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repositor...
{"name" : "css-diff", "version" : "0.0.1", "description" : "Diff between CSS Files", "main" : "index.js", "scripts" : {"test" : "node src/index.js"}, "repository" : {"type" : "git", "url" : "git+ssh://git@github.com/pankajpatel/css-diff.git"}, "keywords" : ["CSS"], "author" : "Pankaj Patel <patel.pankaj@live.in>", "lic...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "s...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "debug": {"type": "string"}, "dev": {"type": "string"}, "preserve": {"type": "str...
{"name" : "starter-node-app", "private" : true, "scripts" : {"build" : "vite build frontend --outDir ../dist --emptyOutDir", "debug" : "node --inspect-brk backend/index.js", "dev" : "cross-env NODE_ENV=development nodemon backend/index.js --watch ./backend", "preserve" : "npm run build", "serve" : "cross-env NODE_ENV=p...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "debug": {"type": "string"}, "dev": {"type": "string"}, "preserve": {"type": "string"}, "serve": {"type": "string"}, "test": {"type": "string"}}, "requi...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"aalib.js": {"type": "string"}, "netlify-cli": {"type": "string"}, "xterm": {"type"...
{"name" : "masonhall-cli-website", "version" : "0.2.0", "description" : "Mason Hall's awesome website", "dependencies" : {"aalib.js" : "^2.0.0", "netlify-cli" : "^6.14.7", "xterm" : "^4.10.0", "xterm-addon-fit" : "^0.5.0", "xterm-addon-web-links" : "^0.4.0"}, "license" : "MIT", "repository" : {"type" : "git", "url" : "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"aalib.js": {"type": "string"}, "netlify-cli": {"type": "string"}, "xterm": {"type": "string"}, "xterm-addon-fit": {"type": "string"}, "xterm-...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": ...
{"name" : "kredis", "version" : "1.0.4", "repository" : "https://github.com/fractaltech/kredis", "description" : "A simple client for redis with most used functionalities", "main" : "lib/Client.js", "scripts" : {"test" : "babel-node --stage 1 test/main.js", "build" : "npm run clean && babel --stage 1 -D src/ --out-dir ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "watch": {"type": "string"},...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "...
{"version" : 1.2, "people" : [{"pose_keypoints_2d" : [254.346, 134.795, 1, 253.896, 152.512, 1, 242.326, 151.336, 1, 239.252, 171.88, 1, 228.172, 207.923, 1, 269.463, 151.508, 1, 276.745, 172.927, 1, 277.895, 196.847, 1, 247.547, 197.294, 1, 240.006, 245.543, 1, 240.39, 289.559, 1, 263.535, 197.712, 1, 278.076, 242.03,...
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "han...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "publisher": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", ...
{"name" : "theme-material-cosmos", "displayName" : "Material Cosmos", "description" : "Through the cosmos, darkly: a set of dark, flat, material-esque themes.", "version" : "1.0.1", "publisher" : "citycide", "homepage" : "https://github.com/citycide/vscode-cosmos", "repository" : {"type" : "git", "url" : "https://githu...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "publisher": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "reasons": {"type": "array", "items": {"type": "string"}}, "status": {"type": "string"}, "risk_level": {"type": "string"}, "sta...
{"id" : "007-2017", "title" : "Willow Tree Poultry Farm, Inc. Recalls Chicken Salad Products Due To Misbranding", "url" : "https://www.fsis.usda.gov/recalls-alerts/willow-tree-poultry-farm-inc.-recalls-chicken-salad-products-due-misbranding", "reasons" : ["Misbranding"], "status" : "Closed", "risk_level" : "Marginal", ...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "reasons": {"type": "array", "items": {"type": "string"}}, "status": {"type": "string"}, "risk_level": {"type": "string"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}, "summary": {"ty...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": ...
{"userId" : 92204, "cartId" : "018318da-78d7-4434-bbee-19f7149e413a", "preferredProducts" : [1724, 2658, 4613], "productReviews" : [{"productId" : 4053, "reviewText" : "The box this comes in is 3 inch by 6 centimeter and weights 15 ounce!", "reviewDate" : "2018-10-22T16:49:13.6381217+03:00"}, {"productId" : 506, "revie...
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "UsageTypeID"...
{"IsRecentlyVerified" : false, "ID" : 81680, "UUID" : "F95FE857-BFE1-4E13-AA83-0A5F059DB3E9", "DataProviderID" : 1, "OperatorID" : 23, "OperatorsReference" : "19385", "UsageTypeID" : 6, "AddressInfo" : {"ID" : 82026, "Title" : "Corporativo Lomas Cantabria A.c.", "AddressLine1" : "Cerrada de Palomas 22 Reforma Social", ...
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "p...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2f9\uc120\ud69f\uc2...
{"\uc774\ub984" : "\uc815\ud0dc\uc601", "\ud55c\ubb38\uba85" : "\u912d\u6cf0\u69ae", "\uc0dd\ub144\uc6d4\uc77c" : "1934-02-10", "\uc815\ub2f9" : "\ud1b5\uc77c\uad6d\ubbfc\ub2f9", "\uc120\uac70\uad6c" : "\ucda9\ub0a8 \uae08\uc0b0\uad70", "\ub2f9\uc120\ud69f\uc218" : "\ucd08\uc120", "\ub2f9\uc120\ub300\uc218" : "14"}
json_instruct
{"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2f9\uc120\ud69f\uc218": {"type": "string"}, "\ub2f9\uc120\ub300\uc218": {"type...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "ite...
{"directions" : ["Heat olive oil in a large pot over medium heat; cook and stir onion, yellow bell pepper, and garlic in the hot oil until softened, 5 to 10 minutes. Add potatoes, carrots, zucchini, and enough water to cover mixture by 2 inches. Stir salsa into the mixture and add Italian seasoning, onion powder, garli...
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "r...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"6049b9f4d238c8219423655ee894371ac4cb445f": {"type": "integer"}, "9262ac69198a70a8647b9920c9abcd65c814ddba": {"type": "integer"}, "363baea9cba210afac6d7a556fca596e30c46333": {"type": "integer"}}, "required": ["6049...
{"6049b9f4d238c8219423655ee894371ac4cb445f" : 1546247029, "9262ac69198a70a8647b9920c9abcd65c814ddba" : 1546246740, "363baea9cba210afac6d7a556fca596e30c46333" : 1545999972}
json_instruct
{"type": "object", "properties": {"6049b9f4d238c8219423655ee894371ac4cb445f": {"type": "integer"}, "9262ac69198a70a8647b9920c9abcd65c814ddba": {"type": "integer"}, "363baea9cba210afac6d7a556fca596e30c46333": {"type": "integer"}}, "required": ["6049b9f4d238c8219423655ee894371ac4cb445f", "9262ac69198a70a8647b9920c9abcd65...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"lineId": {"type": "integer"}, "name": {"type": "string"}, "stations": {"type": "array", "items": {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}}, "required...
{"lineId" : 99319, "name" : "\u95a2\u6771\u9244\u9053\u7adc\u30f6\u5d0e\u7dda", "stations" : [{"stationId" : 9931901, "stationGroupId" : 1122903}, {"stationId" : 9931902, "stationGroupId" : 9931902}, {"stationId" : 9931903, "stationGroupId" : 9931903}]}
json_instruct
{"type": "object", "properties": {"lineId": {"type": "integer"}, "name": {"type": "string"}, "stations": {"type": "array", "items": {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}}, "required": ["stationId", "stationGroupId"]}}}, "required": ["lineId", "name", "...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "extensions": {"type": "object", "prope...
{"name" : "zRAY (ACUMEN)", "symbol" : "zRAY", "logoURI" : "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/BR31LZKtry5tyjVtZ49PFZoZjtE5SeS4rjVMuL9Xiyer/logo.png", "decimals" : 6, "address" : "7wZsSyzD4Ba8ZkPhRh62KshQc8TQYiB5KtdNknywE3k4", "chainId" : 101, "extensions" : {"website" : "https:...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "extensions": {"type": "object", "properties": {"website": {"type": "string"}}, "required": ["website...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"courts": {"type": "object", "properties": {"achpr": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["achpr"]}, "jurisdictions": {"type": "array", "items": {"type"...
{"courts" : {"achpr" : {"name" : "African Court on Human and Peoples' Rights"}}, "jurisdictions" : [{"path" : "au.int", "name" : "African Union", "courts" : ["achpr"]}]}
json_instruct
{"type": "object", "properties": {"courts": {"type": "object", "properties": {"achpr": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["achpr"]}, "jurisdictions": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "name": {"type":...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"accountName": {"type": "string"}}, "required": ["accountName"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"accountName" : "cash"}, {"accountName" : "owner"}, {"accountName" : "bank"}, {"accountName" : "furniture"}, {"accountName" : "plant"}, {"accountName" : "ramjilal"}, {"accountName" : "ravi"}, {"accountName" : "samson"}, {"accountName" : "sunil"}, {"accountName" : "thomas"}, {"accountName" : "purchase"}, {"accountName...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"accountName": {"type": "string"}}, "required": ["accountName"]}, "$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"}, "nickname": {"type": "string"}, "category": {"type": "string"}, "subcategory": {"type": "string"}, "description": {"type": "string"}, "exposure": {"type": "integer"}, "ghpython": {"...
{"name" : "Import Form Diagram", "nickname" : "FormDiagramFromJSON", "category" : "COMPAS CEM", "subcategory" : "09_Serialization", "description" : "Create a COMPAS CEM form diagram from JSON file.", "exposure" : 4, "ghpython" : {"isAdvancedMode" : true, "inputParameters" : [{"name" : "filepath", "description" : "The f...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "nickname": {"type": "string"}, "category": {"type": "string"}, "subcategory": {"type": "string"}, "description": {"type": "string"}, "exposure": {"type": "integer"}, "ghpython": {"type": "object", "properties": {"isAdvancedMode": {"type": "boolean"}, "input...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"resources": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "type", "url"]}}, "groups": {"type": "...
{"resources" : [{"name" : "blood", "type" : "image", "url" : "assets/particle/blood.png"}, {"name" : "star", "type" : "image", "url" : "assets/particle/star.png"}, {"name" : "energy", "type" : "image", "url" : "assets/particle/energy.png"}, {"name" : "magic", "type" : "image", "url" : "assets/particle/magic.png"}, {"na...
json_instruct
{"type": "object", "properties": {"resources": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "type", "url"]}}, "groups": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"pokemon": {"type": "object", "properties": {"id": {"type": "integer"}, "identifier": {"type": "string"}, "species_id": {"type": "integer"}, "height": {"type": "integer"}, "weight": {"type": "integer"}, "base_...
{"pokemon" : {"id" : 478, "identifier" : "froslass", "species_id" : 478, "height" : 13, "weight" : 266, "base_experience" : 168, "order" : 438, "is_default" : 1}, "species_name" : {"pokemon_species_id" : 478, "local_language_id" : 9, "name" : "Froslass", "genus" : "Snow Land"}, "species_flavor_text" : {"species_id" : 4...
json_instruct
{"type": "object", "properties": {"pokemon": {"type": "object", "properties": {"id": {"type": "integer"}, "identifier": {"type": "string"}, "species_id": {"type": "integer"}, "height": {"type": "integer"}, "weight": {"type": "integer"}, "base_experience": {"type": "integer"}, "order": {"type": "integer"}, "is_default":...
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"}, "keywords": {"type": "array", "items": {"type"...
{"name" : "niceandsimple-datepicker", "description" : "Nice and simple datepicker for AngularJS with infinite scrolling calendar", "main" : "index.js", "authors" : ["Andrey Matveev <hello@andreym.com> (http://andreym.com)"], "license" : "ISC", "keywords" : ["angular", "angularjs", "datepicker", "calendar"], "homepage" ...
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":...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-...
{"index" : 5910, "redacted" : false, "hash" : 107426150, "blacklisted" : false}
json_instruct
{"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
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" : "1672021004", "district_id" : "1672021", "name" : "MAJASARI"}
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 sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "pr...
{"contract" : "0xadc4c7037aa071b8e2b229debf645f9f70448234", "tool" : "oyente", "start" : 1563528714.2884228, "end" : 1563528751.9742262, "duration" : 37.68580341339111, "analysis" : [{"errors" : [], "file" : "/unique_chucks/10/0xadc4c7037aa071b8e2b229debf645f9f70448234.sol", "name" : "FasTrader", "evm_code_coverage" : ...
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": "strin...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "i...
{"ast" : null, "code" : "import React from \"react\"; // Store Context is the global context that is managed by reducers.\n\nvar Store = React.createContext({});\nexport default Store;", "map" : {"version" : 3, "sources" : ["C:/Users/Amirvan/Desktop/react templates/react todo hooks/react todo app/src/context.js"], "nam...
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesCont...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "requ...
{"index" : 4997, "hash" : 729871245, "artDyeHash" : 729871245, "redacted" : false, "dyeManifestHash" : 315065741, "blacklisted" : false}
json_instruct
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blackl...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["dev", "build"]}, ...
{"name" : "admin", "version" : "0.1.0", "private" : true, "scripts" : {"dev" : "vue-cli-service serve", "build" : "vue-cli-service build"}, "dependencies" : {"@babel/core" : "^7.13.8", "@babel/preset-env" : "^7.13.8", "@kangc/v-md-editor" : "^1.7.7", "@riophae/vue-treeselect" : "^0.4.0", "@tinymce/tinymce-vue" : "^3.2....
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["dev", "build"]}, "dependencies": {"type": "object", "properties": {"@babel/core...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"className": {"type": "string"}, "classAnnotations": {"type": "array", "items": {}}, "interfaces": {"type": "array", "items": {}}, "superClasses": {"type": "array", "items": {"type": "string"}}}, "required": ["className", "classA...
{"className" : "org.wikipedia.random.BottomViewBehavior", "classAnnotations" : [], "interfaces" : [], "superClasses" : ["androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior", "java.lang.Object"]}
json_instruct
{"type": "object", "properties": {"className": {"type": "string"}, "classAnnotations": {"type": "array", "items": {}}, "interfaces": {"type": "array", "items": {}}, "superClasses": {"type": "array", "items": {"type": "string"}}}, "required": ["className", "classAnnotations", "interfaces", "superClasses"], "$schema": "h...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]},...
{"ETag" : "W/\"182ae92cdf6061e996e3b7a7c1f8bccaa50563fc4f79cf45b60bc3c1de1acc2a\"", "Last-Modified" : "Wed, 19 May 2021 07:20:18 GMT", "base" : {"repo" : {"name" : "pygeos-feedstock"}}, "closed_at" : "2021-05-19T07:20:17Z", "created_at" : "2021-03-01T19:56:51Z", "draft" : false, "head" : {"ref" : "bot-pr_arm_osx_h9b5db...
json_instruct
{"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "stri...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"disk": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "rx": {"type": "number"}, "ry": {"type": "number"}, "angle": {"type": "number"}, "i0": {"type": "number"}, "n": {"type": "int...
{"disk" : {"x" : 256.17090259898794, "y" : 250.977031360973, "rx" : 132.8626410674748, "ry" : 93.61298713536152, "angle" : 91.802, "i0" : 1.2927272727272727, "n" : 1, "c" : 2}, "bulge" : null, "bar" : {"width" : 84.20861682013356, "height" : 17.905791068930178, "x" : 217.1129004522379, "y" : 241.23773251729273, "angle"...
json_instruct
{"type": "object", "properties": {"disk": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "rx": {"type": "number"}, "ry": {"type": "number"}, "angle": {"type": "number"}, "i0": {"type": "number"}, "n": {"type": "integer"}, "c": {"type": "integer"}}, "required": ["x", "y", "rx", "ry",...