input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCode": {"type": "string"}, "dict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "webdict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "basic": {"type": "object", "properties": {"us-phonetic": {"type": "string"}, "phonetic": {"type": "string"}, "uk-phonetic": {"type": "string"}, "explains": {"type": "array", "items": {"type": "string"}}}, "required": ["us-phonetic", "phonetic", "uk-phonetic", "explains"]}, "l": {"type": "string"}}, "required": ["web", "query", "translation", "errorCode", "dict", "webdict", "basic", "l"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"web" : [{"value" : ["\u7802\u5ca9", "\u7802\u5ca9", "\u6c99\u5ca9"], "key" : "Sandstone"}, {"value" : ["\u4e91\u6bcd\u7802\u5ca9"], "key" : "micaceous sandstone"}, {"value" : ["\u77f3\u82f1\u5ca9\u8d28\u7802\u5ca9", "\u767d\u6ce1\u77f3", "\u7802\u5ca9"], "key" : "quartzitic sandstone"}], "query" : "sandstone", "translation" : ["\u7802\u5ca9"], "errorCode" : "0", "dict" : {"url" : "yddict://m.youdao.com/dict?le=eng&q=sandstone"}, "webdict" : {"url" : "http://m.youdao.com/dict?le=eng&q=sandstone"}, "basic" : {"us-phonetic" : "'s\u00e6nd'ston", "phonetic" : "'s\u00e6n(d)st\u0259\u028an", "uk-phonetic" : "'s\u00e6n(d)st\u0259\u028an", "explains" : ["n. [\u5ca9] \u7802\u5ca9\uff1b\u6c99\u5ca9"]}, "l" : "EN2zh-CHS"}
json_instruct
{"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCode": {"type": "string"}, "dict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "webdict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "basic": {"type": "object", "properties": {"us-phonetic": {"type": "string"}, "phonetic": {"type": "string"}, "uk-phonetic": {"type": "string"}, "explains": {"type": "array", "items": {"type": "string"}}}, "required": ["us-phonetic", "phonetic", "uk-phonetic", "explains"]}, "l": {"type": "string"}}, "required": ["web", "query", "translation", "errorCode", "dict", "webdict", "basic", "l"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
[3.8418240580313188, 4.461152868806713, 4.878767526288758, 3.891200579312094, 3.473232788505781, 4.213647271772409, 4.638805034011792, 3.982507624127071, 4.613300278261274, 4.155890554546249]
json_instruct
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"webhookID": {"type": "string"}, "webhookToken": {"type": "string"}, "AdminLogName": {"type": "string"}}, "required": ["webhookID", "webhookToken", "AdminLogName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"webhookID" : "", "webhookToken" : "", "AdminLogName" : "DayZServer_x64.ADM"}
json_instruct
{"type": "object", "properties": {"webhookID": {"type": "string"}, "webhookToken": {"type": "string"}, "AdminLogName": {"type": "string"}}, "required": ["webhookID", "webhookToken", "AdminLogName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id_10336": {"type": "object", "properties": {"publicdate": {"type": "string"}, "downloads": {"type": "integer"}}, "required": ["publicdate", "downloads"]}}, "required": ["id_10336"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id_10336" : {"publicdate" : "2015-11-02 09:28:49", "downloads" : 582}}
json_instruct
{"type": "object", "properties": {"id_10336": {"type": "object", "properties": {"publicdate": {"type": "string"}, "downloads": {"type": "integer"}}, "required": ["publicdate", "downloads"]}}, "required": ["id_10336"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"5242": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["5242"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"5242" : {"success" : false}}
json_instruct
{"type": "object", "properties": {"5242": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["5242"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"Serilog": {"type": "object", "properties": {"WriteTo": {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}}, "required": ["Name"]}}}, "required": ["WriteTo"]}}, "required": ["Serilog"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Serilog" : {"WriteTo" : [{"Name" : "Console"}]}}
json_instruct
{"type": "object", "properties": {"Serilog": {"type": "object", "properties": {"WriteTo": {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}}, "required": ["Name"]}}}, "required": ["WriteTo"]}}, "required": ["Serilog"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "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" : 97039, "cartId" : "4d32b7a9-531f-431f-8e58-f1df365c8e9b", "preferredProducts" : [], "productReviews" : [{"productId" : 4367, "reviewText" : "heard about this on new jersey hip hop radio, decided to give it a try.", "reviewDate" : "2016-06-04T02:45:36.8574976+03:00"}, {"productId" : 2584, "reviewText" : "My hummingbird loves to play with it.", "reviewDate" : "2019-12-15T11:11:12.6554836+02:00"}, {"productId" : 2447, "reviewText" : "one of my hobbies is theater. and when i'm acting this works great.", "reviewDate" : "2019-11-05T21:53:58.8452738+02:00"}, {"productId" : 1944, "reviewText" : "heard about this on timba radio, decided to give it a try.", "reviewDate" : "2019-04-25T19:01:53.2066104+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "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": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "07", "provinceId" : "73", "regencyId" : "71", "name" : "Tallo"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"index.browser.js": {"type": "string"}, "index.min.js": {"type": "string"}}, "required": ["index.browser.js", "index.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"index.browser.js" : "sha512-59aAy0cdYzad/yO4k1qmq8J3ypt/QagbrwdA0uG7hYe9Ndd9dL+HCQiF4QCbTC5gNfXOilrm2UzHUgy3ipR2Zw==", "index.min.js" : "sha512-oSjUBHvAFEBjsqP3k2RbsCKvmjmhTxUwUTBi9MOi6hakg5UCyBCs09y9Kgm44t7XKmlYZkcVV3DCwdCrr+LQkg=="}
json_instruct
{"type": "object", "properties": {"index.browser.js": {"type": "string"}, "index.min.js": {"type": "string"}}, "required": ["index.browser.js", "index.min.js"], "$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": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["Combine walnuts, 1 tablespoon water, sugar, cayenne, and kosher salt in small nonstick skillet. Stir over medium heat until water evaporates and nuts are dry and golden, about 4 minutes. Remove from heat; cool. (Can be made 1 day ahead. Store airtight at room temperature.)", "Whisk olive oil, vegetable oil, and vinegar in small bowl to blend. Season dressing to taste with salt and pepper. Combine watercress, endive, and pear in large bowl. Add dressing and toss to coat. Sprinkle with nuts."], "ingredients" : ["1/2 cup coarsely chopped walnuts", "1 tablespoon water", "1 teaspoon sugar", "Large pinch of cayenne pepper", "Large pinch of coarse kosher salt", "1 1/2 tablespoons extra-virgin olive oil", "1 1/2 tablespoons vegetable oil", "1 tablespoon balsamic vinegar", "1 large bunch watercress, thick stems trimmed", "2 heads of Belgian endive (preferably red), sliced crosswise", "1 ripe Asian pear, halved, cored, thinly sliced"], "language" : "en-US", "source" : "www.epicurious.com", "tags" : ["Salad", "Fruit", "Leafy Green", "Nut", "Side", "Quick & Easy", "Vinegar", "Walnut", "Fall", "Winter", "Asian Pear", "Endive", "Party", "Sugar Conscious", "Kidney Friendly", "Vegan", "Vegetarian", "Pescatarian", "Dairy Free", "Wheat/Gluten-Free", "Peanut Free", "Soy Free", "Kosher"], "title" : "Endive and Asian Pear Salad", "url" : "http://www.epicurious.com/recipes/food/views/endive-and-asian-pear-salad-109069"}
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": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/biome/tentacle/tentaclepopbig/tentaclepopbig.object": {"type": "array", "items": {"type": "string"}}}, "required": ["objects/biome/tentacle/tentaclepopbig/tentaclepopbig.object"]}, "Texts": {"type": "object", "properties": {"Eng": {"type": "string"}, "Rus": {"type": "string"}}, "required": ["Eng", "Rus"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"DeniedAlternatives" : [], "Files" : {"objects/biome/tentacle/tentaclepopbig/tentaclepopbig.object" : ["/avianDescription"]}, "Texts" : {"Eng" : "A big growth. Something is inside, I wonder what it is...", "Rus" : "\u0411\u043e\u043b\u044c\u0448\u0430\u044f \u043a\u0430\u043f\u0441\u0443\u043b\u0430. \u0427\u0442\u043e-\u0442\u043e \u0432\u043d\u0443\u0442\u0440\u0438, \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u043e \u0447\u0442\u043e..."}}, {"DeniedAlternatives" : [], "Files" : {"objects/biome/tentacle/tentaclepopbig/tentaclepopbig.object" : ["/description"]}, "Texts" : {"Eng" : "A large breakable growth. Wonder what's inside.", "Rus" : "\u0411\u043e\u043b\u044c\u0448\u0430\u044f \u0440\u0430\u0437\u0440\u0443\u0448\u0430\u0435\u043c\u0430\u044f \u043a\u0430\u043f\u0441\u0443\u043b\u0430. \u0418\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u043e \u0447\u0442\u043e \u0432\u043d\u0443\u0442\u0440\u0438."}}, {"DeniedAlternatives" : [], "Files" : {"objects/biome/tentacle/tentaclepopbig/tentaclepopbig.object" : ["/apexDescription"]}, "Texts" : {"Eng" : "A large growth. It could contain something useful.", "Rus" : "\u0411\u043e\u043b\u044c\u0448\u0430\u044f \u043a\u0430\u043f\u0441\u0443\u043b\u0430. \u0412\u043d\u0443\u0442\u0440\u0438 \u043c\u043e\u0436\u0435\u0442 \u043e\u043a\u0430\u0437\u0430\u0442\u044c\u0441\u044f \u0447\u0442\u043e-\u043d\u0438\u0431\u0443\u0434\u044c \u043f\u043e\u043b\u0435\u0437\u043d\u043e\u0435."}}, {"DeniedAlternatives" : [], "Files" : {"objects/biome/tentacle/tentaclepopbig/tentaclepopbig.object" : ["/shortdescription"]}, "Texts" : {"Eng" : "Large Tentacle Capsule", "Rus" : "\u0411\u043e\u043b\u044c\u0448\u0430\u044f \u041a\u0430\u043f\u0441\u0443\u043b\u0430 \u0429\u0443\u043f\u0430\u043b\u0435\u0446"}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/biome/tentacle/tentaclepopbig/tentaclepopbig.object": {"type": "array", "items": {"type": "string"}}}, "required": ["objects/biome/tentacle/tentaclepopbig/tentaclepopbig.object"]}, "Texts": {"type": "object", "properties": {"Eng": {"type": "string"}, "Rus": {"type": "string"}}, "required": ["Eng", "Rus"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"900453689": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900453690": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900453691": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900453692": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900453693": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900453694": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900453695": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900453696": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900453689", "900453690", "900453691", "900453692", "900453693", "900453694", "900453695", "900453696"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"900453689" : {"nama" : "TPS 1", "dapil" : [3507, 13509, 2350206]}, "900453690" : {"nama" : "TPS 2", "dapil" : [3507, 13509, 2350206]}, "900453691" : {"nama" : "TPS 3", "dapil" : [3507, 13509, 2350206]}, "900453692" : {"nama" : "TPS 4", "dapil" : [3507, 13509, 2350206]}, "900453693" : {"nama" : "TPS 5", "dapil" : [3507, 13509, 2350206]}, "900453694" : {"nama" : "TPS 6", "dapil" : [3507, 13509, 2350206]}, "900453695" : {"nama" : "TPS 7", "dapil" : [3507, 13509, 2350206]}, "900453696" : {"nama" : "TPS 8", "dapil" : [3507, 13509, 2350206]}}
json_instruct
{"type": "object", "properties": {"900453689": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900453690": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900453691": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900453692": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900453693": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900453694": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900453695": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900453696": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900453689", "900453690", "900453691", "900453692", "900453693", "900453694", "900453695", "900453696"], "$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"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "85e932a29f7278c7b36ba17ae513f384f554fe63"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-type", "title", "id", "content", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"published" : "2015-09-10T23:02:00Z", "media-type" : "News", "title" : "Catch golf comedy at nexStage", "id" : "96bf9204-aa3b-4c6e-9364-803553439772", "content" : "\u00a0\u00a0\u00a0\u00a0 The 2010 country club-set comedy \u201cThe Fox on the Fairway\u201d starts at the nexStage Theatre in Ketchum on Thursday, Sept. 10, at 7:30 p.m., with performances through Sept. 13 and again Sept. 17-19. Penned by Tony-winning playwright Ken Ludwig, the golf-driven farce will be staged here by Portland director Bruce Hostetler and will star local thespians, including Keith Moore and Megan Mahoney (last seen in The Spot\u2019s July production of \u201cThe 25th Annual Putnam County Spelling Bee\u201d), and emerging Los Angeles-based actor Ryan Stathos. \n \n\u00a0\u00a0\u00a0\u00a0 Tickets are $15 on opening night and $25 for general admission on all other evenings. For details on pricing and showtimes, call nexStage Theatre at 726-9124.", "source" : "Idaho Mountain Express"}
json_instruct
{"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-type", "title", "id", "content", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"images": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["url", "title", "description", "tags"]}}}, "required": ["images"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"images" : [{"url" : "images/englishBayPark.jpg", "title" : "English Bay Park", "description" : "This is English Bay Park, on the north west corner of Vancouver. The standing stone figure is a modern an inuksuk (plural inuksuit) tranditionally built by the Inuit, I\u00f1upiat, Kalaallit, Yupik, and other peoples of the Arctic region of North America. This region, above the Arctic Circle, is dominated by the tundra biome and has areas with few natural landmarks. The inuksuk may have been used for navigation, or as a marker for travel routes, fishing places, camps, hunting grounds, places of veneration or food caches. This one was built by Alvin Kanak in 1986.", "tags" : ["City", "Landscape", "Sea"]}, {"url" : "images/fagus.jpg", "title" : "Nothofagus Gunnii", "description" : "This tiny relative of the mighty English beech can be found in parts of Tasmania and evidence exists that it once grew on parts of Antarctica. It's presence is believed to be evidence for continental drift.", "tags" : ["Wild", "Trees", "Detail"]}, {"url" : "images/lionsGateBridge.jpg", "title" : "Lions Gate Bridge", "description" : "The Lions Gate Bridge, opened in 1938, officially known as the First Narrows Bridge, is a suspension bridge that crosses the first narrows of Burrard Inlet. The term \"Lions Gate\" refers to The Lions, a pair of mountain peaks north of Vancouver. Northbound traffic on the bridge heads in their general direction. A pair of cast concrete lions, designed by sculptor Charles Marega, were placed on either side of the south approach to the bridge in January 1939.", "tags" : ["City", "Landscape", "Sea"]}]}
json_instruct
{"type": "object", "properties": {"images": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["url", "title", "description", "tags"]}}}, "required": ["images"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"package" : "bioconductor-golubesets", "downloads" : 10300, "count" : 6213}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"hour positive count": {"type": "integer"}, "hour neutral count": {"type": "integer"}, "hour negative count": {"type": "integer"}, "hour distri": {"type": "object", "properties": {"0.97": {"type": "integer"}, "0.98": {"type": "integer"}, "0.96": {"type": "integer"}, "0.99": {"type": "integer"}, "0.71": {"type": "integer"}, "0.64": {"type": "integer"}, "0.04": {"type": "integer"}, "0.6": {"type": "integer"}, "0.18": {"type": "integer"}, "0.74": {"type": "integer"}, "1.0": {"type": "integer"}}, "required": ["0.97", "0.98", "0.96", "0.99", "0.71", "0.64", "0.04", "0.6", "0.18", "0.74", "1.0"]}}, "required": ["hour positive count", "hour neutral count", "hour negative count", "hour distri"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hour positive count" : 8, "hour neutral count" : 4, "hour negative count" : 2, "hour distri" : {"0.97" : 1, "0.98" : 2, "0.96" : 2, "0.99" : 2, "0.71" : 1, "0.64" : 1, "0.04" : 1, "0.6" : 1, "0.18" : 1, "0.74" : 1, "1.0" : 1}}
json_instruct
{"type": "object", "properties": {"hour positive count": {"type": "integer"}, "hour neutral count": {"type": "integer"}, "hour negative count": {"type": "integer"}, "hour distri": {"type": "object", "properties": {"0.97": {"type": "integer"}, "0.98": {"type": "integer"}, "0.96": {"type": "integer"}, "0.99": {"type": "integer"}, "0.71": {"type": "integer"}, "0.64": {"type": "integer"}, "0.04": {"type": "integer"}, "0.6": {"type": "integer"}, "0.18": {"type": "integer"}, "0.74": {"type": "integer"}, "1.0": {"type": "integer"}}, "required": ["0.97", "0.98", "0.96", "0.99", "0.71", "0.64", "0.04", "0.6", "0.18", "0.74", "1.0"]}}, "required": ["hour positive count", "hour neutral count", "hour negative count", "hour distri"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["ali.regenerator", "js2coffee-redux", "recast-harmony"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "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"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ecmasciptcourse", "version" : "1.0.0", "description" : "learning EcmaScript", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/1DiegoG1/ecmaSciptCourse.git"}, "author" : "Diego Gonz\u00e1lez", "license" : "MIT", "bugs" : {"url" : "https://github.com/1DiegoG1/ecmaSciptCourse/issues"}, "homepage" : "https://github.com/1DiegoG1/ecmaSciptCourse#readme"}
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"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this 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" : 7237, "hash" : 445042156, "artDyeHash" : 445042156, "redacted" : false, "dyeManifestHash" : 212353004, "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": {"address": {"type": "object", "properties": {"id": {"type": "integer"}, "id_customer": {"type": "string"}, "id_manufacturer": {"type": "string"}, "id_supplier": {"type": "string"}, "id_warehouse": {"type": "string"}, "id_country": {"type": "string"}, "id_state": {"type": "string"}, "alias": {"type": "string"}, "company": {"type": "string"}, "lastname": {"type": "string"}, "firstname": {"type": "string"}, "vat_number": {"type": "string"}, "address1": {"type": "string"}, "address2": {"type": "string"}, "postcode": {"type": "string"}, "city": {"type": "string"}, "other": {"type": "string"}, "phone": {"type": "string"}, "phone_mobile": {"type": "string"}, "dni": {"type": "string"}, "deleted": {"type": "string"}, "date_add": {"type": "string"}, "date_upd": {"type": "string"}}, "required": ["id", "id_customer", "id_manufacturer", "id_supplier", "id_warehouse", "id_country", "id_state", "alias", "company", "lastname", "firstname", "vat_number", "address1", "address2", "postcode", "city", "other", "phone", "phone_mobile", "dni", "deleted", "date_add", "date_upd"]}}, "required": ["address"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"address" : {"id" : 42, "id_customer" : "24", "id_manufacturer" : "0", "id_supplier" : "0", "id_warehouse" : "0", "id_country" : "8", "id_state" : "0", "alias" : "Mon adresse", "company" : "", "lastname" : "BRUYERE ", "firstname" : "R\u00e9my", "vat_number" : "", "address1" : "address 1", "address2" : "", "postcode" : "42480", "city" : "La Fouillouse", "other" : "", "phone" : "0606060606", "phone_mobile" : "", "dni" : "", "deleted" : "0", "date_add" : "2021-02-20 10:00:42", "date_upd" : "2021-02-20 10:00:42"}}
json_instruct
{"type": "object", "properties": {"address": {"type": "object", "properties": {"id": {"type": "integer"}, "id_customer": {"type": "string"}, "id_manufacturer": {"type": "string"}, "id_supplier": {"type": "string"}, "id_warehouse": {"type": "string"}, "id_country": {"type": "string"}, "id_state": {"type": "string"}, "alias": {"type": "string"}, "company": {"type": "string"}, "lastname": {"type": "string"}, "firstname": {"type": "string"}, "vat_number": {"type": "string"}, "address1": {"type": "string"}, "address2": {"type": "string"}, "postcode": {"type": "string"}, "city": {"type": "string"}, "other": {"type": "string"}, "phone": {"type": "string"}, "phone_mobile": {"type": "string"}, "dni": {"type": "string"}, "deleted": {"type": "string"}, "date_add": {"type": "string"}, "date_upd": {"type": "string"}}, "required": ["id", "id_customer", "id_manufacturer", "id_supplier", "id_warehouse", "id_country", "id_state", "alias", "company", "lastname", "firstname", "vat_number", "address1", "address2", "postcode", "city", "other", "phone", "phone_mobile", "dni", "deleted", "date_add", "date_upd"]}}, "required": ["address"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "position": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}, "required": ["id", "position"]}}, "links": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "sourcePort": {"type": "string"}, "target": {"type": "string"}, "points": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}}, "required": ["source", "sourcePort", "target", "points"]}}}, "required": ["nodes", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nodes" : [{"id" : "758b26c3f2", "position" : {"x" : -395, "y" : -110}}, {"id" : "5d1a240daa", "position" : {"x" : 10, "y" : 195}}, {"id" : "fe403d9ccc", "position" : {"x" : 20, "y" : -170}}], "links" : [{"source" : "5d1a240daa", "sourcePort" : "out0", "target" : "758b26c3f2", "points" : [{"x" : 210, "y" : 269}, {"x" : -394, "y" : -93}]}, {"source" : "758b26c3f2", "sourcePort" : "out5", "target" : "5d1a240daa", "points" : [{"x" : -195, "y" : 197}, {"x" : 10, "y" : 212}]}, {"source" : "758b26c3f2", "sourcePort" : "out4", "target" : "fe403d9ccc", "points" : [{"x" : -195, "y" : 166}, {"x" : 20, "y" : -153}]}, {"source" : "fe403d9ccc", "sourcePort" : "out0", "target" : "758b26c3f2", "points" : [{"x" : 220, "y" : 71}, {"x" : -394, "y" : -93}]}]}
json_instruct
{"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "position": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}, "required": ["id", "position"]}}, "links": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "sourcePort": {"type": "string"}, "target": {"type": "string"}, "points": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}}, "required": ["source", "sourcePort", "target", "points"]}}}, "required": ["nodes", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[444.23699758587105, 488.84014865952304], [459.0605967557495, 469.7812354411078], [473.8841959256279, 465.545921392571], [486.5901380712381, 459.19295031976594], [499.2960802168481, 452.8399792469611], [512.0020223624583, 446.487008174156], [520.4726504595317, 431.6634090042776], [512.0020223624583, 418.95746685866743], [497.1784231925798, 408.36918173732556], [482.3548240227014, 404.133867688789], [456.94293973148115, 408.36918173732556], [437.88402651306603, 404.133867688789], [416.7074562703825, 395.66323959171564], [395.530886027699, 393.5455825674471], [374.3543157850155, 391.42792554317884]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"replace" : false, "values" : ["elementsofpower:serendibite"]}
json_instruct
{"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:country": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:suburb": {"type": "string"}, "description": {"type": "string"}, "operator": {"type": "string"}, "organic": {"type": "string"}, "shop": {"type": "string"}, "wheelchair": {"type": "string"}, "id": {"type": "string"}}, "required": ["addr:city", "addr:country", "addr:postcode", "addr:suburb", "description", "operator", "organic", "shop", "wheelchair", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "id" : "node/5743069798", "properties" : {"addr:city" : "Oederan", "addr:country" : "DE", "addr:postcode" : "09569", "addr:suburb" : "Memmendorf", "description" : "Alpaca-Pordukte und regionale", "operator" : "Goldener Stern Memmendorf", "organic" : "no", "shop" : "farm", "wheelchair" : "no", "id" : "node/5743069798"}, "geometry" : {"type" : "Point", "coordinates" : [13.2062937, 50.8761654]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:country": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:suburb": {"type": "string"}, "description": {"type": "string"}, "operator": {"type": "string"}, "organic": {"type": "string"}, "shop": {"type": "string"}, "wheelchair": {"type": "string"}, "id": {"type": "string"}}, "required": ["addr:city", "addr:country", "addr:postcode", "addr:suburb", "description", "operator", "organic", "shop", "wheelchair", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "MultiPolygon", "coordinates" : [[[[-100.497345, 28.749765], [-100.497263, 28.749766], [-100.497134, 28.749761], [-100.497022, 28.749771], [-100.496997, 28.749771], [-100.496404, 28.749764], [-100.496332, 28.749764], [-100.49598, 28.749765], [-100.495135, 28.749767], [-100.49403, 28.749775], [-100.489042, 28.749786], [-100.489495, 28.747336], [-100.489829, 28.745807], [-100.491135, 28.738548], [-100.491157, 28.738422], [-100.491959, 28.738418], [-100.493823, 28.738408], [-100.494877, 28.738407], [-100.495792, 28.73841], [-100.496017, 28.739924], [-100.496047, 28.739922], [-100.496173, 28.739908], [-100.496245, 28.740444], [-100.496412, 28.741693], [-100.496532, 28.74254], [-100.496598, 28.743088], [-100.4967, 28.743931], [-100.496867, 28.745311], [-100.496986, 28.746016], [-100.497073, 28.746761], [-100.497113, 28.747107], [-100.497193, 28.747644], [-100.497331, 28.748565], [-100.497343, 28.748641], [-100.497382, 28.749499], [-100.497345, 28.749765]]]], "properties" : {"id" : "usa-tx-fabrica-city", "type" : "city", "name" : "Fabrica", "code" : "4825038"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"slug": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}}, "required": ["slug", "name", "description", "tags", "url"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"slug" : "testssl-sh", "name" : "testssl.sh", "description" : "A command-line tool which checks a server's service on any port for the support of TLS/SSL ciphers, protocols as well as some cryptographic flaws. It's designed to provide clear output for your \"is this good or bad\" decision.", "tags" : ["linux", "osx", "open-source", "security", "shell"], "url" : "https://github.com/drwetter/testssl.sh"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"slug": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}}, "required": ["slug", "name", "description", "tags", "url"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"globals": {"type": "object", "properties": {"window": {"type": "boolean"}}, "required": ["window"]}, "collectCoverageFrom": {"type": "array", "items": {"type": "string"}}, "coveragePathIgnorePatterns": {"type": "array", "items": {"type": "string"}}, "coverageReporters": {"type": "array", "items": {"type": "string"}}, "moduleFileExtensions": {"type": "array", "items": {"type": "string"}}, "moduleNameMapper": {"type": "object", "properties": {"^~/(.*)$": {"type": "string"}}, "required": ["^~/(.*)$"]}, "roots": {"type": "array", "items": {"type": "string"}}, "setupFilesAfterEnv": {"type": "array", "items": {"type": "string"}}, "snapshotSerializers": {"type": "array", "items": {"type": "string"}}, "testEnvironment": {"type": "string"}, "testMatch": {"type": "array", "items": {"type": "string"}}, "testPathIgnorePatterns": {"type": "array", "items": {"type": "string"}}, "testURL": {"type": "string"}}, "required": ["globals", "collectCoverageFrom", "coveragePathIgnorePatterns", "coverageReporters", "moduleFileExtensions", "moduleNameMapper", "roots", "setupFilesAfterEnv", "snapshotSerializers", "testEnvironment", "testMatch", "testPathIgnorePatterns", "testURL"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"globals" : {"window" : true}, "collectCoverageFrom" : ["src/**/*.{ts,tsx}"], "coveragePathIgnorePatterns" : ["/node_modules/", "__fixtures__", "constants/index.ts", "state.ts"], "coverageReporters" : ["lcov"], "moduleFileExtensions" : ["js", "json", "jsx", "ts", "tsx"], "moduleNameMapper" : {"^~/(.*)$" : "<rootDir>/src/$1"}, "roots" : ["<rootDir>/src/"], "setupFilesAfterEnv" : ["<rootDir>/src/setupJest.ts"], "snapshotSerializers" : ["jest-emotion"], "testEnvironment" : "node", "testMatch" : ["<rootDir>/src/**/__tests__/**/*.ts?(x)", "<rootDir>/src/**/?(*.)(spec|test).ts?(x)"], "testPathIgnorePatterns" : ["<rootDir>/scripts/runTests.js"], "testURL" : "http://localhost"}
json_instruct
{"type": "object", "properties": {"globals": {"type": "object", "properties": {"window": {"type": "boolean"}}, "required": ["window"]}, "collectCoverageFrom": {"type": "array", "items": {"type": "string"}}, "coveragePathIgnorePatterns": {"type": "array", "items": {"type": "string"}}, "coverageReporters": {"type": "array", "items": {"type": "string"}}, "moduleFileExtensions": {"type": "array", "items": {"type": "string"}}, "moduleNameMapper": {"type": "object", "properties": {"^~/(.*)$": {"type": "string"}}, "required": ["^~/(.*)$"]}, "roots": {"type": "array", "items": {"type": "string"}}, "setupFilesAfterEnv": {"type": "array", "items": {"type": "string"}}, "snapshotSerializers": {"type": "array", "items": {"type": "string"}}, "testEnvironment": {"type": "string"}, "testMatch": {"type": "array", "items": {"type": "string"}}, "testPathIgnorePatterns": {"type": "array", "items": {"type": "string"}}, "testURL": {"type": "string"}}, "required": ["globals", "collectCoverageFrom", "coveragePathIgnorePatterns", "coverageReporters", "moduleFileExtensions", "moduleNameMapper", "roots", "setupFilesAfterEnv", "snapshotSerializers", "testEnvironment", "testMatch", "testPathIgnorePatterns", "testURL"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"localities" : ["Rangely, CO"], "state" : "CO", "postal_code" : "81648", "locality" : "Rangely, CO", "lat" : 39.940221, "region" : {"fips" : "08", "abbr" : "CO", "name" : "Colorado"}, "city" : "Rangely", "type" : "STANDARD", "lng" : -108.665369, "counties" : [{"fips" : "103", "name" : "Rio Blanco County"}]}
json_instruct
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"description": {"type": "string"}, "code": {"type": "string"}, "ldc": {"type": "array", "items": {}}, "sintaxis": {"type": "string"}, "parametros": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"type": "string"}}, "required": ["nombre", "description"]}}}, "required": ["description", "code", "ldc", "sintaxis", "parametros"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "", "code" : "", "ldc" : [], "sintaxis" : "dataclasses.fields(class_or_instance)\n", "parametros" : [{"nombre" : "class_or_instance", "description" : ""}]}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "code": {"type": "string"}, "ldc": {"type": "array", "items": {}}, "sintaxis": {"type": "string"}, "parametros": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"type": "string"}}, "required": ["nombre", "description"]}}}, "required": ["description", "code", "ldc", "sintaxis", "parametros"], "$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"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"mout": {"type": "string"}}, "required": ["mout"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "moduleType": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "main", "dependencies", "keywords", "homepage", "authors", "description", "moduleType", "license", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "dejavu", "version" : "0.4.8", "main" : "dist/", "dependencies" : {"mout" : "^0.9.1"}, "keywords" : ["oop", "interface", "class", "abstract", "final", "inheritance"], "homepage" : "https://github.com/IndigoUnited/dejavu", "authors" : ["IndigoUnited <hello@indigounited.com> (http://indigounited.com)"], "description" : "A set of object-oriented tools for JavaScript", "moduleType" : ["amd", "globals", "node"], "license" : "MIT", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"mout": {"type": "string"}}, "required": ["mout"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "moduleType": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "main", "dependencies", "keywords", "homepage", "authors", "description", "moduleType", "license", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"src": {"type": "string"}, "text": {"type": "string"}, "shapes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "width": {"type": "number"}, "height": {"type": "number"}}, "required": ["x", "y", "width", "height"]}, "style": {"type": "object", "properties": {}, "required": []}}, "required": ["type", "geometry", "style"]}}, "context": {"type": "string"}, "date": {"type": "string"}, "annotator": {"type": "string"}, "source": {"type": "string"}, "selector": {"type": "string"}, "verbatim": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "property": {"type": "string"}}, "required": ["src", "text", "shapes", "context", "date", "annotator", "source", "selector", "verbatim", "language", "type", "property"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"src" : "dzi://openseadragon/something", "text" : "measurementorfact", "shapes" : [{"type" : "rect", "geometry" : {"x" : 0.5614033197022136, "y" : 0.11586327570674965, "width" : 0.14027982326951394, "height" : 0.0625920471281296}, "style" : {}}], "context" : "http://localhost:8080/semanticAnnotator/#", "date" : "2021-01-12T14:23:11.646Z", "annotator" : "http://orcid.org/0000-0002-2146-4803", "source" : "http://localhost:8080/semanticAnnotator/files/MMNAT01_AF_NNM001001033_003.jpg", "selector" : "#xywh=0.5614033197022136,0.11586327570674965,0.14027982326951394,0.0625920471281296", "verbatim" : "- Longitud. tota --- 1,0,3\n- corporis --- 0,2,9\n- tota --- 0,2,9\n- capitis --- 0,1,1\n- caudae --- 0,0,1\n- digit. medii --- 0,3,0\n", "language" : "lat", "type" : "measurementorfact", "property" : "basedOn"}
json_instruct
{"type": "object", "properties": {"src": {"type": "string"}, "text": {"type": "string"}, "shapes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "width": {"type": "number"}, "height": {"type": "number"}}, "required": ["x", "y", "width", "height"]}, "style": {"type": "object", "properties": {}, "required": []}}, "required": ["type", "geometry", "style"]}}, "context": {"type": "string"}, "date": {"type": "string"}, "annotator": {"type": "string"}, "source": {"type": "string"}, "selector": {"type": "string"}, "verbatim": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "property": {"type": "string"}}, "required": ["src", "text", "shapes", "context", "date", "annotator", "source", "selector", "verbatim", "language", "type", "property"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"adv_t": {"type": "array", "items": {"type": "integer"}}, "adv_w": {"type": "array", "items": {"type": "integer"}}, "clfs": {"type": "array", "items": {"type": "string"}}, "mean": {"type": "array", "items": {"type": "number"}}, "parameters": {"type": "object", "properties": {"cv_method": {"type": "string"}, "db": {"type": "string"}, "repetition": {"type": "integer"}}, "required": ["cv_method", "db", "repetition"]}, "std": {"type": "array", "items": {"type": "number"}}}, "required": ["adv_t", "adv_w", "clfs", "mean", "parameters", "std"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"adv_t" : [2, 0, 3, 3, 0, 3, 3], "adv_w" : [2, 0, 3, 3, 0, 4, 4], "clfs" : ["Nearest Neighbors", "RBF SVM", "Decision Tree", "Random Forest", "Neural Net", "Naive Bayes", "Linear SVM"], "mean" : [0.6483516483516484, 0.5549450549450549, 0.8002747252747253, 0.7810439560439559, 0.5697802197802196, 0.8307692307692307, 0.8368131868131871], "parameters" : {"cv_method" : "k20", "db" : "heart", "repetition" : 8}, "std" : [0.1656716772999117, 0.016911731078326712, 0.1329753377997192, 0.10487811236453932, 0.04852943286540965, 0.12046566864816989, 0.10517803650009115]}
json_instruct
{"type": "object", "properties": {"adv_t": {"type": "array", "items": {"type": "integer"}}, "adv_w": {"type": "array", "items": {"type": "integer"}}, "clfs": {"type": "array", "items": {"type": "string"}}, "mean": {"type": "array", "items": {"type": "number"}}, "parameters": {"type": "object", "properties": {"cv_method": {"type": "string"}, "db": {"type": "string"}, "repetition": {"type": "integer"}}, "required": ["cv_method", "db", "repetition"]}, "std": {"type": "array", "items": {"type": "number"}}}, "required": ["adv_t", "adv_w", "clfs", "mean", "parameters", "std"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"vue-resource.js": {"type": "string"}, "vue-resource.min.js": {"type": "string"}}, "required": ["vue-resource.js", "vue-resource.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"vue-resource.js" : "sha256-LiSTJuOdEkdWt+8ML6SMU0/S3FK6Q0gTVnTzMY1LdVc=", "vue-resource.min.js" : "sha256-MF6jIU2A8SdorxyrEruRuWC6zV2EQY3dDsy5usLvFZQ="}
json_instruct
{"type": "object", "properties": {"vue-resource.js": {"type": "string"}, "vue-resource.min.js": {"type": "string"}}, "required": ["vue-resource.js", "vue-resource.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"provides": {"type": "object", "properties": {"URI::wss": {"type": "object", "properties": {"version": {"type": "number"}, "file": {"type": "string"}}, "required": ["version", "file"]}, "URI::ws": {"type": "object", "properties": {"version": {"type": "number"}, "file": {"type": "string"}}, "required": ["version", "file"]}}, "required": ["URI::wss", "URI::ws"]}, "name": {"type": "string"}, "dist": {"type": "string"}, "pathname": {"type": "string"}, "version": {"type": "number"}, "target": {"type": "string"}}, "required": ["provides", "name", "dist", "pathname", "version", "target"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"provides" : {"URI::wss" : {"version" : 0.03, "file" : "lib/URI/wss.pm"}, "URI::ws" : {"version" : 0.03, "file" : "lib/URI/ws.pm"}}, "name" : "URI::ws", "dist" : "URI-ws-0.03", "pathname" : "P/PL/PLICEASE/URI-ws-0.03.tar.gz", "version" : 0.03, "target" : "URI::ws"}
json_instruct
{"type": "object", "properties": {"provides": {"type": "object", "properties": {"URI::wss": {"type": "object", "properties": {"version": {"type": "number"}, "file": {"type": "string"}}, "required": ["version", "file"]}, "URI::ws": {"type": "object", "properties": {"version": {"type": "number"}, "file": {"type": "string"}}, "required": ["version", "file"]}}, "required": ["URI::wss", "URI::ws"]}, "name": {"type": "string"}, "dist": {"type": "string"}, "pathname": {"type": "string"}, "version": {"type": "number"}, "target": {"type": "string"}}, "required": ["provides", "name", "dist", "pathname", "version", "target"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d183-92", "text" : "PRODUCTION (continued)\nClasses in radio and television writing /nay be established in a school\nsystem at the secondary level* either independently or as part of a workshop\u00ae\nNecessarily the objectives of the school system and the particular department of\ninstruction must be observed, but under proper direction and guidance the needs\nof both broadcasting and education can be met\u00ae At the same time the script students\nhave had a valuable learning experience\u00ae Adaptations of short stories, dramas, and\nnovels are well within the range of high school students and the gifted teacher\ncan achieve scripts of professional qualityo\nWriting for educational radio and television has not been fully exploredo\nNew techniques\u00ae\u00ae0new variations of older formso o athe constant quest for the right\nword\u00ae0\u00aethe telling dramatic statement\u00aeo\u00aeall serve to keep interest in writing at a\nhigh levelo\nTalent\nFor our purpose talent my be defined as the actor or speaker to whom is\nentrusted the responsibility for breathing proper life into script and evoking at\nthe highest level the message or communication values of the script\u00ae In other\nwords talent must meet the standards previously set forth\u00ae Although the use of\nprofessional talent is highly desirable, still the majority of school radio and\ntelevision stations will be forced to use local talents school or community\u00ae\nTalent from high school classes or workshops may be used if it approximates pro*-\nfessional quality\u00ae But the schools are not limited to the use of talent within\ntheir ranks\u00ae They may levy upon the resources of the community at large\u00ae For\nexample, most communities include adults with som experience in college or com\u00ac\nmunity theaters who might welcome the opportunity to participate in radio and\ntelevision productions\u00ae Through evening classes or workshops in acting and\nproduction this adult talent can be trained for effective use in educational\npro grains o"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"VersionId": {"type": "string"}, "IsDefaultVersion": {"type": "boolean"}, "CreateDate": {"type": "string"}, "PolicyName": {"type": "string"}}, "required": ["VersionId", "IsDefaultVersion", "CreateDate", "PolicyName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"VersionId" : "v12", "IsDefaultVersion" : true, "CreateDate" : "2021-12-07T02:22:29+00:00", "PolicyName" : "AWSBatchServiceRole"}
json_instruct
{"type": "object", "properties": {"VersionId": {"type": "string"}, "IsDefaultVersion": {"type": "boolean"}, "CreateDate": {"type": "string"}, "PolicyName": {"type": "string"}}, "required": ["VersionId", "IsDefaultVersion", "CreateDate", "PolicyName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"In": {"type": "string"}, "Expect": {"type": "array", "items": {"type": "integer"}}}, "required": ["In", "Expect"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"In" : "1999-01-08", "Expect" : [0, 0, 0, 4, 255, 255, 254, 154]}, {"In" : "0009-01-08", "Expect" : [0, 0, 0, 4, 255, 244, 231, 106]}, {"In" : "9999-01-08", "Expect" : [0, 0, 0, 4, 0, 44, 148, 110]}, {"In" : "1999-12-30", "Expect" : [0, 0, 0, 4, 255, 255, 255, 254]}, {"In" : "1996-02-29", "Expect" : [0, 0, 0, 4, 255, 255, 250, 134]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"In": {"type": "string"}, "Expect": {"type": "array", "items": {"type": "integer"}}}, "required": ["In", "Expect"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}}, "required": ["kind", "name", "href", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"kind" : "Type", "name" : "SVGURIReference", "href" : "https://developer.mozilla.org/en-US/docs/Web/API/SVGURIReference", "description" : "The href attribute defines a link to a resource as a reference URL. The exact meaning of that link depends on the context of each element using it."}
json_instruct
{"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}}, "required": ["kind", "name", "href", "description"], "$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"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "phone": {"type": "string"}, "email": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "state": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "phone", "email", "programs", "state", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Oberschule Bergen\nmit gymn. Angebot", "id" : "NI-61293-0", "address" : "Lange Str. 50, 29303\u00a0Bergen", "school_type" : "Realschule", "phone" : "05051 470297", "email" : "schulverwaltung@obs-bergen.de", "programs" : {"programs" : []}, "state" : "NI", "lon" : 9.94787, "lat" : 52.809115}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "phone": {"type": "string"}, "email": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "state": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "phone", "email", "programs", "state", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "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": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "readmeFilename": {"type": "string"}, "gitHead": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}, "should": {"type": "string"}, "jade": {"type": "string"}}, "required": ["mocha", "should", "jade"]}, "readme": {"type": "string"}, "_id": {"type": "string"}, "_from": {"type": "string"}}, "required": ["name", "version", "description", "scripts", "repository", "keywords", "author", "licenses", "readmeFilename", "gitHead", "bugs", "devDependencies", "readme", "_id", "_from"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "topdoc-theme", "version" : "0.2.7", "description" : "Topdoc Theme for the Topcoat Demo documentation", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git://github.com/topcoat/topdoc-theme.git"}, "keywords" : ["topdoc", "topcoat", "theme", "template", "css", "documentation"], "author" : {"name" : "Garth Braithwaite", "email" : "garthdb@gmail.com", "url" : "http://www.garthdb.com"}, "licenses" : [{"type" : "Apache 2.0", "url" : "http://www.apache.org/licenses/LICENSE-2.0.html"}], "readmeFilename" : "README.md", "gitHead" : "58eac60122954fff276592dace1f8fe7d444600b", "bugs" : {"url" : "https://github.com/topcoat/topdoc-theme/issues"}, "devDependencies" : {"mocha" : "~1.11.0", "should" : "~1.2.2", "jade" : "~0.31.2"}, "readme" : "#Topdoc Demo Theme\n\nA responsive [Topdoc](https://github.com/topcoat/topdoc) theme for the Topcoat Demos.\n\n\n##Usage\n\nIf the topcoat repo is cloned locally as a sibling of this repo, running the following command:\n\n```bash\ntopdoc -s release/css/ -d topdocs -t ../topdoc-theme/\n```\n\nUses the template and generates the docs to a directory called `topdocs`.\n", "_id" : "topdoc-theme@0.2.7", "_from" : "topdoc-theme@"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"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": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "readmeFilename": {"type": "string"}, "gitHead": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}, "should": {"type": "string"}, "jade": {"type": "string"}}, "required": ["mocha", "should", "jade"]}, "readme": {"type": "string"}, "_id": {"type": "string"}, "_from": {"type": "string"}}, "required": ["name", "version", "description", "scripts", "repository", "keywords", "author", "licenses", "readmeFilename", "gitHead", "bugs", "devDependencies", "readme", "_id", "_from"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : 1807021, "parent" : 1807, "name" : "GUNUNG LABUHAN", "latitude" : "-4.7370922529984", "longitude" : "104.58328186847", "postal" : [34767, 34768], "children" : [1807021001, 1807021002, 1807021003, 1807021004, 1807021005, 1807021006, 1807021007, 1807021008, 1807021009, 1807021010, 1807021011, 1807021012, 1807021013, 1807021014, 1807021015, 1807021016, 1807021017, 1807021018, 1807021019, 1807021020, 1807021021]}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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" : "0x38018f43f2597dcce46641c073324a2be66417bbd0272a42733aad6164513ea7", "parentHash" : "0x3cecea970563f7c9fbf99871a022250dfab3ef2ee5cde5f3fbc9bfc387d35264", "number" : 91012, "timestamp" : 1439649093, "nonce" : "0xb03e32f804cde1af", "difficulty" : 3427306014696, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xbb7B8287f3F0a933474a79eAe42CBCa977791171", "extraData" : "0x476574682f4c5649562f76312e302e312f6c696e75782f676f312e342e32", "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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "7205161004", "district_id" : "7205161", "name" : "OGOAMAS I"}
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": "array", "items": {"type": "object", "properties": {"LiveFrom": {"type": "string"}, "LiveTo": {"type": "string"}, "CaseTypeID": {"type": "string"}, "CaseFieldID": {"type": "string"}, "UserRole": {"type": "string"}, "CRUD": {"type": "string"}}, "required": ["LiveFrom", "LiveTo", "CaseTypeID", "CaseFieldID", "UserRole", "CRUD"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"LiveFrom" : "01/01/2017", "LiveTo" : "", "CaseTypeID" : "FT_DynamicFieldCaseType", "CaseFieldID" : "TextField", "UserRole" : "caseworker-befta_master", "CRUD" : "CRUD"}, {"LiveFrom" : "01/01/2017", "LiveTo" : "", "CaseTypeID" : "FT_DynamicFieldCaseType", "CaseFieldID" : "TextAreaField", "UserRole" : "caseworker-befta_master", "CRUD" : "CRUD"}, {"LiveFrom" : "01/01/2017", "LiveTo" : "", "CaseTypeID" : "FT_DynamicFieldCaseType", "CaseFieldID" : "EmailField", "UserRole" : "caseworker-befta_master", "CRUD" : "CRUD"}, {"LiveFrom" : "01/01/2017", "LiveTo" : "", "CaseTypeID" : "FT_DynamicFieldCaseType", "CaseFieldID" : "DynamicMultiSelectList", "UserRole" : "caseworker-befta_master", "CRUD" : "CRUD"}, {"LiveFrom" : "01/01/2017", "LiveTo" : "", "CaseTypeID" : "FT_DynamicFieldCaseType", "CaseFieldID" : "DynamicRadioList", "UserRole" : "caseworker-befta_master", "CRUD" : "CRUD"}, {"LiveFrom" : "01/01/2017", "LiveTo" : "", "CaseTypeID" : "FT_DynamicFieldCaseType", "CaseFieldID" : "CollectionDynamicMultiSelectList", "UserRole" : "caseworker-befta_master", "CRUD" : "CRUD"}, {"LiveFrom" : "01/01/2017", "LiveTo" : "", "CaseTypeID" : "FT_DynamicFieldCaseType", "CaseFieldID" : "CollectionDynamicRadioList", "UserRole" : "caseworker-befta_master", "CRUD" : "CRUD"}, {"LiveFrom" : "01/01/2017", "LiveTo" : "", "CaseTypeID" : "FT_DynamicFieldCaseType", "CaseFieldID" : "DynamicListsComplexField", "UserRole" : "caseworker-befta_master", "CRUD" : "CRUD"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"LiveFrom": {"type": "string"}, "LiveTo": {"type": "string"}, "CaseTypeID": {"type": "string"}, "CaseFieldID": {"type": "string"}, "UserRole": {"type": "string"}, "CRUD": {"type": "string"}}, "required": ["LiveFrom", "LiveTo", "CaseTypeID", "CaseFieldID", "UserRole", "CRUD"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"Objects": {"type": "array", "items": {"type": "object", "properties": {"DisplayName": {"type": "string"}, "UserId": {"type": "string"}, "ManagerUserId": {"type": "string"}}, "required": ["DisplayName", "UserId", "ManagerUserId"]}}, "PageNumber": {"type": "integer"}, "PageSize": {"type": "integer"}, "TotalCount": {"type": "integer"}, "ObjectCount": {"type": "integer"}}, "required": ["Objects", "PageNumber", "PageSize", "TotalCount", "ObjectCount"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Objects" : [{"DisplayName" : "User1", "UserId" : "1", "ManagerUserId" : "999"}, {"DisplayName" : "User2", "UserId" : "2", "ManagerUserId" : "999"}, {"DisplayName" : "User3", "UserId" : "3", "ManagerUserId" : "999"}], "PageNumber" : 1, "PageSize" : 20, "TotalCount" : 1, "ObjectCount" : 1}
json_instruct
{"type": "object", "properties": {"Objects": {"type": "array", "items": {"type": "object", "properties": {"DisplayName": {"type": "string"}, "UserId": {"type": "string"}, "ManagerUserId": {"type": "string"}}, "required": ["DisplayName", "UserId", "ManagerUserId"]}}, "PageNumber": {"type": "integer"}, "PageSize": {"type": "integer"}, "TotalCount": {"type": "integer"}, "ObjectCount": {"type": "integer"}}, "required": ["Objects", "PageNumber", "PageSize", "TotalCount", "ObjectCount"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"merged" : "/media/lambiengcode/src/flutter/project/cloud_classroom/build/firebase_core/intermediates/res/merged/release/drawable/notification_bg.xml", "source" : "/home/lambiengcode/.gradle/caches/transforms-2/files-2.1/a4999ae474860d57429c3bc9c4a045ec/core-1.0.0/res/drawable/notification_bg.xml"}, {"merged" : "/media/lambiengcode/src/flutter/project/cloud_classroom/build/firebase_core/intermediates/res/merged/release/drawable/notification_tile_bg.xml", "source" : "/home/lambiengcode/.gradle/caches/transforms-2/files-2.1/a4999ae474860d57429c3bc9c4a045ec/core-1.0.0/res/drawable/notification_tile_bg.xml"}, {"merged" : "/media/lambiengcode/src/flutter/project/cloud_classroom/build/firebase_core/intermediates/res/merged/release/drawable/notification_bg_low.xml", "source" : "/home/lambiengcode/.gradle/caches/transforms-2/files-2.1/a4999ae474860d57429c3bc9c4a045ec/core-1.0.0/res/drawable/notification_bg_low.xml"}, {"merged" : "/media/lambiengcode/src/flutter/project/cloud_classroom/build/firebase_core/intermediates/res/merged/release/drawable/notification_icon_background.xml", "source" : "/home/lambiengcode/.gradle/caches/transforms-2/files-2.1/a4999ae474860d57429c3bc9c4a045ec/core-1.0.0/res/drawable/notification_icon_background.xml"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"title": {"type": "string"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"update_date": {"type": "string"}, "link": {"type": "string"}}, "required": ["update_date", "link"]}}}, "required": ["title", "downloads", "tags", "hxl", "org", "id", "resources"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Tuvalu - Urban Development", "downloads" : 73, "tags" : ["development", "hxl", "indicators", "Tuvalu"], "hxl" : 1, "org" : "World Bank Group", "id" : "69137835-91f5-4521-9a2b-d3b06af7ac53", "resources" : [{"update_date" : "2021-01-31T23:58:29.426521", "link" : "https://data.humdata.org/dataset/69137835-91f5-4521-9a2b-d3b06af7ac53/resource/80caa845-92ae-4c89-bc4a-dde9e572ddb7/download/urban-development_tuv.csv"}, {"update_date" : "2021-01-31T23:58:29.426521", "link" : "https://data.humdata.org/dataset/69137835-91f5-4521-9a2b-d3b06af7ac53/resource/b22de794-1093-4000-8e31-56e25cb3f7fc/download/qc_urban-development_tuv.csv"}]}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"update_date": {"type": "string"}, "link": {"type": "string"}}, "required": ["update_date", "link"]}}}, "required": ["title", "downloads", "tags", "hxl", "org", "id", "resources"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "vegetarien", "name" : "V\u00e9g\u00e9tarien"}, {"id" : "vegetalien", "name" : "V\u00e9g\u00e9talien"}, {"id" : "diabetique", "name" : "Diab\u00e9tique"}, {"id" : "sansGluten", "name" : "Sans Gluten"}, {"id" : "intolerantLactose", "name" : "Intol\u00e9rant au lactose"}, {"id" : "allergiesAlimentaires", "name" : "Allergies Alimentaires"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "assets": {"type": "array", "items": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "mainfile": {"type": "string"}}, "required": ["files", "version", "mainfile"]}}, "versions": {"type": "array", "items": {"type": "string"}}, "zip": {"type": "string"}, "mainfile": {"type": "string"}, "author": {"type": "string"}, "lastversion": {"type": "string"}, "homepage": {"type": "null"}, "description": {"type": "string"}, "github": {"type": "string"}}, "required": ["name", "assets", "versions", "zip", "mainfile", "author", "lastversion", "homepage", "description", "github"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "leaflet.AnimatedMarker", "assets" : [{"files" : ["AnimatedMarker.js", "AnimatedMarker.min.js", "AnimatedMarker.min.js.map"], "version" : "1.0.0", "mainfile" : "AnimatedMarker.min.js"}], "versions" : ["1.0.0"], "zip" : "leaflet.AnimatedMarker.zip", "mainfile" : "AnimatedMarker.min.js", "author" : "openplans", "lastversion" : "1.0.0", "homepage" : null, "description" : "This is a Leaflet plugin for animating a marker along a polyline.", "github" : "https://github.com/openplans/Leaflet.AnimatedMarker.git"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "assets": {"type": "array", "items": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "mainfile": {"type": "string"}}, "required": ["files", "version", "mainfile"]}}, "versions": {"type": "array", "items": {"type": "string"}}, "zip": {"type": "string"}, "mainfile": {"type": "string"}, "author": {"type": "string"}, "lastversion": {"type": "string"}, "homepage": {"type": "null"}, "description": {"type": "string"}, "github": {"type": "string"}}, "required": ["name", "assets", "versions", "zip", "mainfile", "author", "lastversion", "homepage", "description", "github"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}, "lint:javascript": {"type": "string"}, "lint:css": {"type": "string"}}, "required": ["build", "dev", "lint:javascript", "lint:css"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "stylelint": {"type": "string"}, "stylelint-config-standard": {"type": "string"}, "web-ext": {"type": "string"}}, "required": ["eslint", "stylelint", "stylelint-config-standard", "web-ext"]}}, "required": ["name", "description", "author", "license", "private", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "moolater", "description" : "Quickly save a web page as a task in Remember the Milk to read later.", "author" : "Christopher Frost", "license" : "MIT", "private" : true, "scripts" : {"build" : "./build.sh", "dev" : "web-ext run --verbose --browser-console --url https://xkcd.com --source-dir src", "lint:javascript" : "eslint .", "lint:css" : "stylelint '**/*.css'"}, "devDependencies" : {"eslint" : "^6.8.0", "stylelint" : "^13.3.3", "stylelint-config-standard" : "^20.0.0", "web-ext" : "^4.2.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}, "lint:javascript": {"type": "string"}, "lint:css": {"type": "string"}}, "required": ["build", "dev", "lint:javascript", "lint:css"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "stylelint": {"type": "string"}, "stylelint-config-standard": {"type": "string"}, "web-ext": {"type": "string"}}, "required": ["eslint", "stylelint", "stylelint-config-standard", "web-ext"]}}, "required": ["name", "description", "author", "license", "private", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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" : ["Melt 2 tablespoons butter in a large skillet over medium-high heat. Stir in the shallots, and cook for 2 minutes to soften slightly. Add the mushrooms, and continue cooking until the mushrooms have released their liquid and are tender. Remove the mushrooms from the skillet and set aside.", "Pour the port wine into the skillet and bring to a boil over high heat. Boil until the port has reduced and is almost syrupy, 5 to 7 minutes. Whisk in the mustard and beef broth. Dissolve the cornstarch into the water, and whisk into the boiling sauce. Stir until the sauce has thickened, about 30 seconds. Remove the skillet from the heat, and whisk in the remaining 1 tablespoon butter until it has melted into the sauce. Stir the cooked mushrooms back into the sauce and serve."], "ingredients" : ["3 tablespoons butter", "1/4 cup finely chopped shallots", "1 pound assorted mushrooms, cut into pieces", "1 cup port wine", "1/4 cup coarse-ground Dijon mustard", "1 (14 ounce) can beef broth", "1 tablespoon cornstarch", "2 tablespoons water", "1 tablespoon cold butter (optional)"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Mushroom Port Wine Sauce", "url" : "http://allrecipes.com/recipe/161150/mushroom-port-wine-sauce/"}
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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"(0, 0)": {"type": "string"}, "(1, 0)": {"type": "string"}, "(1, 1)": {"type": "string"}, "(1, 2)": {"type": "string"}, "(1, 3)": {"type": "string"}, "(1, 4)": {"type": "string"}, "(2, 0)": {"type": "string"}, "(2, 1)": {"type": "string"}, "(2, 2)": {"type": "string"}, "(2, 3)": {"type": "string"}, "(2, 4)": {"type": "string"}, "(3, 0)": {"type": "string"}, "(3, 1)": {"type": "string"}, "(3, 2)": {"type": "string"}, "(3, 3)": {"type": "string"}, "(3, 4)": {"type": "string"}, "(4, 0)": {"type": "string"}, "(4, 1)": {"type": "string"}, "(4, 2)": {"type": "string"}, "(4, 3)": {"type": "string"}, "(4, 4)": {"type": "string"}, "(5, 0)": {"type": "string"}, "(5, 1)": {"type": "string"}, "(5, 2)": {"type": "string"}, "(5, 3)": {"type": "string"}, "(5, 4)": {"type": "string"}, "(6, 0)": {"type": "string"}, "(6, 1)": {"type": "string"}, "(6, 2)": {"type": "string"}, "(6, 3)": {"type": "string"}, "(6, 4)": {"type": "string"}, "(7, 0)": {"type": "string"}, "(7, 1)": {"type": "string"}, "(7, 2)": {"type": "string"}, "(7, 3)": {"type": "string"}, "(7, 4)": {"type": "string"}, "(8, 0)": {"type": "string"}, "(8, 1)": {"type": "string"}, "(8, 2)": {"type": "string"}, "(8, 3)": {"type": "string"}, "(8, 4)": {"type": "string"}, "(9, 0)": {"type": "string"}, "(9, 1)": {"type": "string"}, "(9, 2)": {"type": "string"}, "(9, 3)": {"type": "string"}, "(9, 4)": {"type": "string"}}, "required": ["(0, 0)", "(1, 0)", "(1, 1)", "(1, 2)", "(1, 3)", "(1, 4)", "(2, 0)", "(2, 1)", "(2, 2)", "(2, 3)", "(2, 4)", "(3, 0)", "(3, 1)", "(3, 2)", "(3, 3)", "(3, 4)", "(4, 0)", "(4, 1)", "(4, 2)", "(4, 3)", "(4, 4)", "(5, 0)", "(5, 1)", "(5, 2)", "(5, 3)", "(5, 4)", "(6, 0)", "(6, 1)", "(6, 2)", "(6, 3)", "(6, 4)", "(7, 0)", "(7, 1)", "(7, 2)", "(7, 3)", "(7, 4)", "(8, 0)", "(8, 1)", "(8, 2)", "(8, 3)", "(8, 4)", "(9, 0)", "(9, 1)", "(9, 2)", "(9, 3)", "(9, 4)"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"(0, 0)" : "mecklenburg - vorpommern state election , 2002", "(1, 0)" : "party", "(1, 1)" : "party list votes", "(1, 2)" : "vote percentage", "(1, 3)" : "total seats", "(1, 4)" : "seat percentage", "(2, 0)" : "social democratic party (spd)", "(2, 1)" : "394118", "(2, 2)" : "40.6%", "(2, 3)" : "33", "(2, 4)" : "46.5%", "(3, 0)" : "christian democratic union (cdu)", "(3, 1)" : "304125", "(3, 2)" : "31.4%", "(3, 3)" : "25", "(3, 4)" : "35.2%", "(4, 0)" : "party of democratic socialism (pds)", "(4, 1)" : "159065", "(4, 2)" : "16.4%", "(4, 3)" : "13", "(4, 4)" : "18.3%", "(5, 0)" : "alliance '90 / the greens", "(5, 1)" : "25402", "(5, 2)" : "2.6%", "(5, 3)" : "0", "(5, 4)" : "0.0%", "(6, 0)" : "free democratic party (fdp)", "(6, 1)" : "45676", "(6, 2)" : "4.7%", "(6, 3)" : "0", "(6, 4)" : "0.0%", "(7, 0)" : "law and order offensive party", "(7, 1)" : "16483", "(7, 2)" : "1.7%", "(7, 3)" : "0", "(7, 4)" : "0.0%", "(8, 0)" : "all others", "(8, 1)" : "25162", "(8, 2)" : "2.6%", "(8, 3)" : "0", "(8, 4)" : "0.0%", "(9, 0)" : "totals", "(9, 1)" : "970031", "(9, 2)" : "100.0%", "(9, 3)" : "71", "(9, 4)" : "100.0%"}
json_instruct
{"type": "object", "properties": {"(0, 0)": {"type": "string"}, "(1, 0)": {"type": "string"}, "(1, 1)": {"type": "string"}, "(1, 2)": {"type": "string"}, "(1, 3)": {"type": "string"}, "(1, 4)": {"type": "string"}, "(2, 0)": {"type": "string"}, "(2, 1)": {"type": "string"}, "(2, 2)": {"type": "string"}, "(2, 3)": {"type": "string"}, "(2, 4)": {"type": "string"}, "(3, 0)": {"type": "string"}, "(3, 1)": {"type": "string"}, "(3, 2)": {"type": "string"}, "(3, 3)": {"type": "string"}, "(3, 4)": {"type": "string"}, "(4, 0)": {"type": "string"}, "(4, 1)": {"type": "string"}, "(4, 2)": {"type": "string"}, "(4, 3)": {"type": "string"}, "(4, 4)": {"type": "string"}, "(5, 0)": {"type": "string"}, "(5, 1)": {"type": "string"}, "(5, 2)": {"type": "string"}, "(5, 3)": {"type": "string"}, "(5, 4)": {"type": "string"}, "(6, 0)": {"type": "string"}, "(6, 1)": {"type": "string"}, "(6, 2)": {"type": "string"}, "(6, 3)": {"type": "string"}, "(6, 4)": {"type": "string"}, "(7, 0)": {"type": "string"}, "(7, 1)": {"type": "string"}, "(7, 2)": {"type": "string"}, "(7, 3)": {"type": "string"}, "(7, 4)": {"type": "string"}, "(8, 0)": {"type": "string"}, "(8, 1)": {"type": "string"}, "(8, 2)": {"type": "string"}, "(8, 3)": {"type": "string"}, "(8, 4)": {"type": "string"}, "(9, 0)": {"type": "string"}, "(9, 1)": {"type": "string"}, "(9, 2)": {"type": "string"}, "(9, 3)": {"type": "string"}, "(9, 4)": {"type": "string"}}, "required": ["(0, 0)", "(1, 0)", "(1, 1)", "(1, 2)", "(1, 3)", "(1, 4)", "(2, 0)", "(2, 1)", "(2, 2)", "(2, 3)", "(2, 4)", "(3, 0)", "(3, 1)", "(3, 2)", "(3, 3)", "(3, 4)", "(4, 0)", "(4, 1)", "(4, 2)", "(4, 3)", "(4, 4)", "(5, 0)", "(5, 1)", "(5, 2)", "(5, 3)", "(5, 4)", "(6, 0)", "(6, 1)", "(6, 2)", "(6, 3)", "(6, 4)", "(7, 0)", "(7, 1)", "(7, 2)", "(7, 3)", "(7, 4)", "(8, 0)", "(8, 1)", "(8, 2)", "(8, 3)", "(8, 4)", "(9, 0)", "(9, 1)", "(9, 2)", "(9, 3)", "(9, 4)"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "430181115203", "text" : "\u571f\u6865\u6751"}, {"id" : "430181115214", "text" : "\u91d1\u724c\u6751"}, {"id" : "430181115220", "text" : "\u8dc3\u9f99\u6751"}, {"id" : "430181115226", "text" : "\u6c5f\u4e1c\u6751"}, {"id" : "430181115234", "text" : "\u67cf\u6811\u6751"}, {"id" : "430181115237", "text" : "\u91d1\u7530\u6751"}, {"id" : "430181115238", "text" : "\u7518\u68e0\u6751"}, {"id" : "430181115239", "text" : "\u53cc\u6865\u6751"}, {"id" : "430181115240", "text" : "\u5e72\u53e3\u6751"}, {"id" : "430181115241", "text" : "\u7530\u576a\u6751"}, {"id" : "430181115242", "text" : "\u5317\u661f\u6751"}]
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#"}
Construct a JSON document that adheres to this schema specification: {"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": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["Whisk eggs with pinch of salt until blended. Heat 1 tablespoon oil in wok or heavy medium skillet over eggs into skillet. Using spatula, lift eggs as they cook, letting uncooked part run underneath until set. Transfer to cutting board. Cut eggs into shreds.", "Combine shrimp, wine and cornstarch in small bowl. Heat 3 tablespoons oil in same wok over medium-high heat. Add shrimp and stir-fry until just pink, about 3 minutes. Add ham and vegetables and stir-fry 1 minute. Add shredded eggs, rice and 1 tablespoon soy sauce and stir-fry until heated through. Season with pepper. Serve, passing soy sauce separately."], "ingredients" : ["2 eggs", "Pinch of salt", "4 tablespoons vegetable oil", "1/2 cup uncooked medium shrimp, peeled, deveined, cut into 1/2-inch\u00a0pieces", "2 teaspoons dry white wine", "1 teaspoon cornstarch", "1/2 cup diced ham", "2 tablespoons sliced green onion", "2 tablespoons diced carrot", "2 tablespoons frozen peas, thawed", "3 cups cooked rice (about 1 cup uncooked)", "1 tablespoon soy sauce", "Pepper", "Additional soy sauce"], "language" : "en-US", "source" : "www.epicurious.com", "tags" : ["Pork", "Rice", "Shellfish", "Stir-Fry", "Quick & Easy", "Summer", "Massachusetts"], "title" : "Fried Rice with Shrimp and Ham", "url" : "http://www.epicurious.com/recipes/food/views/fried-rice-with-shrimp-and-ham-2032"}
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": {"type": "string"}}, "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"}, "appliesTo": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "array", "items": {}}}, "required": ["name", "appliesTo", "properties"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "Invalid", "appliesTo" : ["bpmn:UserTask"], "properties" : []}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "appliesTo": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "array", "items": {}}}, "required": ["name", "appliesTo", "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"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "sapper": {"type": "string"}, "build": {"type": "string"}, "export": {"type": "string"}, "start": {"type": "string"}, "sirv": {"type": "string"}, "lint": {"type": "string"}}, "required": ["dev", "sapper", "build", "export", "start", "sirv", "lint"]}, "devDependencies": {"type": "object", "properties": {"babel-eslint": {"type": "string"}, "cross-env": {"type": "string"}, "crypto": {"type": "string"}, "css-loader": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-svelte3": {"type": "string"}, "mini-css-extract-plugin": {"type": "string"}, "sapper": {"type": "string"}, "sirv-cli": {"type": "string"}, "style-loader": {"type": "string"}, "svelte": {"type": "string"}, "svelte-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["babel-eslint", "cross-env", "crypto", "css-loader", "eslint", "eslint-plugin-svelte3", "mini-css-extract-plugin", "sapper", "sirv-cli", "style-loader", "svelte", "svelte-loader", "webpack", "webpack-cli", "webpack-dev-server"]}, "dependencies": {"type": "object", "properties": {"compression": {"type": "string"}, "ethers": {"type": "string"}, "polka": {"type": "string"}, "sirv": {"type": "string"}}, "required": ["compression", "ethers", "polka", "sirv"]}}, "required": ["name", "version", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "nft-minter-web-app", "version" : "0.0.1", "scripts" : {"dev" : "sapper dev --no-hot", "sapper" : "sapper", "build" : "sapper build", "export" : "sapper export _export", "start" : "node __sapper__/build", "sirv" : "sirv start _export", "lint" : "eslint '**/*.{js,jsx}' --quiet"}, "devDependencies" : {"babel-eslint" : "^10.0.2", "cross-env" : "^5.2.0", "crypto" : "^1.0.1", "css-loader" : "^2.1.1", "eslint" : "^6.2.1", "eslint-plugin-svelte3" : "^2.7.3", "mini-css-extract-plugin" : "^0.6.0", "sapper" : "^0.27.8", "sirv-cli" : "^0.4.4", "style-loader" : "^0.23.1", "svelte" : "^3.0.0", "svelte-loader" : "2.13.3", "webpack" : "^4.39.2", "webpack-cli" : "^3.3.7", "webpack-dev-server" : "^3.3.1"}, "dependencies" : {"compression" : "^1.7.1", "ethers" : "^5.0.0-beta.156", "polka" : "next", "sirv" : "^0.4.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "sapper": {"type": "string"}, "build": {"type": "string"}, "export": {"type": "string"}, "start": {"type": "string"}, "sirv": {"type": "string"}, "lint": {"type": "string"}}, "required": ["dev", "sapper", "build", "export", "start", "sirv", "lint"]}, "devDependencies": {"type": "object", "properties": {"babel-eslint": {"type": "string"}, "cross-env": {"type": "string"}, "crypto": {"type": "string"}, "css-loader": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-svelte3": {"type": "string"}, "mini-css-extract-plugin": {"type": "string"}, "sapper": {"type": "string"}, "sirv-cli": {"type": "string"}, "style-loader": {"type": "string"}, "svelte": {"type": "string"}, "svelte-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["babel-eslint", "cross-env", "crypto", "css-loader", "eslint", "eslint-plugin-svelte3", "mini-css-extract-plugin", "sapper", "sirv-cli", "style-loader", "svelte", "svelte-loader", "webpack", "webpack-cli", "webpack-dev-server"]}, "dependencies": {"type": "object", "properties": {"compression": {"type": "string"}, "ethers": {"type": "string"}, "polka": {"type": "string"}, "sirv": {"type": "string"}}, "required": ["compression", "ethers", "polka", "sirv"]}}, "required": ["name", "version", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"serve": {"type": "string"}, "build": {"type": "string"}}, "required": ["serve", "build"]}, "dependencies": {"type": "object", "properties": {"body-scroll-lock": {"type": "string"}, "core-js": {"type": "string"}, "dayjs": {"type": "string"}, "keycode": {"type": "string"}, "normalize-wheel": {"type": "string"}, "resize-observer-polyfill": {"type": "string"}, "vue": {"type": "string"}}, "required": ["body-scroll-lock", "core-js", "dayjs", "keycode", "normalize-wheel", "resize-observer-polyfill", "vue"]}, "devDependencies": {"type": "object", "properties": {"@vue/cli-plugin-babel": {"type": "string"}, "@vue/cli-service": {"type": "string"}, "less": {"type": "string"}, "less-loader": {"type": "string"}, "vue-template-compiler": {"type": "string"}}, "required": ["@vue/cli-plugin-babel", "@vue/cli-service", "less", "less-loader", "vue-template-compiler"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "muse-ui2", "version" : "0.1.0", "private" : true, "scripts" : {"serve" : "vue-cli-service serve", "build" : "vue-cli-service build --target lib --name muse-ui2 src/index.js"}, "dependencies" : {"body-scroll-lock" : "^2.6.4", "core-js" : "^2.6.5", "dayjs" : "^1.8.16", "keycode" : "^2.2.0", "normalize-wheel" : "^1.0.1", "resize-observer-polyfill" : "^1.5.1", "vue" : "^2.6.10"}, "devDependencies" : {"@vue/cli-plugin-babel" : "^3.11.0", "@vue/cli-service" : "^3.11.0", "less" : "^3.0.4", "less-loader" : "^5.0.0", "vue-template-compiler" : "^2.6.10"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"serve": {"type": "string"}, "build": {"type": "string"}}, "required": ["serve", "build"]}, "dependencies": {"type": "object", "properties": {"body-scroll-lock": {"type": "string"}, "core-js": {"type": "string"}, "dayjs": {"type": "string"}, "keycode": {"type": "string"}, "normalize-wheel": {"type": "string"}, "resize-observer-polyfill": {"type": "string"}, "vue": {"type": "string"}}, "required": ["body-scroll-lock", "core-js", "dayjs", "keycode", "normalize-wheel", "resize-observer-polyfill", "vue"]}, "devDependencies": {"type": "object", "properties": {"@vue/cli-plugin-babel": {"type": "string"}, "@vue/cli-service": {"type": "string"}, "less": {"type": "string"}, "less-loader": {"type": "string"}, "vue-template-compiler": {"type": "string"}}, "required": ["@vue/cli-plugin-babel", "@vue/cli-service", "less", "less-loader", "vue-template-compiler"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"cytoscape.js": {"type": "string"}, "cytoscape.min.js": {"type": "string"}}, "required": ["cytoscape.js", "cytoscape.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cytoscape.js" : "sha256-1UeDMifqkpnLXyBgjhaaZ/QhRt5XXEadzyf8+GPTGCM=", "cytoscape.min.js" : "sha256-HuYeEzvxxgOAa/U5OB11vVz9qJB+LD/cZDCprWQLEzA="}
json_instruct
{"type": "object", "properties": {"cytoscape.js": {"type": "string"}, "cytoscape.min.js": {"type": "string"}}, "required": ["cytoscape.js", "cytoscape.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "is-portable": {"type": "boolean"}, "portable": {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "latest-version": {"type": "string"}, "0.7.0.0": {"type": "object", "properties": {"url": {"type": "string"}, "file-type": {"type": "string"}, "bin": {"type": "array", "items": {"type": "string"}}, "shortcuts": {"type": "array", "items": {}}, "persist": {"type": "array", "items": {}}}, "required": ["url", "file-type", "bin", "shortcuts", "persist"]}, "auto-update": {"type": "object", "properties": {"checkver": {"type": "string"}}, "required": ["checkver"]}}, "required": ["display-name", "package-name", "latest-version", "0.7.0.0", "auto-update"]}}, "required": ["display-name", "package-name", "is-portable", "portable"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"display-name" : "", "package-name" : "mach2", "is-portable" : true, "portable" : {"display-name" : "", "package-name" : "mach2", "latest-version" : "0.7.0.0", "0.7.0.0" : {"url" : "https://github.com/riverar/mach2/releases/download/0.7.0.0/mach2_0.7.0.0_x64.zip", "file-type" : ".zip", "bin" : ["mach2.exe"], "shortcuts" : [], "persist" : []}, "auto-update" : {"checkver" : ""}}}
json_instruct
{"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "is-portable": {"type": "boolean"}, "portable": {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "latest-version": {"type": "string"}, "0.7.0.0": {"type": "object", "properties": {"url": {"type": "string"}, "file-type": {"type": "string"}, "bin": {"type": "array", "items": {"type": "string"}}, "shortcuts": {"type": "array", "items": {}}, "persist": {"type": "array", "items": {}}}, "required": ["url", "file-type", "bin", "shortcuts", "persist"]}, "auto-update": {"type": "object", "properties": {"checkver": {"type": "string"}}, "required": ["checkver"]}}, "required": ["display-name", "package-name", "latest-version", "0.7.0.0", "auto-update"]}}, "required": ["display-name", "package-name", "is-portable", "portable"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"class": {"type": "array", "items": {"type": "integer"}}, "classes": {"type": "array", "items": {"type": "integer"}}, "copy": {"type": "array", "items": {"type": "integer"}}, "constructors": {"type": "array", "items": {"type": "integer"}}, "constructor": {"type": "array", "items": {"type": "integer"}}, "condition": {"type": "array", "items": {"type": "integer"}}}, "required": ["class", "classes", "copy", "constructors", "constructor", "condition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"class" : [65537, 131074, 196610, 262148, 327683, 393218, 458754, 524290], "classes" : [131073], "copy" : [262145, 327681, 393217, 458753], "constructors" : [262145], "constructor" : [327681], "condition" : [393217]}
json_instruct
{"type": "object", "properties": {"class": {"type": "array", "items": {"type": "integer"}}, "classes": {"type": "array", "items": {"type": "integer"}}, "copy": {"type": "array", "items": {"type": "integer"}}, "constructors": {"type": "array", "items": {"type": "integer"}}, "constructor": {"type": "array", "items": {"type": "integer"}}, "condition": {"type": "array", "items": {"type": "integer"}}}, "required": ["class", "classes", "copy", "constructors", "constructor", "condition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "serve": {"type": "string"}}, "required": ["start", "build", "serve"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-stage-0": {"type": "string"}, "dataloader": {"type": "string"}, "express": {"type": "string"}, "express-graphql": {"type": "string"}, "graphql": {"type": "string"}, "graphql-relay": {"type": "string"}, "lodash": {"type": "string"}, "node-fetch": {"type": "string"}, "nodemon": {"type": "string"}, "request": {"type": "string"}, "xml2js": {"type": "string"}}, "required": ["babel-cli", "babel-preset-es2015", "babel-preset-stage-0", "dataloader", "express", "express-graphql", "graphql", "graphql-relay", "lodash", "node-fetch", "nodemon", "request", "xml2js"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "irish-rail-graphql", "version" : "1.0.0", "description" : "Irish real time graphql", "main" : "index.js", "scripts" : {"start" : "nodemon lib/index.js --exec babel-node --presets es2015,stage-0", "build" : "babel lib -d dist --presets es2015,stage-0", "serve" : "node dist/index.js"}, "author" : "Fintan Dunleavy", "license" : "MIT", "dependencies" : {"babel-cli" : "6.7.5", "babel-preset-es2015" : "6.6.0", "babel-preset-stage-0" : "6.5.0", "dataloader" : "1.2.0", "express" : "4.13.4", "express-graphql" : "0.5.1", "graphql" : "0.5.0", "graphql-relay" : "0.4.0", "lodash" : "^4.17.4", "node-fetch" : "1.5.1", "nodemon" : "1.9.1", "request" : "^2.81.0", "xml2js" : "^0.4.17"}}
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"}, "serve": {"type": "string"}}, "required": ["start", "build", "serve"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-stage-0": {"type": "string"}, "dataloader": {"type": "string"}, "express": {"type": "string"}, "express-graphql": {"type": "string"}, "graphql": {"type": "string"}, "graphql-relay": {"type": "string"}, "lodash": {"type": "string"}, "node-fetch": {"type": "string"}, "nodemon": {"type": "string"}, "request": {"type": "string"}, "xml2js": {"type": "string"}}, "required": ["babel-cli", "babel-preset-es2015", "babel-preset-stage-0", "dataloader", "express", "express-graphql", "graphql", "graphql-relay", "lodash", "node-fetch", "nodemon", "request", "xml2js"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build:ext": {"type": "string"}, "build:client": {"type": "string"}, "build:all": {"type": "string"}, "watch:ext": {"type": "string"}, "watch:client": {"type": "string"}}, "required": ["start", "build:ext", "build:client", "build:all", "watch:ext", "watch:client"]}, "dependencies": {"type": "object", "properties": {"apollo-cache-inmemory": {"type": "string"}, "apollo-client": {"type": "string"}, "apollo-link-http": {"type": "string"}, "apollo-server": {"type": "string"}, "graphql": {"type": "string"}, "http-proxy": {"type": "string"}, "lodash.debounce": {"type": "string"}, "lodash.merge": {"type": "string"}, "ts-node": {"type": "string"}}, "required": ["apollo-cache-inmemory", "apollo-client", "apollo-link-http", "apollo-server", "graphql", "http-proxy", "lodash.debounce", "lodash.merge", "ts-node"]}, "devDependencies": {"type": "object", "properties": {"@types/graphql": {"type": "string"}, "@types/http-proxy": {"type": "string"}, "@types/jest": {"type": "string"}, "@types/node": {"type": "string"}, "jest": {"type": "string"}, "ts-jest": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}, "webpack-merge": {"type": "string"}}, "required": ["@types/graphql", "@types/http-proxy", "@types/jest", "@types/node", "jest", "ts-jest", "ts-loader", "typescript", "webpack", "webpack-cli", "webpack-dev-server", "webpack-merge"]}}, "required": ["name", "version", "description", "repository", "license", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Booksmart", "version" : "0.0.1", "description" : "A smart bookmarks manager for students.", "repository" : "git@github.com:Darkneon/booksmart.git", "license" : "MIT", "private" : false, "scripts" : {"start" : "yarn exec ts-node server/index.ts", "build:ext" : "mkdir -p ./extension/dist && cp ./extension/assets/* ./extension/dist/ && webpack --config ./extension/webpack.dev.js", "build:client" : "webpack --config ./client/webpack.dev.js", "build:all" : "yarn run build:ext && yarn run build:client", "watch:ext" : "webpack -w --config ./extension/webpack.dev.js", "watch:client" : "webpack -w --config ./client/webpack.dev.js"}, "dependencies" : {"apollo-cache-inmemory" : "^1.6.6", "apollo-client" : "^2.6.0", "apollo-link-http" : "^1.5.17", "apollo-server" : "^2.15.0", "graphql" : "^15.3.0", "http-proxy" : "^1.18.1", "lodash.debounce" : "^4.0.8", "lodash.merge" : "^4.6.2", "ts-node" : "^8.10.2"}, "devDependencies" : {"@types/graphql" : "^14.5.0", "@types/http-proxy" : "^1.17.4", "@types/jest" : "^26.0.0", "@types/node" : "^14.0.23", "jest" : "^26.1.0", "ts-jest" : "^26.1.0", "ts-loader" : "^7.0.2", "typescript" : "^3.8.3", "webpack" : "^4.43.0", "webpack-cli" : "^3.3.11", "webpack-dev-server" : "^3.10.3", "webpack-merge" : "^4.2.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build:ext": {"type": "string"}, "build:client": {"type": "string"}, "build:all": {"type": "string"}, "watch:ext": {"type": "string"}, "watch:client": {"type": "string"}}, "required": ["start", "build:ext", "build:client", "build:all", "watch:ext", "watch:client"]}, "dependencies": {"type": "object", "properties": {"apollo-cache-inmemory": {"type": "string"}, "apollo-client": {"type": "string"}, "apollo-link-http": {"type": "string"}, "apollo-server": {"type": "string"}, "graphql": {"type": "string"}, "http-proxy": {"type": "string"}, "lodash.debounce": {"type": "string"}, "lodash.merge": {"type": "string"}, "ts-node": {"type": "string"}}, "required": ["apollo-cache-inmemory", "apollo-client", "apollo-link-http", "apollo-server", "graphql", "http-proxy", "lodash.debounce", "lodash.merge", "ts-node"]}, "devDependencies": {"type": "object", "properties": {"@types/graphql": {"type": "string"}, "@types/http-proxy": {"type": "string"}, "@types/jest": {"type": "string"}, "@types/node": {"type": "string"}, "jest": {"type": "string"}, "ts-jest": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}, "webpack-merge": {"type": "string"}}, "required": ["@types/graphql", "@types/http-proxy", "@types/jest", "@types/node", "jest", "ts-jest", "ts-loader", "typescript", "webpack", "webpack-cli", "webpack-dev-server", "webpack-merge"]}}, "required": ["name", "version", "description", "repository", "license", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "id": {"type": "string"}}, "required": ["title", "text", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"title" : "Awesome", "text" : "I love coding cant wait to have tons of fun", "id" : "054043c4-3b09-48db-97e0-cfa90ab34747"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "id": {"type": "string"}}, "required": ["title", "text", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "BECAUSE REAL THINGS ARE NO FARTHER CONCERNED, NOR INTENDED TO BE MEANT BY ANY SUCH PROPOSITIONS,", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/14415.json"}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"Sample Album": {"type": "string"}}, "required": ["Sample Album"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Sample Album" : "samplealbum"}
json_instruct
{"type": "object", "properties": {"Sample Album": {"type": "string"}}, "required": ["Sample Album"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0xa94575b11060644cf926f5b853cf9c95fd5b9770", "tool" : "securify", "start" : 1563749659.4716816, "end" : 1563749663.7080085, "duration" : 4.2363269329071045, "analysis" : null}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"HostConfigHash": {"type": "string"}, "CardHash": {"type": "string"}, "Error": {"type": "null"}}, "required": ["HostConfigHash", "CardHash", "Error"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"HostConfigHash" : "9047d0d", "CardHash" : "a22e929", "Error" : null}
json_instruct
{"type": "object", "properties": {"HostConfigHash": {"type": "string"}, "CardHash": {"type": "string"}, "Error": {"type": "null"}}, "required": ["HostConfigHash", "CardHash", "Error"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["bubbleup-plugin-build-rollup", "bubbleup-plugin-test-mocha"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"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" : 404382667, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "4a5ab5f94cdc2e967ba52c26ff587258", "wof:id" : 404382667, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [-0.45086932784774, 44.51608726486504, -0.36071334038883, 44.55730924292371], "geometry" : {"coordinates" : [[[-0.37436569942457, 44.52435307955716], [-0.3773091752093, 44.51797368514728], [-0.38172022313751, 44.51676628156576], [-0.41923320811969, 44.51608726486504], [-0.44786608626771, 44.5207465264013], [-0.45086932784774, 44.52351805493166], [-0.43513965269681, 44.53183039756941], [-0.41014030104434, 44.55298823012999], [-0.37686596186652, 44.55730924292371], [-0.37247421836231, 44.55573151093621], [-0.36071334038883, 44.54763839203273], [-0.36138459796031, 44.54029242224605], [-0.36568186868283, 44.53904412565485], [-0.37436569942457, 44.52435307955716]]], "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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "zhang-shasha", "description" : "Tree edit distance using the Zhang Shasha algorithm", "license" : {"key" : "bsd-3-clause", "name" : "BSD 3-clause \"New\" or \"Revised\" License", "spdx_id" : "BSD-3-Clause", "url" : "https://api.github.com/licenses/bsd-3-clause"}, "starNum" : 136, "folkNum" : 24, "watchNum" : 136, "topic" : []}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"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" : 3, "n_trials" : 340, "objective" : "deap_combo3_on_cube", "white" : "platypus_smpso", "black" : "ultraopt_etpe", "traceback" : ["passing", "passing"], "best_val" : [79877.46017507171, 95092.2274226729], "best_x" : [[0.5549094140982103, 0.5607076020073488, 0.7181669953625914], [0.5283599341009515, 0.5350225703501325, 0.4464993063072762]], "feval_count" : [300, 300], "n_trials_instructed" : [237, 300], "passing" : [true, true], "completed" : true, "points" : 1.0, "winner" : "platypus_smpso", "loser" : "ultraopt_etpe"}
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"addOverlayBtn": {"type": "string"}, "colorScaleBox": {"type": "string"}, "initializePanel": {"type": "string"}, "metricBox": {"type": "string"}, "okBtn": {"type": "string"}, "overlayList": {"type": "string"}, "removeOverlayBtn": {"type": "string"}, "visitorBox": {"type": "string"}}, "required": ["addOverlayBtn", "colorScaleBox", "initializePanel", "metricBox", "okBtn", "overlayList", "removeOverlayBtn", "visitorBox"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"class" : {}, "instance" : {"addOverlayBtn" : "ls 9/12/2013 18:53:20.256", "colorScaleBox" : "ls 9/12/2013 18:53:20.244", "initializePanel" : "ls 12/3/2013 17:08:18.859", "metricBox" : "ls 9/12/2013 18:53:20.216", "okBtn" : "ls 9/12/2013 18:53:20.295", "overlayList" : "ls 9/12/2013 18:53:20.27", "removeOverlayBtn" : "ls 9/12/2013 18:53:20.282", "visitorBox" : "ls 9/12/2013 18:53:20.231"}}
json_instruct
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"addOverlayBtn": {"type": "string"}, "colorScaleBox": {"type": "string"}, "initializePanel": {"type": "string"}, "metricBox": {"type": "string"}, "okBtn": {"type": "string"}, "overlayList": {"type": "string"}, "removeOverlayBtn": {"type": "string"}, "visitorBox": {"type": "string"}}, "required": ["addOverlayBtn", "colorScaleBox", "initializePanel", "metricBox", "okBtn", "overlayList", "removeOverlayBtn", "visitorBox"]}}, "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"}, "version": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/compiler": {"type": "string"}, "@angular/core": {"type": "string"}, "@angular/forms": {"type": "string"}, "@angular/http": {"type": "string"}, "@angular/platform-browser": {"type": "string"}, "@angular/platform-browser-dynamic": {"type": "string"}, "@angular/router": {"type": "string"}, "core-js": {"type": "string"}, "normalize-css": {"type": "string"}, "reflect-metadata": {"type": "string"}, "requirejs": {"type": "string"}, "rxjs": {"type": "string"}, "ts-helpers": {"type": "string"}, "zone.js": {"type": "string"}}, "required": ["@angular/common", "@angular/compiler", "@angular/core", "@angular/forms", "@angular/http", "@angular/platform-browser", "@angular/platform-browser-dynamic", "@angular/router", "core-js", "normalize-css", "reflect-metadata", "requirejs", "rxjs", "ts-helpers", "zone.js"]}, "devDependencies": {"type": "object", "properties": {"lite-server": {"type": "string"}}, "required": ["lite-server"]}}, "required": ["name", "version", "license", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "angular2-requirejs", "version" : "0.1.0", "license" : "MIT", "scripts" : {"start" : "lite-server"}, "dependencies" : {"@angular/common" : "^4.0.1", "@angular/compiler" : "^4.0.1", "@angular/core" : "^4.0.1", "@angular/forms" : "^4.0.1", "@angular/http" : "^4.0.1", "@angular/platform-browser" : "^4.0.1", "@angular/platform-browser-dynamic" : "^4.0.1", "@angular/router" : "^4.0.1", "core-js" : "^2.4.1", "normalize-css" : "^2.3.1", "reflect-metadata" : "^0.1.8", "requirejs" : "2.3.2", "rxjs" : "5.0.0-beta.12", "ts-helpers" : "^1.1.1", "zone.js" : "^0.8.5"}, "devDependencies" : {"lite-server" : "2.2.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/compiler": {"type": "string"}, "@angular/core": {"type": "string"}, "@angular/forms": {"type": "string"}, "@angular/http": {"type": "string"}, "@angular/platform-browser": {"type": "string"}, "@angular/platform-browser-dynamic": {"type": "string"}, "@angular/router": {"type": "string"}, "core-js": {"type": "string"}, "normalize-css": {"type": "string"}, "reflect-metadata": {"type": "string"}, "requirejs": {"type": "string"}, "rxjs": {"type": "string"}, "ts-helpers": {"type": "string"}, "zone.js": {"type": "string"}}, "required": ["@angular/common", "@angular/compiler", "@angular/core", "@angular/forms", "@angular/http", "@angular/platform-browser", "@angular/platform-browser-dynamic", "@angular/router", "core-js", "normalize-css", "reflect-metadata", "requirejs", "rxjs", "ts-helpers", "zone.js"]}, "devDependencies": {"type": "object", "properties": {"lite-server": {"type": "string"}}, "required": ["lite-server"]}}, "required": ["name", "version", "license", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"/public/js/manifest.js": {"type": "string"}, "/public/js/theme.js": {"type": "string"}, "/public/css/theme.css": {"type": "string"}, "/public/js/vendor.js": {"type": "string"}}, "required": ["/public/js/manifest.js", "/public/js/theme.js", "/public/css/theme.css", "/public/js/vendor.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"/public/js/manifest.js" : "/public/js/manifest.js?id=4d112df8a2235668cff6", "/public/js/theme.js" : "/public/js/theme.js?id=77991dddb5fd05dafce1", "/public/css/theme.css" : "/public/css/theme.css?id=ef20867d00ed2895d7a1", "/public/js/vendor.js" : "/public/js/vendor.js?id=51c90f795c381fa8e3bb"}
json_instruct
{"type": "object", "properties": {"/public/js/manifest.js": {"type": "string"}, "/public/js/theme.js": {"type": "string"}, "/public/css/theme.css": {"type": "string"}, "/public/js/vendor.js": {"type": "string"}}, "required": ["/public/js/manifest.js", "/public/js/theme.js", "/public/css/theme.css", "/public/js/vendor.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"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" : 101892827, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "6a4ee99ddff6ec0815595a1a4ad3c7c2", "wof:id" : 101892827, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [3.07472634981872, 46.19631925996532, 3.08972336884375, 46.20626164275706], "geometry" : {"coordinates" : [[[3.07601621672961, 46.20626164275706], [3.07613191306001, 46.20536540845643], [3.07871161530738, 46.20553293178443], [3.0789429080811, 46.20374045473352], [3.0802327221873, 46.20382418983331], [3.0803483398638, 46.20292794869704], [3.08421774025288, 46.2031790558085], [3.0841021862625, 46.2040753017809], [3.08797168295797, 46.2043262736986], [3.08831813892095, 46.20163751928624], [3.08960791471179, 46.20172114064269], [3.08972336884375, 46.2008248862312], [3.08843361428001, 46.20074126648501], [3.08854908465816, 46.19984501301894], [3.08339018752855, 46.19951038490012], [3.08373682347019, 46.19682163983992], [3.07599896851536, 46.19631925996532], [3.07472634981872, 46.20617785614081], [3.07601621672961, 46.20626164275706]]], "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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"configuration": {"type": "array", "items": {"type": "string"}}, "regionsToPerf": {"type": "object", "properties": {"00000000-0000-0000-0000-000000000000": {"type": "integer"}}, "required": ["00000000-0000-0000-0000-000000000000"]}, "regionsToUserPerf": {"type": "object", "properties": {"00000000-0000-0000-0000-000000000000": {"type": "integer"}}, "required": ["00000000-0000-0000-0000-000000000000"]}}, "required": ["configuration", "regionsToPerf", "regionsToUserPerf"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"configuration" : ["AUTOCOMMIT", "CACHE_TYPE"], "regionsToPerf" : {"00000000-0000-0000-0000-000000000000" : 10240000000}, "regionsToUserPerf" : {"00000000-0000-0000-0000-000000000000" : 7550000000}}
json_instruct
{"type": "object", "properties": {"configuration": {"type": "array", "items": {"type": "string"}}, "regionsToPerf": {"type": "object", "properties": {"00000000-0000-0000-0000-000000000000": {"type": "integer"}}, "required": ["00000000-0000-0000-0000-000000000000"]}, "regionsToUserPerf": {"type": "object", "properties": {"00000000-0000-0000-0000-000000000000": {"type": "integer"}}, "required": ["00000000-0000-0000-0000-000000000000"]}}, "required": ["configuration", "regionsToPerf", "regionsToUserPerf"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"notes": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "id": {"type": "string"}}, "required": ["title", "text", "id"]}}}, "required": ["notes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"notes" : [{"title" : "Finish this Bootcamp ", "text" : "The graduation date is January 20th! \ud83d\udc9c", "id" : "4V__vL9ZidJF3NyXOAjI4"}, {"title" : "Start applying for Job", "text" : "Starting December start looking for a job!", "id" : "B8H75MgbwGj82iIN8k_az"}, {"title" : "Continue learning!", "text" : "I will be a life-long learner for the rest of my career!!", "id" : "OMA_USmyKNtqfRGsOm2IB"}]}
json_instruct
{"type": "object", "properties": {"notes": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "id": {"type": "string"}}, "required": ["title", "text", "id"]}}}, "required": ["notes"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"env": {"type": "object", "properties": {"matrix": {"type": "string"}, "*": {"type": "array", "items": {"type": "string"}}}, "required": ["matrix", "*"]}, "gemfile": {"type": "object", "properties": {"default_ivalue": {"type": "string"}, "*": {"type": "array", "items": {"type": "string"}}}, "required": ["default_ivalue", "*"]}, "jdk": {"type": "object", "properties": {"default_ivalue": {"type": "string"}, "openjdk7": {"type": "array", "items": {"type": "string"}}}, "required": ["default_ivalue", "openjdk7"]}, "rvm": {"type": "object", "properties": {"default_ivalue": {"type": "string"}, "*": {"type": "array", "items": {"type": "string"}}}, "required": ["default_ivalue", "*"]}}, "required": ["env", "gemfile", "jdk", "rvm"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"env" : {"matrix" : "advanced", "*" : ["export ${jervis_toolchain_ivalue}"]}, "gemfile" : {"default_ivalue" : "${PWD}/Gemfile", "*" : ["export BUNDLE_GEMFILE=\"${jervis_toolchain_ivalue}\""]}, "jdk" : {"default_ivalue" : "openjdk7", "openjdk7" : ["some commands"]}, "rvm" : {"default_ivalue" : "1.9.3", "*" : ["some commands"]}}
json_instruct
{"type": "object", "properties": {"env": {"type": "object", "properties": {"matrix": {"type": "string"}, "*": {"type": "array", "items": {"type": "string"}}}, "required": ["matrix", "*"]}, "gemfile": {"type": "object", "properties": {"default_ivalue": {"type": "string"}, "*": {"type": "array", "items": {"type": "string"}}}, "required": ["default_ivalue", "*"]}, "jdk": {"type": "object", "properties": {"default_ivalue": {"type": "string"}, "openjdk7": {"type": "array", "items": {"type": "string"}}}, "required": ["default_ivalue", "openjdk7"]}, "rvm": {"type": "object", "properties": {"default_ivalue": {"type": "string"}, "*": {"type": "array", "items": {"type": "string"}}}, "required": ["default_ivalue", "*"]}}, "required": ["env", "gemfile", "jdk", "rvm"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K18983": {"type": "string"}}, "required": ["K18983"]}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {"rn00053": {"type": "string"}}, "required": ["rn00053"]}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"comment" : "D-galactarolactone cycloisomerase", "definition" : "D-Galactaro-1,4-lactone <=> 5-Dehydro-4-deoxy-D-glucarate", "orthologs" : {"K18983" : "D-galactarolactone cycloisomerase [EC:5.5.1.27]"}, "name" : "D-galactaro-1,4-lactone lyase (ring-opening)", "product_stoichiometries" : ["1"], "enzymes" : ["5.5.1.27"], "equation" : "C20896 <=> C00679", "glycans" : false, "substrate_stoichiometries" : ["1"], "rpairs" : {}, "entry_id" : "R10847", "pathways" : {"rn00053" : "Ascorbate and aldarate metabolism"}, "products" : ["C00679"], "substrates" : ["C20896"]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K18983": {"type": "string"}}, "required": ["K18983"]}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {"rn00053": {"type": "string"}}, "required": ["rn00053"]}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"file_name": {"type": "string"}, "guid": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}, "exports": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "class": {"type": "object", "properties": {"package": {"type": "string"}, "name": {"type": "string"}}, "required": ["package", "name"]}, "super": {"type": "null"}, "template": {"type": "object", "properties": {"package": {"type": "string"}, "name": {"type": "string"}}, "required": ["package", "name"]}, "outer": {"type": "null"}, "properties": {"type": "object", "properties": {"ImportedSize": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}, "required": ["type", "value"]}, "LightingGuid": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}}, "required": ["type", "value"]}, "SRGB": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "boolean"}}, "required": ["type", "value"]}}, "required": ["ImportedSize", "LightingGuid", "SRGB"]}}, "required": ["name", "class", "super", "template", "outer", "properties"]}}}, "required": ["file_name", "guid", "exports"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"file_name" : "FactoryGame/Content/FactoryGame/World/Environment/Water/Texture/SpecularHighlights.uasset", "guid" : {"a" : 2969115282, "b" : 1191950049, "c" : 3560792477, "d" : 3850144436}, "exports" : [{"name" : "SpecularHighlights", "class" : {"package" : "/Script/Engine", "name" : "Texture2D"}, "super" : null, "template" : {"package" : "/Script/Engine", "name" : "Default__Texture2D"}, "outer" : null, "properties" : {"ImportedSize" : {"type" : "IntPoint", "value" : {"x" : 1024, "y" : 1024}}, "LightingGuid" : {"type" : "Guid", "value" : {"a" : 2692790765, "b" : 1178521040, "c" : 1760902078, "d" : 2025363434}}, "SRGB" : {"type" : "BoolProperty", "value" : false}}}]}
json_instruct
{"type": "object", "properties": {"file_name": {"type": "string"}, "guid": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}, "exports": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "class": {"type": "object", "properties": {"package": {"type": "string"}, "name": {"type": "string"}}, "required": ["package", "name"]}, "super": {"type": "null"}, "template": {"type": "object", "properties": {"package": {"type": "string"}, "name": {"type": "string"}}, "required": ["package", "name"]}, "outer": {"type": "null"}, "properties": {"type": "object", "properties": {"ImportedSize": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}, "required": ["type", "value"]}, "LightingGuid": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}}, "required": ["type", "value"]}, "SRGB": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "boolean"}}, "required": ["type", "value"]}}, "required": ["ImportedSize", "LightingGuid", "SRGB"]}}, "required": ["name", "class", "super", "template", "outer", "properties"]}}}, "required": ["file_name", "guid", "exports"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"streetAddress": {"type": "string"}, "locality": {"type": "string"}, "postalCode": {"type": "string"}, "region": {"type": "string"}, "country": {"type": "string"}}, "required": ["streetAddress", "locality", "postalCode", "region", "country"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"streetAddress" : "Street Address", "locality" : "City", "postalCode" : "Zip Code", "region" : "State", "country" : "Country"}
json_instruct
{"type": "object", "properties": {"streetAddress": {"type": "string"}, "locality": {"type": "string"}, "postalCode": {"type": "string"}, "region": {"type": "string"}, "country": {"type": "string"}}, "required": ["streetAddress", "locality", "postalCode", "region", "country"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"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": {"21135": {"type": "string"}, "22071": {"type": "string"}, "19350": {"type": "string"}, "19352": {"type": "string"}}, "required": ["21135", "22071", "19350", "19352"]}, "timeto": {"type": "object", "properties": {"21135": {"type": "number"}, "22071": {"type": "number"}, "19350": {"type": "number"}, "19352": {"type": "number"}}, "required": ["21135", "22071", "19350", "19352"]}, "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" : 19351, "title" : ["[Eastern Harbor, Alley]"], "description" : ["Dark despite the time of day, the alley is crowded with boxes, barrels, and rope-tied cloth bags. Doors line the brick walls of the buildings that rise on either side of the cobblestoned path, their faces unmarked and plain. A lone lantern stands next to a small black entryway, its flickering flame casting long shadows in the confined space.", "Dark despite the faint glow of moonlight, the alley is crowded with boxes, barrels, and rope-tied cloth bags. Doors line the brick walls of the buildings that rise on either side of the cobblestoned path, their faces unmarked and plain. A lone lantern stands next to a small black entryway, its flickering flame casting long shadows in the confined space."], "paths" : ["Obvious paths: north, south"], "location" : "Mist Harbor", "wayto" : {"21135" : "go entryway", "22071" : "go door", "19350" : "north", "19352" : "south"}, "timeto" : {"21135" : 0.2, "22071" : 0.2, "19350" : 0.2, "19352" : 0.2}, "image" : "ifw-isle_of_four_winds-1310232949.png", "image_coords" : [4032, 1605, 4064, 1629]}
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": {"21135": {"type": "string"}, "22071": {"type": "string"}, "19350": {"type": "string"}, "19352": {"type": "string"}}, "required": ["21135", "22071", "19350", "19352"]}, "timeto": {"type": "object", "properties": {"21135": {"type": "number"}, "22071": {"type": "number"}, "19350": {"type": "number"}, "19352": {"type": "number"}}, "required": ["21135", "22071", "19350", "19352"]}, "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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"special": {"type": "object", "properties": {"background": {"type": "string"}, "foreground": {"type": "string"}, "cursor": {"type": "string"}}, "required": ["background", "foreground", "cursor"]}, "colors": {"type": "object", "properties": {"color0": {"type": "string"}, "color1": {"type": "string"}, "color2": {"type": "string"}, "color3": {"type": "string"}, "color4": {"type": "string"}, "color5": {"type": "string"}, "color6": {"type": "string"}, "color7": {"type": "string"}, "color8": {"type": "string"}, "color9": {"type": "string"}, "color10": {"type": "string"}, "color11": {"type": "string"}, "color12": {"type": "string"}, "color13": {"type": "string"}, "color14": {"type": "string"}, "color15": {"type": "string"}}, "required": ["color0", "color1", "color2", "color3", "color4", "color5", "color6", "color7", "color8", "color9", "color10", "color11", "color12", "color13", "color14", "color15"]}}, "required": ["special", "colors"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"special" : {"background" : "#18262F", "foreground" : "#A6AFB8", "cursor" : "#A6AFB8"}, "colors" : {"color0" : "#18262F", "color1" : "#EF5253", "color2" : "#7CC844", "color3" : "#E4B51C", "color4" : "#33B5E1", "color5" : "#A363D5", "color6" : "#52CBB0", "color7" : "#A6AFB8", "color8" : "#667581", "color9" : "#18262F", "color10" : "#7CC844", "color11" : "#E4B51C", "color12" : "#33B5E1", "color13" : "#A363D5", "color14" : "#52CBB0", "color15" : "#F5F7FA"}}
json_instruct
{"type": "object", "properties": {"special": {"type": "object", "properties": {"background": {"type": "string"}, "foreground": {"type": "string"}, "cursor": {"type": "string"}}, "required": ["background", "foreground", "cursor"]}, "colors": {"type": "object", "properties": {"color0": {"type": "string"}, "color1": {"type": "string"}, "color2": {"type": "string"}, "color3": {"type": "string"}, "color4": {"type": "string"}, "color5": {"type": "string"}, "color6": {"type": "string"}, "color7": {"type": "string"}, "color8": {"type": "string"}, "color9": {"type": "string"}, "color10": {"type": "string"}, "color11": {"type": "string"}, "color12": {"type": "string"}, "color13": {"type": "string"}, "color14": {"type": "string"}, "color15": {"type": "string"}}, "required": ["color0", "color1", "color2", "color3", "color4", "color5", "color6", "color7", "color8", "color9", "color10", "color11", "color12", "color13", "color14", "color15"]}}, "required": ["special", "colors"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"wards": {"type": "array", "items": {"type": "object", "properties": {"ward_no": {"type": "integer"}, "ward_name": {"type": "string"}, "ward_id": {"type": "string"}}, "required": ["ward_no", "ward_name", "ward_id"]}}, "no_of_wards": {"type": "integer"}, "name": {"type": "string"}, "lsg_code": {"type": "string"}, "district": {"type": "string"}, "state": {"type": "string"}, "block_no": {"type": "string"}}, "required": ["wards", "no_of_wards", "name", "lsg_code", "district", "state", "block_no"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"wards" : [{"ward_no" : 1, "ward_name" : "Gangawali", "ward_id" : "199976"}, {"ward_no" : 2, "ward_name" : "Keharpur", "ward_id" : "199972"}, {"ward_no" : 3, "ward_name" : "Keharpur Mafi", "ward_id" : "199973"}, {"ward_no" : 4, "ward_name" : "Parshotampur", "ward_id" : "199387"}, {"ward_no" : 5, "ward_name" : "Prem Nagar", "ward_id" : "199977"}, {"ward_no" : 6, "ward_name" : "Shri Nagar", "ward_id" : "199978"}], "no_of_wards" : 6, "name" : "KEHARPUR", "lsg_code" : "49658", "district" : "Ballia", "state" : "Uttar Pradesh", "block_no" : "908"}
json_instruct
{"type": "object", "properties": {"wards": {"type": "array", "items": {"type": "object", "properties": {"ward_no": {"type": "integer"}, "ward_name": {"type": "string"}, "ward_id": {"type": "string"}}, "required": ["ward_no", "ward_name", "ward_id"]}}, "no_of_wards": {"type": "integer"}, "name": {"type": "string"}, "lsg_code": {"type": "string"}, "district": {"type": "string"}, "state": {"type": "string"}, "block_no": {"type": "string"}}, "required": ["wards", "no_of_wards", "name", "lsg_code", "district", "state", "block_no"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "item/handheld", "textures" : {"layer0" : "waterworks:items/manual"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"mesh": {"type": "object", "properties": {"triangle_list": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "vertex_list": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}}, "required": ["triangle_list", "vertex_list"]}}, "required": ["mesh"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"mesh" : {"triangle_list" : [[0, 1, 2], [2, 3, 0]], "vertex_list" : [{"x" : -0.9755282581475764, "y" : 1.3843332714001528}, {"x" : -0.02447174185242318, "y" : 1.6933502657751003}, {"x" : -0.27447174185242296, "y" : 2.462771150068914}, {"x" : -1.2255282581475764, "y" : 2.1537541556939663}]}}
json_instruct
{"type": "object", "properties": {"mesh": {"type": "object", "properties": {"triangle_list": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "vertex_list": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}}, "required": ["triangle_list", "vertex_list"]}}, "required": ["mesh"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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" : "1602041005", "district_id" : "1602041", "name" : "PANCAWARNA"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test-watch": {"type": "string"}, "example": {"type": "string"}}, "required": ["test", "test-watch", "example"]}, "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"}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "jest": {"type": "string"}, "ts-jest": {"type": "string"}}, "required": ["@types/jest", "jest", "ts-jest"]}, "dependencies": {"type": "object", "properties": {"terminal-kit": {"type": "string"}}, "required": ["terminal-kit"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "menus-list", "version" : "0.0.1", "description" : "terminal-kit based, menus-based list", "main" : "index.js", "scripts" : {"test" : "jest", "test-watch" : "jest --watch", "example" : "tsc -b ./tsconfig.example.json && node ./build/example/example.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/terminal-kit/menus-list.git"}, "keywords" : ["terminal-kit"], "author" : "Alex <alex@milyutin.work>", "license" : "Apache-2.0", "bugs" : {"url" : "https://github.com/terminal-kit/menus-list/issues"}, "homepage" : "https://github.com/terminal-kit/menus-list#readme", "devDependencies" : {"@types/jest" : "^27.0.2", "jest" : "^27.2.4", "ts-jest" : "^27.0.5"}, "dependencies" : {"terminal-kit" : "^2.1.6"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test-watch": {"type": "string"}, "example": {"type": "string"}}, "required": ["test", "test-watch", "example"]}, "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"}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "jest": {"type": "string"}, "ts-jest": {"type": "string"}}, "required": ["@types/jest", "jest", "ts-jest"]}, "dependencies": {"type": "object", "properties": {"terminal-kit": {"type": "string"}}, "required": ["terminal-kit"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id_10555": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "string"}, "genres": {"type": "string"}}, "required": ["title", "language", "totaltime", "url_librivox", "url_iarchive", "readers", "authors", "genres"]}}, "required": ["id_10555"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id_10555" : {"title" : "Diary and Letters of Madame D'Arblay", "language" : "English", "totaltime" : "02:47:49", "url_librivox" : "http://librivox.org/diary-and-letters-of-madame-darblay-by-thomas-babington-macaulay/", "url_iarchive" : "http://archive.org/details/diaryandlettersofdarblay_1605_librivox", "readers" : ["7514"], "authors" : "802", "genres" : "Memoirs"}}
json_instruct
{"type": "object", "properties": {"id_10555": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "string"}, "genres": {"type": "string"}}, "required": ["title", "language", "totaltime", "url_librivox", "url_iarchive", "readers", "authors", "genres"]}}, "required": ["id_10555"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"handle": {"type": "string"}, "imageHero": {"type": "string"}, "imageIcon": {"type": "string"}}, "required": ["handle", "imageHero", "imageIcon"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"handle" : "furniture", "imageHero" : "", "imageIcon" : "illu-subCategory-furniture"}
json_instruct
{"type": "object", "properties": {"handle": {"type": "string"}, "imageHero": {"type": "string"}, "imageIcon": {"type": "string"}}, "required": ["handle", "imageHero", "imageIcon"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "node": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "image": {"type": "string"}, "date": {"type": "string"}}, "required": ["id", "name", "image", "date"]}}, "relate": {"type": "array", "items": {"type": "object", "properties": {"relate": {"type": "string"}, "src": {"type": "integer"}, "dst": {"type": "integer"}}, "required": ["relate", "src", "dst"]}}}, "required": ["id", "node", "relate"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 353795, "node" : [{"id" : 302002, "name" : "\u8210\u72a2\u306e\u7389\u5ea7", "image" : "//lain.bgm.tv/pic/cover/m/46/99/302002_Sl44S.jpg", "date" : "2018-07-01"}, {"id" : 353795, "name" : "\u604b\u3068\u7f6a", "image" : "/img/no_icon_subject.png", "date" : "2015-01-27"}], "relate" : [{"relate" : "\u524d\u4f20", "src" : 302002, "dst" : 353795}, {"relate" : "\u7eed\u96c6", "src" : 353795, "dst" : 302002}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "node": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "image": {"type": "string"}, "date": {"type": "string"}}, "required": ["id", "name", "image", "date"]}}, "relate": {"type": "array", "items": {"type": "object", "properties": {"relate": {"type": "string"}, "src": {"type": "integer"}, "dst": {"type": "integer"}}, "required": ["relate", "src", "dst"]}}}, "required": ["id", "node", "relate"], "$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"}, "summary": {"type": "string"}, "swift_versions": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Aiden": {"type": "string"}}, "required": ["Aiden"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "array", "items": {"type": "string"}}, "requires_arc": {"type": "boolean"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "dependencies": {"type": "object", "properties": {"FMDB": {"type": "array", "items": {}}}, "required": ["FMDB"]}, "swift_version": {"type": "string"}}, "required": ["name", "version", "summary", "swift_versions", "description", "homepage", "license", "authors", "source", "source_files", "requires_arc", "platforms", "dependencies", "swift_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "VBUtil", "version" : "1.0.2", "summary" : "\u5de5\u5177", "swift_versions" : "4.0", "description" : "\u667a\u63a7\u8f66\u4e91\u5de5\u5177", "homepage" : "http://ccwcar.iask.in:802/Aiden/VBUtil", "license" : "MIT", "authors" : {"Aiden" : "252289287@qq.com"}, "source" : {"git" : "http://rd.ccwcar.com:802/Aiden/VBUtil.git", "tag" : "1.0.2"}, "source_files" : ["VBUtil", "VBUtil/*.swift"], "requires_arc" : true, "platforms" : {"ios" : "10.0"}, "dependencies" : {"FMDB" : []}, "swift_version" : "4.0"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "swift_versions": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Aiden": {"type": "string"}}, "required": ["Aiden"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "array", "items": {"type": "string"}}, "requires_arc": {"type": "boolean"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "dependencies": {"type": "object", "properties": {"FMDB": {"type": "array", "items": {}}}, "required": ["FMDB"]}, "swift_version": {"type": "string"}}, "required": ["name", "version", "summary", "swift_versions", "description", "homepage", "license", "authors", "source", "source_files", "requires_arc", "platforms", "dependencies", "swift_version"], "$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"}, "main": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"coffee-script": {"type": "string"}, "glob": {"type": "string"}, "hubot-response-success": {"type": "string"}}, "required": ["coffee-script", "glob", "hubot-response-success"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "hubot": {"type": "string"}, "hubot-help": {"type": "string"}, "hubot-response-applause": {"type": "string"}, "mocha": {"type": "string"}, "sinon": {"type": "string"}, "sinon-chai": {"type": "string"}}, "required": ["chai", "hubot", "hubot-help", "hubot-response-applause", "mocha", "sinon", "sinon-chai"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "main", "description", "keywords", "scripts", "license", "dependencies", "devDependencies", "repository", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "hubot-response", "version" : "1.2.0", "main" : "index.coffee", "description" : "Makes creating hubot responses easy.", "keywords" : ["hubot", "hubot-scripts", "response"], "scripts" : {"test" : "HUBOT_RESPONSE_GLOB=test/fixtures/*.* mocha --compilers coffee:coffee-script/register", "start" : "HUBOT_RESPONSE_GLOB=examples/*.* hubot --name hubot $@"}, "license" : "MIT", "dependencies" : {"coffee-script" : "^1.9.0", "glob" : "^5.0.14", "hubot-response-success" : "^1.0.0"}, "devDependencies" : {"chai" : "^2.0.0", "hubot" : "^2.16.0", "hubot-help" : "^0.1.1", "hubot-response-applause" : "^1.0.1", "mocha" : "^2.0.0", "sinon" : "^1.10.0", "sinon-chai" : "^2.5.0"}, "repository" : {"type" : "git", "url" : "git+https://github.com/michaeljacobdavis/hubot-response.git"}, "bugs" : {"url" : "https://github.com/michaeljacobdavis/hubot-response/issues"}, "homepage" : "https://github.com/michaeljacobdavis/hubot-response#readme"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"coffee-script": {"type": "string"}, "glob": {"type": "string"}, "hubot-response-success": {"type": "string"}}, "required": ["coffee-script", "glob", "hubot-response-success"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "hubot": {"type": "string"}, "hubot-help": {"type": "string"}, "hubot-response-applause": {"type": "string"}, "mocha": {"type": "string"}, "sinon": {"type": "string"}, "sinon-chai": {"type": "string"}}, "required": ["chai", "hubot", "hubot-help", "hubot-response-applause", "mocha", "sinon", "sinon-chai"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "main", "description", "keywords", "scripts", "license", "dependencies", "devDependencies", "repository", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"speciesId": {"type": "integer"}, "breedId": {"type": "integer"}, "petQualityId": {"type": "integer"}, "level": {"type": "integer"}, "health": {"type": "integer"}, "power": {"type": "integer"}, "speed": {"type": "integer"}}, "required": ["speciesId", "breedId", "petQualityId", "level", "health", "power", "speed"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"speciesId" : 258, "breedId" : 5, "petQualityId" : 4, "level" : 25, "health" : 1587, "power" : 315, "speed" : 297}
json_instruct
{"type": "object", "properties": {"speciesId": {"type": "integer"}, "breedId": {"type": "integer"}, "petQualityId": {"type": "integer"}, "level": {"type": "integer"}, "health": {"type": "integer"}, "power": {"type": "integer"}, "speed": {"type": "integer"}}, "required": ["speciesId", "breedId", "petQualityId", "level", "health", "power", "speed"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "private": {"type": "boolean"}}, "required": ["id", "name", "private"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "5fdb724b365afaabaa8faa82", "name" : "updateHarvardTestsFromApi", "private" : false}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "private": {"type": "boolean"}}, "required": ["id", "name", "private"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"version": {"type": "string"}, "command": {"type": "object", "properties": {"bootstrap": {"type": "object", "properties": {"hoist": {"type": "boolean"}}, "required": ["hoist"]}, "publish": {"type": "object", "properties": {"allowBranch": {"type": "string"}, "conventionalCommits": {"type": "boolean"}, "ignoreChanges": {"type": "array", "items": {"type": "string"}}, "message": {"type": "string"}, "signGitCommit": {"type": "boolean"}}, "required": ["allowBranch", "conventionalCommits", "ignoreChanges", "message", "signGitCommit"]}}, "required": ["bootstrap", "publish"]}, "packages": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "command", "packages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "0.3.7", "command" : {"bootstrap" : {"hoist" : false}, "publish" : {"allowBranch" : "master", "conventionalCommits" : true, "ignoreChanges" : ["**/tests/**"], "message" : "chore(package): release %s", "signGitCommit" : true}}, "packages" : ["packages/*"]}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "command": {"type": "object", "properties": {"bootstrap": {"type": "object", "properties": {"hoist": {"type": "boolean"}}, "required": ["hoist"]}, "publish": {"type": "object", "properties": {"allowBranch": {"type": "string"}, "conventionalCommits": {"type": "boolean"}, "ignoreChanges": {"type": "array", "items": {"type": "string"}}, "message": {"type": "string"}, "signGitCommit": {"type": "boolean"}}, "required": ["allowBranch", "conventionalCommits", "ignoreChanges", "message", "signGitCommit"]}}, "required": ["bootstrap", "publish"]}, "packages": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "command", "packages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["511803204001", "\u57ce\u9547\u4e2d\u5fc3\u793e\u533a", "220", "0"], ["511803204201", "\u4e07\u575d\u6751\u6751\u59d4\u4f1a", "210", "0"], ["511803204202", "\u85d5\u5858\u6751\u6751\u59d4\u4f1a", "210", "0"], ["511803204203", "\u5ed6\u573a\u6751\u6751\u59d4\u4f1a", "210", "0"], ["511803204204", "\u89c2\u97f3\u6751\u6751\u59d4\u4f1a", "220", "0"], ["511803204205", "\u65b0\u573a\u6751\u6751\u59d4\u4f1a", "220", "0"], ["511803204206", "\u6842\u82b3\u6751\u6751\u59d4\u4f1a", "220", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"Target": {"type": "string"}, "MediaType": {"type": "string"}, "Data": {"type": "object", "properties": {"Integrity": {"type": "string"}}, "required": ["Integrity"]}}, "required": ["Target", "MediaType", "Data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Target" : "css/app.min.9eb407350c9b163f8a47de0d22ce2136bda361cac0ef8178a0eb8fab22453f45.css", "MediaType" : "text/css", "Data" : {"Integrity" : "sha256-nrQHNQybFj+KR94NIs4hNr2jYcrA74F4oOuPqyJFP0U="}}
json_instruct
{"type": "object", "properties": {"Target": {"type": "string"}, "MediaType": {"type": "string"}, "Data": {"type": "object", "properties": {"Integrity": {"type": "string"}}, "required": ["Integrity"]}}, "required": ["Target", "MediaType", "Data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["description", "homepage"]}, "versions": {"type": "object", "properties": {"0.6.5": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.6.6": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.6.7": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.7.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.7.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.6.5", "0.6.6", "0.6.7", "0.7.0", "0.7.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"latest_version" : ["0.7.1"], "meta" : {"description" : "xml-data validator tool", "homepage" : "https://code.google.com/p/pyxmlcheck/"}, "versions" : {"0.6.5" : {"sha256" : "58fc7f5f0f747a265299814e2a165f9ead4541a577010b875c808db72d2089e1", "url" : "https://files.pythonhosted.org/packages/69/62/34bb1273ab2d6657a19f834cf231a120ef31a68de159b04900ad525fa96c/XMLCheck-0.6.5.zip"}, "0.6.6" : {"sha256" : "9463b7e7da69e31e9dbaf405f63015eb6648bebcb6e9847fcc3fabd04327527b", "url" : "https://files.pythonhosted.org/packages/7d/ef/a488a29a1d7e270b5c0b2e4696246a16ea6142ff980bb0a6230c632fed73/XMLCheck-0.6.6.zip"}, "0.6.7" : {"sha256" : "295309fdf9d318813fab3ff92ec0ecbb217ff8e1e89c434c19ac2a079b9432a2", "url" : "https://files.pythonhosted.org/packages/4b/a4/96e88a06ff0f057092a7d67627dcec60bb36bca7e14db41fe54b2dadb87e/XMLCheck-0.6.7.zip"}, "0.7.0" : {"sha256" : "e3bb7c80be811738dec575719379e49d4344ec24cc8b344b96648b15ce8c3bc5", "url" : "https://files.pythonhosted.org/packages/57/c6/179268c3d0e7db48827c52bc8ea5426e2f7da1088bb34991bcd6da14c4a3/XMLCheck-0.7.0.zip"}, "0.7.1" : {"sha256" : "f47e478d23643684b037c8faea826672097efc577bc3b98547ec13384c639981", "url" : "https://files.pythonhosted.org/packages/d0/e2/ce4a049584b562178629a68fe1ef36abb7ab7b4716cc92311e9407fd6a24/XMLCheck-0.7.1.zip"}}}
json_instruct
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["description", "homepage"]}, "versions": {"type": "object", "properties": {"0.6.5": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.6.6": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.6.7": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.7.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.7.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.6.5", "0.6.6", "0.6.7", "0.7.0", "0.7.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}