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": "number"}}, "required": ["xmin", "width", "ymin", "height"]}, "relativeKeypoints": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "number"}, "x": {"type": "number"}}, "required": ["y", "x"]}}, "format": {"type": "string"}}, "required": ["relativeBoundingBox", "relativeKeypoints", "format"]}, "score": {"type": "array", "items": {"type": "number"}}, "label": {"type": "array", "items": {"type": "string"}}}, "required": ["locationData", "score", "label"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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.46162736, "x" : 0.22105417}, {"y" : 0.5072343, "x" : 0.18892366}, {"y" : 0.4983509, "x" : 0.2191544}], "format" : "RELATIVE_BOUNDING_BOX"}, "score" : [0.9852146], "label" : ["Palm"]} | 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"]}, "relativeKeypoints": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "number"}, "x": {"type": "number"}}, "required": ["y", "x"]}}, "format": {"type": "string"}}, "required": ["relativeBoundingBox", "relativeKeypoints", "format"]}, "score": {"type": "array", "items": {"type": "number"}}, "label": {"type": "array", "items": {"type": "string"}}}, "required": ["locationData", "score", "label"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": {"type": "string"}, "children": {"type": "object", "properties": {"OwnerUUIDMost": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "OwnerUUIDLeast": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}}, "required": ["OwnerUUIDMost", "OwnerUUIDLeast"]}}, "required": ["description", "type", "children"]}}, "required": ["Owner"]}}, "required": ["type", "child_ref", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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" : "UUIDLeast of the owner"}}}}} | 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": {"OwnerUUIDMost": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "OwnerUUIDLeast": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}}, "required": ["OwnerUUIDMost", "OwnerUUIDLeast"]}}, "required": ["description", "type", "children"]}}, "required": ["Owner"]}}, "required": ["type", "child_ref", "children"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": "integer"}, "front_left_port": {"type": "integer"}, "back_right_port": {"type": "integer"}, "left_intake_port": {"type": "integer"}, "right_intake_port": {"type": "integer"}, "tilter_port": {"type": "integer"}, "lift_port": {"type": "integer"}, "front_right_reversed": {"type": "integer"}, "back_left_reversed": {"type": "integer"}, "front_left_reversed": {"type": "integer"}, "back_right_reversed": {"type": "integer"}, "left_intake_reversed": {"type": "integer"}, "right_intake_reversed": {"type": "integer"}, "tilter_reversed": {"type": "integer"}, "lift_reversed": {"type": "integer"}, "tilter_setpoints": {"type": "array", "items": {"type": "integer"}}, "lift_setpoints": {"type": "array", "items": {"type": "integer"}}, "intake_speeds": {"type": "array", "items": {"type": "integer"}}, "autons": {"type": "object", "properties": {"auton1": {"type": "string"}, "auton2": {"type": "string"}, "auton3": {"type": "string"}, "auton4": {"type": "string"}}, "required": ["auton1", "auton2", "auton3", "auton4"]}}, "required": ["internal_motor_pid", "tilter_pid_consts", "front_right_port", "back_left_port", "front_left_port", "back_right_port", "left_intake_port", "right_intake_port", "tilter_port", "lift_port", "front_right_reversed", "back_left_reversed", "front_left_reversed", "back_right_reversed", "left_intake_reversed", "right_intake_reversed", "tilter_reversed", "lift_reversed", "tilter_setpoints", "lift_setpoints", "intake_speeds", "autons"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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_reversed" : 1, "back_right_reversed" : 0, "left_intake_reversed" : 1, "right_intake_reversed" : 0, "tilter_reversed" : 1, "lift_reversed" : 0, "tilter_setpoints" : [100, 300, 400, 500], "lift_setpoints" : [100, 300, 400, 500], "intake_speeds" : [-63, -30, 0, 30, 63], "autons" : {"auton1" : "location_of_auton1.json", "auton2" : "location_of_auton2.json", "auton3" : "location_of_auton3.json", "auton4" : "location_of_auton4.json"}} | 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": "integer"}, "left_intake_port": {"type": "integer"}, "right_intake_port": {"type": "integer"}, "tilter_port": {"type": "integer"}, "lift_port": {"type": "integer"}, "front_right_reversed": {"type": "integer"}, "back_left_reversed": {"type": "integer"}, "front_left_reversed": {"type": "integer"}, "back_right_reversed": {"type": "integer"}, "left_intake_reversed": {"type": "integer"}, "right_intake_reversed": {"type": "integer"}, "tilter_reversed": {"type": "integer"}, "lift_reversed": {"type": "integer"}, "tilter_setpoints": {"type": "array", "items": {"type": "integer"}}, "lift_setpoints": {"type": "array", "items": {"type": "integer"}}, "intake_speeds": {"type": "array", "items": {"type": "integer"}}, "autons": {"type": "object", "properties": {"auton1": {"type": "string"}, "auton2": {"type": "string"}, "auton3": {"type": "string"}, "auton4": {"type": "string"}}, "required": ["auton1", "auton2", "auton3", "auton4"]}}, "required": ["internal_motor_pid", "tilter_pid_consts", "front_right_port", "back_left_port", "front_left_port", "back_right_port", "left_intake_port", "right_intake_port", "tilter_port", "lift_port", "front_right_reversed", "back_left_reversed", "front_left_reversed", "back_right_reversed", "left_intake_reversed", "right_intake_reversed", "tilter_reversed", "lift_reversed", "tilter_setpoints", "lift_setpoints", "intake_speeds", "autons"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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://json-schema.org/draft-07/schema#"}
| {"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", "weight" : 5}]} | 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": ["Cli"]}}, "required": ["profiles"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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-schema.org/draft-07/schema#"} |
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"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "markerStyle": {"type": "string"}}, "required": ["name", "latLng", "markerStyle"]}}, "required": ["id", "labels", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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"]}, "markerStyle": {"type": "string"}}, "required": ["name", "latLng", "markerStyle"]}}, "required": ["id", "labels", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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/mjIfkuKTkuKrmiJbkuKTkuKrku6XkuIrnmoTov5vnqIvlnKjmiafooYzov4fnqIvkuK3vvIzlm6DkuonlpLrotYTmupDogIzpgKDmiJDnmoTkuIDnp43kupLnm7jnrYnlvoXnmoTnjrDosaHvvIzoi6Xml6DlpJblipvkvZznlKjvvIzlroPku6zpg73lsIbml6Dms5Xmjqjov5vkuIvljrvjgILov5nmmK/kuIDkuKrkuKXph43nmoTpl67popjvvIzlm6DkuLrmrbvplIHkvJrorqnkvaDnmoTnqIvluo/mjILotbfml6Dms5XlrozmiJDku7vliqHvvIzmrbvplIHnmoTlj5HnlJ/lv4Xpobvmu6HotrPku6XkuIvlm5vkuKrmnaHku7bvvJo8L3A+Cjx1bD4KPGxpPjxzdHJvbmc+5LqS5pal5p2h5Lu2PC9zdHJvbmc+77ya5LiA5Liq6LWE5rqQ5q+P5qyh5Y+q6IO96KKr5LiA5Liq6L+b56iL5L2/55So44CCPC9saT4KPGxpPjxzdHJvbmc+6K+35rGC5LiO5L+d5oyB5p2h5Lu2PC9zdHJvbmc+77ya5LiA5Liq6L+b56iL5Zug6K+35rGC6LWE5rqQ6ICM6Zi75aGe5pe277yM5a+55bey6I635b6X55qE6LWE5rqQ5L+d5oyB5LiN5pS+44CCPC9saT4KPGxpPjxzdHJvbmc+5LiN5Yml5aS65p2h5Lu2PC9zdHJvbmc+77ya6L+b56iL5bey6I635b6X55qE6LWE5rqQ77yM5Zyo5pyr5L2/55So5a6M5LmL5YmN77yM5LiN6IO95by66KGM5Yml5aS644CCPC9saT4KPGxpPjxzdHJvbmc+5b6q546v562J5b6F5p2h5Lu2PC9zdHJvbmc+77ya6Iul5bmy6L+b56iL5LmL6Ze05b2i5oiQ5LiA56eN5aS05bC+55u45o6l55qE5b6q546v562J5b6F6LWE5rqQ5YWz57O744CCPC9saT4KPC91bD4KPHA+6YG/5YWN5q276ZSB5pyA566A5Y2V55qE5pa55rOV5bCx5piv6Zi75q2i5b6q546v562J5b6F5p2h5Lu277yM5bCG57O757uf5Lit5omA5pyJ55qE6LWE5rqQ6K6+572u5qCH5b+X5L2N44CB5o6S5bqP77yM6KeE5a6a5omA5pyJ55qE6L+b56iL55Sz6K+36LWE5rqQ5b+F6aG75Lul5LiA5a6a55qE6aG65bqP77yI5Y2H5bqP5oiW6ZmN5bqP77yJ5YGa5pON5L2c5p2l6YG/5YWN5q276ZSB44CCPC9wPgo="}, "code" : 200} | 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": "string"}, "wayto": {"type": "object", "properties": {"20939": {"type": "string"}, "20937": {"type": "string"}}, "required": ["20939", "20937"]}, "timeto": {"type": "object", "properties": {"20939": {"type": "number"}, "20937": {"type": "number"}}, "required": ["20939", "20937"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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 the trees are patches of tall bamboo, fighting for space."], "paths" : ["Obvious paths: north, northwest"], "location" : "the Monsoon Jungle", "wayto" : {"20939" : "north", "20937" : "northwest"}, "timeto" : {"20939" : 0.2, "20937" : 0.2}, "image" : "ifw-wilds-1368242816.png", "image_coords" : [1541, 901, 1558, 917]} | 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": {"type": "string"}, "20937": {"type": "string"}}, "required": ["20939", "20937"]}, "timeto": {"type": "object", "properties": {"20939": {"type": "number"}, "20937": {"type": "number"}}, "required": ["20939", "20937"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_icon", "default_popup"]}, "commands": {"type": "object", "properties": {"_execute_action": {"type": "object", "properties": {"suggested_key": {"type": "object", "properties": {"default": {"type": "string"}, "mac": {"type": "string"}, "linux": {"type": "string"}}, "required": ["default", "mac", "linux"]}, "description": {"type": "string"}}, "required": ["suggested_key", "description"]}}, "required": ["_execute_action"]}, "permissions": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "version", "manifest_version", "browser_action", "commands", "permissions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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" : {"suggested_key" : {"default" : "Ctrl+Shift+L", "mac" : "MacCtrl+Shift+L", "linux" : "Ctrl+Shift+L"}, "description" : "This is the shortcut to open index.html file"}}, "permissions" : ["activeTab"]} | 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_icon", "default_popup"]}, "commands": {"type": "object", "properties": {"_execute_action": {"type": "object", "properties": {"suggested_key": {"type": "object", "properties": {"default": {"type": "string"}, "mac": {"type": "string"}, "linux": {"type": "string"}}, "required": ["default", "mac", "linux"]}, "description": {"type": "string"}}, "required": ["suggested_key", "description"]}}, "required": ["_execute_action"]}, "permissions": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "version", "manifest_version", "browser_action", "commands", "permissions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": "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"}}, "\uc81c\uc548\uc774\uc720 \ubc0f \uc8fc\uc694\ub0b4\uc6a9": {"type": "string"}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30", "\uc81c\uc548\uc774\uc720 \ubc0f \uc8fc\uc694\ub0b4\uc6a9"]}, " \uc18c\uad00\uc704 \uc2ec\uc0ac\uc815\ubcf4": {"type": "object", "properties": {"\uc18c\uad00\uc704\uc6d0\ud68c": {"type": "array", "items": {"type": "string"}}, "\ud68c\ubd80\uc77c": {"type": "array", "items": {"type": "string"}}, "\uc0c1\uc815\uc77c": {"type": "array", "items": {"type": "string"}}, "\ucc98\ub9ac\uc77c": {"type": "array", "items": {"type": "string"}}, "\ucc98\ub9ac\uacb0\uacfc": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc18c\uad00\uc704\uc6d0\ud68c", "\ud68c\ubd80\uc77c", "\uc0c1\uc815\uc77c", "\ucc98\ub9ac\uc77c", "\ucc98\ub9ac\uacb0\uacfc", "\ubb38\uc11c"]}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4", " \uc18c\uad00\uc704 \uc2ec\uc0ac\uc815\ubcf4"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\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\ud68c"], "\uc81c\uc548\uc774\uc720 \ubc0f \uc8fc\uc694\ub0b4\uc6a9" : "\uc81c\uc548\uc774\uc720 \ubc0f \uc8fc\uc694\ub0b4\uc6a9\n\n \ud604\ud589\ubc95\uc5d0 \ub530\ub974\uba74 \ubb38\ud654\uccb4\uc721\uad00\uad11\ubd80\uc7a5\uad00\uc740 \uad00\uad11\uc219\ubc15\uc2dc\uc124 \ubc0f \uc57c\uc601\uc7a5 \uc774\uc6a9\uc790\uc758 \ud3b8\uc758\ub97c \ub3d5\uace0, \uad00\uad11\uc219\ubc15\uc2dc\uc124\u318d\uc57c\uc601\uc7a5 \ubc0f \uc11c\ube44\uc2a4 \uc218\uc900\uc744 \ud6a8\uc728\uc801\uc73c\ub85c \uc720\uc9c0\u318d\uad00\ub9ac\ud558\uae30 \uc704\ud558\uc5ec \uad00\uad11\uc219\ubc15\uc5c5\uc790 \ubc0f \uc57c\uc601\uc7a5\uc5c5\uc790\uc758 \uc2e0\uccad\uc744 \ubc1b\uc544 \uad00\uad11\uc219\ubc15\uc5c5 \ubc0f \uc57c\uc601\uc7a5\uc5c5\uc5d0 \ub300\ud55c \ub4f1\uae09 \ubc0f \uadf8 \uc720\ud6a8\uae30\uac04\uc744 \uc815\ud560 \uc218 \uc788\ub3c4\ub85d \ud558\uace0 \uc788\uc74c.\n \uadf8\ub7f0\ub370 \ucd5c\uadfc \uac10\uc5fc\ubcd1\uc758 \ud655\uc0b0\uc73c\ub85c \uad00\uad11\uc774 \uc5b4\ub824\uc6cc\uc9c0\uba74\uc11c \uad00\uad11\uc219\ubc15\uc2dc\uc124 \ubc0f \uc57c\uc601\uc7a5\uc5d0 \ub300\ud55c \ud3c9\uac00\uac00 \uc815\uc0c1\uc801\uc73c\ub85c \uc774\ub8e8\uc5b4\uc9c0\uae30 \uc5b4\ub824\uc6b4 \uc0c1\ud669\uc784.\n \uc774\uc5d0 \ubb38\ud654\uccb4\uc721\uad00\uad11\ubd80\uc7a5\uad00\uc740 \uac10\uc5fc\ubcd1 \ud655\uc0b0\uc73c\ub85c \u300c\uc7ac\ub09c \ubc0f \uc548\uc804\uad00\ub9ac \uae30\ubcf8\ubc95\u300d \uc81c38\uc870\uc81c2\ud56d\uc5d0 \ub530\ub978 \uacbd\uacc4 \uc774\uc0c1\uc758 \uc704\uae30\uacbd\ubcf4\uac00 \ubc1c\ub839\ub41c \uacbd\uc6b0 \uad00\uad11\uc219\ubc15\uc5c5 \ubc0f \uc57c\uc601\uc7a5\uc5c5\uc5d0 \ub300\ud55c \ub4f1\uae09\uacb0\uc815\uc744 \uc5f0\uae30\ud558\uac70\ub098 \uae30\uc874\uc758 \ub4f1\uae09\uacb0\uc815\uc758 \uc720\ud6a8\uae30\uac04\uc744 \uc5f0\uc7a5\ud560 \uc218 \uc788\ub294 \uadfc\uac70\ub97c \ubc95\ub960\uc5d0 \ub9c8\ub828\ud558\uace0\uc790 \ud568(\uc548 \uc81c19\uc870\uc81c5\ud56d \uc2e0\uc124 \ub4f1)."}, " \uc18c\uad00\uc704 \uc2ec\uc0ac\uc815\ubcf4" : {"\uc18c\uad00\uc704\uc6d0\ud68c" : ["\ubb38\ud654\uccb4\uc721\uad00\uad11\uc704\uc6d0\ud68c"], "\ud68c\ubd80\uc77c" : ["2020-11-13"], "\uc0c1\uc815\uc77c" : [""], "\ucc98\ub9ac\uc77c" : [""], "\ucc98\ub9ac\uacb0\uacfc" : [""], "\ubb38\uc11c" : [""]}} | 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"}}, "\uc81c\uc548\uc774\uc720 \ubc0f \uc8fc\uc694\ub0b4\uc6a9": {"type": "string"}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30", "\uc81c\uc548\uc774\uc720 \ubc0f \uc8fc\uc694\ub0b4\uc6a9"]}, " \uc18c\uad00\uc704 \uc2ec\uc0ac\uc815\ubcf4": {"type": "object", "properties": {"\uc18c\uad00\uc704\uc6d0\ud68c": {"type": "array", "items": {"type": "string"}}, "\ud68c\ubd80\uc77c": {"type": "array", "items": {"type": "string"}}, "\uc0c1\uc815\uc77c": {"type": "array", "items": {"type": "string"}}, "\ucc98\ub9ac\uc77c": {"type": "array", "items": {"type": "string"}}, "\ucc98\ub9ac\uacb0\uacfc": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc18c\uad00\uc704\uc6d0\ud68c", "\ud68c\ubd80\uc77c", "\uc0c1\uc815\uc77c", "\ucc98\ub9ac\uc77c", "\ucc98\ub9ac\uacb0\uacfc", "\ubb38\uc11c"]}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4", " \uc18c\uad00\uc704 \uc2ec\uc0ac\uc815\ubcf4"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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's Breath": {"type": "string"}, "Avenger's Might": {"type": "string"}, "Synergistic Growth": {"type": "string"}, "Moment of Compassion": {"type": "string"}, "Breaking Dawn": {"type": "string"}, "Divine Revelations": {"type": "string"}, "Indomitable Justice": {"type": "string"}}, "required": ["Radiant Incandescence", "Zealotry", "Martyr's Breath", "Avenger's Might", "Synergistic Growth", "Moment of Compassion", "Breaking Dawn", "Divine Revelations", "Indomitable Justice"]}}, "required": ["azerite"]}, "protection": {"type": "object", "properties": {"azerite": {"type": "object", "properties": {"Inner Light": {"type": "string"}, "Avenger's Might": {"type": "string"}, "Soaring Shield": {"type": "string"}, "Inspiring Vanguard": {"type": "string"}, "Indomitable Justice": {"type": "string"}}, "required": ["Inner Light", "Avenger's Might", "Soaring Shield", "Inspiring Vanguard", "Indomitable Justice"]}}, "required": ["azerite"]}, "retribution": {"type": "object", "properties": {"azerite": {"type": "object", "properties": {"Zealotry": {"type": "string"}, "Avenger's Might": {"type": "string"}, "Divine Right": {"type": "string"}, "Relentless Inquisitor": {"type": "string"}, "Indomitable Justice": {"type": "string"}, "Expurgation": {"type": "string"}}, "required": ["Zealotry", "Avenger's Might", "Divine Right", "Relentless Inquisitor", "Indomitable Justice", "Expurgation"]}}, "required": ["azerite"]}}, "required": ["holy", "protection", "retribution"]}, "sets": {"type": "object", "properties": {"None": {"type": "object", "properties": {}, "required": []}}, "required": ["None"]}}, "required": ["specials", "sets"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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" : "233:!!ILVL!!", "Indomitable Justice" : "235:!!ILVL!!"}}, "protection" : {"azerite" : {"Inner Light" : "234:!!ILVL!!", "Avenger's Might" : "125:!!ILVL!!", "Soaring Shield" : "150:!!ILVL!!", "Inspiring Vanguard" : "395:!!ILVL!!", "Indomitable Justice" : "235:!!ILVL!!"}}, "retribution" : {"azerite" : {"Zealotry" : "396:!!ILVL!!", "Avenger's Might" : "125:!!ILVL!!", "Divine Right" : "453:!!ILVL!!", "Relentless Inquisitor" : "154:!!ILVL!!", "Indomitable Justice" : "235:!!ILVL!!", "Expurgation" : "187:!!ILVL!!"}}}, "sets" : {"None" : {}}} | 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"}, "Synergistic Growth": {"type": "string"}, "Moment of Compassion": {"type": "string"}, "Breaking Dawn": {"type": "string"}, "Divine Revelations": {"type": "string"}, "Indomitable Justice": {"type": "string"}}, "required": ["Radiant Incandescence", "Zealotry", "Martyr's Breath", "Avenger's Might", "Synergistic Growth", "Moment of Compassion", "Breaking Dawn", "Divine Revelations", "Indomitable Justice"]}}, "required": ["azerite"]}, "protection": {"type": "object", "properties": {"azerite": {"type": "object", "properties": {"Inner Light": {"type": "string"}, "Avenger's Might": {"type": "string"}, "Soaring Shield": {"type": "string"}, "Inspiring Vanguard": {"type": "string"}, "Indomitable Justice": {"type": "string"}}, "required": ["Inner Light", "Avenger's Might", "Soaring Shield", "Inspiring Vanguard", "Indomitable Justice"]}}, "required": ["azerite"]}, "retribution": {"type": "object", "properties": {"azerite": {"type": "object", "properties": {"Zealotry": {"type": "string"}, "Avenger's Might": {"type": "string"}, "Divine Right": {"type": "string"}, "Relentless Inquisitor": {"type": "string"}, "Indomitable Justice": {"type": "string"}, "Expurgation": {"type": "string"}}, "required": ["Zealotry", "Avenger's Might", "Divine Right", "Relentless Inquisitor", "Indomitable Justice", "Expurgation"]}}, "required": ["azerite"]}}, "required": ["holy", "protection", "retribution"]}, "sets": {"type": "object", "properties": {"None": {"type": "object", "properties": {}, "required": []}}, "required": ["None"]}}, "required": ["specials", "sets"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900025170": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900025171": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900025168", "900025169", "900025170", "900025171"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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": "integer"}}}, "required": ["nama", "dapil"]}, "900025170": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900025171": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900025168", "900025169", "900025170", "900025171"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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_name": {"type": "string"}}, "required": ["id", "dataset_id", "path", "width", "height", "file_name"]}}, "categories": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "supercategory": {"type": "string"}, "color": {"type": "string"}, "metadata": {"type": "object", "properties": {}, "required": []}, "keypoints": {"type": "array", "items": {"type": "string"}}, "skeleton": {"type": "array", "items": {}}}, "required": ["id", "name", "supercategory", "color", "metadata", "keypoints", "skeleton"]}}, "annotations": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "image_id": {"type": "integer"}, "category_id": {"type": "integer"}, "segmentation": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "area": {"type": "integer"}, "bbox": {"type": "array", "items": {"type": "number"}}, "iscrowd": {"type": "boolean"}, "color": {"type": "string"}, "keypoints": {"type": "array", "items": {"type": "integer"}}, "metadata": {"type": "object", "properties": {}, "required": []}, "num_keypoints": {"type": "integer"}}, "required": ["id", "image_id", "category_id", "segmentation", "area", "bbox", "iscrowd", "color", "keypoints", "metadata", "num_keypoints"]}}}, "required": ["images", "categories", "annotations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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" : [{"id" : 58, "image_id" : 32, "category_id" : 7, "segmentation" : [[449.6, 170.3, 449.6, 172.8, 446.8, 173.0], [449.6, 172.8, 792.1, 148.4, 814.0, 657.9, 451.0, 663.4]], "area" : 176585, "bbox" : [447.0, 148.0, 367.0, 515.0], "iscrowd" : false, "color" : "#62eb98", "keypoints" : [626, 526, 2, 556, 400, 2, 682, 394, 2], "metadata" : {}, "num_keypoints" : 3}]} | 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", "path", "width", "height", "file_name"]}}, "categories": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "supercategory": {"type": "string"}, "color": {"type": "string"}, "metadata": {"type": "object", "properties": {}, "required": []}, "keypoints": {"type": "array", "items": {"type": "string"}}, "skeleton": {"type": "array", "items": {}}}, "required": ["id", "name", "supercategory", "color", "metadata", "keypoints", "skeleton"]}}, "annotations": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "image_id": {"type": "integer"}, "category_id": {"type": "integer"}, "segmentation": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "area": {"type": "integer"}, "bbox": {"type": "array", "items": {"type": "number"}}, "iscrowd": {"type": "boolean"}, "color": {"type": "string"}, "keypoints": {"type": "array", "items": {"type": "integer"}}, "metadata": {"type": "object", "properties": {}, "required": []}, "num_keypoints": {"type": "integer"}}, "required": ["id", "image_id", "category_id", "segmentation", "area", "bbox", "iscrowd", "color", "keypoints", "metadata", "num_keypoints"]}}}, "required": ["images", "categories", "annotations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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", "exercise", "id", "url", "handle", "is_requester", "auto_approve"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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_requester", "auto_approve"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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\u6751\u59d4\u4f1a"}, {"id" : "321112100205", "text" : "\u56db\u65b9\u6865\u6751\u59d4\u4f1a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
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": "string"}}, "required": ["test", "preinstall"]}, "resolutions": {"type": "object", "properties": {"js-yaml": {"type": "string"}, "is-svg": {"type": "string"}, "glob-parent": {"type": "string"}}, "required": ["js-yaml", "is-svg", "glob-parent"]}, "author": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "babel-loader": {"type": "string"}, "glob-parent": {"type": "string"}, "gulp": {"type": "string"}, "gulp-autoprefixer": {"type": "string"}, "gulp-cssnano": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-uglify": {"type": "string"}, "is-svg": {"type": "string"}, "jquery": {"type": "string"}, "js-yaml": {"type": "string"}, "webpack": {"type": "string"}, "webpack-stream": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "babel-loader", "glob-parent", "gulp", "gulp-autoprefixer", "gulp-cssnano", "gulp-rename", "gulp-sass", "gulp-uglify", "is-svg", "jquery", "js-yaml", "webpack", "webpack-stream"]}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "main", "scripts", "resolutions", "author", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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", "devDependencies" : {"@babel/core" : "^7.8.6", "@babel/preset-env" : "^7.8.6", "babel-loader" : "^8.0.6", "glob-parent" : "^5.1.2", "gulp" : "^4.0.2", "gulp-autoprefixer" : "^8.0.0", "gulp-cssnano" : "^2.1.3", "gulp-rename" : "^2.0.0", "gulp-sass" : "^5.1.0", "gulp-uglify" : "^3.0.2", "is-svg" : "^4.3.0", "jquery" : "^3.4.1", "js-yaml" : "^3.13.1", "webpack" : "^5.66.0", "webpack-stream" : "^7.0.0"}, "dependencies" : {}} | 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": {"type": "object", "properties": {"js-yaml": {"type": "string"}, "is-svg": {"type": "string"}, "glob-parent": {"type": "string"}}, "required": ["js-yaml", "is-svg", "glob-parent"]}, "author": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "babel-loader": {"type": "string"}, "glob-parent": {"type": "string"}, "gulp": {"type": "string"}, "gulp-autoprefixer": {"type": "string"}, "gulp-cssnano": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-uglify": {"type": "string"}, "is-svg": {"type": "string"}, "jquery": {"type": "string"}, "js-yaml": {"type": "string"}, "webpack": {"type": "string"}, "webpack-stream": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "babel-loader", "glob-parent", "gulp", "gulp-autoprefixer", "gulp-cssnano", "gulp-rename", "gulp-sass", "gulp-uglify", "is-svg", "jquery", "js-yaml", "webpack", "webpack-stream"]}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "main", "scripts", "resolutions", "author", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": {"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" : 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, 5.621011273632477e-07], [0.7325096845430235, 1.1411427625063197e-07, 0.031821569985826303, 0.23695692845159644, 1.4394452407806568e-08]], "feval_count" : [130, 130], "n_trials_instructed" : [130, 130], "passing" : [true, true], "completed" : true, "points" : 1.0, "winner" : "hebo_batch", "loser" : "pymoo_unsga3"} | 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#"} |
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"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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, salt, and bay leaves into soup and continue to simmer.", "Melt butter in a saucepan over medium-low heat. Whisk flour into butter, whisking constantly, until thickened, about 1 minute. Slowly stir milk into flour mixture until mixture it smooth and thickened, 4 to 5 minutes. Stir milk mixture into soup and cook until thickened and heated through, 3 to 5 minutes."], "ingredients" : ["3 large red potatoes, diced", "1 onion, chopped", "1 cup diced cooked turkey (optional)", "1 cup diced cooked ham", "2/3 cup diced celery", "2/3 cup sliced carrots", "2/3 cup chopped asparagus", "2/3 cup frozen peas", "2/3 cup peeled and cubed butternut squash", "1 (32 ounce) carton chicken broth", "1 cup water", "1 teaspoon Italian seasoning, or to taste", "1 teaspoon ground white pepper, or to taste", "1/2 teaspoon salt, or to taste", "3 bay leaves", "1/4 cup butter", "7 tablespoons all-purpose flour", "2 cups milk"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Creamy Ham and Potato Soup", "url" : "http://allrecipes.com/recipe/235511/creamy-ham-and-potato-soup/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "array", "items": {"type": "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"}, "provider": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "client": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "creation": {"type": "string"}, "expiration": {"type": "string"}, "variables": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "metric": {"type": "string"}}, "required": ["name", "metric"]}}, "guarantees": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "constraint": {"type": "string"}}, "required": ["name", "constraint"]}}}, "required": ["id", "type", "name", "provider", "client", "creation", "expiration", "variables", "guarantees"]}}, "required": ["id", "name", "state", "details"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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-01T17:09:45Z", "variables" : [{"name" : "cpu_namespace", "metric" : "sum(rate(container_cpu_usage_seconds_total{namespace=\"knative-monitoring\"}[1m]))"}], "guarantees" : [{"name" : "CPU by namespace", "constraint" : "cpu_namespace > 40"}]}} | 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"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "client": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "creation": {"type": "string"}, "expiration": {"type": "string"}, "variables": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "metric": {"type": "string"}}, "required": ["name", "metric"]}}, "guarantees": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "constraint": {"type": "string"}}, "required": ["name", "constraint"]}}}, "required": ["id", "type", "name", "provider", "client", "creation", "expiration", "variables", "guarantees"]}}, "required": ["id", "name", "state", "details"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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/draft-07/schema#"}
| {"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_label": {"type": "string"}, "netapp_volumes_snapshots_edit_confirm": {"type": "string"}, "netapp_volumes_snapshots_edit_cancel": {"type": "string"}, "netapp_volumes_snapshots_edit_success": {"type": "string"}, "netapp_volumes_snapshots_edit_error": {"type": "string"}}, "required": ["netapp_volumes_snapshots_edit_title", "netapp_volumes_snapshots_edit_id_label", "netapp_volumes_snapshots_edit_name_label", "netapp_volumes_snapshots_edit_description_label", "netapp_volumes_snapshots_edit_confirm", "netapp_volumes_snapshots_edit_cancel", "netapp_volumes_snapshots_edit_success", "netapp_volumes_snapshots_edit_error"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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" : "Zatwierd\u017a", "netapp_volumes_snapshots_edit_cancel" : "Anuluj", "netapp_volumes_snapshots_edit_success" : "Snapshot zosta\u0142 zmodyfikowany.", "netapp_volumes_snapshots_edit_error" : "Snapshot nie m\u00f3g\u0142 zosta\u0107 zmodyfikowany. Spr\u00f3buj p\u00f3\u017aniej. {{ message }}"} | 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_confirm": {"type": "string"}, "netapp_volumes_snapshots_edit_cancel": {"type": "string"}, "netapp_volumes_snapshots_edit_success": {"type": "string"}, "netapp_volumes_snapshots_edit_error": {"type": "string"}}, "required": ["netapp_volumes_snapshots_edit_title", "netapp_volumes_snapshots_edit_id_label", "netapp_volumes_snapshots_edit_name_label", "netapp_volumes_snapshots_edit_description_label", "netapp_volumes_snapshots_edit_confirm", "netapp_volumes_snapshots_edit_cancel", "netapp_volumes_snapshots_edit_success", "netapp_volumes_snapshots_edit_error"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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"}}}, "required": ["Outdoors", "Food", "Music", "Coding"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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-07/schema#"}
| {"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-schema.org/draft-07/schema#"}
| {"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": {"type": "array", "items": {}}}, "required": ["duration", "start", "peak", "tags"]}}, "_current_run": {"type": "null"}, "maximum_gap_between_runs": {"type": "number"}}, "required": ["minimum_run_duration", "runs", "_current_run", "maximum_gap_between_runs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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, "peak" : 72.5874416203689, "tags" : []}, {"duration" : 395, "start" : 3869243, "peak" : 71.93332316176722, "tags" : []}, {"duration" : 141, "start" : 4374953, "peak" : 70.69329499465015, "tags" : []}, {"duration" : 119, "start" : 4376261, "peak" : 72.62270238450944, "tags" : []}, {"duration" : 2738, "start" : 4590484, "peak" : 77.77753749374286, "tags" : ["jake brake"]}, {"duration" : 1664, "start" : 5337973, "peak" : 75.29279053843726, "tags" : []}, {"duration" : 263, "start" : 5341687, "peak" : 71.45699658243068, "tags" : ["jake brake"]}, {"duration" : 325, "start" : 5342663, "peak" : 75.0078379964377, "tags" : ["jake brake"]}, {"duration" : 132, "start" : 6027059, "peak" : 82.5372796665473, "tags" : []}, {"duration" : 354, "start" : 6295232, "peak" : 78.60509666512122, "tags" : []}, {"duration" : 292, "start" : 6379451, "peak" : 72.8713005541569, "tags" : []}, {"duration" : 806, "start" : 6611958, "peak" : 72.76233121268251, "tags" : []}, {"duration" : 674, "start" : 6851007, "peak" : 73.22313974918222, "tags" : []}, {"duration" : 1870, "start" : 7106277, "peak" : 74.41064241253035, "tags" : ["jake brake"]}], "_current_run" : null, "maximum_gap_between_runs" : 500.0} | 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", "tags"]}}, "_current_run": {"type": "null"}, "maximum_gap_between_runs": {"type": "number"}}, "required": ["minimum_run_duration", "runs", "_current_run", "maximum_gap_between_runs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": {"url": {"type": "string"}, "title": {"type": "string"}}, "required": ["url", "title"]}}}, "required": ["id", "title", "desc", "links"]}}}, "required": ["panels"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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", "title" : "link2"}, {"url" : "url3", "title" : "link3"}]}, {"id" : "3", "title" : "Panel 3", "desc" : "Description 3", "links" : [{"url" : "url1", "title" : "link1"}, {"url" : "url2", "title" : "link2"}, {"url" : "url3", "title" : "link3"}]}, {"id" : "4", "title" : "Panel 4", "desc" : "Description 4", "links" : [{"url" : "url1", "title" : "link1"}, {"url" : "url2", "title" : "link2"}, {"url" : "url3", "title" : "link3"}]}, {"id" : "5", "title" : "Panel 5", "desc" : "Description 5", "links" : [{"url" : "url1", "title" : "link1"}, {"url" : "url2", "title" : "link2"}, {"url" : "url3", "title" : "link3"}]}]} | 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"}}, "required": ["url", "title"]}}}, "required": ["id", "title", "desc", "links"]}}}, "required": ["panels"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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"]}}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Litstack\\TwoFA\\": {"type": "string"}}, "required": ["Litstack\\TwoFA\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tests\\": {"type": "string"}}, "required": ["Tests\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"bacon/bacon-qr-code": {"type": "string"}, "pragmarx/google2fa-qrcode": {"type": "string"}, "litstack/litstack": {"type": "string"}}, "required": ["bacon/bacon-qr-code", "pragmarx/google2fa-qrcode", "litstack/litstack"]}, "require-dev": {"type": "object", "properties": {"litstack/rehearsal": {"type": "string"}, "phpunit/phpunit": {"type": "string"}, "mockery/mockery": {"type": "string"}}, "required": ["litstack/rehearsal", "phpunit/phpunit", "mockery/mockery"]}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}}, "required": ["providers"]}, "branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["laravel", "branch-alias"]}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}}, "required": ["name", "license", "authors", "scripts", "autoload", "autoload-dev", "require", "require-dev", "extra", "minimum-stability", "prefer-stable"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "litstack/2fa", "license" : "MIT", "authors" : [{"name" : "cbl", "email" : "[email protected]"}], "scripts" : {"test" : "vendor/bin/phpunit"}, "autoload" : {"psr-4" : {"Litstack\\TwoFA\\" : "src"}}, "autoload-dev" : {"psr-4" : {"Tests\\" : "tests/"}}, "require" : {"bacon/bacon-qr-code" : "^2.0", "pragmarx/google2fa-qrcode" : "^2.1", "litstack/litstack" : "^3.1.2"}, "require-dev" : {"litstack/rehearsal" : "^1.0.1", "phpunit/phpunit" : "^9.4", "mockery/mockery" : "^1.4"}, "extra" : {"laravel" : {"providers" : ["Litstack\\TwoFA\\TwoFAServiceProvider"]}, "branch-alias" : {"dev-master" : "1.x-dev"}}, "minimum-stability" : "dev", "prefer-stable" : true} | 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": "string"}}, "required": ["test"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Litstack\\TwoFA\\": {"type": "string"}}, "required": ["Litstack\\TwoFA\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tests\\": {"type": "string"}}, "required": ["Tests\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"bacon/bacon-qr-code": {"type": "string"}, "pragmarx/google2fa-qrcode": {"type": "string"}, "litstack/litstack": {"type": "string"}}, "required": ["bacon/bacon-qr-code", "pragmarx/google2fa-qrcode", "litstack/litstack"]}, "require-dev": {"type": "object", "properties": {"litstack/rehearsal": {"type": "string"}, "phpunit/phpunit": {"type": "string"}, "mockery/mockery": {"type": "string"}}, "required": ["litstack/rehearsal", "phpunit/phpunit", "mockery/mockery"]}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}}, "required": ["providers"]}, "branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["laravel", "branch-alias"]}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}}, "required": ["name", "license", "authors", "scripts", "autoload", "autoload-dev", "require", "require-dev", "extra", "minimum-stability", "prefer-stable"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"postinstall": {"type": "string"}, "lint": {"type": "string"}, "flow": {"type": "string"}, "start": {"type": "string"}, "full": {"type": "string"}}, "required": ["postinstall", "lint", "flow", "start", "full"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"immutable": {"type": "string"}, "loquat": {"type": "string"}, "loquat-token": {"type": "string"}}, "required": ["immutable", "loquat", "loquat-token"]}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-core": {"type": "string"}, "babel-eslint": {"type": "string"}, "babel-plugin-transform-es2015-modules-commonjs": {"type": "string"}, "babel-plugin-transform-flow-strip-types": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-disable": {"type": "string"}, "eslint-plugin-flowtype": {"type": "string"}, "flow-bin": {"type": "string"}, "flow-typed": {"type": "string"}}, "required": ["babel-cli", "babel-core", "babel-eslint", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-flow-strip-types", "eslint", "eslint-plugin-disable", "eslint-plugin-flowtype", "flow-bin", "flow-typed"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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 <[email protected]> (https://github.com/susisu)", "license" : "MIT", "dependencies" : {"immutable" : "^3.8.1", "loquat" : "^2.0.0", "loquat-token" : "^2.0.0"}, "devDependencies" : {"babel-cli" : "^6.24.1", "babel-core" : "^6.24.1", "babel-eslint" : "^7.2.3", "babel-plugin-transform-es2015-modules-commonjs" : "^6.24.1", "babel-plugin-transform-flow-strip-types" : "^6.22.0", "eslint" : "^3.19.0", "eslint-plugin-disable" : "^0.3.0", "eslint-plugin-flowtype" : "^2.34.0", "flow-bin" : "^0.47.0", "flow-typed" : "^2.1.2"}} | 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"}, "full": {"type": "string"}}, "required": ["postinstall", "lint", "flow", "start", "full"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"immutable": {"type": "string"}, "loquat": {"type": "string"}, "loquat-token": {"type": "string"}}, "required": ["immutable", "loquat", "loquat-token"]}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-core": {"type": "string"}, "babel-eslint": {"type": "string"}, "babel-plugin-transform-es2015-modules-commonjs": {"type": "string"}, "babel-plugin-transform-flow-strip-types": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-disable": {"type": "string"}, "eslint-plugin-flowtype": {"type": "string"}, "flow-bin": {"type": "string"}, "flow-typed": {"type": "string"}}, "required": ["babel-cli", "babel-core", "babel-eslint", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-flow-strip-types", "eslint", "eslint-plugin-disable", "eslint-plugin-flowtype", "flow-bin", "flow-typed"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "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", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"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 383018 699152\n6 8\n8 3\n3 9\n2 3\n10 3\n", "10 5 100\n6 18 35 6 87 58 4 53 37 71\n465782 57034 547741 748298 315223 370368 679320 349012 9740 622511\n1 2\n10 9\n6 7\n3 6\n7 1\n", "10 5 100\n78 89 3 2 95 96 87 11 13 60\n694709 921 799687 428614 221900 536251 117674 36488 219932 771513\n4 5\n3 4\n6 2\n2 3\n8 3\n", "10 5 100\n48 73 30 46 95 19 98 73 94 24\n501216 675859 843572 565104 879875 828759 80776 766980 213551 492652\n1 2\n6 5\n7 6\n10 3\n8 1\n", "10 5 100\n68 55 15 94 53 100 52 68 24 3\n286803 660813 226501 624597 215418 290774 416040 961916 910482 50278\n1 5\n7 2\n2 8\n5 3\n10 3\n", "10 5 100\n19 8 95 18 9 79 42 94 20 49\n735491 935681 717266 935275 521356 866021 356037 394445 589369 585077\n9 4\n5 6\n5 1\n1 4\n7 1\n"], "outputs" : ["6\n", "7\n", "2383854\n", "1495706\n", "2050129\n", "1791132\n", "2237435\n", "1922676\n", "2456033\n"]} | 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/draft-07/schema#"}
| {"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", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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": "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" : [[[-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], [-72.682415, 41.530852], [-72.680863, 41.522705], [-72.681269, 41.516869], [-72.680313, 41.5162], [-72.677896, 41.49623], [-72.679738, 41.494476], [-72.701124, 41.491351], [-72.74333, 41.483114], [-72.748878, 41.544279]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 13206}}]} | 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 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": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"css-loader": {"type": "string"}, "jsx-loader": {"type": "string"}, "style-loader": {"type": "string"}}, "required": ["css-loader", "jsx-loader", "style-loader"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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/index.html ./build/"}, "repository" : {"type" : "git", "url" : "https://github.com/Robert-W/react-checkbox-tree.git"}, "keywords" : ["react", "tree", "javascript", "checkbox", "widget", "webpack", "jsx"], "author" : "Robert Winterbottom", "license" : "MIT", "bugs" : {"url" : "https://github.com/Robert-W/react-checkbox-tree/issues"}, "homepage" : "https://github.com/Robert-W/react-checkbox-tree", "dependencies" : {"css-loader" : "^0.9.0", "jsx-loader" : "^0.12.2", "style-loader" : "^0.8.2"}} | 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": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"css-loader": {"type": "string"}, "jsx-loader": {"type": "string"}, "style-loader": {"type": "string"}}, "required": ["css-loader", "jsx-loader", "style-loader"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[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", "view" : "https://github.com/madefor/0410/blob/gh-pages/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": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"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"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}}, "required": ["name", "short_name", "start_url", "display", "background_color", "theme_color", "description", "prefer_related_applications", "icons"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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" : "@public/icon72.png", "sizes" : "72x72", "type" : "image/png"}, {"src" : "@public/icon96.png", "sizes" : "96x96", "type" : "image/png"}, {"src" : "@public/icon144.png", "sizes" : "144x144", "type" : "image/png"}, {"src" : "@public/icon192.png", "sizes" : "192x192", "type" : "image/png", "purpose" : "any maskable"}, {"src" : "@public/icon512.png", "sizes" : "512x512", "type" : "image/png"}]} | 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"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}}, "required": ["name", "short_name", "start_url", "display", "background_color", "theme_color", "description", "prefer_related_applications", "icons"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {}, "required": []}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"carlescliment\\QueryBuilder": {"type": "string"}}, "required": ["carlescliment\\QueryBuilder"]}}, "required": ["psr-0"]}}, "required": ["name", "version", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "carlescliment/query-builder", "version" : "v1.0.8", "authors" : [{"name" : "Carles Climent", "email" : "[email protected]"}, {"name" : "Stephen O'Flynn", "email" : "[email protected]"}], "require" : {}, "require-dev" : {"phpunit/phpunit" : "*"}, "autoload" : {"psr-0" : {"carlescliment\\QueryBuilder" : "src/"}}} | 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": []}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"carlescliment\\QueryBuilder": {"type": "string"}}, "required": ["carlescliment\\QueryBuilder"]}}, "required": ["psr-0"]}}, "required": ["name", "version", "authors", "require", "require-dev", "autoload"], "$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"}, "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"}, "thumbnailImage": {"type": "string"}, "cardImage": {"type": "string"}}, "required": ["name", "attribute", "type", "cmc", "racesOrTraits", "text", "set", "code", "rarity", "thumbnailImage", "cardImage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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", "cardImage" : "http://db.fowtcg.us/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"}, "thumbnailImage": {"type": "string"}, "cardImage": {"type": "string"}}, "required": ["name", "attribute", "type", "cmc", "racesOrTraits", "text", "set", "code", "rarity", "thumbnailImage", "cardImage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "version", "description", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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": ["name", "size", "texrect", "transparent"]}}, "file": {"type": "string"}, "resource": {"type": "string"}}, "required": ["atlas", "file", "resource"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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", "size" : "64;64", "texrect" : "64;64;64;64", "transparent" : "255;255;255"}, {"name" : "left", "size" : "64;64", "texrect" : "128;0;64;64", "transparent" : "255;255;255"}, {"name" : "right", "size" : "64;64", "texrect" : "128;64;64;64", "transparent" : "255;255;255"}, {"name" : "rotate2", "size" : "64;64", "texrect" : "0;128;64;64", "transparent" : "255;255;255"}, {"name" : "delete2", "size" : "64;64", "texrect" : "64;128;64;64", "transparent" : "255;255;255"}, {"name" : "top2", "size" : "64;64", "texrect" : "128;128;64;64", "transparent" : "255;255;255"}, {"name" : "bottom2", "size" : "64;64", "texrect" : "192;0;64;64", "transparent" : "255;255;255"}, {"name" : "left2", "size" : "64;64", "texrect" : "192;64;64;64", "transparent" : "255;255;255"}, {"name" : "right2", "size" : "64;64", "texrect" : "192;128;64;64", "transparent" : "255;255;255"}], "file" : "merge1/non_unique_atlas.png", "resource" : "non_unique"} | 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"}, "resource": {"type": "string"}}, "required": ["atlas", "file", "resource"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": "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" : [-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_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#"} |
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": "array", "items": {"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" : 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], "geometry" : {"coordinates" : [[[3.98322172658686, 49.34997451708165], [3.98355347099749, 49.34728686411762], [3.98492565377944, 49.34736035476107], [3.98514674135737, 49.3455685808089], [3.98651887805141, 49.34564205162803], [3.98662938926441, 49.3447461624387], [3.98800150480025, 49.34481961498585], [3.98833293307814, 49.34213194011852], [3.97872872695001, 49.34161745373507], [3.97850743091675, 49.34340921569947], [3.97713536671227, 49.3433356476603], [3.97702468611482, 49.34423152642648], [3.97290844138376, 49.34401071732788], [3.97279768090351, 49.34490659099095], [3.97142558195651, 49.34483295296297], [3.97131479144093, 49.34572882462925], [3.9699426713471, 49.34565516832583], [3.96983185079404, 49.34655103799508], [3.97394829719588, 49.34677196140677], [3.97372679032867, 49.3485637087478], [3.97509899654648, 49.34863731955062], [3.97498826038043, 49.34953319411272], [3.98322172658686, 49.34997451708165]]], "type" : "Polygon"}} | 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": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"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"}, "type": {"type": "string"}}, "required": ["id", "type"]}, "workspaceDataFilterSettings": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "filterValues": {"type": "array", "items": {"type": "integer"}}, "workspace": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}}, "required": ["id", "type"]}}, "required": ["id", "title", "filterValues", "workspace"]}}}, "required": ["id", "title", "columnName", "dataSourceId", "workspace", "workspaceDataFilterSettings"]}}}, "required": ["workspaceDataFilters"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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" : "leithbridge", "type" : "workspace"}}, {"id" : "woodbridge", "title" : "Woodbridge store", "filterValues" : [2], "workspace" : {"id" : "woodbridge", "type" : "workspace"}}]}]} | 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"}, "type": {"type": "string"}}, "required": ["id", "type"]}, "workspaceDataFilterSettings": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "filterValues": {"type": "array", "items": {"type": "integer"}}, "workspace": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}}, "required": ["id", "type"]}}, "required": ["id", "title", "filterValues", "workspace"]}}}, "required": ["id", "title", "columnName", "dataSourceId", "workspace", "workspaceDataFilterSettings"]}}}, "required": ["workspaceDataFilters"], "$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": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"year" : 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", "n" : 5, "prop" : 3.86e-06}, {"year" : 1926, "sex" : "F", "n" : 5, "prop" : 4.06e-06}, {"year" : 1932, "sex" : "F", "n" : 5, "prop" : 4.52e-06}, {"year" : 1935, "sex" : "F", "n" : 5, "prop" : 4.6e-06}, {"year" : 1938, "sex" : "F", "n" : 6, "prop" : 5.26e-06}, {"year" : 1959, "sex" : "F", "n" : 6, "prop" : 2.89e-06}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
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_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "OBS_FREQUENCY_DISTRIBUTION": {"type": "object", "properties": {"Y_NUM_PERSONS": {"type": "integer"}, "X_COUNT": {"type": "integer"}}, "required": ["Y_NUM_PERSONS", "X_COUNT"]}, "OBSERVATIONS_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_OCCURRENCE": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "OBS_FREQUENCY_DISTRIBUTION", "OBSERVATIONS_BY_TYPE", "AGE_AT_FIRST_OCCURRENCE"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "OBS_FREQUENCY_DISTRIBUTION" : {"Y_NUM_PERSONS" : 0, "X_COUNT" : 1}, "OBSERVATIONS_BY_TYPE" : {"CONCEPT_NAME" : "Observation recorded from EHR", "COUNT_VALUE" : 69}, "AGE_AT_FIRST_OCCURRENCE" : {"CATEGORY" : ["FEMALE", "MALE"], "MIN_VALUE" : [46, 38], "P10_VALUE" : [63, 48], "P25_VALUE" : [68, 55], "MEDIAN_VALUE" : [76, 63], "P75_VALUE" : [82, 69], "P90_VALUE" : [88, 77], "MAX_VALUE" : [96, 86]}} | json_instruct | {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "OBS_FREQUENCY_DISTRIBUTION": {"type": "object", "properties": {"Y_NUM_PERSONS": {"type": "integer"}, "X_COUNT": {"type": "integer"}}, "required": ["Y_NUM_PERSONS", "X_COUNT"]}, "OBSERVATIONS_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_OCCURRENCE": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "OBS_FREQUENCY_DISTRIBUTION", "OBSERVATIONS_BY_TYPE", "AGE_AT_FIRST_OCCURRENCE"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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"]}, "dependencies": {"type": "object", "properties": {"compostate": {"type": "string"}, "react": {"type": "string"}, "react-compostate": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["compostate", "react", "react-compostate", "react-dom"]}, "devDependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "@vitejs/plugin-react-refresh": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-lxsmnsyc": {"type": "string"}, "typescript": {"type": "string"}, "vite": {"type": "string"}}, "required": ["@types/react", "@types/react-dom", "@vitejs/plugin-react-refresh", "eslint", "eslint-config-lxsmnsyc", "typescript", "vite"]}, "private": {"type": "boolean"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}}, "required": ["name", "version", "scripts", "dependencies", "devDependencies", "private", "publishConfig"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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" : "^17.0.20", "@types/react-dom" : "^17.0.9", "@vitejs/plugin-react-refresh" : "^1.3.6", "eslint" : "^7.32.0", "eslint-config-lxsmnsyc" : "^0.3.0", "typescript" : "^4.4.4", "vite" : "^2.5.4"}, "private" : true, "publishConfig" : {"access" : "restricted"}} | 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": {"compostate": {"type": "string"}, "react": {"type": "string"}, "react-compostate": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["compostate", "react", "react-compostate", "react-dom"]}, "devDependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "@vitejs/plugin-react-refresh": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-lxsmnsyc": {"type": "string"}, "typescript": {"type": "string"}, "vite": {"type": "string"}}, "required": ["@types/react", "@types/react-dom", "@vitejs/plugin-react-refresh", "eslint", "eslint-config-lxsmnsyc", "typescript", "vite"]}, "private": {"type": "boolean"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}}, "required": ["name", "version", "scripts", "dependencies", "devDependencies", "private", "publishConfig"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "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": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "eggPlugin": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["name", "description", "eggPlugin"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0xe6cc09514268fd1b70636496e8a67dadc49d38a9807ffc8e827a21d0e6cb1516", "parentHash" : "0x5af3e9e0f74c64f932777c79c2511470bea9f78e3dadd5779402e30091aee281", "number" : 58239, "timestamp" : 1439117317, "nonce" : "0x208e3b4d23a02084", "difficulty" : 1720836022150, "gasLimit" : {"_hex" : "0x2fe431"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xA10C59651885FeAaac91F871082a23BBbaBeDfCf", "extraData" : "0x476574682f76312e302e302f77696e646f77732f676f312e342e32", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": "string"}, "resources": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "local_location", "remote_location", "visit_repo", "changelog", "resources"]}}, "required": ["rokid_webhook"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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" : "https://github.com/jihao/rokid-webhook-hass/releases/latest", "resources" : ["https://raw.githubusercontent.com/jihao/rokid-webhook-hass/master/custom_components/rokid_webhook/services.yaml"]}} | 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"}}}, "required": ["version", "local_location", "remote_location", "visit_repo", "changelog", "resources"]}}, "required": ["rokid_webhook"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 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 in is 3 yard by 6 yard and weights 19 pound!!!", "reviewDate" : "2020-04-15T23:43:13.504946+03:00"}, {"productId" : 4126, "reviewText" : "I tried to shatter it but got potato all over it.", "reviewDate" : "2017-04-15T23:04:26.6369826+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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"}, "twitterUsername": {"type": "string"}}, "required": ["title", "titleTemplate", "description", "siteUrl", "image", "twitterUsername"]}, "ga": {"type": "string"}}, "required": ["meta", "ga"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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\u30e1\u30a4\u30c9\u30a2\u30af\u30bb\u30b5\u30ea\u30fc\u3092\u4f5c\u6210\u30fb\u8ca9\u58f2\u3057\u3066\u3044\u307e\u3059\u3002", "siteUrl" : "https://kohaluka.info/", "image" : "/assets/koh7.jpeg", "twitterUsername" : "@micomi13"}, "ga" : "UA-176806908-1"} | 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", "description", "siteUrl", "image", "twitterUsername"]}, "ga": {"type": "string"}}, "required": ["meta", "ga"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": {"dry-test": {"type": "string"}, "test": {"type": "string"}, "build": {"type": "string"}}, "required": ["dry-test", "test", "build"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "typescript"]}, "dependencies": {"type": "object", "properties": {"js-yaml": {"type": "string"}, "node-html-parser": {"type": "string"}, "command-line-args": {"type": "string"}, "command-line-usage": {"type": "string"}}, "required": ["js-yaml", "node-html-parser", "command-line-args", "command-line-usage"]}}, "required": ["name", "description", "bin", "author", "license", "version", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "static-localize", "description" : "This package generates static files for each locale", "bin" : "./bin/static-localize", "author" : "lion-man44 <[email protected]>", "license" : "MIT", "version" : "1.2.2", "scripts" : {"dry-test" : "./bin/static-localize --sourceFile ./example/src/index.html --inputYaml ./example/src/locale/index.yml --dry-run", "test" : "./bin/static-localize --sourceFile ./example/src/index.html --inputYaml ./example/src/locale/index.yml", "build" : "tsc"}, "devDependencies" : {"@types/node" : "^13.9.1", "typescript" : "^3.8.3"}, "dependencies" : {"js-yaml" : "^3.13.1", "node-html-parser" : "^1.2.9", "command-line-args" : "^5.1.1", "command-line-usage" : "^6.1.0"}} | 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"}, "build": {"type": "string"}}, "required": ["dry-test", "test", "build"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "typescript"]}, "dependencies": {"type": "object", "properties": {"js-yaml": {"type": "string"}, "node-html-parser": {"type": "string"}, "command-line-args": {"type": "string"}, "command-line-usage": {"type": "string"}}, "required": ["js-yaml", "node-html-parser", "command-line-args", "command-line-usage"]}}, "required": ["name", "description", "bin", "author", "license", "version", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": "string"}}, "required": ["href", "rel"]}}, "adminPass": {"type": "string"}}, "required": ["OS-DCF:diskConfig", "id", "links", "adminPass"]}}, "required": ["server"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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" : "racktestvJq7d3"}} | 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": {"type": "string"}}, "required": ["OS-DCF:diskConfig", "id", "links", "adminPass"]}}, "required": ["server"], "$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" : "0xab2dc8c089d59e7c32618eedcac59be8b1e54cba", "tool" : "honeybadger", "start" : 1565800741.3580413, "end" : 1565800858.708683, "duration" : 117.35064172744751, "analysis" : [{"errors" : [], "file" : "/unique_chucks/30/0xab2dc8c089d59e7c32618eedcac59be8b1e54cba.sol", "name" : "Authorizable"}, {"errors" : [], "file" : "/unique_chucks/30/0xab2dc8c089d59e7c32618eedcac59be8b1e54cba.sol", "name" : "BIGFARMCoin"}, {"errors" : [], "file" : "/unique_chucks/30/0xab2dc8c089d59e7c32618eedcac59be8b1e54cba.sol", "name" : "SafeMath"}, {"errors" : [], "file" : "/unique_chucks/30/0xab2dc8c089d59e7c32618eedcac59be8b1e54cba.sol", "name" : "TokenERC20"}, {"errors" : [], "file" : "/unique_chucks/30/0xab2dc8c089d59e7c32618eedcac59be8b1e54cba.sol", "name" : "owned"}]} | 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#"} |
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"}, "score": {"type": "number"}, "topicality": {"type": "number"}}, "required": ["mid", "description", "score", "topicality"]}}, "safeSearchAnnotation": {"type": "object", "properties": {"adult": {"type": "string"}, "spoof": {"type": "string"}, "medical": {"type": "string"}, "violence": {"type": "string"}, "racy": {"type": "string"}}, "required": ["adult", "spoof", "medical", "violence", "racy"]}}, "required": ["labelAnnotations", "safeSearchAnnotation"]}}}, "required": ["responses"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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, "topicality" : 0.97311306}, {"mid" : "/m/01ll1r", "description" : "Briefs", "score" : 0.96995771, "topicality" : 0.96995771}, {"mid" : "/m/09hyx", "description" : "Lingerie", "score" : 0.94460052, "topicality" : 0.94460052}, {"mid" : "/m/01j04m", "description" : "Thigh", "score" : 0.93527097, "topicality" : 0.93527097}, {"mid" : "/m/031974", "description" : "Waist", "score" : 0.91648519, "topicality" : 0.91648519}, {"mid" : "/m/01gkx_", "description" : "Swimwear", "score" : 0.91160983, "topicality" : 0.91160983}, {"mid" : "/m/01g8j", "description" : "Bikini", "score" : 0.88501602, "topicality" : 0.88501602}, {"mid" : "/m/0h8mwjs", "description" : "Swim brief", "score" : 0.86944568, "topicality" : 0.86944568}], "safeSearchAnnotation" : {"adult" : "UNLIKELY", "spoof" : "VERY_UNLIKELY", "medical" : "POSSIBLE", "violence" : "VERY_UNLIKELY", "racy" : "VERY_LIKELY"}}]} | 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"}}, "required": ["mid", "description", "score", "topicality"]}}, "safeSearchAnnotation": {"type": "object", "properties": {"adult": {"type": "string"}, "spoof": {"type": "string"}, "medical": {"type": "string"}, "violence": {"type": "string"}, "racy": {"type": "string"}}, "required": ["adult", "spoof", "medical", "violence", "racy"]}}, "required": ["labelAnnotations", "safeSearchAnnotation"]}}}, "required": ["responses"], "$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": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs": {"type": "string"}, "P6736": {"type": "string"}}, "required": ["label:cs", "P31", "P31^label:cs", "P131^label:cs", "P6736"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {"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" : "33881"}, "geometry" : {"type" : "Point", "coordinates" : [15.48411, 49.29739]}}, {"type" : "Feature", "properties" : {"label:cs" : "Pomn\u00edk padl\u00fdm v Kv\u011btnov\u00e9 revoluci u silnice u \u010cesal\u00edka", "P31" : "http://www.wikidata.org/entity/Q575759", "P31^label:cs" : "Pomn\u00edk padl\u00fdm", "P131^label:cs" : "T\u0159e\u0161\u0165", "P6736" : "33861"}, "geometry" : {"type" : "Point", "coordinates" : [15.4818, 49.30736]}}, {"type" : "Feature", "properties" : {"label:cs" : "Bo\u017e\u00ed muka v T\u0159e\u0161ti u Nov\u00e9ho ml\u00fdna", "P31" : "http://www.wikidata.org/entity/Q3395121", "P31^label:cs" : "Bo\u017e\u00ed muka", "P131^label:cs" : "T\u0159e\u0161\u0165", "P6736" : "33856"}, "geometry" : {"type" : "Point", "coordinates" : [15.48308, 49.30193]}}, {"type" : "Feature", "properties" : {"label:cs" : "Bo\u017e\u00ed muka na okraji T\u0159e\u0161t\u011b u silnice na Batelov", "P31" : "http://www.wikidata.org/entity/Q3395121", "P31^label:cs" : "Bo\u017e\u00ed muka", "P131^label:cs" : "T\u0159e\u0161\u0165", "P6736" : "22729"}, "geometry" : {"type" : "Point", "coordinates" : [15.46885, 49.297]}}, {"type" : "Feature", "properties" : {"label:cs" : "K\u0159\u00ed\u017e severn\u011b od T\u0159e\u0161t\u011b u samoty \u010cesal\u00edk", "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" : "19452"}, "geometry" : {"type" : "Point", "coordinates" : [15.47295, 49.30758]}}]} | 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": {"type": "string"}, "P6736": {"type": "string"}}, "required": ["label:cs", "P31", "P31^label:cs", "P131^label:cs", "P6736"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "lodash": {"type": "string"}}, "required": ["angular", "lodash"]}, "devDependencies": {"type": "object", "properties": {"angular-mocks": {"type": "string"}, "jquery": {"type": "string"}}, "required": ["angular-mocks", "jquery"]}}, "required": ["name", "version", "homepage", "authors", "description", "main", "keywords", "license", "ignore", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "angular-primus", "version" : "1.0.1", "homepage" : "https://github.com/neoziro/angular-primus", "authors" : ["Greg Berg\u00e9 <[email protected]>"], "description" : "Primus provider for Angular.", "main" : "angular-primus.js", "keywords" : ["primus", "angular", "provider"], "license" : "MIT", "ignore" : ["**/.*", "package.json", "karma.conf.js", "node_modules", "bower_components", "Gruntfile.js", "test"], "dependencies" : {"angular" : "~1.3.9", "lodash" : "~3.10.0"}, "devDependencies" : {"angular-mocks" : "~1.3.9", "jquery" : "^2.1.0"}} | 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": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "lodash": {"type": "string"}}, "required": ["angular", "lodash"]}, "devDependencies": {"type": "object", "properties": {"angular-mocks": {"type": "string"}, "jquery": {"type": "string"}}, "required": ["angular-mocks", "jquery"]}}, "required": ["name", "version", "homepage", "authors", "description", "main", "keywords", "license", "ignore", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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 smooth).", "Spoon the potatoes into a large saucepan over medium-high heat. Stir in butter, water, tomato sauce, and half-and-half. Season with salt, pepper, and thyme. Stir in cashews, and mix well. Bring to a boil, reduce heat to medium low, and simmer until cashews are soft, about 50 to 60 minutes."], "ingredients" : ["4 large sweet potatoes", "1/3 cup butter", "8 cups water", "1/2 cup tomato sauce", "2 tablespoons half-and-half", "2 teaspoons salt", "1/8 teaspoon freshly ground black pepper", "1 pinch dried thyme", "1 cup cashew halves"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Creamy Sweet Potato Soup", "url" : "http://allrecipes.com/recipe/86183/creamy-sweet-potato-soup/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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", "items": {"type": "number"}}}, "required": ["global", "bands"]}}, "required": ["name", "id", "isDefault", "gains"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"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"]}}, "required": ["name", "id", "isDefault", "gains"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
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": "boolean"}, "prettier.eslintIntegration": {"type": "boolean"}, "prettier.parser": {"type": "string"}, "prettier.semi": {"type": "boolean"}, "prettier.requireConfig": {"type": "boolean"}, "jest.autoEnable": {"type": "boolean"}, "clang-format.language.javascript.enable": {"type": "boolean"}, "clang-format.language.typescript.enable": {"type": "boolean"}, "files.associations": {"type": "object", "properties": {".envrc": {"type": "string"}, "*.idl": {"type": "string"}, "__bit_reference": {"type": "string"}, "__functional_base": {"type": "string"}, "algorithm": {"type": "string"}, "atomic": {"type": "string"}, "bitset": {"type": "string"}, "chrono": {"type": "string"}, "deque": {"type": "string"}, "functional": {"type": "string"}, "iterator": {"type": "string"}, "limits": {"type": "string"}, "locale": {"type": "string"}, "memory": {"type": "string"}, "ratio": {"type": "string"}, "system_error": {"type": "string"}, "tuple": {"type": "string"}, "type_traits": {"type": "string"}, "vector": {"type": "string"}}, "required": [".envrc", "*.idl", "__bit_reference", "__functional_base", "algorithm", "atomic", "bitset", "chrono", "deque", "functional", "iterator", "limits", "locale", "memory", "ratio", "system_error", "tuple", "type_traits", "vector"]}}, "required": ["editor.detectIndentation", "editor.formatOnSave", "editor.tabSize", "eslint.autoFixOnSave", "tslint.autoFixOnSave", "prettier.eslintIntegration", "prettier.parser", "prettier.semi", "prettier.requireConfig", "jest.autoEnable", "clang-format.language.javascript.enable", "clang-format.language.typescript.enable", "files.associations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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.language.javascript.enable" : false, "clang-format.language.typescript.enable" : false, "files.associations" : {".envrc" : "shellscript", "*.idl" : "avro", "__bit_reference" : "c", "__functional_base" : "c", "algorithm" : "c", "atomic" : "c", "bitset" : "c", "chrono" : "c", "deque" : "c", "functional" : "c", "iterator" : "c", "limits" : "c", "locale" : "c", "memory" : "c", "ratio" : "c", "system_error" : "c", "tuple" : "c", "type_traits" : "c", "vector" : "c"}} | 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.parser": {"type": "string"}, "prettier.semi": {"type": "boolean"}, "prettier.requireConfig": {"type": "boolean"}, "jest.autoEnable": {"type": "boolean"}, "clang-format.language.javascript.enable": {"type": "boolean"}, "clang-format.language.typescript.enable": {"type": "boolean"}, "files.associations": {"type": "object", "properties": {".envrc": {"type": "string"}, "*.idl": {"type": "string"}, "__bit_reference": {"type": "string"}, "__functional_base": {"type": "string"}, "algorithm": {"type": "string"}, "atomic": {"type": "string"}, "bitset": {"type": "string"}, "chrono": {"type": "string"}, "deque": {"type": "string"}, "functional": {"type": "string"}, "iterator": {"type": "string"}, "limits": {"type": "string"}, "locale": {"type": "string"}, "memory": {"type": "string"}, "ratio": {"type": "string"}, "system_error": {"type": "string"}, "tuple": {"type": "string"}, "type_traits": {"type": "string"}, "vector": {"type": "string"}}, "required": [".envrc", "*.idl", "__bit_reference", "__functional_base", "algorithm", "atomic", "bitset", "chrono", "deque", "functional", "iterator", "limits", "locale", "memory", "ratio", "system_error", "tuple", "type_traits", "vector"]}}, "required": ["editor.detectIndentation", "editor.formatOnSave", "editor.tabSize", "eslint.autoFixOnSave", "tslint.autoFixOnSave", "prettier.eslintIntegration", "prettier.parser", "prettier.semi", "prettier.requireConfig", "jest.autoEnable", "clang-format.language.javascript.enable", "clang-format.language.typescript.enable", "files.associations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : {"id" : "t2_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=f247156d8613c6225422ae53ec96b9b95ddd5d24", "hash" : "a847aa66e6", "height" : 853, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAQAAwDASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQYH/8QAJRAAAQMDAwMFAAAAAAAAAAAAAQIDEQAEBQYHIRIUYRMiJkHC/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAH/xAAYEQEBAAMAAAAAAAAAAAAAAAABABEhQf/aAAwDAQACEQMRAD8Az9rUOu38Q6+13DSkJC/ZZJBLcSVAFMniDI81HHcLUxj5HcGBEjj807g9z8/j8OMd6/cNtghhT0LLMiJTIkEfRBoC8uWsg6H723t3HukJKg0lMwIkgRz5qqcIZXd//9k=", "url" : "https://external-preview.redd.it/MCkTWLMYtUODiXB76Aj5-W6XE09I3ynVTusNlV2OYQc.jpg?width=640&crop=smart&auto=webp&s=2b83eba7df683e2f9a85802be89ea27a16528eb4", "width" : 640}, "score" : {"comments" : 21, "downs" : 0, "ratio" : 0.97, "ups" : 99, "value" : 99}, "subreddit" : {"id" : "t5_2xy5e", "name" : "TerrainBuilding"}, "tags" : [], "title" : "WIP Bastion island for the Oceanic World of Mare Solum!", "url" : "https://www.reddit.com/r/TerrainBuilding/comments/8l03ea/wip_bastion_island_for_the_oceanic_world_of_mare/"} | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"defaultApplicationName": {"type": "string"}, "domain": {"type": "string"}, "firstSupportedLocaleWithFallback:": {"type": "string"}, "fistSupportedLocaleWithFallback:": {"type": "string"}, "localeId": {"type": "string"}, "translate:": {"type": "string"}, "translate:to:": {"type": "string"}, "translator": {"type": "string"}}, "required": ["defaultApplicationName", "domain", "firstSupportedLocaleWithFallback:", "fistSupportedLocaleWithFallback:", "localeId", "translate:", "translate:to:", "translator"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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", "translate:to:" : "pmm 5/8/2010 21:47", "translator" : "pmm 5/8/2010 22:05"}} | 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": "string"}, "localeId": {"type": "string"}, "translate:": {"type": "string"}, "translate:to:": {"type": "string"}, "translator": {"type": "string"}}, "required": ["defaultApplicationName", "domain", "firstSupportedLocaleWithFallback:", "fistSupportedLocaleWithFallback:", "localeId", "translate:", "translate:to:", "translator"]}}, "required": ["class", "instance"], "$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"}, "file_url": {"type": "string"}, "custom_fields": {"type": "object", "properties": {"edition": {"type": "integer"}, "date": {"type": "integer"}, "compiler": {"type": "string"}}, "required": ["edition", "date", "compiler"]}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["name", "description", "file_url", "custom_fields", "attributes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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", "value" : "Ironside Gray"}, {"trait_type" : "color_id", "value" : "1488"}, {"trait_type" : "hex", "value" : "#676662"}, {"trait_type" : "rgb", "value" : "(103, 102, 98)"}]} | 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"]}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["name", "description", "file_url", "custom_fields", "attributes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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:6.4", "an3.93:6.13"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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 \u2192 su\u00f1\u00f1\u0101g\u0101ra\u1e41 (mr)", "an3.93:6.2" : "s\u012bgha\u1e41 s\u012bgha\u1e41 \u2192 s\u012bghas\u012bgha\u1e41 (bj, sya-all, km, pts1ed)", "an3.93:6.4" : "ubbah\u0101peyya \u2192 ubb\u0101h\u0101peyya (sya-all, km)", "an3.93:6.13" : "Evamassu \u2192 evassu (mr)"} | 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-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"css": {"type": "string"}, "css-parse": {"type": "string"}, "list-selectors": {"type": "string"}, "postcss": {"type": "string"}, "postcss-remove-classes": {"type": "string"}}, "required": ["css", "css-parse", "list-selectors", "postcss", "postcss-remove-classes"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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://[email protected]/pankajpatel/css-diff.git"}, "keywords" : ["CSS"], "author" : "Pankaj Patel <[email protected]>", "license" : "MIT", "bugs" : {"url" : "https://github.com/pankajpatel/css-diff/issues"}, "homepage" : "https://github.com/pankajpatel/css-diff#readme", "dependencies" : {"css" : "^2.2.1", "css-parse" : "^2.0.0", "list-selectors" : "^2.0.0", "postcss" : "^5.2.5", "postcss-remove-classes" : "^1.0.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"css": {"type": "string"}, "css-parse": {"type": "string"}, "list-selectors": {"type": "string"}, "postcss": {"type": "string"}, "postcss-remove-classes": {"type": "string"}}, "required": ["css", "css-parse", "list-selectors", "postcss", "postcss-remove-classes"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": "string"}, "serve": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "debug", "dev", "preserve", "serve", "test"]}, "type": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"@shopify/shopify-api": {"type": "string"}, "compression": {"type": "string"}, "cookie-parser": {"type": "string"}, "cross-env": {"type": "string"}, "express": {"type": "string"}, "serve-static": {"type": "string"}}, "required": ["@shopify/shopify-api", "compression", "cookie-parser", "cross-env", "express", "serve-static"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}, "prettier": {"type": "string"}, "pretty-quick": {"type": "string"}, "supertest": {"type": "string"}, "vitest": {"type": "string"}}, "required": ["nodemon", "prettier", "pretty-quick", "supertest", "vitest"]}}, "required": ["name", "private", "scripts", "type", "engines", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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=production node backend/index.js", "test" : "vitest --reporter=verbose --dir backend"}, "type" : "module", "engines" : {"node" : ">=16.13.0"}, "dependencies" : {"@shopify/shopify-api" : "^3.1.0", "compression" : "^1.7.4", "cookie-parser" : "^1.4.6", "cross-env" : "^7.0.3", "express" : "^4.17.3", "serve-static" : "^1.14.1"}, "devDependencies" : {"nodemon" : "^2.0.15", "prettier" : "^2.6.2", "pretty-quick" : "^3.1.3", "supertest" : "^6.2.2", "vitest" : "^0.9.2"}} | 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"}}, "required": ["build", "debug", "dev", "preserve", "serve", "test"]}, "type": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"@shopify/shopify-api": {"type": "string"}, "compression": {"type": "string"}, "cookie-parser": {"type": "string"}, "cross-env": {"type": "string"}, "express": {"type": "string"}, "serve-static": {"type": "string"}}, "required": ["@shopify/shopify-api", "compression", "cookie-parser", "cross-env", "express", "serve-static"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}, "prettier": {"type": "string"}, "pretty-quick": {"type": "string"}, "supertest": {"type": "string"}, "vitest": {"type": "string"}}, "required": ["nodemon", "prettier", "pretty-quick", "supertest", "vitest"]}}, "required": ["name", "private", "scripts", "type", "engines", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"aalib.js": {"type": "string"}, "netlify-cli": {"type": "string"}, "xterm": {"type": "string"}, "xterm-addon-fit": {"type": "string"}, "xterm-addon-web-links": {"type": "string"}}, "required": ["aalib.js", "netlify-cli", "xterm", "xterm-addon-fit", "xterm-addon-web-links"]}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "string"}}, "required": ["build", "start"]}}, "required": ["name", "version", "description", "dependencies", "license", "repository", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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" : "[email protected]:fmhall/cli-website.git"}, "scripts" : {"build" : "npm install && mkdir -p ./css && cp node_modules/xterm/css/*.css ./css && mkdir -p ./js && cp node_modules/xterm*/lib/*.js* ./js && cp node_modules/aalib.js/dist/aalib.js* ./js", "start" : "netlify dev"}} | 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-addon-web-links": {"type": "string"}}, "required": ["aalib.js", "netlify-cli", "xterm", "xterm-addon-fit", "xterm-addon-web-links"]}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "string"}}, "required": ["build", "start"]}}, "required": ["name", "version", "description", "dependencies", "license", "repository", "scripts"], "$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"}, "repository": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "watch": {"type": "string"}, "clean": {"type": "string"}}, "required": ["test", "build", "watch", "clean"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"ioredis": {"type": "string"}, "lodash": {"type": "string"}}, "required": ["ioredis", "lodash"]}, "devDependencies": {"type": "object", "properties": {"babel": {"type": "string"}}, "required": ["babel"]}}, "required": ["name", "version", "repository", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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 lib/", "watch" : "npm run clean && babel --stage 1 -w -D src/ --out-dir lib/", "clean" : "rm -rf lib/"}, "author" : "Kapil <[email protected]>", "license" : "ISC", "dependencies" : {"ioredis" : "^3.2.2", "lodash" : "^4.17.10"}, "devDependencies" : {"babel" : "^5.8.34"}} | 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"}, "clean": {"type": "string"}}, "required": ["test", "build", "watch", "clean"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"ioredis": {"type": "string"}, "lodash": {"type": "string"}}, "required": ["ioredis", "lodash"]}, "devDependencies": {"type": "object", "properties": {"babel": {"type": "string"}}, "required": ["babel"]}}, "required": ["name", "version", "repository", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"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": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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, 1, 284.246, 268.058, 1, 253.074, 129.578, 1, 260.989, 129.285, 1, 247.384, 131.889, 1, 264.835, 130.671, 1], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]} | 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": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "publisher": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required": ["vscode"]}, "categories": {"type": "array", "items": {"type": "string"}}, "contributes": {"type": "object", "properties": {"themes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "uiTheme": {"type": "string"}, "path": {"type": "string"}}, "required": ["label", "uiTheme", "path"]}}}, "required": ["themes"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"deploy": {"type": "string"}}, "required": ["deploy"]}, "badges": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}}, "required": ["url", "href", "description"]}}, "galleryBanner": {"type": "object", "properties": {"color": {"type": "string"}, "theme": {"type": "string"}}, "required": ["color", "theme"]}, "icon": {"type": "string"}}, "required": ["name", "displayName", "description", "version", "publisher", "homepage", "repository", "bugs", "engines", "categories", "contributes", "keywords", "scripts", "badges", "galleryBanner", "icon"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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://github.com/citycide/vscode-cosmos.git"}, "bugs" : {"url" : "https://github.com/citycide/vscode-cosmos/issues"}, "engines" : {"vscode" : "^1.41.0"}, "categories" : ["Themes"], "contributes" : {"themes" : [{"label" : "Material Cosmos: Starfield", "uiTheme" : "vs-dark", "path" : "./themes/starfield.color-theme.json"}, {"label" : "Material Cosmos: Supernova", "uiTheme" : "vs-dark", "path" : "./themes/supernova.color-theme.json"}]}, "keywords" : ["theme", "material", "dark", "flat", "space", "supernova", "starfield", "bold"], "scripts" : {"deploy" : "vsce publish -m 'chore(version): %s'"}, "badges" : [{"url" : "https://flat.badgen.net/vs-marketplace/v/citycide.theme-material-cosmos", "href" : "https://marketplace.visualstudio.com/items?itemName=citycide.theme-material-cosmos", "description" : "Extension version"}], "galleryBanner" : {"color" : "#4b5b64", "theme" : "dark"}, "icon" : "icon.png"} | 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": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required": ["vscode"]}, "categories": {"type": "array", "items": {"type": "string"}}, "contributes": {"type": "object", "properties": {"themes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "uiTheme": {"type": "string"}, "path": {"type": "string"}}, "required": ["label", "uiTheme", "path"]}}}, "required": ["themes"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"deploy": {"type": "string"}}, "required": ["deploy"]}, "badges": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}}, "required": ["url", "href", "description"]}}, "galleryBanner": {"type": "object", "properties": {"color": {"type": "string"}, "theme": {"type": "string"}}, "required": ["color", "theme"]}, "icon": {"type": "string"}}, "required": ["name", "displayName", "description", "version", "publisher", "homepage", "repository", "bugs", "engines", "categories", "contributes", "keywords", "scripts", "badges", "galleryBanner", "icon"], "$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"}, "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": {"type": "string"}, "establishment": {"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "slug": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "string"}, "telephone": {"type": "string"}, "grant_date": {"type": "string"}, "activities": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "url", "slug", "name", "address", "telephone", "grant_date", "activities"]}, "impacted_products": {"type": "array", "items": {"type": "string"}}, "quantity_recovered": {"type": "integer"}, "quantity_unit": {"type": "string"}, "states": {"type": "null"}}, "required": ["id", "title", "url", "reasons", "status", "risk_level", "start_date", "end_date", "summary", "establishment", "impacted_products", "quantity_recovered", "quantity_unit", "states"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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", "start_date" : "2017-01-18", "end_date" : "2017-02-23", "summary" : "WASHINGTON, Jan. 18, 2017 Willow Tree Poultry Farm, Inc., an Attleboro, Mass., establishment, is recalling approximately 204 pounds of chicken salad products due to misbranding, the U.S. Department of Agricultures Food Safety and Inspection Service (FSIS) announced today. The consumer ready product containers are labeled...\n", "establishment" : {"id" : "M8827+P8827", "url" : "http://www.fsis.usda.gov/inspection/fsis-inspected-establishments/willow-tree-poultry-farm-inc", "slug" : "willow-tree-poultry-farm-inc", "name" : "WILLOW TREE POULTRY FARM, INC.", "address" : "997 South Main Street \n Attleboro, MA 2703", "telephone" : "(508) 222-2469", "grant_date" : "2016-01-12", "activities" : ["Meat Processing", "Poultry Processing"]}, "impacted_products" : ["6-oz packages of Whole Foods Market \u201cChicken Salad\u201d with a \u201cSell By\u201d date of 1/24/2017."], "quantity_recovered" : 24, "quantity_unit" : "pounds", "states" : null} | 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": {"type": "string"}, "establishment": {"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "slug": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "string"}, "telephone": {"type": "string"}, "grant_date": {"type": "string"}, "activities": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "url", "slug", "name", "address", "telephone", "grant_date", "activities"]}, "impacted_products": {"type": "array", "items": {"type": "string"}}, "quantity_recovered": {"type": "integer"}, "quantity_unit": {"type": "string"}, "states": {"type": "null"}}, "required": ["id", "title", "url", "reasons", "status", "risk_level", "start_date", "end_date", "summary", "establishment", "impacted_products", "quantity_recovered", "quantity_unit", "states"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 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, "reviewText" : "I saw one of these in Finland and I bought one.", "reviewDate" : "2017-11-21T06:03:29.1150952+02:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "ContactTelephone1": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "ContactTelephone1", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "GeneralComments": {"type": "string"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "OperatorsReference", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "GeneralComments", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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", "Town" : "Miguel Hidalgo", "StateOrProvince" : "Ciudad De Mexico", "Postcode" : "11650", "CountryID" : 146, "Latitude" : 19.434246, "Longitude" : -99.212761, "ContactTelephone1" : "+52 055 520 1000", "DistanceUnit" : 0}, "Connections" : [{"ID" : 116438, "ConnectionTypeID" : 30, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 18, "CurrentTypeID" : 20, "Quantity" : 2}], "NumberOfPoints" : 2, "GeneralComments" : "2 Tesla Connectors, up to 18kW.Available for patrons only. Please see front desk.", "StatusTypeID" : 50, "DateLastStatusUpdate" : "2017-02-03T11:12:00Z", "DataQualityLevel" : 1, "DateCreated" : "2017-02-03T11:12:00Z", "SubmissionStatusTypeID" : 200} | 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", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "ContactTelephone1": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "ContactTelephone1", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "GeneralComments": {"type": "string"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "OperatorsReference", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "GeneralComments", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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\uc218": {"type": "string"}, "\ub2f9\uc120\ub300\uc218": {"type": "string"}}, "required": ["\uc774\ub984", "\ud55c\ubb38\uba85", "\uc0dd\ub144\uc6d4\uc77c", "\uc815\ub2f9", "\uc120\uac70\uad6c", "\ub2f9\uc120\ud69f\uc218", "\ub2f9\uc120\ub300\uc218"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\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": "string"}}, "required": ["\uc774\ub984", "\ud55c\ubb38\uba85", "\uc0dd\ub144\uc6d4\uc77c", "\uc815\ub2f9", "\uc120\uac70\uad6c", "\ub2f9\uc120\ud69f\uc218", "\ub2f9\uc120\ub300\uc218"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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, garlic powder, black pepper, bay leaves, chili powder, and paprika.", "Cook soup over medium-low, maintaining a slight boil, until potatoes soften, about 40 minutes. Add broccoli and peas; cook until broccoli is tender, about 20 more minutes. Remove bay leaves."], "ingredients" : ["2 tablespoons olive oil", "1/2 onion, diced", "1 yellow bell pepper, diced", "7 cloves garlic, minced", "5 red potatoes, cut into 1-inch cubes", "4 carrots, diced", "1 zucchini, sliced and quartered", "1 quart water, or as needed", "4 cups salsa", "1 1/2 teaspoons Italian seasoning", "1 1/2 teaspoons onion powder", "1 1/2 teaspoons garlic powder", "1 teaspoon ground black pepper", "2 bay leaves", "1 pinch chili powder", "1 pinch ground paprika", "1 head broccoli, cut into florets", "1/2 cup frozen peas"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Salsa Vegetable Soup", "url" : "http://allrecipes.com/recipe/231557/salsa-vegetable-soup/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"6049b9f4d238c8219423655ee894371ac4cb445f": {"type": "integer"}, "9262ac69198a70a8647b9920c9abcd65c814ddba": {"type": "integer"}, "363baea9cba210afac6d7a556fca596e30c46333": {"type": "integer"}}, "required": ["6049b9f4d238c8219423655ee894371ac4cb445f", "9262ac69198a70a8647b9920c9abcd65c814ddba", "363baea9cba210afac6d7a556fca596e30c46333"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"6049b9f4d238c8219423655ee894371ac4cb445f" : 1546247029, "9262ac69198a70a8647b9920c9abcd65c814ddba" : 1546246740, "363baea9cba210afac6d7a556fca596e30c46333" : 1545999972} | json_instruct | {"type": "object", "properties": {"6049b9f4d238c8219423655ee894371ac4cb445f": {"type": "integer"}, "9262ac69198a70a8647b9920c9abcd65c814ddba": {"type": "integer"}, "363baea9cba210afac6d7a556fca596e30c46333": {"type": "integer"}}, "required": ["6049b9f4d238c8219423655ee894371ac4cb445f", "9262ac69198a70a8647b9920c9abcd65c814ddba", "363baea9cba210afac6d7a556fca596e30c46333"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": ["stationId", "stationGroupId"]}}}, "required": ["lineId", "name", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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", "properties": {"website": {"type": "string"}}, "required": ["website"]}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "extensions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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://acumen.network/"}} | 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"]}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "extensions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": "object", "properties": {"path": {"type": "string"}, "name": {"type": "string"}, "courts": {"type": "array", "items": {"type": "string"}}}, "required": ["path", "name", "courts"]}}}, "required": ["courts", "jurisdictions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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": "string"}, "courts": {"type": "array", "items": {"type": "string"}}}, "required": ["path", "name", "courts"]}}}, "required": ["courts", "jurisdictions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"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" : "sumittrader"}, {"accountName" : "rajinienterprises"}, {"accountName" : "sales"}, {"accountName" : "rent"}, {"accountName" : "salary"}, {"accountName" : "machine"}, {"accountName" : "bankloan"}, {"accountName" : "capital", "accountDisplayName" : "Capital Account"}, {"accountName" : "discountreceived"}, {"accountName" : "coin"}, {"accountName" : "7upwin"}, {"accountName" : "computerwin"}, {"accountName" : "win"}, {"accountName" : "loss"}, {"accountName" : "spin"}, {"accountName" : "gift"}, {"accountName" : "bonus"}, {"accountName" : "sundry"}, {"accountName" : "building"}, {"accountName" : "repair"}, {"accountName" : "unknown"}] | 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": {"type": "object", "properties": {"isAdvancedMode": {"type": "boolean"}, "inputParameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "typeHintID": {"type": "string"}}, "required": ["name", "description", "typeHintID"]}}, "outputParameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "description"]}}}, "required": ["isAdvancedMode", "inputParameters", "outputParameters"]}}, "required": ["name", "nickname", "category", "subcategory", "description", "exposure", "ghpython"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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 full filepath to the JSON file that stores the diagram. Do not forget to add the extension .json to the filename.", "typeHintID" : "str"}], "outputParameters" : [{"name" : "form", "description" : "A COMPAS CEM form diagram."}]}} | 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"}, "inputParameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "typeHintID": {"type": "string"}}, "required": ["name", "description", "typeHintID"]}}, "outputParameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "description"]}}}, "required": ["isAdvancedMode", "inputParameters", "outputParameters"]}}, "required": ["name", "nickname", "category", "subcategory", "description", "exposure", "ghpython"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "keys": {"type": "string"}}, "required": ["name", "keys"]}}}, "required": ["resources", "groups"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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"}, {"name" : "fireworks_json", "type" : "json", "url" : "assets/particle/fireworks.json"}, {"name" : "fire_json", "type" : "json", "url" : "assets/particle/fire.json"}, {"name" : "sun_json", "type" : "json", "url" : "assets/particle/sun.json"}, {"name" : "jellyfish_json", "type" : "json", "url" : "assets/particle/jellyfish.json"}], "groups" : [{"name" : "preload", "keys" : "blood,star,energy,magic,fireworks_json,fire_json,sun_json,jellyfish_json"}]} | 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": "string"}, "keys": {"type": "string"}}, "required": ["name", "keys"]}}}, "required": ["resources", "groups"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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_experience": {"type": "integer"}, "order": {"type": "integer"}, "is_default": {"type": "integer"}}, "required": ["id", "identifier", "species_id", "height", "weight", "base_experience", "order", "is_default"]}, "species_name": {"type": "object", "properties": {"pokemon_species_id": {"type": "integer"}, "local_language_id": {"type": "integer"}, "name": {"type": "string"}, "genus": {"type": "string"}}, "required": ["pokemon_species_id", "local_language_id", "name", "genus"]}, "species_flavor_text": {"type": "object", "properties": {"species_id": {"type": "integer"}, "version_id": {"type": "integer"}, "language_id": {"type": "integer"}, "flavor_text": {"type": "string"}}, "required": ["species_id", "version_id", "language_id", "flavor_text"]}, "form": {"type": "object", "properties": {"id": {"type": "integer"}, "identifier": {"type": "string"}, "form_identifier": {"type": "string"}, "pokemon_id": {"type": "integer"}, "introduced_in_version_group_id": {"type": "integer"}, "is_default": {"type": "integer"}, "is_battle_only": {"type": "integer"}, "is_mega": {"type": "integer"}, "form_order": {"type": "integer"}, "order": {"type": "integer"}}, "required": ["id", "identifier", "form_identifier", "pokemon_id", "introduced_in_version_group_id", "is_default", "is_battle_only", "is_mega", "form_order", "order"]}}, "required": ["pokemon", "species_name", "species_flavor_text", "form"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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" : 478, "version_id" : 26, "language_id" : 9, "flavor_text" : "Legends in snowy regions say that a woman who\nwas lost on an icy mountain was reborn as Froslass."}, "form" : {"id" : 478, "identifier" : "froslass", "form_identifier" : "", "pokemon_id" : 478, "introduced_in_version_group_id" : 8, "is_default" : 1, "is_battle_only" : 0, "is_mega" : 0, "form_order" : 1, "order" : 465}} | 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": {"type": "integer"}}, "required": ["id", "identifier", "species_id", "height", "weight", "base_experience", "order", "is_default"]}, "species_name": {"type": "object", "properties": {"pokemon_species_id": {"type": "integer"}, "local_language_id": {"type": "integer"}, "name": {"type": "string"}, "genus": {"type": "string"}}, "required": ["pokemon_species_id", "local_language_id", "name", "genus"]}, "species_flavor_text": {"type": "object", "properties": {"species_id": {"type": "integer"}, "version_id": {"type": "integer"}, "language_id": {"type": "integer"}, "flavor_text": {"type": "string"}}, "required": ["species_id", "version_id", "language_id", "flavor_text"]}, "form": {"type": "object", "properties": {"id": {"type": "integer"}, "identifier": {"type": "string"}, "form_identifier": {"type": "string"}, "pokemon_id": {"type": "integer"}, "introduced_in_version_group_id": {"type": "integer"}, "is_default": {"type": "integer"}, "is_battle_only": {"type": "integer"}, "is_mega": {"type": "integer"}, "form_order": {"type": "integer"}, "order": {"type": "integer"}}, "required": ["id", "identifier", "form_identifier", "pokemon_id", "introduced_in_version_group_id", "is_default", "is_battle_only", "is_mega", "form_order", "order"]}}, "required": ["pokemon", "species_name", "species_flavor_text", "form"], "$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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "moduleType": {"type": "array", "items": {}}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"angular-moment": {"type": "string"}, "angular": {"type": "string"}, "ramda": {"type": "string"}, "moment": {"type": "string"}}, "required": ["angular-moment", "angular", "ramda", "moment"]}}, "required": ["name", "description", "main", "authors", "license", "keywords", "homepage", "moduleType", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "niceandsimple-datepicker", "description" : "Nice and simple datepicker for AngularJS with infinite scrolling calendar", "main" : "index.js", "authors" : ["Andrey Matveev <[email protected]> (http://andreym.com)"], "license" : "ISC", "keywords" : ["angular", "angularjs", "datepicker", "calendar"], "homepage" : "https://github.com/niceandsimple/niceandsimple-datepicker", "moduleType" : [], "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"angular-moment" : "~0.10.2", "angular" : "~1.4.4", "ramda" : "~0.17.1", "moment" : "~2.10.6"}} | 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": {}}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"angular-moment": {"type": "string"}, "angular": {"type": "string"}, "ramda": {"type": "string"}, "moment": {"type": "string"}}, "required": ["angular-moment", "angular", "ramda", "moment"]}}, "required": ["name", "description", "main", "authors", "license", "keywords", "homepage", "moduleType", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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-schema.org/draft-07/schema#"}
| {"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", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}, "evm_code_coverage": {"type": "string"}, "integer_underflow": {"type": "boolean"}, "integer_overflow": {"type": "boolean"}, "parity_multisig_bug_2": {"type": "boolean"}, "callstack_depth_attack_vulnerability": {"type": "boolean"}, "transaction-ordering_dependence_tod": {"type": "boolean"}, "timestamp_dependency": {"type": "boolean"}, "re-entrancy_vulnerability": {"type": "boolean"}}, "required": ["errors", "file", "name", "evm_code_coverage", "integer_underflow", "integer_overflow", "parity_multisig_bug_2", "callstack_depth_attack_vulnerability", "transaction-ordering_dependence_tod", "timestamp_dependency", "re-entrancy_vulnerability"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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" : "99.8%", "integer_underflow" : false, "integer_overflow" : false, "parity_multisig_bug_2" : false, "callstack_depth_attack_vulnerability" : false, "transaction-ordering_dependence_tod" : false, "timestamp_dependency" : false, "re-entrancy_vulnerability" : false}, {"errors" : [], "file" : "/unique_chucks/10/0xadc4c7037aa071b8e2b229debf645f9f70448234.sol", "name" : "SafeMath", "evm_code_coverage" : "100.0%", "integer_underflow" : false, "integer_overflow" : false, "parity_multisig_bug_2" : false, "callstack_depth_attack_vulnerability" : false, "transaction-ordering_dependence_tod" : false, "timestamp_dependency" : false, "re-entrancy_vulnerability" : false}, {"errors" : [], "file" : "/unique_chucks/10/0xadc4c7037aa071b8e2b229debf645f9f70448234.sol", "name" : "StandardToken", "evm_code_coverage" : "99.8%", "integer_underflow" : false, "integer_overflow" : false, "parity_multisig_bug_2" : false, "callstack_depth_attack_vulnerability" : false, "transaction-ordering_dependence_tod" : false, "timestamp_dependency" : false, "re-entrancy_vulnerability" : false}]} | 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"}, "evm_code_coverage": {"type": "string"}, "integer_underflow": {"type": "boolean"}, "integer_overflow": {"type": "boolean"}, "parity_multisig_bug_2": {"type": "boolean"}, "callstack_depth_attack_vulnerability": {"type": "boolean"}, "transaction-ordering_dependence_tod": {"type": "boolean"}, "timestamp_dependency": {"type": "boolean"}, "re-entrancy_vulnerability": {"type": "boolean"}}, "required": ["errors", "file", "name", "evm_code_coverage", "integer_underflow", "integer_overflow", "parity_multisig_bug_2", "callstack_depth_attack_vulnerability", "transaction-ordering_dependence_tod", "timestamp_dependency", "re-entrancy_vulnerability"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"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"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "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 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"], "names" : ["React", "Store", "createContext"], "mappings" : "AAAA,OAAOA,KAAP,MAAkB,OAAlB,C,CAEA;;AAEA,IAAMC,KAAK,GAAGD,KAAK,CAACE,aAAN,CAAoB,EAApB,CAAd;AAEA,eAAeD,KAAf", "sourcesContent" : ["import React from \"react\";\n\n// Store Context is the global context that is managed by reducers.\n\nconst Store = React.createContext({});\n\nexport default Store;\n"]}, "metadata" : {}, "sourceType" : "module"} | 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"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["dev", "build"]}, "dependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@kangc/v-md-editor": {"type": "string"}, "@riophae/vue-treeselect": {"type": "string"}, "@tinymce/tinymce-vue": {"type": "string"}, "axios": {"type": "string"}, "core-js": {"type": "string"}, "echarts": {"type": "string"}, "element-ui": {"type": "string"}, "less": {"type": "string"}, "node-sass": {"type": "string"}, "nprogress": {"type": "string"}, "qs": {"type": "string"}, "sass-loader": {"type": "string"}, "tinymce": {"type": "string"}, "vue": {"type": "string"}, "vue-router": {"type": "string"}, "vuex": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "@kangc/v-md-editor", "@riophae/vue-treeselect", "@tinymce/tinymce-vue", "axios", "core-js", "echarts", "element-ui", "less", "node-sass", "nprogress", "qs", "sass-loader", "tinymce", "vue", "vue-router", "vuex"]}, "devDependencies": {"type": "object", "properties": {"@vue/cli-plugin-babel": {"type": "string"}, "@vue/cli-plugin-router": {"type": "string"}, "@vue/cli-plugin-vuex": {"type": "string"}, "@vue/cli-service": {"type": "string"}, "babel-plugin-component": {"type": "string"}, "less-loader": {"type": "string"}, "vue-cli-plugin-element": {"type": "string"}, "vue-template-compiler": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["@vue/cli-plugin-babel", "@vue/cli-plugin-router", "@vue/cli-plugin-vuex", "@vue/cli-service", "babel-plugin-component", "less-loader", "vue-cli-plugin-element", "vue-template-compiler", "webpack"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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.8", "axios" : "^0.21.1", "core-js" : "^3.6.5", "echarts" : "^5.1.2", "element-ui" : "^2.15.1", "less" : "^3.13.1", "node-sass" : "^4.14.1", "nprogress" : "^0.2.0", "qs" : "^6.9.6", "sass-loader" : "^8.0.2", "tinymce" : "^5.7.0", "vue" : "^2.6.11", "vue-router" : "^3.2.0", "vuex" : "^3.4.0"}, "devDependencies" : {"@vue/cli-plugin-babel" : "~4.5.0", "@vue/cli-plugin-router" : "~4.5.0", "@vue/cli-plugin-vuex" : "~4.5.0", "@vue/cli-service" : "~4.5.0", "babel-plugin-component" : "^1.1.1", "less-loader" : "^5.0.0", "vue-cli-plugin-element" : "^1.0.1", "vue-template-compiler" : "^2.6.11", "webpack" : "^4.46.0"}} | 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": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@kangc/v-md-editor": {"type": "string"}, "@riophae/vue-treeselect": {"type": "string"}, "@tinymce/tinymce-vue": {"type": "string"}, "axios": {"type": "string"}, "core-js": {"type": "string"}, "echarts": {"type": "string"}, "element-ui": {"type": "string"}, "less": {"type": "string"}, "node-sass": {"type": "string"}, "nprogress": {"type": "string"}, "qs": {"type": "string"}, "sass-loader": {"type": "string"}, "tinymce": {"type": "string"}, "vue": {"type": "string"}, "vue-router": {"type": "string"}, "vuex": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "@kangc/v-md-editor", "@riophae/vue-treeselect", "@tinymce/tinymce-vue", "axios", "core-js", "echarts", "element-ui", "less", "node-sass", "nprogress", "qs", "sass-loader", "tinymce", "vue", "vue-router", "vuex"]}, "devDependencies": {"type": "object", "properties": {"@vue/cli-plugin-babel": {"type": "string"}, "@vue/cli-plugin-router": {"type": "string"}, "@vue/cli-plugin-vuex": {"type": "string"}, "@vue/cli-service": {"type": "string"}, "babel-plugin-component": {"type": "string"}, "less-loader": {"type": "string"}, "vue-cli-plugin-element": {"type": "string"}, "vue-template-compiler": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["@vue/cli-plugin-babel", "@vue/cli-plugin-router", "@vue/cli-plugin-vuex", "@vue/cli-service", "babel-plugin-component", "less-loader", "vue-cli-plugin-element", "vue-template-compiler", "webpack"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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", "classAnnotations", "interfaces", "superClasses"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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": "http://json-schema.org/draft-07/schema#"} |
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"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {"type": "object", "properties": {"color": {"type": "string"}, "default": {"type": "boolean"}, "description": {"type": "string"}, "id": {"type": "integer"}, "name": {"type": "string"}, "node_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["color", "default", "description", "id", "name", "node_id", "url"]}}, "mergeable": {"type": "boolean"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "null"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ETag" : "W/\"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_h9b5dbc"}, "html_url" : "https://github.com/conda-forge/pygeos-feedstock/pull/33", "id" : 582338973, "labels" : [{"color" : "191970", "default" : false, "description" : "Instruct the bot to retry the PR", "id" : 1891104037, "name" : "bot-rerun", "node_id" : "MDU6TGFiZWwxODkxMTA0MDM3", "url" : "https://api.github.com/repos/conda-forge/pygeos-feedstock/labels/bot-rerun"}, {"color" : "191970", "default" : false, "description" : "Instruct the bot to retry the PR", "id" : 1, "name" : "bot-rerun", "node_id" : "hello", "url" : "world"}], "mergeable" : false, "mergeable_state" : "dirty", "merged" : false, "merged_at" : null, "number" : 33, "state" : "closed", "updated_at" : "2021-05-19T07:20:18Z"} | json_instruct | {"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {"type": "object", "properties": {"color": {"type": "string"}, "default": {"type": "boolean"}, "description": {"type": "string"}, "id": {"type": "integer"}, "name": {"type": "string"}, "node_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["color", "default", "description", "id", "name", "node_id", "url"]}}, "mergeable": {"type": "boolean"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "null"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": "integer"}, "c": {"type": "integer"}}, "required": ["x", "y", "rx", "ry", "angle", "i0", "n", "c"]}, "bulge": {"type": "null"}, "bar": {"type": "object", "properties": {"width": {"type": "number"}, "height": {"type": "number"}, "x": {"type": "number"}, "y": {"type": "number"}, "angle": {"type": "number"}, "i0": {"type": "number"}, "n": {"type": "number"}, "c": {"type": "number"}}, "required": ["width", "height", "x", "y", "angle", "i0", "n", "c"]}}, "required": ["disk", "bulge", "bar"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"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" : 86.518, "i0" : 0.9890000000000001, "n" : 0.262, "c" : 0.6529999999999999}} | 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", "angle", "i0", "n", "c"]}, "bulge": {"type": "null"}, "bar": {"type": "object", "properties": {"width": {"type": "number"}, "height": {"type": "number"}, "x": {"type": "number"}, "y": {"type": "number"}, "angle": {"type": "number"}, "i0": {"type": "number"}, "n": {"type": "number"}, "c": {"type": "number"}}, "required": ["width", "height", "x", "y", "angle", "i0", "n", "c"]}}, "required": ["disk", "bulge", "bar"], "$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.