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": {"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" : ["Place 1 cup water, bread flour, sugar, salt and yeast into bread machine pan in the order recommended by manufacturer. Select Dough cycle, and press Start.", "When the cycle has completed, place dough in a greased bowl, turning to coat all sides. Cover, and let rise in a warm place for about 30 minutes, or until doubled in bulk. Dough is ready if indentation remains when touched.", "Punch down dough. On a lightly floured surface, roll into a 16x12 inch rectangle. Cut dough in half, creating two 8x12 inch rectangles. Roll up each half of dough tightly, beginning at 12 inch side, pounding out any air bubbles as you go. Roll gently back and forth to taper end. Place 3 inches apart on a greased cookie sheet. Make deep diagonal slashes across loaves every 2 inches, or make one lengthwise slash on each loaf. Cover, and let rise in a warm place for 30 to 40 minutes, or until doubled in bulk.", "Preheat oven to 375 degrees F (190 degrees C). Mix egg yolk with 1 tablespoon water; brush over tops of loaves.", "Bake for 20 to 25 minutes in the preheated oven, or until golden brown."], "ingredients" : ["1 cup water", "2 1/2 cups bread flour", "1 tablespoon white sugar", "1 teaspoon salt", "1 1/2 teaspoons bread machine yeast", "1 egg yolk", "1 tablespoon water"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "French Baguettes", "url" : "http://allrecipes.com/recipe/7028/french-baguettes/"}
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": {"character": {"type": "object", "properties": {"name": {"type": "string"}, "age": {"type": "string"}, "player": {"type": "string"}, "concept": {"type": "string"}, "virtue": {"type": "string"}, "vice": {"type": "string"}, "chronicle": {"type": "string"}, "faction": {"type": "string"}, "group_name": {"type": "string"}}, "required": ["name", "age", "player", "concept", "virtue", "vice", "chronicle", "faction", "group_name"]}, "attributes": {"type": "object", "properties": {"intelligence": {"type": "integer"}, "wits": {"type": "integer"}, "resolve": {"type": "integer"}, "strength": {"type": "integer"}, "dexterity": {"type": "integer"}, "stamina": {"type": "integer"}, "presence": {"type": "integer"}, "manipulation": {"type": "integer"}, "composure": {"type": "integer"}}, "required": ["intelligence", "wits", "resolve", "strength", "dexterity", "stamina", "presence", "manipulation", "composure"]}, "skills": {"type": "object", "properties": {}, "required": []}, "other_traits": {"type": "object", "properties": {"merits": {"type": "array", "items": {}}, "flaws": {"type": "array", "items": {}}, "stats": {"type": "object", "properties": {"size": {"type": "integer"}, "speed": {"type": "integer"}, "initiative_mod": {"type": "integer"}, "defense": {"type": "integer"}, "armor": {"type": "string"}}, "required": ["size", "speed", "initiative_mod", "defense", "armor"]}, "morality": {"type": "array", "items": {}}}, "required": ["merits", "flaws", "stats", "morality"]}}, "required": ["character", "attributes", "skills", "other_traits"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"character" : {"name" : "", "age" : "", "player" : "", "concept" : "", "virtue" : "", "vice" : "", "chronicle" : "", "faction" : "", "group_name" : ""}, "attributes" : {"intelligence" : 1, "wits" : 1, "resolve" : 1, "strength" : 1, "dexterity" : 1, "stamina" : 1, "presence" : 1, "manipulation" : 1, "composure" : 1}, "skills" : {}, "other_traits" : {"merits" : [], "flaws" : [], "stats" : {"size" : 5, "speed" : 0, "initiative_mod" : 0, "defense" : 0, "armor" : ""}, "morality" : []}}
json_instruct
{"type": "object", "properties": {"character": {"type": "object", "properties": {"name": {"type": "string"}, "age": {"type": "string"}, "player": {"type": "string"}, "concept": {"type": "string"}, "virtue": {"type": "string"}, "vice": {"type": "string"}, "chronicle": {"type": "string"}, "faction": {"type": "string"}, "group_name": {"type": "string"}}, "required": ["name", "age", "player", "concept", "virtue", "vice", "chronicle", "faction", "group_name"]}, "attributes": {"type": "object", "properties": {"intelligence": {"type": "integer"}, "wits": {"type": "integer"}, "resolve": {"type": "integer"}, "strength": {"type": "integer"}, "dexterity": {"type": "integer"}, "stamina": {"type": "integer"}, "presence": {"type": "integer"}, "manipulation": {"type": "integer"}, "composure": {"type": "integer"}}, "required": ["intelligence", "wits", "resolve", "strength", "dexterity", "stamina", "presence", "manipulation", "composure"]}, "skills": {"type": "object", "properties": {}, "required": []}, "other_traits": {"type": "object", "properties": {"merits": {"type": "array", "items": {}}, "flaws": {"type": "array", "items": {}}, "stats": {"type": "object", "properties": {"size": {"type": "integer"}, "speed": {"type": "integer"}, "initiative_mod": {"type": "integer"}, "defense": {"type": "integer"}, "armor": {"type": "string"}}, "required": ["size", "speed", "initiative_mod", "defense", "armor"]}, "morality": {"type": "array", "items": {}}}, "required": ["merits", "flaws", "stats", "morality"]}}, "required": ["character", "attributes", "skills", "other_traits"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"fees": {"type": "integer"}, "ts": {"type": "string"}, "txid": {"type": "string"}, "block": {"type": "integer"}, "in": {"type": "array", "items": {"type": "object", "properties": {"coinbase": {"type": "string"}}, "required": ["coinbase"]}}, "sent": {"type": "integer"}, "out": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "integer"}}, "required": ["value"]}}}, "required": ["fees", "ts", "txid", "block", "in", "sent", "out"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"fees" : -2500000000, "ts" : "1535418093", "txid" : "cb69e5ba94e327d4258ff8b090a9b34304b2109dc0db632ac749e04b7be81f2e", "block" : 1423293, "in" : [{"coinbase" : "03bdb71504ed9e845b08647e1b5c140200000d2f6e6f64655374726174756d2f"}], "sent" : 2500000000, "out" : [{"value" : 0}, {"addr" : "M8mXNKtwFoW765V8VEbhZ8TNCqywFr25in", "value" : 2450000000, "spent" : "6b902a9805c61234ad3b62adb218b7958e480e65b1e889706fb7995ace08443c"}, {"addr" : "MVWiS7HGDvoptFyxgGHw3jhwJ97fWuGycp", "value" : 50000000, "spent" : "905036bf16a079462b4aad74383c998ca472ab5dd53b4e6b3399aeef9cc9ec8e"}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"fees": {"type": "integer"}, "ts": {"type": "string"}, "txid": {"type": "string"}, "block": {"type": "integer"}, "in": {"type": "array", "items": {"type": "object", "properties": {"coinbase": {"type": "string"}}, "required": ["coinbase"]}}, "sent": {"type": "integer"}, "out": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "integer"}}, "required": ["value"]}}}, "required": ["fees", "ts", "txid", "block", "in", "sent", "out"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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" : ["Toppenish, WA"], "state" : "WA", "postal_code" : "98948", "locality" : "Toppenish, WA", "lat" : 46.297916, "region" : {"fips" : "53", "abbr" : "WA", "name" : "Washington"}, "city" : "Toppenish", "type" : "STANDARD", "lng" : -120.312533, "counties" : [{"fips" : "077", "name" : "Yakima 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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"accession": {"type": "string"}, "age": {"type": "string"}, "age_units": {"type": "string"}, "biosample_term_id": {"type": "string"}, "biosample_term_name": {"type": "string"}, "biosample_type": {"type": "string"}, "characterizations": {"type": "array", "items": {}}, "dbxrefs": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "documents": {"type": "array", "items": {}}, "donor": {"type": "string"}, "health_status": {"type": "string"}, "lab": {"type": "string"}, "life_stage": {"type": "string"}, "organism": {"type": "string"}, "references": {"type": "array", "items": {}}, "sex": {"type": "string"}, "source": {"type": "string"}, "summary": {"type": "string"}, "treatments": {"type": "array", "items": {}}}, "required": ["accession", "age", "age_units", "biosample_term_id", "biosample_term_name", "biosample_type", "characterizations", "dbxrefs", "description", "documents", "donor", "health_status", "lab", "life_stage", "organism", "references", "sex", "source", "summary", "treatments"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"accession" : "ENCBS100ZVH", "age" : "60", "age_units" : "year", "biosample_term_id" : "EFO:0002167", "biosample_term_name" : "DOHH2", "biosample_type" : "immortalized cell line", "characterizations" : [], "dbxrefs" : ["Cellosaurus:CVCL_1179", "GEO:SAMN05733846"], "description" : "established from the pleural effusion of a 60-year-old man with refractory immunoblastic B cell lymphoma progressed from follicular centroblastic/centrocytic lymphoma in 1990", "documents" : [], "donor" : "ENCDO352AAA", "health_status" : "refractory immunoblastic B cell lymphoma progressed from follicular centroblastic/centrocytic lymphoma", "lab" : "Bradley Bernstein, Broad", "life_stage" : "adult", "organism" : "Homo sapiens", "references" : [], "sex" : "male", "source" : "Todd Golub", "summary" : "Homo sapiens DOHH2 immortalized cell line", "treatments" : []}
json_instruct
{"type": "object", "properties": {"accession": {"type": "string"}, "age": {"type": "string"}, "age_units": {"type": "string"}, "biosample_term_id": {"type": "string"}, "biosample_term_name": {"type": "string"}, "biosample_type": {"type": "string"}, "characterizations": {"type": "array", "items": {}}, "dbxrefs": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "documents": {"type": "array", "items": {}}, "donor": {"type": "string"}, "health_status": {"type": "string"}, "lab": {"type": "string"}, "life_stage": {"type": "string"}, "organism": {"type": "string"}, "references": {"type": "array", "items": {}}, "sex": {"type": "string"}, "source": {"type": "string"}, "summary": {"type": "string"}, "treatments": {"type": "array", "items": {}}}, "required": ["accession", "age", "age_units", "biosample_term_id", "biosample_term_name", "biosample_type", "characterizations", "dbxrefs", "description", "documents", "donor", "health_status", "lab", "life_stage", "organism", "references", "sex", "source", "summary", "treatments"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "masterfulmachinery:block/steam_boiler_basic_port_fluids_input"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"topic": {"type": "string"}, "category": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "body": {"type": "string"}, "id": {"type": "string"}, "created_by": {"type": "string"}}, "required": ["topic", "category", "attachments", "created_by_name", "created_at", "body", "id", "created_by"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"topic" : "optics2glazedb", "category" : "radiance-general", "attachments" : [], "created_by_name" : "Anne Iversen", "created_at" : "November 02, 2009 at 04:05PM", "body" : "Inspired by the presentation of Jack I want to generate a new database for\nthe glaze script by running optics2glazedb.\nAs far as I can see, the program is not included in the latest version\n(HEAD)? Where can I find optics2glazedb?\n\n\n/Anne\n___\n<sup>Automatically generated content from [radiance mailing-list](https://radiance-online.org/pipermail/radiance-general/2009-November/006332.html).</sup>", "id" : "radiance-general_006332", "created_by" : "Anne_Iversen"}
json_instruct
{"type": "object", "properties": {"topic": {"type": "string"}, "category": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "body": {"type": "string"}, "id": {"type": "string"}, "created_by": {"type": "string"}}, "required": ["topic", "category", "attachments", "created_by_name", "created_at", "body", "id", "created_by"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-zip": {"type": "string"}}, "required": ["gulp", "gulp-zip"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "memory-loc-gov-image-previewer", "version" : "1.0.2", "description" : "Adds a preview image for .tif links on memory.loc.gov ", "main" : "content.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "alexander Sage <sagezander@gmail.com>", "license" : "ISC", "devDependencies" : {"gulp" : "^3.9.0", "gulp-zip" : "^3.0.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-zip": {"type": "string"}}, "required": ["gulp", "gulp-zip"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : "Rafael Campo", "classification" : "Free Verse", "keywords" : ["Living", "The Body", "The Mind", "Relationships", "Love"], "period" : "", "reference" : "http://www.poetryfoundation.org/poem/241390", "region" : "U.S., New England", "text" : ["What I would like to give them for a change", "is not the usual prescription with", "its hubris of the power to restore,", "to cure; what I would like to give them, ill", "from not enough of laying in the sun", "not caring what the onlookers might think", "while feeding some banana to their dogs\u2014", "what I would like to offer them is this,", "not reassurance that their lungs sound fine,", "or that the mole they\u2019ve noticed change is not", "a melanoma, but instead of fear", "transfigured by some doctorly advice", "I\u2019d like to give them my astonishment", "at sudden rainfall like the whole world weeping,", "and how ridiculously gently it", "slicked down my hair; I\u2019d like to give them that,", "the joy I felt while staring in your eyes", "as you learned epidemiology", "(the science of disease in populations),", "the night around our bed like timelessness,", "like comfort, like what I would give to them."], "title" : "What I Would Give", "year" : ""}
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["type", "ingredients", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "minecraft:crafting_shapeless", "ingredients" : [{"item" : "spaldingsadditions:marcasite"}, {"item" : "spaldingsadditions:polishing_stone"}], "result" : {"item" : "spaldingsadditions:marcasite_smooth"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["type", "ingredients", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "gcm_sender_id": {"type": "string"}, "short_name": {"type": "string"}, "description": {"type": "string"}, "start_url": {"type": "string"}, "display": {"type": "string"}, "background_color": {"type": "string"}, "theme_color": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}, "density": {"type": "string"}, "purpose": {"type": "string"}}, "required": ["src", "sizes", "type", "density", "purpose"]}}}, "required": ["name", "gcm_sender_id", "short_name", "description", "start_url", "display", "background_color", "theme_color", "icons"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "CLUB FOOT", "gcm_sender_id" : "36673009128", "short_name" : "Club Foot", "description" : "Get all information about standing and match in 4 best league in the world", "start_url" : "/index.html", "display" : "standalone", "background_color" : "#3F9441", "theme_color" : "#3F9441", "icons" : [{"src" : "img/icon/android-icon-36x36.png", "sizes" : "36x36", "type" : "image/png", "density" : "0.75", "purpose" : "any maskable"}, {"src" : "img/icon/android-icon-48x48.png", "sizes" : "48x48", "type" : "image/png", "density" : "1.0", "purpose" : "any maskable"}, {"src" : "img/icon/android-icon-72x72.png", "sizes" : "72x72", "type" : "image/png", "density" : "1.5", "purpose" : "any maskable"}, {"src" : "img/icon/android-icon-96x96.png", "sizes" : "96x96", "type" : "image/png", "density" : "2.0", "purpose" : "any maskable"}, {"src" : "img/icon/android-icon-144x144.png", "sizes" : "144x144", "type" : "image/png", "density" : "3.0", "purpose" : "any maskable"}, {"src" : "img/icon/android-icon-192x192.png", "sizes" : "192x192", "type" : "image/png", "density" : "4.0", "purpose" : "any maskable"}, {"src" : "img/icon/android-icon-512x512.png", "sizes" : "512x512", "type" : "image/png", "density" : "5.0", "purpose" : "any maskable"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "gcm_sender_id": {"type": "string"}, "short_name": {"type": "string"}, "description": {"type": "string"}, "start_url": {"type": "string"}, "display": {"type": "string"}, "background_color": {"type": "string"}, "theme_color": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}, "density": {"type": "string"}, "purpose": {"type": "string"}}, "required": ["src", "sizes", "type", "density", "purpose"]}}}, "required": ["name", "gcm_sender_id", "short_name", "description", "start_url", "display", "background_color", "theme_color", "icons"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}}, "required": ["name", "version", "lockfileVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "d2cl-cloudflare-worker", "version" : "1.0.0", "lockfileVersion" : 1}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}}, "required": ["name", "version", "lockfileVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"azext.minCliCoreVersion": {"type": "string"}}, "required": ["azext.minCliCoreVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"azext.minCliCoreVersion" : "2.0.28"}
json_instruct
{"type": "object", "properties": {"azext.minCliCoreVersion": {"type": "string"}}, "required": ["azext.minCliCoreVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "install": {"type": "string"}, "dev": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "test:e2e": {"type": "string"}, "cy:open": {"type": "string"}, "server:test": {"type": "string"}, "lint": {"type": "string"}, "deploy": {"type": "string"}, "deploy:full": {"type": "string"}, "heroku-postbuild": {"type": "string"}, "dev:test": {"type": "string"}, "dev:test2": {"type": "string"}}, "required": ["start", "install", "dev", "build", "test", "test:e2e", "cy:open", "server:test", "lint", "deploy", "deploy:full", "heroku-postbuild", "dev:test", "dev:test2"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "engines", "scripts", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "bloglist", "version" : "0.0.0", "description" : "bloglist", "main" : "server/index.js", "engines" : {"node" : "17.x"}, "scripts" : {"start" : "npm run start --prefix server", "install" : "npm install --prefix client && npm install --prefix server", "dev" : "npm run dev --prefix server", "build" : "npm run build:server --prefix client", "test" : "npm run test --prefix server", "test:e2e" : "npm run test:e2e --prefix client", "cy:open" : "npm run cy:open --prefix client", "server:test" : "npm run server:test --prefix server", "lint" : "npm run lint --prefix server && npm run lint --prefix client", "deploy" : "cd ../.. && git subtree push --prefix part11/11-2-bloglist heroku master", "deploy:full" : "git add . && git commit -m uibuild && git push && npm run deploy", "heroku-postbuild" : "NPM_CONFIG_PRODUCTION=false npm run install && npm run build", "dev:test" : "npm run dev:test --prefix server", "dev:test2" : "npm run dev:test --prefix server"}, "author" : "Chris Hendrix", "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "install": {"type": "string"}, "dev": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "test:e2e": {"type": "string"}, "cy:open": {"type": "string"}, "server:test": {"type": "string"}, "lint": {"type": "string"}, "deploy": {"type": "string"}, "deploy:full": {"type": "string"}, "heroku-postbuild": {"type": "string"}, "dev:test": {"type": "string"}, "dev:test2": {"type": "string"}}, "required": ["start", "install", "dev", "build", "test", "test:e2e", "cy:open", "server:test", "lint", "deploy", "deploy:full", "heroku-postbuild", "dev:test", "dev:test2"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "engines", "scripts", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}}, "required": ["angular"]}}, "required": ["name", "description", "main", "authors", "license", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "chat-dad", "description" : "", "main" : "", "authors" : ["Gu\u0308rcan ATAMAN <gurcanataman@gmail.com>"], "license" : "MIT", "homepage" : "https://github.com/gataman/ChatDad", "dependencies" : {"angular" : "^1.8.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}}, "required": ["angular"]}}, "required": ["name", "description", "main", "authors", "license", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "Least", "definitions" : ["Used in names of very small animals and plants, e.g. least shrew."], "parts-of-speech" : "Adjective"}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"authors" : [{"author" : "Rahma Boussaadani Soubai"}, {"author" : " LatifaTahiri"}, {"author" : " Fatima Zahra Abourazzak"}, {"author" : " SihamTizniti"}, {"author" : " Taoufik Harzy"}], "doi" : "10.11604/pamj.2012.13.41.1776", "publication_date" : "2012-10-29", "id" : "EN110039", "url" : "https://www.panafrican-med-journal.com/content/article/13/41/full/", "source" : "The Pan African Medical Journal", "source_url" : "https://www.panafrican-med-journal.com/", "licence" : "CC BY 4.0", "language" : "en", "type" : "journal", "description" : "", "text" : "A 34-year-old woman, without history of trauma, followed for 09 years for a rheumatoid arthritis. The patient presented a chronic nuchal pain. Physical examination found a painful palpation of C1 and C2, without stiff neck and neurologic examination was normal. A lateral view of cervical spine radiograph showed an atlo\u00efdo-axoidien diastasis of 04 mm. An atlo\u00efdo-axoidien dislocation was suspected, so a computed tomography (CT) of the cervical spine was carried out and revealed calcifications of transverse and alar ligaments, surrounding the odontoid process. The spinal canal appeared normal and no dislocation C1-C2 was detected. The patient used a cervical splint with an anti-inflammatory drug and the nuchal pain decreased gradually."}
json_instruct
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "filename": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "autoupdate": {"type": "object", "properties": {"source": {"type": "string"}, "target": {"type": "string"}, "fileMap": {"type": "array", "items": {"type": "object", "properties": {"basePath": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["basePath", "files"]}}}, "required": ["source", "target", "fileMap"]}}, "required": ["name", "filename", "description", "author", "repository", "keywords", "license", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "angular-spinner", "filename" : "angular-spinner.min.js", "description" : "Angular directive to show an animated spinner (using spin.js)", "author" : {"name" : "Uri Shaked"}, "repository" : {"type" : "git", "url" : "git://github.com/urish/angular-spinner.git"}, "keywords" : ["angularjs", "spin.js", "spinner"], "license" : "MIT", "autoupdate" : {"source" : "npm", "target" : "angular-spinner", "fileMap" : [{"basePath" : "", "files" : ["angular-spinner.js", "angular-spinner.min.js", "angular-spinner.min.js.map"]}]}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "filename": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "autoupdate": {"type": "object", "properties": {"source": {"type": "string"}, "target": {"type": "string"}, "fileMap": {"type": "array", "items": {"type": "object", "properties": {"basePath": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["basePath", "files"]}}}, "required": ["source", "target", "fileMap"]}}, "required": ["name", "filename", "description", "author", "repository", "keywords", "license", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "\u301009\u3011\u6839\u672c\u505c\u4e0d\u4e0b\u6765\u4e28\u6b62\u307e\u3089\u306a\u3044\u4e28Can't stop at all\uff11\uff18\u6b73\u4ee5\u4e0a\uff01", "author" : "xiaodidi09", "description" : "*1undefined\u5927\u5c31\u662f\u597d<br>*2undefined\u4f60\u6562\u79bb\u8c31\u70b9\u5417\uff01\u6562undefinedundefinedundefinedundefined\u4f60\u6562\u518d\u79bb\u8c31\u70b9\u5417\uff01\u6562undefinedundefinedundefinedundefinedundefined\u505a\u597d\u5fc3\u7406\u51c6\u5907\u52ff\u5728\u4e2d\u9014\u8f6f\u8db4<br>*3undefined\u53ea\u8981\u4e0d\u505c\u4e0b\u6765\uff0c\u9053\u8def\u5c31\u4f1a\u4e0d\u65ad\u5ef6\u4f38...<br>*4undefined\u8349", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thumbnails/2320087/thumbnail-2320087_0004.jpg?itok=t_BVddmW", "download" : "https://ecchi.iwara.tv/api/video/de31whov7gcklzzr1", "origin" : "https://ecchi.iwara.tv/videos/de31whov7gcklzzr1"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$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": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}, "icao": {"type": "string"}}, "required": ["wmo", "icao"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "71651", "name" : {"en" : "Marble Mountain / Steady Brook"}, "country" : "CA", "region" : "NF", "identifiers" : {"wmo" : "71651", "icao" : "CXME"}, "location" : {"latitude" : 48.9303, "longitude" : -57.8342, "elevation" : 540}, "timezone" : "America/St_Johns"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}, "icao": {"type": "string"}}, "required": ["wmo", "icao"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "Overseer", "definitions" : ["A person who supervises others, especially workers."], "parts-of-speech" : "Noun"}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"configuration": {"type": "array", "items": {"type": "string"}}, "regionsToProcessedPerformance": {"type": "object", "properties": {"program": {"type": "integer"}}, "required": ["program"]}}, "required": ["configuration", "regionsToProcessedPerformance"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"configuration" : ["UPSCALINGALGORITHM", "KEEPUNOPTIMIZEDFILESPOSTPROCESSOR", "ENABLEPNGCRUSH", "OUTPUTCOMPRESSIONGMODE", "SCALEMODE", "SCALE"], "regionsToProcessedPerformance" : {"program" : 5553943612}}
json_instruct
{"type": "object", "properties": {"configuration": {"type": "array", "items": {"type": "string"}}, "regionsToProcessedPerformance": {"type": "object", "properties": {"program": {"type": "integer"}}, "required": ["program"]}}, "required": ["configuration", "regionsToProcessedPerformance"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01017713": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01017713"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Topology", "objects" : {"E01017713" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00089383", "LAD11CD" : "E07000004"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00089385", "LAD11CD" : "E07000004"}, "arcs" : [[4, 5]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00089386", "LAD11CD" : "E07000004"}, "arcs" : [[6, -2, 7, 8]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00089387", "LAD11CD" : "E07000004"}, "arcs" : [[-6, 9, -8, -1, 10]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00089388", "LAD11CD" : "E07000004"}, "arcs" : [[-3, -7, 11]]}]}}, "arcs" : [[[4204, 8025], [162, -230], [558, 55], [175, -200], [-317, -383], [203, -316], [313, -43], [-284, -407]], [[5014, 6501], [66, -133], [-423, -350]], [[4657, 6018], [106, 231], [-496, 1065], [-153, -122], [-249, 248], [-229, -191], [-215, 232], [-161, -91], [230, -486]], [[3490, 6904], [-292, -205], [-344, 397], [-358, -63], [-69, 332], [-444, 63], [-964, 964], [-1019, 1607], [534, -176], [98, -360], [271, 310], [618, -338], [226, 377], [285, -25], [1434, -1600], [138, -575], [197, 497], [258, 126], [145, -210]], [[6701, 6354], [174, 423], [12, 1508], [367, 131], [15, -633], [985, -424]], [[8254, 7359], [-704, -1571], [-452, 685], [-204, -297], [-193, 178]], [[3690, 5906], [356, -273], [181, 451], [253, -186], [177, 120]], [[5014, 6501], [423, -77], [-106, -1196], [394, -2077], [4, -1994]], [[5729, 1157], [-1558, 167], [-1199, 3138], [-286, 506], [-124, -18], [-909, -305], [444, 862], [266, 1281], [468, -929], [-200, -548], [142, 121], [79, -164], [838, 638]], [[8254, 7359], [205, -92], [-41, -318], [-415, -592], [409, -416], [1348, -83], [239, -1002], [-1148, -1484], [-1989, -3372], [-1133, 1157]], [[4204, 8025], [155, 528], [859, 442], [33, -923], [220, -503], [631, 468], [9, -724], [-234, -387], [824, -572]], [[3690, 5906], [211, 168], [-109, 212], [-376, -227], [-186, 307], [336, 383], [-76, 155]]], "transform" : {"scale" : [2.455537973625255e-06, 1.272273505549515e-06], "translate" : [-0.995711794753841, 51.92821744194232]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01017713": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01017713"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "githubLoginMasked": {"type": "string"}, "githubLoginEncrypted": {"type": "string"}, "githubLoginHashed": {"type": "string"}, "score": {"type": "integer"}}, "required": ["id", "githubLoginMasked", "githubLoginEncrypted", "githubLoginHashed", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : 2283231, "githubLoginMasked" : "cr", "githubLoginEncrypted" : "FyA900iemgEJRIQHEb0TP7h5z6NzXlQ=", "githubLoginHashed" : "FyA900iemgEJRIQHEb0TP7h5z6NzXlQ=", "score" : 403}, {"id" : 2283295, "githubLoginMasked" : "Cr", "githubLoginEncrypted" : "NyA900iHukDk+96iCRjfn6Lyo40WQmqNKA==", "githubLoginHashed" : "NyA900iHukDk+96iCRjfn6Lyo40WQmqNKA==", "score" : 390}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "githubLoginMasked": {"type": "string"}, "githubLoginEncrypted": {"type": "string"}, "githubLoginHashed": {"type": "string"}, "score": {"type": "integer"}}, "required": ["id", "githubLoginMasked", "githubLoginEncrypted", "githubLoginHashed", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"geodatasource-countryflag.css": {"type": "string"}, "geodatasource-countryflag.min.css": {"type": "string"}, "geodatasource-cr.js": {"type": "string"}, "geodatasource-cr.min.js": {"type": "string"}}, "required": ["geodatasource-countryflag.css", "geodatasource-countryflag.min.css", "geodatasource-cr.js", "geodatasource-cr.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"geodatasource-countryflag.css" : "sha512-TggD05rWirzOk2PZ7qK+kMZM3j1/2eTCTjInru4QW+FM9uXSFz/CWP4UofZcP++IZiqwoTbsGgKowKREAefzAQ==", "geodatasource-countryflag.min.css" : "sha512-mz4yEf02W0UIyQv9OAzDpe2BTcAsgPraXYS03NXvCIVLaruasmBXnpzguK+UZYihjY1AwG9CVYklDwAVzRRFTw==", "geodatasource-cr.js" : "sha512-q35z9tA1wyMoe+pt6hpScBraax+Op7poQ0RMg5dSM7OgWrT3hXhPKzT1xhA0yutYgsY5ObrwB5aAX3uFvgYrBw==", "geodatasource-cr.min.js" : "sha512-9JGPb0hD52aTzRpUpQEWS4cQx21Z5IThj4csqvEW1Qx1w0h19Qe3XzqgmwEzjAyxDnadh5+O1vwm7qeQPvbyJg=="}
json_instruct
{"type": "object", "properties": {"geodatasource-countryflag.css": {"type": "string"}, "geodatasource-countryflag.min.css": {"type": "string"}, "geodatasource-cr.js": {"type": "string"}, "geodatasource-cr.min.js": {"type": "string"}}, "required": ["geodatasource-countryflag.css", "geodatasource-countryflag.min.css", "geodatasource-cr.js", "geodatasource-cr.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"army": {"type": "string"}, "units": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "string"}, "move": {"type": "string"}, "save": {"type": "string"}, "bravery": {"type": "string"}, "wounds": {"type": "string"}, "missile_weapon": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "range": {"type": "string"}, "attacks": {"type": "string"}, "to_hit": {"type": "string"}, "to_wound": {"type": "string"}, "rend": {"type": "string"}, "damage": {"type": "string"}}, "required": ["name", "range", "attacks", "to_hit", "to_wound", "rend", "damage"]}}, "melee_weapon": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "range": {"type": "string"}, "attacks": {"type": "string"}, "to_hit": {"type": "string"}, "to_wound": {"type": "string"}, "rend": {"type": "string"}, "damage": {"type": "string"}}, "required": ["name", "range", "attacks", "to_hit", "to_wound", "rend", "damage"]}}, "abilites": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "desc": {"type": "string"}}, "required": ["name", "desc"]}}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "size", "move", "save", "bravery", "wounds", "missile_weapon", "melee_weapon", "abilites", "keywords"]}}}, "required": ["army", "units"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"army" : "Monsters of Order", "units" : [{"name" : "Carmine Dragon", "size" : "100 mm", "move" : "", "save" : "", "bravery" : "", "wounds" : "", "missile_weapon" : [{"name" : "", "range" : "", "attacks" : "", "to_hit" : "", "to_wound" : "", "rend" : "", "damage" : ""}], "melee_weapon" : [{"name" : "", "range" : "", "attacks" : "", "to_hit" : "", "to_wound" : "", "rend" : "", "damage" : ""}], "abilites" : [{"name" : "", "desc" : ""}, {"name" : "", "desc" : ""}], "keywords" : [""]}]}
json_instruct
{"type": "object", "properties": {"army": {"type": "string"}, "units": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "string"}, "move": {"type": "string"}, "save": {"type": "string"}, "bravery": {"type": "string"}, "wounds": {"type": "string"}, "missile_weapon": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "range": {"type": "string"}, "attacks": {"type": "string"}, "to_hit": {"type": "string"}, "to_wound": {"type": "string"}, "rend": {"type": "string"}, "damage": {"type": "string"}}, "required": ["name", "range", "attacks", "to_hit", "to_wound", "rend", "damage"]}}, "melee_weapon": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "range": {"type": "string"}, "attacks": {"type": "string"}, "to_hit": {"type": "string"}, "to_wound": {"type": "string"}, "rend": {"type": "string"}, "damage": {"type": "string"}}, "required": ["name", "range", "attacks", "to_hit", "to_wound", "rend", "damage"]}}, "abilites": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "desc": {"type": "string"}}, "required": ["name", "desc"]}}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "size", "move", "save", "bravery", "wounds", "missile_weapon", "melee_weapon", "abilites", "keywords"]}}}, "required": ["army", "units"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"status": {"type": "string"}, "chunks": {"type": "object", "properties": {"main": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "path": {"type": "string"}}, "required": ["name", "path"]}}}, "required": ["main"]}}, "required": ["status", "chunks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"status" : "done", "chunks" : {"main" : [{"name" : "main-67e208e46deeb7fc4435.js", "path" : "/home/kelly/django-boilerplate/djangoboilerplate/frontend/assets/bundles/main-67e208e46deeb7fc4435.js"}, {"name" : "public/style.css", "path" : "/home/kelly/django-boilerplate/djangoboilerplate/frontend/assets/bundles/public/style.css"}]}}
json_instruct
{"type": "object", "properties": {"status": {"type": "string"}, "chunks": {"type": "object", "properties": {"main": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "path": {"type": "string"}}, "required": ["name", "path"]}}}, "required": ["main"]}}, "required": ["status", "chunks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "dna": {"type": "string"}, "edition": {"type": "integer"}, "date": {"type": "integer"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}, "compiler": {"type": "string"}}, "required": ["name", "description", "image", "dna", "edition", "date", "attributes", "compiler"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "GoldenGames #950", "description" : "golden games nft", "image" : "ipfs://NewUriToReplace/950.png", "dna" : "593d87410799987a140de8d48d49e8614d860797", "edition" : 950, "date" : 1643858257822, "attributes" : [{"trait_type" : "Background", "value" : "Black"}, {"trait_type" : "Texture", "value" : "TEXTURE"}, {"trait_type" : "Eye color", "value" : "Yellow"}, {"trait_type" : "Eyeball", "value" : "pika_of_all"}, {"trait_type" : "Shine", "value" : "green2"}], "compiler" : "HashLips Art Engine"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "dna": {"type": "string"}, "edition": {"type": "integer"}, "date": {"type": "integer"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}, "compiler": {"type": "string"}}, "required": ["name", "description", "image", "dna", "edition", "date", "attributes", "compiler"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"comment": {"type": "string"}, "ignore": {"type": "string"}, "package": {"type": "array", "items": {"type": "object", "properties": {"checksumSHA1": {"type": "string"}, "path": {"type": "string"}, "revision": {"type": "string"}, "revisionTime": {"type": "string"}}, "required": ["checksumSHA1", "path", "revision", "revisionTime"]}}, "rootPath": {"type": "string"}}, "required": ["comment", "ignore", "package", "rootPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"comment" : "", "ignore" : "test", "package" : [{"checksumSHA1" : "KmjnydoAbofMieIWm+it5OWERaM=", "path" : "github.com/alecthomas/template", "revision" : "a0175ee3bccc567396460bf5acd36800cb10c49c", "revisionTime" : "2016-04-05T07:15:01Z"}, {"checksumSHA1" : "3wt0pTXXeS+S93unwhGoLIyGX/Q=", "path" : "github.com/alecthomas/template/parse", "revision" : "a0175ee3bccc567396460bf5acd36800cb10c49c", "revisionTime" : "2016-04-05T07:15:01Z"}, {"checksumSHA1" : "fCc3grA7vIxfBru7R3SqjcW+oLI=", "path" : "github.com/alecthomas/units", "revision" : "2efee857e7cfd4f3d0138cc3cbb1b4966962b93a", "revisionTime" : "2015-10-22T06:55:26Z"}, {"checksumSHA1" : "+aq6vfX37dIMIqeWaE5tgf0v3fE=", "path" : "github.com/tidwall/gjson", "revision" : "1e3f6aeaa5bad08d777ea7807b279a07885dd8b2", "revisionTime" : "2018-08-02T15:58:17Z"}, {"checksumSHA1" : "Tk+aXpWRuTQhURlO79bd7YogcU0=", "path" : "github.com/tidwall/match", "revision" : "1731857f09b1f38450e2c12409748407822dc6be", "revisionTime" : "2017-10-02T07:59:45Z"}, {"checksumSHA1" : "sToCp8GThnMnsBzsHv+L/tBYQrQ=", "path" : "gopkg.in/alecthomas/kingpin.v2", "revision" : "947dcec5ba9c011838740e680966fd7087a71d0d", "revisionTime" : "2017-12-17T18:08:21Z"}, {"checksumSHA1" : "O55NPQ22D28UOLch2++jY3tCAvk=", "path" : "gopkg.in/ini.v1", "revision" : "5cf292cae48347c2490ac1a58fe36735fb78df7e", "revisionTime" : "2018-08-18T11:46:59Z"}], "rootPath" : "github.com/stellargraph/bkcli"}
json_instruct
{"type": "object", "properties": {"comment": {"type": "string"}, "ignore": {"type": "string"}, "package": {"type": "array", "items": {"type": "object", "properties": {"checksumSHA1": {"type": "string"}, "path": {"type": "string"}, "revision": {"type": "string"}, "revisionTime": {"type": "string"}}, "required": ["checksumSHA1", "path", "revision", "revisionTime"]}}, "rootPath": {"type": "string"}}, "required": ["comment", "ignore", "package", "rootPath"], "$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"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {"type": "string"}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "I received the following error when attempting to create a mirror for a rhel7 os on a machine that was running rhel6:\r\n```\r\nspack mirror create -d `pwd` -D -o tmux@2.4 os=rhel7 %gcc@4.8.5\r\n==> Error: No compilers with spec gcc@4.8.5 found for operating system rhel6 and target x86_64\r\n```\r\nI worked around the problem by creating a fake compiler entry for gcc@4.8.5 for rhel6 in the compilers.yaml file.", "user" : "mcfadden8", "url" : "https://api.github.com/repos/spack/spack/issues/5147", "updated_at" : "2018-03-21 21:55:27", "created_at" : "2017-08-17 17:33:20", "closed_at" : "2018-03-21 21:55:27", "state" : "closed", "title" : "Running 'spack mirror create' tries to look for compiler using local os spec", "number" : 5147, "milestone" : null, "labels" : ["mirrors"], "id" : 251017361, "html_url" : "https://github.com/spack/spack/issues/5147", "assignees" : ["scheibelp"], "comments" : 3}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {"type": "string"}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "musicType": {"type": "string"}, "musicNo": {"type": "string"}}, "required": ["title", "author", "musicType", "musicNo"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "\u30b7\u30e5\u30ac\u30fc\u30bd\u30f3\u30b0\u3068\u30d3\u30bf\u30fc\u30b9\u30c6\u30c3\u30d7-\u8840\u754c\u6218\u7ebfED", "author" : "UNISON SQUARE GARDEN", "musicType" : "\u52a8\u6f2b", "musicNo" : "0007910"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "musicType": {"type": "string"}, "musicNo": {"type": "string"}}, "required": ["title", "author", "musicType", "musicNo"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "homepage": {"type": "string"}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}}, "required": ["jquery"]}, "main": {"type": "string"}}, "required": ["name", "description", "version", "keywords", "author", "homepage", "licenses", "repository", "dependencies", "main"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "smart-time-ago", "description" : "a simeple lib to update the relative time on your page", "version" : "0.1.1", "keywords" : ["timeago", "relative", "time"], "author" : "poshboytl", "homepage" : "https://pragmatic.ly/", "licenses" : [{"type" : "MIT", "url" : "https://github.com/pragmaticly/smart-time-ago/blob/master/LICENSE"}], "repository" : {"type" : "git", "url" : "http://github.com/pragmaticly/smart-time-ago.git"}, "dependencies" : {"jquery" : "*"}, "main" : "./index.js"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "homepage": {"type": "string"}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}}, "required": ["jquery"]}, "main": {"type": "string"}}, "required": ["name", "description", "version", "keywords", "author", "homepage", "licenses", "repository", "dependencies", "main"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"900340968": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900340969": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900340970": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900340971": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900340972": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900340968", "900340969", "900340970", "900340971", "900340972"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"900340968" : {"nama" : "TPS 1", "dapil" : [3307, 13310, 2330502]}, "900340969" : {"nama" : "TPS 2", "dapil" : [3307, 13310, 2330502]}, "900340970" : {"nama" : "TPS 3", "dapil" : [3307, 13310, 2330502]}, "900340971" : {"nama" : "TPS 4", "dapil" : [3307, 13310, 2330502]}, "900340972" : {"nama" : "TPS 5", "dapil" : [3307, 13310, 2330502]}}
json_instruct
{"type": "object", "properties": {"900340968": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900340969": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900340970": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900340971": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900340972": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900340968", "900340969", "900340970", "900340971", "900340972"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 6998, "citation_title" : "Financial Incentives for Increasing Work and Income Among Low-Income Families", "citation_author" : ["Rebecca M. Blank", "David Card", "Philip K. Robins"], "citation_publication_date" : "1999-03-01", "issue_date" : "1999-03-01", "revision_date" : "None", "topics" : ["Health, Education, and Welfare", "Poverty and Wellbeing", "Labor Economics", "Labor Supply and Demand"], "program" : ["Labor Studies"], "projects" : null, "working_groups" : null, "abstract" : "\n\nThis paper investigates the impact of financial incentive programs, which have become an increasingly common component of welfare programs. We review experimental evidence from several such programs. Financial incentive programs appear to increase work and raise income (lower poverty), but cost somewhat more than alternative welfare programs. In particular, windfall beneficiaries -- those who would have been working anyway -- can raise costs by participating in the program. Several existing programs limit this effect by targeting long-term welfare recipients or by limiting benefits to full-time workers. At the same time, because financial incentive programs transfer support to working low-income families, the increase in costs due to windfall beneficiaries makes these programs more effective at alleviating poverty and raising incomes. Evidence also indicates that combining financial incentive programs with job search and job support services can increase both employment and income gains. Non-experimental evidence from the Earned Income Tax Credit (EITC) and from state Temporary Assistance to Needy Families (TANF) programs with enhanced earnings disregards also suggests that these programs increase employment, and this evidence is consistent with the experimental evidence on the impact of financial incentive programs.\n\n", "acknowledgement" : "\n"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "regexes": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "regexes"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"type" : "value", "regexes" : ["[0-9\\.]+"]}, {"type" : "wrapping", "regexes" : ["\"(\\\\.|[^\"])*\""]}, {"type" : "key", "regexes" : ["[a-zA-Z0-9\"_-]+?(?=:)"]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "regexes": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "regexes"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_requester", "auto_approve"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"track" : "javascript", "exercise" : "clock", "id" : "a777cad59fb3420ea6fb7466b94c2d02", "url" : "https://exercism.org/tracks/javascript/exercises/clock", "handle" : "ErikSchierboom", "is_requester" : true, "auto_approve" : false}
json_instruct
{"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_requester", "auto_approve"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"status": {"type": "integer"}, "startTimes": {"type": "array", "items": {"type": "integer"}}, "objectiveValue": {"type": "number"}, "solverRuntimeInMilliseconds": {"type": "integer"}, "optional": {"type": "object", "properties": {}, "required": []}}, "required": ["status", "startTimes", "objectiveValue", "solverRuntimeInMilliseconds", "optional"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"status" : 3, "startTimes" : [285, 28, 12, 75, 96, 87, 45, 255, 165, 343, 129, 317, 296, 107, 137, 150, 192, 66, 219, 179, 509, 419, 387, 312, 404, 204, 241, 115, 572, 519, 623, 477, 359, 465, 661, 494, 598, 638, 568, 238, 543, 771, 556, 675, 329, 447, 813, 373, 265, 528, 700, 714, 273, 885, 794, 730, 399, 931, 433, 654, 777, 760, 688, 848, 991, 806, 614, 586, 1052, 978, 960, 943, 1112, 738, 1041, 838, 752, 1065, 969, 1020, 1152, 1029, 1005, 1078, 899, 827, 1215, 910, 1202, 1137, 1125, 1103, 863, 926, 1088, 1168, 1176, 1193, 1241, 1230], "objectiveValue" : 28836.0, "solverRuntimeInMilliseconds" : 0, "optional" : {}}
json_instruct
{"type": "object", "properties": {"status": {"type": "integer"}, "startTimes": {"type": "array", "items": {"type": "integer"}}, "objectiveValue": {"type": "number"}, "solverRuntimeInMilliseconds": {"type": "integer"}, "optional": {"type": "object", "properties": {}, "required": []}}, "required": ["status", "startTimes", "objectiveValue", "solverRuntimeInMilliseconds", "optional"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "Untenable", "definitions" : ["(especially of a position or view) not able to be maintained or defended against attack or objection."], "parts-of-speech" : "Adjective"}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "title": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "chapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["title", "chaptersection", "identifier", "catch_text"]}}, "required": ["text", "historical", "credits", "sections", "division", "title", "chapter", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : "", "historical" : "Prior Codifications\n\n1981 Ed., \u00a7 47-1242.\n\nEmergency Act Amendments\n\nFor temporary (90 day) repeal of section, see \u00a7 5202(b) of Fiscal Year 2005 Budget Support Emergency Act of 2004 (D.C. Act 15-486, August 2, 2004, 51 DCR 8236).\n\nFor temporary (90 day) repeal of section, see \u00a7 5202(b) of Fiscal Year 2005 Budget Support Congressional Review Emergency Act of 2004 (D.C. Act 15-594, October 26, 2004, 51 DCR 11725).\n\nLegislative History of Laws\n\nFor legislative history of D.C. Law 11-52, see Historical and Statutory Notes following \u00a7 47-1241.\n\nFor Law 15-205, see notes following \u00a7 47-1241.\n\nDC CODE \u00a7 47-1242\n\nCurrent through December 11, 2012", "credits" : "(Sept. 26, 1995, D.C. Law 11-52, \u00a7 203, 42 DCR 3684; enacted, Apr. 9, 1997, D.C. Law 11-254, \u00a7 2, 44 DCR 1575; Dec. 7, 2004, D.C. Law 15-205, \u00a7 5202(b), 51 DCR 8441.)", "sections" : [], "division" : {"identifier" : "VIII", "text" : "General Laws."}, "title" : {"identifier" : "47", "text" : "Taxation, Licensing, Permits, Assessments, and Fees. (Refs & Annos)"}, "chapter" : {"identifier" : "12B", "text" : "Health Care Provider Assessment Act of 1995. [Repealed]"}, "heading" : {"title" : "47", "chaptersection" : "1242", "identifier" : "47-1242", "catch_text" : "Assessment on hospitals. [Repealed]"}}
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "title": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "chapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["title", "chaptersection", "identifier", "catch_text"]}}, "required": ["text", "historical", "credits", "sections", "division", "title", "chapter", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"domain": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "name": {"type": "string"}, "homepage": {"type": "string"}, "audit": {"type": "string"}, "director": {"type": "string"}, "pre-approval": {"type": "string"}, "updated": {"type": "integer"}}, "required": ["domain", "title", "type", "license", "name", "homepage", "audit", "director", "pre-approval", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"domain" : "dragontooth.cn", "title" : "\u5317\u4eac\u94c1\u8840\u79d1\u6280\u80a1\u4efd\u516c\u53f8", "type" : "\u4f01\u4e1a", "license" : "\u4eacICP\u590709067787\u53f7-10", "name" : "\u9f99\u7259\u6218\u672f\u88c5\u5907\u7f51", "homepage" : "www.dragontooth.cn", "audit" : "2015-07-09", "director" : "", "pre-approval" : "", "updated" : 1484582352}
json_instruct
{"type": "object", "properties": {"domain": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "name": {"type": "string"}, "homepage": {"type": "string"}, "audit": {"type": "string"}, "director": {"type": "string"}, "pre-approval": {"type": "string"}, "updated": {"type": "integer"}}, "required": ["domain", "title", "type", "license", "name", "homepage", "audit", "director", "pre-approval", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"total": {"type": "integer"}, "page-size": {"type": "integer"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"office": {"type": "string"}, "name": {"type": "string"}, "units": {"type": "string"}, "interval": {"type": "string"}, "interval-offset": {"type": "integer"}, "time-zone": {"type": "string"}, "extents": {"type": "array", "items": {"type": "object", "properties": {"earliest-time": {"type": "string"}, "latest-time": {"type": "string"}, "version-time": {"type": "string"}}, "required": ["earliest-time", "latest-time", "version-time"]}}}, "required": ["office", "name", "units", "interval", "interval-offset", "time-zone", "extents"]}}}, "required": ["total", "page-size", "entries"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"total" : 1, "page-size" : 500, "entries" : [{"office" : "SWT", "name" : "ACSO2.Irrad.Ave.1Hour.1Hour.Raw-Mesonet", "units" : "W/m2", "interval" : "1Hour", "interval-offset" : 0, "time-zone" : "US/Central", "extents" : [{"earliest-time" : "2016-06-01T01:00:00Z", "latest-time" : "2018-08-29T21:00:00Z", "version-time" : "2018-08-29T21:00:00Z"}]}]}
json_instruct
{"type": "object", "properties": {"total": {"type": "integer"}, "page-size": {"type": "integer"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"office": {"type": "string"}, "name": {"type": "string"}, "units": {"type": "string"}, "interval": {"type": "string"}, "interval-offset": {"type": "integer"}, "time-zone": {"type": "string"}, "extents": {"type": "array", "items": {"type": "object", "properties": {"earliest-time": {"type": "string"}, "latest-time": {"type": "string"}, "version-time": {"type": "string"}}, "required": ["earliest-time", "latest-time", "version-time"]}}}, "required": ["office", "name", "units", "interval", "interval-offset", "time-zone", "extents"]}}}, "required": ["total", "page-size", "entries"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Blaringhem", "dpt" : "Nord", "inscrits" : 1629, "abs" : 320, "votants" : 1309, "blancs" : 30, "nuls" : 13, "exp" : 1266, "res" : [{"panneau" : "2", "voix" : 399}, {"panneau" : "3", "voix" : 266}, {"panneau" : "11", "voix" : 219}, {"panneau" : "9", "voix" : 214}, {"panneau" : "1", "voix" : 82}, {"panneau" : "4", "voix" : 37}, {"panneau" : "6", "voix" : 17}, {"panneau" : "5", "voix" : 16}, {"panneau" : "8", "voix" : 8}, {"panneau" : "10", "voix" : 6}, {"panneau" : "7", "voix" : 2}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"batchcomplete": {"type": "string"}, "query": {"type": "object", "properties": {"normalized": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "required": ["from", "to"]}}, "pages": {"type": "object", "properties": {"49355677": {"type": "object", "properties": {"pageid": {"type": "integer"}, "ns": {"type": "integer"}, "title": {"type": "string"}, "pageprops": {"type": "object", "properties": {"defaultsort": {"type": "string"}, "wikibase-shortdesc": {"type": "string"}, "wikibase_item": {"type": "string"}}, "required": ["defaultsort", "wikibase-shortdesc", "wikibase_item"]}}, "required": ["pageid", "ns", "title", "pageprops"]}}, "required": ["49355677"]}}, "required": ["normalized", "pages"]}}, "required": ["batchcomplete", "query"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"batchcomplete" : "", "query" : {"normalized" : [{"from" : "Alexander_Hill_(rower)", "to" : "Alexander Hill (rower)"}], "pages" : {"49355677" : {"pageid" : 49355677, "ns" : 0, "title" : "Alexander Hill (rower)", "pageprops" : {"defaultsort" : "Hill, Alexander", "wikibase-shortdesc" : "Australian rower", "wikibase_item" : "Q21028285"}}}}}
json_instruct
{"type": "object", "properties": {"batchcomplete": {"type": "string"}, "query": {"type": "object", "properties": {"normalized": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "required": ["from", "to"]}}, "pages": {"type": "object", "properties": {"49355677": {"type": "object", "properties": {"pageid": {"type": "integer"}, "ns": {"type": "integer"}, "title": {"type": "string"}, "pageprops": {"type": "object", "properties": {"defaultsort": {"type": "string"}, "wikibase-shortdesc": {"type": "string"}, "wikibase_item": {"type": "string"}}, "required": ["defaultsort", "wikibase-shortdesc", "wikibase_item"]}}, "required": ["pageid", "ns", "title", "pageprops"]}}, "required": ["49355677"]}}, "required": ["normalized", "pages"]}}, "required": ["batchcomplete", "query"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}}, "required": ["name", "description", "icon"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Getting Started", "description" : "Base concepts for a new mage.", "icon" : "minethecrafting:white_mana"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}}, "required": ["name", "description", "icon"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "df17813501e30ebf31b8", "c" : {}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0xee6d409e9d08af082c2493ea955a0d3ea418dc0f", "tool" : "osiris", "start" : 1564589230.8100922, "end" : 1564589233.9345043, "duration" : 3.1244120597839355, "analysis" : []}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}, "name": {"type": "string"}}, "required": ["d", "name"]}}}, "required": ["t", "h"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"t" : "nayil", "h" : [{"d" : [{"f" : "\u5c3c\u7f85\u6cb3\u3002", "e" : ["\ufff9`N~`ayi~`l~ `a~ `'alo~.\ufffa\ufffb\u5c3c\u7f85\u6cb3\u3014\u82f1\u8a9e\u501f\u8a5e\u3015\u3002"]}], "name" : "Nayil"}]}
json_instruct
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}, "name": {"type": "string"}}, "required": ["d", "name"]}}}, "required": ["t", "h"], "$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"}, "specialname": {"type": "string"}, "type": {"type": "string"}, "category": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "specialname", "type", "category", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Stormterror", "specialname" : "Stormterror", "type" : "BOSS", "category" : "\u0e28\u0e31\u0e15\u0e23\u0e39\u0e17\u0e35\u0e48\u0e19\u0e48\u0e32\u0e08\u0e14\u0e08\u0e33", "description" : "\u0e21\u0e31\u0e07\u0e01\u0e23\u0e41\u0e2b\u0e48\u0e07\u0e15\u0e30\u0e27\u0e31\u0e19\u0e2d\u0e2d\u0e01 Dvalin \u0e0b\u0e36\u0e48\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e43\u0e19\u0e2a\u0e35\u0e48\u0e27\u0e32\u0e22\u0e38\u0e41\u0e2b\u0e48\u0e07 Mondstadt\n\u0e43\u0e19\u0e0a\u0e48\u0e27\u0e07\u0e40\u0e27\u0e25\u0e32\u0e2d\u0e31\u0e19\u0e22\u0e32\u0e27\u0e19\u0e32\u0e19\u0e41\u0e25\u0e30\u0e43\u0e19\u0e04\u0e27\u0e32\u0e21\u0e21\u0e37\u0e14\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e2a\u0e34\u0e49\u0e19\u0e2a\u0e38\u0e14 \u0e15\u0e48\u0e2d\u0e43\u0e2b\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e2d\u0e31\u0e0d\u0e21\u0e13\u0e35\u0e17\u0e35\u0e48\u0e2a\u0e14\u0e43\u0e2a\u0e01\u0e47\u0e15\u0e49\u0e2d\u0e07\u0e2b\u0e21\u0e48\u0e19\u0e2b\u0e21\u0e2d\u0e07\u0e40\u0e1e\u0e23\u0e32\u0e30\u0e1d\u0e38\u0e48\u0e19\u0e18\u0e38\u0e25\u0e35 \u0e41\u0e25\u0e30\u0e21\u0e31\u0e07\u0e01\u0e23\u0e17\u0e35\u0e48\u0e20\u0e32\u0e04\u0e20\u0e39\u0e21\u0e34\u0e01\u0e47\u0e2d\u0e32\u0e08\u0e16\u0e39\u0e01\u0e01\u0e31\u0e14\u0e01\u0e23\u0e48\u0e2d\u0e19\u0e08\u0e19\u0e40\u0e15\u0e47\u0e21\u0e44\u0e1b\u0e14\u0e49\u0e27\u0e22\u0e04\u0e27\u0e32\u0e21\u0e40\u0e01\u0e25\u0e35\u0e22\u0e14\u0e0a\u0e31\u0e07\n\u0e41\u0e15\u0e48\u0e2d\u0e22\u0e48\u0e32\u0e25\u0e37\u0e21\u0e27\u0e48\u0e32 \u0e1d\u0e38\u0e48\u0e19\u0e19\u0e31\u0e49\u0e19\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e1b\u0e31\u0e14\u0e2d\u0e2d\u0e01\u0e44\u0e1b\u0e44\u0e14\u0e49 \u0e04\u0e27\u0e32\u0e21\u0e41\u0e04\u0e25\u0e07\u0e43\u0e08\u0e41\u0e25\u0e30\u0e1e\u0e34\u0e29\u0e23\u0e49\u0e32\u0e22\u0e01\u0e47\u0e16\u0e39\u0e01\u0e02\u0e08\u0e31\u0e14\u0e44\u0e14\u0e49\u0e40\u0e0a\u0e48\u0e19\u0e01\u0e31\u0e19\n\n\"\u0e2a\u0e22\u0e32\u0e22\u0e1b\u0e35\u0e01\u0e41\u0e25\u0e49\u0e27\u0e1a\u0e34\u0e19\u0e44\u0e1b\u0e1a\u0e19\u0e1f\u0e49\u0e32\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e2d\u0e34\u0e2a\u0e23\u0e30\u0e40\u0e16\u0e2d\u0e30\n\"\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e17\u0e35\u0e48\u0e40\u0e18\u0e2d\u0e40\u0e04\u0e22\u0e17\u0e33\u0e43\u0e19\u0e15\u0e2d\u0e19\u0e17\u0e35\u0e48\u0e40\u0e23\u0e32\u0e40\u0e08\u0e2d\u0e01\u0e31\u0e19 \u0e15\u0e2d\u0e19\u0e17\u0e35\u0e48\u0e09\u0e31\u0e19\u0e40\u0e14\u0e34\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e1a\u0e19\u0e1e\u0e37\u0e49\u0e19\u0e14\u0e34\u0e19 \u0e41\u0e25\u0e49\u0e27\u0e02\u0e31\u0e1a\u0e23\u0e49\u0e2d\u0e07\u0e40\u0e1e\u0e25\u0e07\u0e41\u0e2b\u0e48\u0e07\u0e2a\u0e32\u0e22\u0e25\u0e21\n\"\u0e40\u0e18\u0e2d\u0e42\u0e1a\u0e22\u0e1a\u0e34\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e1a\u0e19\u0e1f\u0e49\u0e32 \u0e41\u0e25\u0e49\u0e27\u0e21\u0e2d\u0e07\u0e25\u0e07\u0e21\u0e32\u0e22\u0e31\u0e07\u0e42\u0e25\u0e01\u0e40\u0e1a\u0e37\u0e49\u0e2d\u0e07\u0e25\u0e48\u0e32\u0e07\n\u0e17\u0e38\u0e01\u0e27\u0e31\u0e19\u0e19\u0e35\u0e49 \u0e17\u0e49\u0e2d\u0e07\u0e1f\u0e49\u0e32\u0e44\u0e21\u0e48\u0e21\u0e35\u0e1e\u0e32\u0e22\u0e38\u0e2b\u0e34\u0e21\u0e30\u0e2d\u0e35\u0e01\u0e15\u0e48\u0e2d\u0e44\u0e1b\u0e41\u0e25\u0e49\u0e27 \u0e1c\u0e37\u0e19\u0e14\u0e34\u0e19\u0e01\u0e47\u0e40\u0e15\u0e47\u0e21\u0e44\u0e1b\u0e14\u0e49\u0e27\u0e22\u0e2b\u0e0d\u0e49\u0e32\u0e40\u0e02\u0e35\u0e22\u0e27\u0e02\u0e08\u0e35 \u0e21\u0e31\u0e19\u0e2a\u0e27\u0e22\u0e21\u0e32\u0e01\u0e40\u0e25\u0e22\u0e43\u0e0a\u0e48\u0e21\u0e31\u0e49\u0e22\u0e25\u0e48\u0e30\n\"\u0e16\u0e49\u0e32\u0e40\u0e18\u0e2d\u0e40\u0e04\u0e22\u0e40\u0e14\u0e34\u0e19\u0e1a\u0e19\u0e1e\u0e37\u0e49\u0e19\u0e42\u0e25\u0e01 \u0e41\u0e25\u0e30\u0e1f\u0e31\u0e07\u0e1a\u0e17\u0e40\u0e1e\u0e25\u0e07\u0e02\u0e2d\u0e07\u0e04\u0e19\u0e40\u0e25\u0e35\u0e49\u0e22\u0e07\u0e41\u0e01\u0e30 \u0e41\u0e25\u0e30\u0e40\u0e2a\u0e35\u0e22\u0e07\u0e23\u0e30\u0e06\u0e31\u0e07\u0e17\u0e35\u0e48\u0e41\u0e27\u0e48\u0e27\u0e21\u0e32\u0e15\u0e32\u0e21\u0e25\u0e21 \u0e16\u0e49\u0e32\u0e40\u0e18\u0e2d\u0e40\u0e04\u0e22\u0e25\u0e34\u0e49\u0e21\u0e23\u0e2a\u0e44\u0e27\u0e19\u0e4c\u0e17\u0e35\u0e48\u0e2b\u0e27\u0e32\u0e19\u0e23\u0e32\u0e27\u0e01\u0e31\u0e1a\u0e19\u0e49\u0e33\u0e1c\u0e36\u0e49\u0e07\u0e40\u0e18\u0e2d\u0e08\u0e30\u0e40\u0e02\u0e49\u0e32\u0e43\u0e08\n\"\u0e16\u0e49\u0e32\u0e40\u0e18\u0e2d\u0e21\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e09\u0e31\u0e19 \u0e41\u0e25\u0e49\u0e27\u0e44\u0e14\u0e49\u0e40\u0e2b\u0e47\u0e19\u0e23\u0e39\u0e1b\u0e23\u0e48\u0e32\u0e07\u0e2d\u0e31\u0e19\u0e2a\u0e07\u0e48\u0e32\u0e07\u0e32\u0e21\u0e02\u0e2d\u0e07\u0e40\u0e18\u0e2d \u0e42\u0e1c\u0e17\u0e30\u0e22\u0e32\u0e19\u0e1a\u0e19\u0e17\u0e49\u0e2d\u0e07\u0e1f\u0e49\u0e32\u0e2a\u0e35\u0e04\u0e23\u0e32\u0e21\n\"\u0e41\u0e25\u0e49\u0e27\u0e40\u0e18\u0e2d\u0e08\u0e30\u0e40\u0e02\u0e49\u0e32\u0e43\u0e08\u0e27\u0e48\u0e32\u0e17\u0e49\u0e2d\u0e07\u0e1f\u0e49\u0e32\u0e41\u0e25\u0e30\u0e42\u0e25\u0e01\u0e41\u0e1a\u0e1a\u0e19\u0e35\u0e49 \u0e04\u0e27\u0e23\u0e04\u0e48\u0e32\u0e41\u0e01\u0e48\u0e01\u0e32\u0e23\u0e15\u0e48\u0e2d\u0e2a\u0e39\u0e49\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e43\u0e2b\u0e49\u0e44\u0e14\u0e49\u0e21\u0e32\""}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "specialname": {"type": "string"}, "type": {"type": "string"}, "category": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "specialname", "type", "category", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "comment": {"type": "string"}}, "required": ["id", "comment"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : 1, "comment" : "Text"}, {"id" : 2, "comment" : "Text"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "comment": {"type": "string"}}, "required": ["id", "comment"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "value": {"type": "string"}, "op": {"type": "string"}}, "required": ["path", "value", "op"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"path" : "/suppression_status", "value" : "unsuppressed", "op" : "replace"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "value": {"type": "string"}, "op": {"type": "string"}}, "required": ["path", "value", "op"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"stationId" : 1121107, "stationGroupId" : 1121107, "name" : "\u7530\u6ca2\u6e56", "lineId" : 11211, "zipCode" : "014-1201", "pref" : "\u79cb\u7530\u770c", "city" : "\u4ed9\u5317\u5e02", "town" : "\u7530\u6ca2\u6e56\u751f\u4fdd\u5185", "longitude" : 140.722139, "latitude" : 39.700363, "status" : 0}
json_instruct
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"COLCF": {"type": "object", "properties": {"short_name": {"type": "string"}, "long_name": {"type": "string"}, "summary": {"type": "string"}, "currency": {"type": "string"}, "sector": {"type": "string"}, "industry": {"type": "string"}, "exchange": {"type": "string"}, "market": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "city": {"type": "string"}, "zipcode": {"type": "string"}, "website": {"type": "string"}, "market_cap": {"type": "integer"}}, "required": ["short_name", "long_name", "summary", "currency", "sector", "industry", "exchange", "market", "country", "state", "city", "zipcode", "website", "market_cap"]}}, "required": ["COLCF"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"COLCF" : {"short_name" : "COOL CHIPS PLC", "long_name" : "Cool Chips plc", "summary" : "Cool Chips plc researches, develops, and commercializes Cool Chips. The company is developing Cool Chips, which are small electronic devices that use electrons to carry heat from one side of vacuum diode to the other, thus producing cooling, refrigeration, or air conditioning. It serves aerospace, automotive, cargo cooling, electronics, industrial processing, domestic refrigeration, semiconductor fabrication, HVAC, and telecom markets. The company was incorporated in 1996 and is headquartered in Gibraltar. Cool Chips plc is a subsidiary of Borealis Technical Limited.", "currency" : "USD", "sector" : "Technology", "industry" : "Consumer Electronics", "exchange" : "PNK", "market" : "us_market", "country" : "Gibraltar", "state" : null, "city" : "Gibraltar", "zipcode" : "GX11 1AA", "website" : "http://www.coolchips.gi", "market_cap" : 4043480}}
json_instruct
{"type": "object", "properties": {"COLCF": {"type": "object", "properties": {"short_name": {"type": "string"}, "long_name": {"type": "string"}, "summary": {"type": "string"}, "currency": {"type": "string"}, "sector": {"type": "string"}, "industry": {"type": "string"}, "exchange": {"type": "string"}, "market": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "city": {"type": "string"}, "zipcode": {"type": "string"}, "website": {"type": "string"}, "market_cap": {"type": "integer"}}, "required": ["short_name", "long_name", "summary", "currency", "sector", "industry", "exchange", "market", "country", "state", "city", "zipcode", "website", "market_cap"]}}, "required": ["COLCF"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"(0, 0, 2)": {"type": "string"}, "(1, 0, 1)": {"type": "string"}, "(1, 1, 1)": {"type": "string"}, "(2, 0, 1)": {"type": "string"}, "(2, 1, 1)": {"type": "string"}, "(3, 0, 1)": {"type": "string"}, "(3, 1, 1)": {"type": "string"}, "(4, 0, 1)": {"type": "string"}, "(4, 1, 1)": {"type": "string"}, "(5, 0, 1)": {"type": "string"}, "(5, 1, 1)": {"type": "string"}, "(6, 0, 1)": {"type": "string"}, "(6, 1, 1)": {"type": "string"}, "(7, 0, 1)": {"type": "string"}, "(7, 1, 1)": {"type": "string"}, "(8, 0, 1)": {"type": "string"}, "(8, 1, 1)": {"type": "string"}}, "required": ["(0, 0, 2)", "(1, 0, 1)", "(1, 1, 1)", "(2, 0, 1)", "(2, 1, 1)", "(3, 0, 1)", "(3, 1, 1)", "(4, 0, 1)", "(4, 1, 1)", "(5, 0, 1)", "(5, 1, 1)", "(6, 0, 1)", "(6, 1, 1)", "(7, 0, 1)", "(7, 1, 1)", "(8, 0, 1)", "(8, 1, 1)"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"(0, 0, 2)" : "Republic of Cabo Verde, Rep\u00fablica de Cabo Verde (Portuguese), Rep\u00fablika di Kabu Verdi (Cape Verdean Creole)", "(1, 0, 1)" : "Capital, and largest city", "(1, 1, 1)" : "Praia, 14\u00b055\u2032N 23\u00b031\u2032W\ufeff / \ufeff14.917\u00b0N 23.517\u00b0W\ufeff / 14.917; -23.517", "(2, 0, 1)" : "Official\u00a0languages", "(2, 1, 1)" : "Portuguese", "(3, 0, 1)" : "Recognised national\u00a0languages", "(3, 1, 1)" : "Cape Verdean Creole", "(4, 0, 1)" : "Demonym(s)", "(4, 1, 1)" : "Cape Verdean or Cabo Verdean", "(5, 0, 1)" : "Government", "(5, 1, 1)" : "Unitary semi-presidential republic", "(6, 0, 1)" : "President", "(6, 1, 1)" : "Jorge Carlos Fonseca", "(7, 0, 1)" : "Prime Minister", "(7, 1, 1)" : "Ulisses Correia e Silva", "(8, 0, 1)" : "Legislature", "(8, 1, 1)" : "National Assembly"}
json_instruct
{"type": "object", "properties": {"(0, 0, 2)": {"type": "string"}, "(1, 0, 1)": {"type": "string"}, "(1, 1, 1)": {"type": "string"}, "(2, 0, 1)": {"type": "string"}, "(2, 1, 1)": {"type": "string"}, "(3, 0, 1)": {"type": "string"}, "(3, 1, 1)": {"type": "string"}, "(4, 0, 1)": {"type": "string"}, "(4, 1, 1)": {"type": "string"}, "(5, 0, 1)": {"type": "string"}, "(5, 1, 1)": {"type": "string"}, "(6, 0, 1)": {"type": "string"}, "(6, 1, 1)": {"type": "string"}, "(7, 0, 1)": {"type": "string"}, "(7, 1, 1)": {"type": "string"}, "(8, 0, 1)": {"type": "string"}, "(8, 1, 1)": {"type": "string"}}, "required": ["(0, 0, 2)", "(1, 0, 1)", "(1, 1, 1)", "(2, 0, 1)", "(2, 1, 1)", "(3, 0, 1)", "(3, 1, 1)", "(4, 0, 1)", "(4, 1, 1)", "(5, 0, 1)", "(5, 1, 1)", "(6, 0, 1)", "(6, 1, 1)", "(7, 0, 1)", "(7, 1, 1)", "(8, 0, 1)", "(8, 1, 1)"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"symbol" : "FZY", "name" : "Frenzy", "decimals" : 8, "address" : "0x8720c8429b78df262360b0f39917a03f9b894746"}
json_instruct
{"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"level": {"type": "string"}, "titles": {"type": "object", "properties": {"de": {"type": "string"}, "en": {"type": "string"}}, "required": ["de", "en"]}, "can_search": {"type": "boolean"}, "can_describe": {"type": "boolean"}, "groups": {"type": "array", "items": {"type": "string"}}, "location_type": {"type": "string"}, "routing_inclusion": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["level", "titles", "can_search", "can_describe", "groups", "location_type", "routing_inclusion", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"level" : "0", "titles" : {"de" : "Heart of Code", "en" : "Heart of Code"}, "can_search" : true, "can_describe" : true, "groups" : ["assembly"], "location_type" : "poi", "routing_inclusion" : "default", "geometry" : {"type" : "Polygon", "coordinates" : [[[101.94, 137.31], [101.94, 139.31], [105.31, 139.38], [105.53, 137.34], [101.94, 137.31]]]}}
json_instruct
{"type": "object", "properties": {"level": {"type": "string"}, "titles": {"type": "object", "properties": {"de": {"type": "string"}, "en": {"type": "string"}}, "required": ["de", "en"]}, "can_search": {"type": "boolean"}, "can_describe": {"type": "boolean"}, "groups": {"type": "array", "items": {"type": "string"}}, "location_type": {"type": "string"}, "routing_inclusion": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["level", "titles", "can_search", "can_describe", "groups", "location_type", "routing_inclusion", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"support_languages": {"type": "array", "items": {"type": "string"}}, "access_methods": {"type": "array", "items": {"type": "string"}}, "license": {"type": "array", "items": {"type": "string"}}, "oses": {"type": "array", "items": {"type": "string"}}, "dbmodel": {"type": "array", "items": {"type": "string"}}, "written_in": {"type": "array", "items": {"type": "string"}}}, "required": ["support_languages", "access_methods", "license", "oses", "dbmodel", "written_in"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"support_languages" : [".Net", "C", "C#", "C++", "Java", "JavaScript", "Perl", "PHP", "Python", "Ruby", "Visual Basic"], "access_methods" : ["OLE DB", "ADO.NET", "JDBC", "ODBC"], "license" : ["Open Source"], "oses" : ["AIX", "FreeBSD", "HP-UX", "Linux", "OS X", "Solaris", "Windows"], "dbmodel" : ["Native XML DBMS"], "written_in" : ["C"]}
json_instruct
{"type": "object", "properties": {"support_languages": {"type": "array", "items": {"type": "string"}}, "access_methods": {"type": "array", "items": {"type": "string"}}, "license": {"type": "array", "items": {"type": "string"}}, "oses": {"type": "array", "items": {"type": "string"}}, "dbmodel": {"type": "array", "items": {"type": "string"}}, "written_in": {"type": "array", "items": {"type": "string"}}}, "required": ["support_languages", "access_methods", "license", "oses", "dbmodel", "written_in"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/js/2.69858b08.chunk.js": {"type": "string"}, "static/js/2.69858b08.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "static/css/main.e8e7f431.chunk.css.map": {"type": "string"}, "static/js/2.69858b08.chunk.js.LICENSE.txt": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/js/2.69858b08.chunk.js", "static/js/2.69858b08.chunk.js.map", "index.html", "static/css/main.e8e7f431.chunk.css.map", "static/js/2.69858b08.chunk.js.LICENSE.txt"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"files" : {"main.css" : "/static/css/main.e8e7f431.chunk.css", "main.js" : "/static/js/main.34a15393.chunk.js", "main.js.map" : "/static/js/main.34a15393.chunk.js.map", "runtime-main.js" : "/static/js/runtime-main.33f728f9.js", "runtime-main.js.map" : "/static/js/runtime-main.33f728f9.js.map", "static/js/2.69858b08.chunk.js" : "/static/js/2.69858b08.chunk.js", "static/js/2.69858b08.chunk.js.map" : "/static/js/2.69858b08.chunk.js.map", "index.html" : "/index.html", "static/css/main.e8e7f431.chunk.css.map" : "/static/css/main.e8e7f431.chunk.css.map", "static/js/2.69858b08.chunk.js.LICENSE.txt" : "/static/js/2.69858b08.chunk.js.LICENSE.txt"}, "entrypoints" : ["static/js/runtime-main.33f728f9.js", "static/js/2.69858b08.chunk.js", "static/css/main.e8e7f431.chunk.css", "static/js/main.34a15393.chunk.js"]}
json_instruct
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/js/2.69858b08.chunk.js": {"type": "string"}, "static/js/2.69858b08.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "static/css/main.e8e7f431.chunk.css.map": {"type": "string"}, "static/js/2.69858b08.chunk.js.LICENSE.txt": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/js/2.69858b08.chunk.js", "static/js/2.69858b08.chunk.js.map", "index.html", "static/css/main.e8e7f431.chunk.css.map", "static/js/2.69858b08.chunk.js.LICENSE.txt"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "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"}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "jest": {"type": "string"}, "ts-jest": {"type": "string"}, "ts-node": {"type": "string"}, "tslint": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jest", "jest", "ts-jest", "ts-node", "tslint", "typescript"]}, "jest": {"type": "object", "properties": {"moduleFileExtensions": {"type": "array", "items": {"type": "string"}}, "transform": {"type": "object", "properties": {"^.+\\.ts$": {"type": "string"}}, "required": ["^.+\\.ts$"]}, "globals": {"type": "object", "properties": {"ts-jest": {"type": "object", "properties": {"tsConfig": {"type": "string"}}, "required": ["tsConfig"]}}, "required": ["ts-jest"]}, "testMatch": {"type": "array", "items": {"type": "string"}}}, "required": ["moduleFileExtensions", "transform", "globals", "testMatch"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies", "jest"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "linq-ts", "version" : "0.1.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "jest", "build" : "tsc"}, "repository" : {"type" : "git", "url" : "git+https://github.com/inouetec/linq-ts.git"}, "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/inouetec/linq-ts/issues"}, "homepage" : "https://github.com/inouetec/linq-ts#readme", "devDependencies" : {"@types/jest" : "^26.0.15", "jest" : "^26.6.3", "ts-jest" : "^26.4.4", "ts-node" : "^9.0.0", "tslint" : "^6.1.3", "typescript" : "^4.0.5"}, "jest" : {"moduleFileExtensions" : ["ts", "js"], "transform" : {"^.+\\.ts$" : "ts-jest"}, "globals" : {"ts-jest" : {"tsConfig" : "tsconfig.json"}}, "testMatch" : ["**/tests/**/*.test.ts"]}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "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"}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "jest": {"type": "string"}, "ts-jest": {"type": "string"}, "ts-node": {"type": "string"}, "tslint": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jest", "jest", "ts-jest", "ts-node", "tslint", "typescript"]}, "jest": {"type": "object", "properties": {"moduleFileExtensions": {"type": "array", "items": {"type": "string"}}, "transform": {"type": "object", "properties": {"^.+\\.ts$": {"type": "string"}}, "required": ["^.+\\.ts$"]}, "globals": {"type": "object", "properties": {"ts-jest": {"type": "object", "properties": {"tsConfig": {"type": "string"}}, "required": ["tsConfig"]}}, "required": ["ts-jest"]}, "testMatch": {"type": "array", "items": {"type": "string"}}}, "required": ["moduleFileExtensions", "transform", "globals", "testMatch"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies", "jest"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"TypeScript": {"type": "integer"}, "JavaScript": {"type": "integer"}, "HTML": {"type": "integer"}, "CSS": {"type": "integer"}}, "required": ["TypeScript", "JavaScript", "HTML", "CSS"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"TypeScript" : 339961, "JavaScript" : 3228, "HTML" : 2183, "CSS" : 866}
json_instruct
{"type": "object", "properties": {"TypeScript": {"type": "integer"}, "JavaScript": {"type": "integer"}, "HTML": {"type": "integer"}, "CSS": {"type": "integer"}}, "required": ["TypeScript", "JavaScript", "HTML", "CSS"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Naguilayan, Binmaley, Pangasinan, Ilocos Region (Region I), PH", "locale" : "ph.ilocos-region-region-i.pangasinan.binmaley.naguilayan", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "11", "region_reference" : "1", "region_name" : "Ilocos Region (Region I)", "province_id" : "61", "province_reference" : "61", "province_name" : "Pangasinan", "city_id" : "207", "city_reference" : "1250", "city_name" : "Binmaley", "barangay_id" : "5411", "barangay_reference" : "32308", "barangay_name" : "Naguilayan"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[120.304337, 16.013889], [120.304543, 16.01354], [120.305099, 16.01228], [120.305687, 16.010799], [120.306183, 16.00905], [120.306129, 16.007999], [120.306557, 16.006229], [120.306778, 16.00535], [120.30703, 16.004601], [120.306793, 16.003839], [120.306396, 16.003441], [120.305702, 16.00288], [120.301987, 16.000509], [120.298241, 15.99874], [120.296913, 15.99796], [120.290863, 15.99758], [120.289436, 15.99804], [120.28846, 15.9981], [120.287537, 15.99828], [120.286293, 15.9987], [120.285133, 16.00025], [120.285088, 16.00173], [120.285278, 16.00275], [120.285591, 16.003731], [120.285828, 16.006081], [120.285461, 16.007851], [120.285133, 16.00845], [120.28595, 16.00919], [120.28653, 16.009859], [120.287849, 16.011021], [120.288933, 16.01169], [120.290916, 16.012609], [120.29216, 16.012791], [120.293442, 16.012899], [120.295174, 16.013029], [120.298828, 16.013189], [120.301308, 16.013491], [120.304039, 16.01392], [120.304337, 16.013889]]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "short_description": {"type": "string"}, "explorer": {"type": "string"}}, "required": ["name", "website", "short_description", "explorer"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Raphaosshine", "website" : "https://raphaosshine.xobor.de", "short_description" : "Raphaosshine", "explorer" : "https://etherscan.io/token/0x15d5aa1574b77c839fd52e874783df97e7699299?a=0xa18955De63febE77f3733D2C74a0748F7053f093"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "short_description": {"type": "string"}, "explorer": {"type": "string"}}, "required": ["name", "website", "short_description", "explorer"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"pages/index": {"type": "boolean"}}, "required": ["pages/index"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "ca82a0821a63c4ded98d", "c" : {"pages/index" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"pages/index": {"type": "boolean"}}, "required": ["pages/index"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"q.js": {"type": "string"}, "q.min.js": {"type": "string"}}, "required": ["q.js", "q.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"q.js" : "sha256-Hpnn5wweYT/3XQX84yAb3vBaS3sEtxsNFlbQQ2vfU0g=", "q.min.js" : "sha256-aYS+icaOIo3gXwTsH88p9Iq2u+baRkazvKXARBsE60A="}
json_instruct
{"type": "object", "properties": {"q.js": {"type": "string"}, "q.min.js": {"type": "string"}}, "required": ["q.js", "q.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "null"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : "VGRHAG", "lang" : "en", "description" : null, "name" : "Main types of aggregates", "type" : "Merkmal"}
json_instruct
{"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "null"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"author": {"type": "string"}, "email": {"type": "string"}, "project_name": {"type": "string"}, "project_slug": {"type": "string"}, "project_url": {"type": "string"}, "short_description": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "array", "items": {"type": "string"}}, "ci_tool": {"type": "array", "items": {"type": "string"}}, "_copy_without_render": {"type": "array", "items": {"type": "string"}}}, "required": ["author", "email", "project_name", "project_slug", "project_url", "short_description", "version", "license", "ci_tool", "_copy_without_render"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : "John Doe", "email" : "{{ cookiecutter.author.lower()|replace(' ', '.') }}@email.com", "project_name" : "My Awesome Project", "project_slug" : "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_')|replace('.', '_')|trim() }}", "project_url" : "https://github.com/example_project", "short_description" : "Behold My Awesome Project!", "version" : "0.1.0", "license" : ["MIT", "APACHE", "2-Clause BSD", "3-Clause BSD", "GPL", "None"], "ci_tool" : ["GitHub", "GitLab", "Bitbucket", "None"], "_copy_without_render" : [".github/*"]}
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "email": {"type": "string"}, "project_name": {"type": "string"}, "project_slug": {"type": "string"}, "project_url": {"type": "string"}, "short_description": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "array", "items": {"type": "string"}}, "ci_tool": {"type": "array", "items": {"type": "string"}}, "_copy_without_render": {"type": "array", "items": {"type": "string"}}}, "required": ["author", "email", "project_name", "project_slug", "project_url", "short_description", "version", "license", "ci_tool", "_copy_without_render"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"asWidget": {"type": "string"}}, "required": ["asWidget"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"class" : {}, "instance" : {"asWidget" : "TB 4/27/2018 11:54"}}
json_instruct
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"asWidget": {"type": "string"}}, "required": ["asWidget"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "SAHITHYAN", "frequency" : 0, "gender" : "female"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "170401030104", "variable1" : 0.4834, "variable2" : 0.5706, "variable3" : "B"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "status": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "type", "symbol", "decimals", "website", "description", "explorer", "status", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Canary Swap Token", "type" : "BEP20", "symbol" : "CANA", "decimals" : 18, "website" : "https://www.canaryswap.finance/", "description" : "CanarySwap is an incredibly promising project, goal achieving success on the Binance Smart Chain. Our aim is to maximize your investment with yield farming mechanism that provides sustainable and profitable yields combined with transparent security features.", "explorer" : "https://bscscan.com/token/0x2bD4c517B0F8569A151cba955B5bA50286B49483", "status" : "active", "id" : "0x2bD4c517B0F8569A151cba955B5bA50286B49483"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "status": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "type", "symbol", "decimals", "website", "description", "explorer", "status", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"interestOption": {"type": "string"}}, "required": ["interestOption"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"interestOption" : "Family Policy"}, {"interestOption" : "Family Law"}, {"interestOption" : "Family Medicine"}, {"interestOption" : "Family Finance"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"interestOption": {"type": "string"}}, "required": ["interestOption"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["310109009000", "\u6b27\u9633\u8def\u8857\u9053", "4", "1"], ["310109010000", "\u66f2\u9633\u8def\u8857\u9053", "4", "1"], ["310109011000", "\u5e7f\u4e2d\u8def\u8857\u9053", "4", "1"], ["310109014000", "\u5609\u5174\u8def\u8857\u9053", "4", "1"], ["310109016000", "\u51c9\u57ce\u65b0\u6751\u8857\u9053", "4", "1"], ["310109017000", "\u56db\u5ddd\u5317\u8def\u8857\u9053", "4", "1"], ["310109018000", "\u5317\u5916\u6ee9\u8857\u9053", "4", "1"], ["310109019000", "\u6c5f\u6e7e\u9547\u8857\u9053", "4", "1"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}, "t": {"type": "array", "items": {"type": "integer"}}, "v": {"type": "array", "items": {"type": "string"}}}, "required": ["x", "y", "t", "v"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"x" : "178", "y" : "214", "t" : [7, 1395, 1398, 1403, 1407, 2470, 1419, 1424, 2541, 1442, 2540, 2498, 152, 941, 944, 2512, 2513, 272, 322, 2206, 1264, 1268, 1271, 1750, 2556, 2380, 2623, 597, 1864, 1001, 2412, 642, 53, 377, 1491, 2324, 112, 1404, 126, 217, 957, 2363, 1676, 2283, 909, 2413], "v" : ["Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "No Ticket Type", "Moving", "Moving", "Moving"]}, {"x" : "241", "y" : "5", "t" : [1367, 627, 2454, 186, 1107, 262, 2140, 1687, 2277, 1680, 787, 1249, 714, 384, 1979, 298, 2488, 184, 774, 788, 1275, 2606, 605, 1614, 1217, 437, 839, 1793, 930, 1645, 68, 1999], "v" : ["Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving"]}, {"x" : "61", "y" : "107", "t" : [987, 992, 1681, 2310, 2376, 2612, 2085, 2351], "v" : ["Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving"]}, {"x" : "155", "y" : "5", "t" : [1146, 1388, 69], "v" : ["Moving", "Moving", "Moving"]}, {"x" : "156", "y" : "137", "t" : [1746], "v" : ["Moving"]}, {"x" : "196", "y" : "115", "t" : [2482, 1135], "v" : ["Moving", "Moving"]}, {"x" : "47", "y" : "81", "t" : [265], "v" : ["Moving"]}, {"x" : "47", "y" : "130", "t" : [2258], "v" : ["Moving"]}, {"x" : "123", "y" : "112", "t" : [484], "v" : ["Mover Void"]}, {"x" : "63", "y" : "14", "t" : [1327], "v" : ["Moving"]}, {"x" : "101", "y" : "134", "t" : [1474], "v" : ["Moving"]}, {"x" : "180", "y" : "161", "t" : [1282], "v" : ["Moving"]}, {"x" : "47", "y" : "5", "t" : [214], "v" : ["Moving"]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}, "t": {"type": "array", "items": {"type": "integer"}}, "v": {"type": "array", "items": {"type": "string"}}}, "required": ["x", "y", "t", "v"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "gitHead": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "_id": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "_shasum": {"type": "string"}, "_from": {"type": "string"}, "_npmVersion": {"type": "string"}, "_nodeVersion": {"type": "string"}, "_npmUser": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "dist": {"type": "object", "properties": {"shasum": {"type": "string"}, "tarball": {"type": "string"}}, "required": ["shasum", "tarball"]}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "directories": {"type": "object", "properties": {}, "required": []}, "_resolved": {"type": "string"}, "readme": {"type": "string"}}, "required": ["name", "description", "version", "author", "contributors", "license", "repository", "gitHead", "bugs", "homepage", "_id", "scripts", "_shasum", "_from", "_npmVersion", "_nodeVersion", "_npmUser", "dist", "maintainers", "directories", "_resolved", "readme"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "spdx-exceptions", "description" : "list of SPDX standard license exceptions", "version" : "1.0.4", "author" : {"name" : "The Linux Foundation"}, "contributors" : [{"name" : "Kyle E. Mitchell", "email" : "kyle@kemitchell.com", "url" : "https://kemitchell.com/"}], "license" : "CC-BY-3.0", "repository" : {"type" : "git", "url" : "git+https://github.com/kemitchell/spdx-exceptions.json.git"}, "gitHead" : "770316d6c946417ab6efa8533b82d0b61779092b", "bugs" : {"url" : "https://github.com/kemitchell/spdx-exceptions.json/issues"}, "homepage" : "https://github.com/kemitchell/spdx-exceptions.json#readme", "_id" : "spdx-exceptions@1.0.4", "scripts" : {}, "_shasum" : "220b84239119ae9045a892db81a83f4ce16f80fd", "_from" : "spdx-exceptions@>=1.0.4 <2.0.0", "_npmVersion" : "3.3.6", "_nodeVersion" : "5.0.0", "_npmUser" : {"name" : "kemitchell", "email" : "kyle@kemitchell.com"}, "dist" : {"shasum" : "220b84239119ae9045a892db81a83f4ce16f80fd", "tarball" : "http://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-1.0.4.tgz"}, "maintainers" : [{"name" : "kemitchell", "email" : "kyle@kemitchell.com"}], "directories" : {}, "_resolved" : "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-1.0.4.tgz", "readme" : "ERROR: No README data found!"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "gitHead": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "_id": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "_shasum": {"type": "string"}, "_from": {"type": "string"}, "_npmVersion": {"type": "string"}, "_nodeVersion": {"type": "string"}, "_npmUser": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "dist": {"type": "object", "properties": {"shasum": {"type": "string"}, "tarball": {"type": "string"}}, "required": ["shasum", "tarball"]}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "directories": {"type": "object", "properties": {}, "required": []}, "_resolved": {"type": "string"}, "readme": {"type": "string"}}, "required": ["name", "description", "version", "author", "contributors", "license", "repository", "gitHead", "bugs", "homepage", "_id", "scripts", "_shasum", "_from", "_npmVersion", "_nodeVersion", "_npmUser", "dist", "maintainers", "directories", "_resolved", "readme"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"TechnlogiesTitle": {"type": "string"}, "TechnlogiesDescription": {"type": "string"}, "OurTechnologies": {"type": "array", "items": {"type": "object", "properties": {"TechnologyTitle": {"type": "string"}, "TechnologyDescirption": {"type": "string"}, "TechnologyImage": {"type": "string"}, "Order": {"type": "string"}}, "required": ["TechnologyTitle", "TechnologyDescirption", "TechnologyImage", "Order"]}}}, "required": ["TechnlogiesTitle", "TechnlogiesDescription", "OurTechnologies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"TechnlogiesTitle" : "We are experts in the following technologies", "TechnlogiesDescription" : "Digital transformation (Dx) is the change associated with the application of digital technology in all aspects of human life.\n\n", "OurTechnologies" : [{"TechnologyTitle" : "WEB DEVELOPMENT", "TechnologyDescirption" : "HTML 4/5, CSS, Bootstrap, Javascript, Jquery, iOS, Android, AngularJS, BackboneJS, Gulp, Grunt, Bower, ReactJS, Photoshop, Sktech, Dart, Flutter", "TechnologyImage" : "/img/img-digital-transformation-1-.png", "Order" : "second"}, {"TechnologyTitle" : "BACKEND DEVELOPMENT", "TechnologyDescirption" : "PHP, ASP.NET C#, Java, Node JS, Restful API\n\n", "TechnologyImage" : "/img/img-cloud-1-.png", "Order" : "third"}, {"TechnologyTitle" : "FRAMEWORKS", "TechnologyDescirption" : "Bootstrap, Symfony, Loopback, ionic, Phonegap, Code Igniter, CakePHP, Zend, Laravel, COBOL\n\n", "TechnologyImage" : "/img/img-user-group-1-.png", "Order" : "first"}, {"TechnologyTitle" : "CMS APPLICATIONS", "TechnologyDescirption" : "Wordpress, Drupal, Kentico, Ghost, Magento, Prestashop\n\n", "TechnologyImage" : "/img/img-digital-transformation-1-.png", "Order" : "second"}, {"TechnologyTitle" : "DATABASES", "TechnologyDescirption" : "MySQL, MS SQL Server, SQL / T-SQL, Stored Procedures, MongoDB\n\n", "TechnologyImage" : "/img/img-cloud-1-.png", "Order" : "third"}, {"TechnologyTitle" : "PROJECT MANAGEMENT", "TechnologyDescirption" : "Project Management, Agile/Scrum, JIRA, Bitbucket, Gitlab, Github\n\n", "TechnologyImage" : "/img/img-user-group-1-.png", "Order" : "first"}]}
json_instruct
{"type": "object", "properties": {"TechnlogiesTitle": {"type": "string"}, "TechnlogiesDescription": {"type": "string"}, "OurTechnologies": {"type": "array", "items": {"type": "object", "properties": {"TechnologyTitle": {"type": "string"}, "TechnologyDescirption": {"type": "string"}, "TechnologyImage": {"type": "string"}, "Order": {"type": "string"}}, "required": ["TechnologyTitle", "TechnologyDescirption", "TechnologyImage", "Order"]}}}, "required": ["TechnlogiesTitle", "TechnlogiesDescription", "OurTechnologies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"relationships": {"type": "array", "items": {"type": "object", "properties": {"relationshipId": {"type": "integer"}, "relationshipName": {"type": "string"}, "relationshipNameCapitalized": {"type": "string"}, "relationshipFieldName": {"type": "string"}, "otherEntityName": {"type": "string"}, "relationshipType": {"type": "string"}, "otherEntityNameCapitalized": {"type": "string"}, "otherEntityField": {"type": "string"}}, "required": ["relationshipId", "relationshipName", "relationshipNameCapitalized", "relationshipFieldName", "otherEntityName", "relationshipType", "otherEntityNameCapitalized", "otherEntityField"]}}, "fields": {"type": "array", "items": {"type": "object", "properties": {"fieldId": {"type": "integer"}, "fieldName": {"type": "string"}, "fieldType": {"type": "string"}, "fieldNameCapitalized": {"type": "string"}, "fieldNameUnderscored": {"type": "string"}, "fieldValidate": {"type": "boolean"}, "fieldValidateRules": {"type": "array", "items": {"type": "string"}}}, "required": ["fieldId", "fieldName", "fieldType", "fieldNameCapitalized", "fieldNameUnderscored", "fieldValidate", "fieldValidateRules"]}}, "fieldsContainOwnerManyToMany": {"type": "boolean"}, "fieldsContainOneToMany": {"type": "boolean"}, "fieldsContainLocalDate": {"type": "boolean"}, "fieldsContainCustomTime": {"type": "boolean"}, "fieldsContainBigDecimal": {"type": "boolean"}, "fieldsContainDateTime": {"type": "boolean"}, "fieldsContainDate": {"type": "boolean"}, "changelogDate": {"type": "string"}, "pagination": {"type": "string"}, "validation": {"type": "boolean"}}, "required": ["relationships", "fields", "fieldsContainOwnerManyToMany", "fieldsContainOneToMany", "fieldsContainLocalDate", "fieldsContainCustomTime", "fieldsContainBigDecimal", "fieldsContainDateTime", "fieldsContainDate", "changelogDate", "pagination", "validation"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"relationships" : [{"relationshipId" : 1, "relationshipName" : "Employer", "relationshipNameCapitalized" : "Employer", "relationshipFieldName" : "employer", "otherEntityName" : "employer", "relationshipType" : "many-to-one", "otherEntityNameCapitalized" : "Employer", "otherEntityField" : "id"}], "fields" : [{"fieldId" : 1, "fieldName" : "legacyCaseNumber", "fieldType" : "String", "fieldNameCapitalized" : "LegacyCaseNumber", "fieldNameUnderscored" : "legacy_case_number", "fieldValidate" : true, "fieldValidateRules" : ["required"]}], "fieldsContainOwnerManyToMany" : false, "fieldsContainOneToMany" : false, "fieldsContainLocalDate" : false, "fieldsContainCustomTime" : false, "fieldsContainBigDecimal" : false, "fieldsContainDateTime" : false, "fieldsContainDate" : false, "changelogDate" : "20150327212440", "pagination" : "pagination", "validation" : true}
json_instruct
{"type": "object", "properties": {"relationships": {"type": "array", "items": {"type": "object", "properties": {"relationshipId": {"type": "integer"}, "relationshipName": {"type": "string"}, "relationshipNameCapitalized": {"type": "string"}, "relationshipFieldName": {"type": "string"}, "otherEntityName": {"type": "string"}, "relationshipType": {"type": "string"}, "otherEntityNameCapitalized": {"type": "string"}, "otherEntityField": {"type": "string"}}, "required": ["relationshipId", "relationshipName", "relationshipNameCapitalized", "relationshipFieldName", "otherEntityName", "relationshipType", "otherEntityNameCapitalized", "otherEntityField"]}}, "fields": {"type": "array", "items": {"type": "object", "properties": {"fieldId": {"type": "integer"}, "fieldName": {"type": "string"}, "fieldType": {"type": "string"}, "fieldNameCapitalized": {"type": "string"}, "fieldNameUnderscored": {"type": "string"}, "fieldValidate": {"type": "boolean"}, "fieldValidateRules": {"type": "array", "items": {"type": "string"}}}, "required": ["fieldId", "fieldName", "fieldType", "fieldNameCapitalized", "fieldNameUnderscored", "fieldValidate", "fieldValidateRules"]}}, "fieldsContainOwnerManyToMany": {"type": "boolean"}, "fieldsContainOneToMany": {"type": "boolean"}, "fieldsContainLocalDate": {"type": "boolean"}, "fieldsContainCustomTime": {"type": "boolean"}, "fieldsContainBigDecimal": {"type": "boolean"}, "fieldsContainDateTime": {"type": "boolean"}, "fieldsContainDate": {"type": "boolean"}, "changelogDate": {"type": "string"}, "pagination": {"type": "string"}, "validation": {"type": "boolean"}}, "required": ["relationships", "fields", "fieldsContainOwnerManyToMany", "fieldsContainOneToMany", "fieldsContainLocalDate", "fieldsContainCustomTime", "fieldsContainBigDecimal", "fieldsContainDateTime", "fieldsContainDate", "changelogDate", "pagination", "validation"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "extraSearchTerms": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "string"}}, "code": {"type": "string"}, "location": {"type": "string"}}, "required": ["uuid", "name", "description", "extraSearchTerms", "tags", "code", "location"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"uuid" : "eb89ac7e-f6f6-3bc0-9b08-2d82b8b7a4f8", "name" : "fall-through", "description" : "$FALL-THROUGH$ marker", "extraSearchTerms" : ["switch"], "tags" : ["java", "comment"], "code" : "//$$FALL-THROUGH$$", "location" : "JAVA_STATEMENTS"}
json_instruct
{"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "extraSearchTerms": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "string"}}, "code": {"type": "string"}, "location": {"type": "string"}}, "required": ["uuid", "name", "description", "extraSearchTerms", "tags", "code", "location"], "$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"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "devDependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "browser-sync": {"type": "string"}, "css-mqpacker": {"type": "string"}, "doiuse": {"type": "string"}, "es6-promise": {"type": "string"}, "gulp": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-csso": {"type": "string"}, "gulp-jscs": {"type": "string"}, "gulp-jshint": {"type": "string"}, "gulp-plumber": {"type": "string"}, "gulp-postcss": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-sass-lint": {"type": "string"}, "gulp-uglify": {"type": "string"}, "gulp-watch": {"type": "string"}, "jshint": {"type": "string"}, "jshint-stylish": {"type": "string"}, "run-sequence": {"type": "string"}}, "required": ["autoprefixer", "browser-sync", "css-mqpacker", "doiuse", "es6-promise", "gulp", "gulp-concat", "gulp-csso", "gulp-jscs", "gulp-jshint", "gulp-plumber", "gulp-postcss", "gulp-rename", "gulp-sass", "gulp-sass-lint", "gulp-uglify", "gulp-watch", "jshint", "jshint-stylish", "run-sequence"]}}, "required": ["name", "version", "description", "author", "license", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "wp-theme-starter-kit", "version" : "1.0.0", "description" : "Project starter kit for WordPress theme development", "author" : {"name" : "Mignon Style", "url" : "http://mignonstyle.com"}, "license" : "GPLv2", "scripts" : {"build" : "./node_modules/gulp/bin/gulp.js"}, "devDependencies" : {"autoprefixer" : "^6.5.3", "browser-sync" : "^2.18.2", "css-mqpacker" : "^5.0.1", "doiuse" : "^2.5.0", "es6-promise" : "^4.0.5", "gulp" : "^3.9.1", "gulp-concat" : "^2.6.1", "gulp-csso" : "^2.0.0", "gulp-jscs" : "^4.0.0", "gulp-jshint" : "^2.0.4", "gulp-plumber" : "^1.1.0", "gulp-postcss" : "^6.2.0", "gulp-rename" : "^1.2.2", "gulp-sass" : "^2.3.2", "gulp-sass-lint" : "^1.3.2", "gulp-uglify" : "^2.0.0", "gulp-watch" : "^4.3.11", "jshint" : "^2.9.4", "jshint-stylish" : "^2.2.1", "run-sequence" : "^1.2.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "devDependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "browser-sync": {"type": "string"}, "css-mqpacker": {"type": "string"}, "doiuse": {"type": "string"}, "es6-promise": {"type": "string"}, "gulp": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-csso": {"type": "string"}, "gulp-jscs": {"type": "string"}, "gulp-jshint": {"type": "string"}, "gulp-plumber": {"type": "string"}, "gulp-postcss": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-sass-lint": {"type": "string"}, "gulp-uglify": {"type": "string"}, "gulp-watch": {"type": "string"}, "jshint": {"type": "string"}, "jshint-stylish": {"type": "string"}, "run-sequence": {"type": "string"}}, "required": ["autoprefixer", "browser-sync", "css-mqpacker", "doiuse", "es6-promise", "gulp", "gulp-concat", "gulp-csso", "gulp-jscs", "gulp-jshint", "gulp-plumber", "gulp-postcss", "gulp-rename", "gulp-sass", "gulp-sass-lint", "gulp-uglify", "gulp-watch", "jshint", "jshint-stylish", "run-sequence"]}}, "required": ["name", "version", "description", "author", "license", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "algorithm": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "title": {"type": "string"}, "subtitle": {"type": "string"}, "notes": {"type": "string"}, "last_modified": {"type": "string"}, "definition": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["key", "name", "type"]}}, "rows": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["id", "algorithm", "version", "name", "title", "subtitle", "notes", "last_modified", "definition", "rows"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "size_extension_mets_ssf1_ajcc6_xjp_m", "algorithm" : "cs", "version" : "02.05.50", "name" : "Size Extension Mets SSF1 AJCC6 - M", "title" : "Size Extension Mets SSF1 AJCC 6 Table - M", "subtitle" : "CS SSF1 010 or 040 with CS Mets at DX and CS Tumor Size", "notes" : "**Note**: When CS Site-Specific Factor 1 is coded 010 or 040, separate tumor nodules in same lobe or unknown if in same lobe, the values of T and M for AJCC 6 staging are assigned on the basis of CS Tumor Size and CS Mets at DX as shown in this table. CS Site-Specific Factor 1 codes 010 and 040 map to T4 in AJCC 6 staging. CS Tumor Size code 998 maps to M1.", "last_modified" : "2015-05-27T16:19:51.320Z", "definition" : [{"key" : "size", "name" : "CS Tumor Size", "type" : "INPUT"}, {"key" : "mets", "name" : "CS Mets at DX", "type" : "INPUT"}, {"key" : "ajcc6_m", "name" : "AJCC 6 M", "type" : "ENDPOINT"}], "rows" : [["000-997, 999", "00,15,18,20,24", "VALUE:M0"], ["998", "00,15,18,20,24", "VALUE:M1"], ["000-997, 999", "10,39", "ERROR:"], ["998", "10,39", "ERROR:"], ["000-997, 999", "16,17,21,23,25,26,30,32,33,35-38,40-43,50-53,70,75", "VALUE:M1"], ["998", "16,17,21,23,25,26,30,32,33,35-38,40-43,50-53,70,75", "VALUE:M1"], ["000-997, 999", "99", "VALUE:MX"], ["998", "99", "VALUE:M1"]]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "algorithm": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "title": {"type": "string"}, "subtitle": {"type": "string"}, "notes": {"type": "string"}, "last_modified": {"type": "string"}, "definition": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["key", "name", "type"]}}, "rows": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["id", "algorithm", "version", "name", "title", "subtitle", "notes", "last_modified", "definition", "rows"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "knee-deep", "definition" : "1. Rising to the knees; knee-high; as, water or snow knee-deep. Grass knee-deep within a month. Milton. 2. Sunk to the knees; as, men knee-deep in water. Where knee-deep the trees were standing. Longfellow."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"control": {"type": "object", "properties": {"id": {"type": "string"}, "class": {"type": "string"}, "title": {"type": "string"}, "params": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "label": {"type": "string"}}, "required": ["id", "label"]}}, "props": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}, "links": {"type": "array", "items": {"type": "object", "properties": {"href": {"type": "string"}, "rel": {"type": "string"}}, "required": ["href", "rel"]}}, "parts": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "prose": {"type": "string"}}, "required": ["id", "name", "prose"]}}}, "required": ["id", "class", "title", "params", "props", "links", "parts"]}}, "required": ["control"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"control" : {"id" : "sr-12", "class" : "SP800-53", "title" : "Component Disposal", "params" : [{"id" : "sr-12_prm_1", "label" : "organization-defined data, documentation, tools, or system components"}, {"id" : "sr-12_prm_2", "label" : "organization-defined techniques and methods"}], "props" : [{"name" : "label", "value" : "SR-12"}, {"name" : "sort-id", "value" : "sr-12"}], "links" : [{"href" : "#mp-6", "rel" : "related"}], "parts" : [{"id" : "sr-12_smt", "name" : "statement", "prose" : "Dispose of {{ insert: param, sr-12_prm_1 }} using the following techniques and methods: {{ insert: param, sr-12_prm_2 }}."}, {"id" : "sr-12_gdn", "name" : "guidance", "prose" : "Data, documentation, tools, or system components can be disposed of at any time during the system development life cycle (not only in the disposal or retirement phase of the life cycle). For example, disposal can occur during research and development, design, prototyping, or operations/maintenance and include methods such as disk cleaning, removal of cryptographic keys, partial reuse of components. Opportunities for compromise during disposal affect physical and logical data, including system documentation in paper-based or digital files; shipping and delivery documentation; memory sticks with software code; or complete routers or servers that include permanent media, which contain sensitive or proprietary information. Additionally, proper disposal of system components helps to prevent such components from entering the gray market."}]}}
json_instruct
{"type": "object", "properties": {"control": {"type": "object", "properties": {"id": {"type": "string"}, "class": {"type": "string"}, "title": {"type": "string"}, "params": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "label": {"type": "string"}}, "required": ["id", "label"]}}, "props": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}, "links": {"type": "array", "items": {"type": "object", "properties": {"href": {"type": "string"}, "rel": {"type": "string"}}, "required": ["href", "rel"]}}, "parts": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "prose": {"type": "string"}}, "required": ["id", "name", "prose"]}}}, "required": ["id", "class", "title", "params", "props", "links", "parts"]}}, "required": ["control"], "$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"}, "dependencies": {"type": "object", "properties": {"csv": {"type": "string"}, "csv-parse": {"type": "string"}, "fs": {"type": "string"}, "stream-transform": {"type": "string"}}, "required": ["csv", "csv-parse", "fs", "stream-transform"]}}, "required": ["name", "version", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "application-name", "version" : "0.0.1", "dependencies" : {"csv" : "^1.1.0", "csv-parse" : "^1.1.7", "fs" : "0.0.1-security", "stream-transform" : "^0.1.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"csv": {"type": "string"}, "csv-parse": {"type": "string"}, "fs": {"type": "string"}, "stream-transform": {"type": "string"}}, "required": ["csv", "csv-parse", "fs", "stream-transform"]}}, "required": ["name", "version", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"jscolor.js": {"type": "string"}, "jscolor.min.js": {"type": "string"}}, "required": ["jscolor.js", "jscolor.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"jscolor.js" : "sha256-HvlqI7yHiNUtKLyNdxKvG/ZYItnwL3MvH8mMs4VECyg=", "jscolor.min.js" : "sha256-DYPrPJmcJPt3QUpTHhwCmu2feGM7STiNedxLUoWiPi8="}
json_instruct
{"type": "object", "properties": {"jscolor.js": {"type": "string"}, "jscolor.min.js": {"type": "string"}}, "required": ["jscolor.js", "jscolor.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"exec": {"type": "string"}, "watch": {"type": "array", "items": {"type": "string"}}, "ext": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "events": {"type": "object", "properties": {"restart": {"type": "string"}}, "required": ["restart"]}, "delay": {"type": "integer"}}, "required": ["exec", "watch", "ext", "ignore", "events", "delay"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"exec" : "set PORT=8080 && npx ts-node -P ./example/tsconfig.json -T ./example/server.ts", "watch" : ["./example", "./project/nodejs"], "ext" : "ts", "ignore" : ["*.d.ts"], "events" : {"restart" : "kill-port 8080 && cls"}, "delay" : 2000}
json_instruct
{"type": "object", "properties": {"exec": {"type": "string"}, "watch": {"type": "array", "items": {"type": "string"}}, "ext": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "events": {"type": "object", "properties": {"restart": {"type": "string"}}, "required": ["restart"]}, "delay": {"type": "integer"}}, "required": ["exec", "watch", "ext", "ignore", "events", "delay"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["app-front-creator", "is-domain-available"]
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"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Http\\": {"type": "string"}}, "required": ["Http\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {}, "required": []}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "license", "authors", "autoload", "require", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "skowron-line/http-response-codes", "description" : "Http Response Codes", "license" : "MIT", "authors" : [{"name" : "krzysztof skaradzinski", "email" : "wygladaszjak@gmail.com"}], "autoload" : {"psr-4" : {"Http\\" : "src/Http/"}}, "require" : {}, "keywords" : ["http", "response", "code"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Http\\": {"type": "string"}}, "required": ["Http\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {}, "required": []}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "license", "authors", "autoload", "require", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Tabucan, Cabatuan, Iloilo, Western Visayas (Region VI), PH", "locale" : "ph.western-visayas-region-vi.iloilo.cabatuan.tabucan", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "16", "region_reference" : "6", "region_name" : "Western Visayas (Region VI)", "province_id" : "36", "province_reference" : "36", "province_name" : "Iloilo", "city_id" : "1449", "city_reference" : "657", "city_name" : "Cabatuan", "barangay_id" : "7179", "barangay_reference" : "15743", "barangay_name" : "Tabucan"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[122.498299, 10.86373], [122.501137, 10.86337], [122.501694, 10.86309], [122.50222, 10.86261], [122.502678, 10.86192], [122.504089, 10.86002], [122.505096, 10.8587], [122.503159, 10.85708], [122.498016, 10.84823], [122.496918, 10.84818], [122.496361, 10.85035], [122.495667, 10.85191], [122.496277, 10.85293], [122.496147, 10.85346], [122.495483, 10.8532], [122.494591, 10.85277], [122.494087, 10.85395], [122.493843, 10.85416], [122.492706, 10.85353], [122.492073, 10.85368], [122.491524, 10.85349], [122.491318, 10.85364], [122.492943, 10.85569], [122.492104, 10.85602], [122.491982, 10.85661], [122.491409, 10.85717], [122.490921, 10.85756], [122.491028, 10.85914], [122.489609, 10.85954], [122.491173, 10.86], [122.493347, 10.85928], [122.497162, 10.86386], [122.498299, 10.86373]]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"authority": {"type": "string"}, "mintWrapper": {"type": "string"}, "quarries": {"type": "array", "items": {"type": "object", "properties": {"cached": {"type": "object", "properties": {"famineTs": {"type": "string"}, "index": {"type": "integer"}, "lastUpdateTs": {"type": "string"}, "numMiners": {"type": "string"}, "rewardsPerTokenStored": {"type": "string"}, "rewardsShare": {"type": "string"}, "totalTokensDeposited": {"type": "string"}}, "required": ["famineTs", "index", "lastUpdateTs", "numMiners", "rewardsPerTokenStored", "rewardsShare", "totalTokensDeposited"]}, "index": {"type": "integer"}, "quarry": {"type": "string"}, "slug": {"type": "string"}, "stakedToken": {"type": "object", "properties": {"decimals": {"type": "integer"}, "mint": {"type": "string"}}, "required": ["decimals", "mint"]}}, "required": ["cached", "index", "quarry", "slug", "stakedToken"]}}, "rewardsToken": {"type": "object", "properties": {"decimals": {"type": "integer"}, "mint": {"type": "string"}}, "required": ["decimals", "mint"]}, "rewardsTokenInfo": {"type": "object", "properties": {"address": {"type": "string"}, "chainId": {"type": "integer"}, "decimals": {"type": "integer"}, "name": {"type": "string"}, "symbol": {"type": "string"}}, "required": ["address", "chainId", "decimals", "name", "symbol"]}}, "required": ["authority", "mintWrapper", "quarries", "rewardsToken", "rewardsTokenInfo"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"authority" : "BoegsUx27rumkfTnU7cKcJFZ3jGE4Q8K996cXVXP6stn", "mintWrapper" : "3Nr9RxjW3FWhdZ9fH83i63i9aFjsREMJLC2dfi1XYA3G", "quarries" : [{"cached" : {"famineTs" : "9223372036854775807", "index" : 0, "lastUpdateTs" : "0", "numMiners" : "2", "rewardsPerTokenStored" : "0", "rewardsShare" : "0", "totalTokensDeposited" : "0"}, "index" : 0, "quarry" : "BZmYnGL8LjwU13mZ7m58RYR1te9cisbEPvtJo2ApC1Le", "slug" : "dd5ih", "stakedToken" : {"decimals" : 6, "mint" : "Dd5ihEkwrj3KigcG8qLqEYzanRV4SeVqGaiMR1oWjDeN"}}, {"cached" : {"famineTs" : "9223372036854775807", "index" : 1, "lastUpdateTs" : "0", "numMiners" : "2", "rewardsPerTokenStored" : "0", "rewardsShare" : "0", "totalTokensDeposited" : "0"}, "index" : 1, "quarry" : "FoHh7A2BvRDDTKUGuP6sBj9RQbXfnGHk5MW7yzvMqinU", "slug" : "ev8lr", "stakedToken" : {"decimals" : 6, "mint" : "EV8LrcfeCdx1RHZcDfymUXkuHkDA3jpoFiaD69a3EwBx"}}], "rewardsToken" : {"decimals" : 6, "mint" : "5ueXQeGzmVZv5zybPpqH1oV2tNabJCBkMkYvZd5V4ocN"}, "rewardsTokenInfo" : {"address" : "5ueXQeGzmVZv5zybPpqH1oV2tNabJCBkMkYvZd5V4ocN", "chainId" : 103, "decimals" : 6, "name" : "Token 5ueX", "symbol" : "5ueXQ"}}
json_instruct
{"type": "object", "properties": {"authority": {"type": "string"}, "mintWrapper": {"type": "string"}, "quarries": {"type": "array", "items": {"type": "object", "properties": {"cached": {"type": "object", "properties": {"famineTs": {"type": "string"}, "index": {"type": "integer"}, "lastUpdateTs": {"type": "string"}, "numMiners": {"type": "string"}, "rewardsPerTokenStored": {"type": "string"}, "rewardsShare": {"type": "string"}, "totalTokensDeposited": {"type": "string"}}, "required": ["famineTs", "index", "lastUpdateTs", "numMiners", "rewardsPerTokenStored", "rewardsShare", "totalTokensDeposited"]}, "index": {"type": "integer"}, "quarry": {"type": "string"}, "slug": {"type": "string"}, "stakedToken": {"type": "object", "properties": {"decimals": {"type": "integer"}, "mint": {"type": "string"}}, "required": ["decimals", "mint"]}}, "required": ["cached", "index", "quarry", "slug", "stakedToken"]}}, "rewardsToken": {"type": "object", "properties": {"decimals": {"type": "integer"}, "mint": {"type": "string"}}, "required": ["decimals", "mint"]}, "rewardsTokenInfo": {"type": "object", "properties": {"address": {"type": "string"}, "chainId": {"type": "integer"}, "decimals": {"type": "integer"}, "name": {"type": "string"}, "symbol": {"type": "string"}}, "required": ["address", "chainId", "decimals", "name", "symbol"]}}, "required": ["authority", "mintWrapper", "quarries", "rewardsToken", "rewardsTokenInfo"], "$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": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "431222224214", "text" : "\u5e38\u5fb7\u6e56\u6751\u6751\u59d4\u4f1a"}, {"id" : "431222224215", "text" : "\u9ad8\u576a\u6751\u6751\u59d4\u4f1a"}, {"id" : "431222224216", "text" : "\u9ec4\u814a\u6eaa\u6751\u6751\u59d4\u4f1a"}, {"id" : "431222224217", "text" : "\u5e99\u738b\u5c71\u6751\u6751\u59d4\u4f1a"}, {"id" : "431222224218", "text" : "\u6960\u6728\u94fa\u6751\u6751\u59d4\u4f1a"}, {"id" : "431222224219", "text" : "\u6eb6\u6eaa\u6751\u6751\u59d4\u4f1a"}, {"id" : "431222224220", "text" : "\u4e24\u6cb3\u53e3\u6751\u6751\u59d4\u4f1a"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"port-aux-francais": {"type": "object", "properties": {"city": {"type": "string"}, "accentcity": {"type": "string"}, "region": {"type": "string"}, "population": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}}, "required": ["city", "accentcity", "region", "population", "latitude", "longitude"]}}, "required": ["port-aux-francais"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"port-aux-francais" : {"city" : "port-aux-francais", "accentcity" : "Port-aux-Fran\u00e7ais", "region" : "00", "population" : "45", "latitude" : "-49.35", "longitude" : "70.2166667"}}
json_instruct
{"type": "object", "properties": {"port-aux-francais": {"type": "object", "properties": {"city": {"type": "string"}, "accentcity": {"type": "string"}, "region": {"type": "string"}, "population": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}}, "required": ["city", "accentcity", "region", "population", "latitude", "longitude"]}}, "required": ["port-aux-francais"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "prettyplanks:block/green_pretty_slab"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "toolserver-status-short-ok": {"type": "string"}, "toolserver-status-short-info": {"type": "string"}, "toolserver-status-short-warn": {"type": "string"}, "toolserver-status-short-down": {"type": "string"}, "toolserver-status-short-erro": {"type": "string"}, "toolserver-status-short-unknown": {"type": "string"}, "toolserver-status-short-missing": {"type": "string"}}, "required": ["@metadata", "toolserver-status-short-ok", "toolserver-status-short-info", "toolserver-status-short-warn", "toolserver-status-short-down", "toolserver-status-short-erro", "toolserver-status-short-unknown", "toolserver-status-short-missing"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"@metadata" : {"authors" : ["Olli"]}, "toolserver-status-short-ok" : "$1: Ok", "toolserver-status-short-info" : "$1: Tiedot", "toolserver-status-short-warn" : "$1: Vaara", "toolserver-status-short-down" : "$1: Alas", "toolserver-status-short-erro" : "$1: Virhe", "toolserver-status-short-unknown" : "$1: Tuntematon", "toolserver-status-short-missing" : "$1: Puuttuu"}
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "toolserver-status-short-ok": {"type": "string"}, "toolserver-status-short-info": {"type": "string"}, "toolserver-status-short-warn": {"type": "string"}, "toolserver-status-short-down": {"type": "string"}, "toolserver-status-short-erro": {"type": "string"}, "toolserver-status-short-unknown": {"type": "string"}, "toolserver-status-short-missing": {"type": "string"}}, "required": ["@metadata", "toolserver-status-short-ok", "toolserver-status-short-info", "toolserver-status-short-warn", "toolserver-status-short-down", "toolserver-status-short-erro", "toolserver-status-short-unknown", "toolserver-status-short-missing"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "is_suicidal_vulnerable": {"type": "boolean"}}, "required": ["is_lock_vulnerable", "is_prodigal_vulnerable", "is_suicidal_vulnerable"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x8716fc5da009d3a208f0178b637a50f4ef42400f", "tool" : "maian", "start" : 1565269646.0666473, "end" : 1565269886.1102057, "duration" : 240.04355835914612, "analysis" : {"is_lock_vulnerable" : false, "is_prodigal_vulnerable" : false, "is_suicidal_vulnerable" : false}}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "is_suicidal_vulnerable": {"type": "boolean"}}, "required": ["is_lock_vulnerable", "is_prodigal_vulnerable", "is_suicidal_vulnerable"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-vgv5-c6v7-9jrc", "modified" : "2022-05-01T07:00:26Z", "published" : "2022-05-01T07:00:26Z", "aliases" : ["CVE-2006-2563"], "details" : "The cURL library (libcurl) in PHP 4.4.2 and 5.1.4 allows attackers to bypass safe mode and read files via a file:// request containing null characters.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2006-2563"}, {"type" : "WEB", "url" : "https://exchange.xforce.ibmcloud.com/vulnerabilities/26764"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/20337"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/21050"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/21847"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/22039"}, {"type" : "WEB", "url" : "http://securityreason.com/achievement_securityalert/39"}, {"type" : "WEB", "url" : "http://securityreason.com/securityalert/959"}, {"type" : "WEB", "url" : "http://securitytracker.com/id?1016175"}, {"type" : "WEB", "url" : "http://www.mandriva.com/security/advisories?name=MDKSA-2006:122"}, {"type" : "WEB", "url" : "http://www.novell.com/linux/security/advisories/2006_22_sr.html"}, {"type" : "WEB", "url" : "http://www.novell.com/linux/security/advisories/2006_52_php.html"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/18116"}, {"type" : "WEB", "url" : "http://www.vupen.com/english/advisories/2006/2055"}], "database_specific" : {"cwe_ids" : [], "severity" : "LOW", "github_reviewed" : false}}
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["0000-0002-2904-3026", "0000-0002-3641-0584", "0000-0002-5452-0322", "0000-0002-7578-7552", "0000-0003-1274-769X", "0000-0002-6851-2219", "0000-0002-7721-8708", "0000-0002-9574-1308", "0000-0002-7658-4685", "0000-0001-6654-1051", "0000-0002-3663-9821", "0000-0003-1881-3328", "0000-0001-6264-3632"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : {"0" : {"m1" : "\u0631\u0648\u0632 \u0634\u0627\u062f\u06cc\u0633\u062a \u063a\u0645 \u0686\u0631\u0627 \u0628\u0627\u06cc\u062f \u062e\u0648\u0631\u062f", "m2" : "\u0627\u0645\u0631\u0648\u0632 \u0645\u06cc \u0627\u0632 \u062c\u0627\u0645 \u0648\u0641\u0627 \u0628\u0627\u06cc\u062f \u062e\u0648\u0631\u062f"}, "1" : {"m1" : "\u0686\u0646\u062f \u0627\u0632 \u06a9\u0641 \u062e\u0628\u0627\u0632 \u0648 \u0633\u0641\u0627 \u0631\u0632\u0642 \u062e\u0648\u0631\u06cc\u0645", "m2" : "\u06cc\u06a9\u0686\u0646\u062f \u0647\u0645 \u0627\u0632 \u06a9\u0641 \u062e\u062f\u0627 \u0628\u0627\u06cc\u062f \u062e\u0648\u0631\u062f"}}}
json_instruct
{"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"inputs": {"type": "array", "items": {"type": "string"}}, "outputs": {"type": "array", "items": {"type": "string"}}}, "required": ["inputs", "outputs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"inputs" : ["10\n", "12\n", "1\n", "2\n", "4\n", "8\n", "3\n", "31\n", "97\n", "1000000000000\n", "15\n", "894\n", "271\n", "2457\n", "2829\n", "5000\n", "20\n", "68\n", "3096\n", "1024\n", "1048576\n", "413933789280\n", "817634153013\n", "56517269141\n", "30707328551\n", "279564127218\n", "491159577042\n", "734337660466\n", "808453785117\n", "55926835837\n", "294809951965\n", "537988035389\n", "822722434952\n", "699511759613\n", "942689843037\n", "663634158717\n", "213612977250\n", "999999999989\n", "999999999988\n", "87178291200\n", "927668721948\n", "562436815639\n", "302981118597\n", "5\n", "9\n", "36\n", "2231\n", "27648\n", "40320\n", "648000\n", "999966000289\n", "999985999949\n", "991921850317\n"], "outputs" : ["10\n", "6\n", "1\n", "2\n", "2\n", "2\n", "3\n", "31\n", "97\n", "10\n", "15\n", "894\n", "271\n", "273\n", "2829\n", "10\n", "10\n", "34\n", "258\n", "2\n", "2\n", "25870861830\n", "817634153013\n", "56517269141\n", "30707328551\n", "10354226934\n", "18191095446\n", "734337660466\n", "808453785117\n", "55926835837\n", "294809951965\n", "76855433627\n", "205680608738\n", "699511759613\n", "104743315893\n", "663634158717\n", "11730\n", "999999999989\n", "499999999994\n", "30030\n", "463834360974\n", "37927\n", "35853\n", "5\n", "3\n", "6\n", "2231\n", "6\n", "210\n", "30\n", "999983\n", "999985999949\n", "9973\n"]}
json_instruct
{"type": "object", "properties": {"inputs": {"type": "array", "items": {"type": "string"}}, "outputs": {"type": "array", "items": {"type": "string"}}}, "required": ["inputs", "outputs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "object", "properties": {"Erik Kerber": {"type": "string"}}, "required": ["Erik Kerber"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "array", "items": {"type": "string"}}, "public_header_files": {"type": "array", "items": {"type": "string"}}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "ios": {"type": "object", "properties": {"frameworks": {"type": "string"}}, "required": ["frameworks"]}, "requires_arc": {"type": "boolean"}, "prefix_header_file": {"type": "string"}, "preserve_paths": {"type": "string"}, "vendored_frameworks": {"type": "string"}}, "required": ["name", "version", "license", "summary", "homepage", "authors", "source", "source_files", "public_header_files", "platforms", "ios", "requires_arc", "prefix_header_file", "preserve_paths", "vendored_frameworks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "BuddySDK", "version" : "3.0.3", "license" : {"type" : "Apache 2.0"}, "summary" : "iOS SDK for the Buddy Platform.", "homepage" : "http://www.buddy.com", "authors" : {"Erik Kerber" : "erik@buddy.com"}, "source" : {"git" : "https://github.com/BuddyPlatform/Buddy-iOS-SDK.git", "tag" : "v3.0.3"}, "source_files" : ["Src/Lib/BuddySDK/*.{h,m}", "Src/Lib/BuddySDK/{BaseObjects,BPObjects,Models,Service,Categories}/*.{h,m}", "Src/Lib/BuddySDK/Vendor/{JAGPropertyConverter,ObjectiveSugar,AFNetworking}/**/*.{h,m}"], "public_header_files" : ["Src/Lib/BuddySDK/*.h", "Src/Lib/BuddySDK/{BaseObjects,Models,Categories,Service}/*.{h}"], "platforms" : {"ios" : "6.0"}, "ios" : {"frameworks" : "CoreLocation"}, "requires_arc" : true, "prefix_header_file" : "Src/Lib/BuddySDK/BuddySDK-Prefix.pch", "preserve_paths" : "Src/Lib/BuddySDK/Vendor/CrashReporter.framework", "vendored_frameworks" : "Src/Lib/BuddySDK/Vendor/CrashReporter.framework"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "object", "properties": {"Erik Kerber": {"type": "string"}}, "required": ["Erik Kerber"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "array", "items": {"type": "string"}}, "public_header_files": {"type": "array", "items": {"type": "string"}}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "ios": {"type": "object", "properties": {"frameworks": {"type": "string"}}, "required": ["frameworks"]}, "requires_arc": {"type": "boolean"}, "prefix_header_file": {"type": "string"}, "preserve_paths": {"type": "string"}, "vendored_frameworks": {"type": "string"}}, "required": ["name", "version", "license", "summary", "homepage", "authors", "source", "source_files", "public_header_files", "platforms", "ios", "requires_arc", "prefix_header_file", "preserve_paths", "vendored_frameworks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"project_info": {"type": "object", "properties": {"project_number": {"type": "string"}, "project_id": {"type": "string"}, "storage_bucket": {"type": "string"}}, "required": ["project_number", "project_id", "storage_bucket"]}, "client": {"type": "array", "items": {"type": "object", "properties": {"client_info": {"type": "object", "properties": {"mobilesdk_app_id": {"type": "string"}, "android_client_info": {"type": "object", "properties": {"package_name": {"type": "string"}}, "required": ["package_name"]}}, "required": ["mobilesdk_app_id", "android_client_info"]}, "oauth_client": {"type": "array", "items": {"type": "object", "properties": {"client_id": {"type": "string"}, "client_type": {"type": "integer"}}, "required": ["client_id", "client_type"]}}, "api_key": {"type": "array", "items": {"type": "object", "properties": {"current_key": {"type": "string"}}, "required": ["current_key"]}}, "services": {"type": "object", "properties": {"appinvite_service": {"type": "object", "properties": {"other_platform_oauth_client": {"type": "array", "items": {"type": "object", "properties": {"client_id": {"type": "string"}, "client_type": {"type": "integer"}}, "required": ["client_id", "client_type"]}}}, "required": ["other_platform_oauth_client"]}}, "required": ["appinvite_service"]}}, "required": ["client_info", "oauth_client", "api_key", "services"]}}, "configuration_version": {"type": "string"}}, "required": ["project_info", "client", "configuration_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"project_info" : {"project_number" : "5087470372", "project_id" : "birdy-golf", "storage_bucket" : "birdy-golf.appspot.com"}, "client" : [{"client_info" : {"mobilesdk_app_id" : "1:5087470372:android:9c68767e80c6c73a6509b1", "android_client_info" : {"package_name" : "no.birdygolf.gruppe19"}}, "oauth_client" : [{"client_id" : "5087470372-6f9tjgjr5m3uck0g2h1q1jfd5fnq2crd.apps.googleusercontent.com", "client_type" : 3}], "api_key" : [{"current_key" : "AIzaSyD8ui4QNFdt_GX90yRDnoB3TAf8HIn5Bg4"}], "services" : {"appinvite_service" : {"other_platform_oauth_client" : [{"client_id" : "5087470372-6f9tjgjr5m3uck0g2h1q1jfd5fnq2crd.apps.googleusercontent.com", "client_type" : 3}]}}}], "configuration_version" : "1"}
json_instruct
{"type": "object", "properties": {"project_info": {"type": "object", "properties": {"project_number": {"type": "string"}, "project_id": {"type": "string"}, "storage_bucket": {"type": "string"}}, "required": ["project_number", "project_id", "storage_bucket"]}, "client": {"type": "array", "items": {"type": "object", "properties": {"client_info": {"type": "object", "properties": {"mobilesdk_app_id": {"type": "string"}, "android_client_info": {"type": "object", "properties": {"package_name": {"type": "string"}}, "required": ["package_name"]}}, "required": ["mobilesdk_app_id", "android_client_info"]}, "oauth_client": {"type": "array", "items": {"type": "object", "properties": {"client_id": {"type": "string"}, "client_type": {"type": "integer"}}, "required": ["client_id", "client_type"]}}, "api_key": {"type": "array", "items": {"type": "object", "properties": {"current_key": {"type": "string"}}, "required": ["current_key"]}}, "services": {"type": "object", "properties": {"appinvite_service": {"type": "object", "properties": {"other_platform_oauth_client": {"type": "array", "items": {"type": "object", "properties": {"client_id": {"type": "string"}, "client_type": {"type": "integer"}}, "required": ["client_id", "client_type"]}}}, "required": ["other_platform_oauth_client"]}}, "required": ["appinvite_service"]}}, "required": ["client_info", "oauth_client", "api_key", "services"]}}, "configuration_version": {"type": "string"}}, "required": ["project_info", "client", "configuration_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"homeInfo": {"type": "object", "properties": {"title": {"type": "string"}, "href": {"type": "string"}}, "required": ["title", "href"]}, "logoInfo": {"type": "object", "properties": {"title": {"type": "string"}, "image": {"type": "string"}, "href": {"type": "string"}}, "required": ["title", "image", "href"]}, "menuInfo": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "icon": {"type": "string"}, "href": {"type": "string"}, "target": {"type": "string"}, "child": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "href": {"type": "string"}, "icon": {"type": "string"}, "target": {"type": "string"}}, "required": ["title", "href", "icon", "target"]}}}, "required": ["title", "icon", "href", "target", "child"]}}}, "required": ["homeInfo", "logoInfo", "menuInfo"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"homeInfo" : {"title" : "\u9996\u9875", "href" : "page/generate/generate-list.html"}, "logoInfo" : {"title" : "GENERATOR", "image" : "images/logo.png", "href" : ""}, "menuInfo" : [{"title" : "\u5e38\u89c4\u914d\u7f6e", "icon" : "fa fa-address-book", "href" : "", "target" : "_self", "child" : [{"title" : "\u4e00\u952e\u751f\u6210", "href" : "page/generate/generate-list.html", "icon" : "fa fa-cloud-download", "target" : "_self"}, {"title" : "\u8fde\u63a5\u914d\u7f6e", "href" : "page/database/database-list.html", "icon" : "fa fa-sitemap", "target" : "_self"}, {"title" : "\u9879\u76ee\u6a21\u677f", "href" : "page/project/project-list.html", "icon" : "fa fa-folder-open", "target" : "_self"}, {"title" : "\u4ee3\u7801\u6a21\u677f", "href" : "page/template/template-list.html", "icon" : "fa fa-file-code-o", "target" : "_self"}]}]}
json_instruct
{"type": "object", "properties": {"homeInfo": {"type": "object", "properties": {"title": {"type": "string"}, "href": {"type": "string"}}, "required": ["title", "href"]}, "logoInfo": {"type": "object", "properties": {"title": {"type": "string"}, "image": {"type": "string"}, "href": {"type": "string"}}, "required": ["title", "image", "href"]}, "menuInfo": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "icon": {"type": "string"}, "href": {"type": "string"}, "target": {"type": "string"}, "child": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "href": {"type": "string"}, "icon": {"type": "string"}, "target": {"type": "string"}}, "required": ["title", "href", "icon", "target"]}}}, "required": ["title", "icon", "href", "target", "child"]}}}, "required": ["homeInfo", "logoInfo", "menuInfo"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"c": {"type": "integer"}, "d": {"type": "string"}, "md": {"type": "boolean"}}, "required": ["c", "d", "md"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"c" : 2260156, "d" : "156M", "md" : false}, {"c" : 2260157, "d" : "157M", "md" : false}, {"c" : 2260158, "d" : "158M", "md" : false}, {"c" : 2260159, "d" : "159M", "md" : false}, {"c" : 2260160, "d" : "160M", "md" : false}, {"c" : 2260161, "d" : "161M", "md" : false}, {"c" : 2260162, "d" : "162M", "md" : false}, {"c" : 2260163, "d" : "163M", "md" : true}, {"c" : 2260164, "d" : "164M", "md" : false}, {"c" : 2260165, "d" : "165M", "md" : false}, {"c" : 2260166, "d" : "166M", "md" : false}, {"c" : 2260167, "d" : "167M", "md" : false}, {"c" : 2260168, "d" : "168M", "md" : false}, {"c" : 2260169, "d" : "169M", "md" : false}, {"c" : 2260170, "d" : "170M", "md" : false}, {"c" : 2260171, "d" : "171M", "md" : true}, {"c" : 2260172, "d" : "172M", "md" : false}, {"c" : 2260173, "d" : "173M", "md" : false}, {"c" : 2260174, "d" : "174M", "md" : false}, {"c" : 2260175, "d" : "175M", "md" : false}, {"c" : 2260176, "d" : "176M", "md" : false}, {"c" : 2260177, "d" : "177M", "md" : false}, {"c" : 2260178, "d" : "178M", "md" : false}, {"c" : 2260179, "d" : "179M", "md" : false}, {"c" : 2260180, "d" : "180M", "md" : false}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"c": {"type": "integer"}, "d": {"type": "string"}, "md": {"type": "boolean"}}, "required": ["c", "d", "md"]}, "$schema": "http://json-schema.org/draft-07/schema#"}