input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "prosaicism", "definition" : "The quality or state of being prosaic; a prosaic manner or style. [R.] Poe."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema":...
{"Time" : "2021-01-15T21:00:00Z", "Temp" : 9.3, "RelHum" : 92, "WindSpeed" : 1.8, "WindDir" : 114}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "express": {"type": "stri...
{"name" : "employee-tracker-hw12", "version" : "1.0.0", "description" : "An app to track employee details within a database", "main" : "app.js", "dependencies" : {"dotenv" : "^10.0.0", "express" : "^4.17.1", "inquirer" : "^8.2.0", "mysql2" : "^2.3.3", "sequelize" : "^6.9.0"}, "devDependencies" : {}, "scripts" : {"test"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "express": {"type": "string"}, "inquirer": {"type": "string"}, "mysql2": {"type": "s...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"$schema": {"type": "string"}, "profiles": {"type": "object", "properties": {}, "required": []}, "schemes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": ...
{"$schema" : "https://aka.ms/terminal-profiles-schema", "profiles" : {}, "schemes" : [{"name" : "Pigeon Dark", "author" : "Moenupa", "foreground" : "#D4D4D4", "background" : "#1E1E1E", "cursorColor" : "#FFFFFF", "selectionBackground" : "#999999", "black" : "#1E1E1E", "red" : "#CC6666", "green" : "#8FCC66", "yellow" : "...
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "profiles": {"type": "object", "properties": {}, "required": []}, "schemes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "foreground": {"type": "string"}, "background": {"type": "s...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "test": {"type": "string"}, "set-qa-tests-env":...
{"name" : "forgerock-cloud-config", "version" : "1.0.0", "description" : "", "scripts" : {"lint" : "standard", "test" : "jest --coverage", "set-qa-tests-env" : "newman-env run ./qa-tests/env.postman_environment.json", "clear-qa-tests-env" : "newman-env run ./qa-tests/env.postman_environment.json --env-var platformUrl=n...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "test": {"type": "string"}, "set-qa-tests-env": {"type": "string"}, "clear-qa-tests-env": {"type": "string"}, "qa-tests...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "description", "version", "type", "lice...
{"name" : "kirby-fieldecho", "description" : "Kirby CMS Tag to echo fields of current Page-Object", "version" : "1.0.0", "type" : "kirby-plugin", "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "description", "version", "type", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"ty...
[{"label" : "Animal", "normalizedVertices" : [{"x" : 0.2107936, "y" : 0.47174206}, {"x" : 0.3342714, "y" : 0.47174206}, {"x" : 0.3342714, "y" : 0.6744624}, {"x" : 0.2107936, "y" : 0.6744624}], "score" : 0.6397696}, {"label" : "Deer", "normalizedVertices" : [{"x" : 0.2107936, "y" : 0.47174206}, {"x" : 0.3342714, "y" : 0...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertice...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "prop...
{"name" : "pingpong/generators", "description" : "Laravel Generators", "license" : "BSD-3-Clause", "keywords" : ["laravel", "generators", "pingpong"], "authors" : [{"name" : "Pingpong Labs", "email" : "pingpong.labs@gmail.com"}], "require" : {"php" : ">=5.4.0", "illuminate/filesystem" : "5.1.*", "illuminate/support" : ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "r...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "blushingly", "definition" : "In a blushing manner; with a blush or blushes; as, to answer or confess blushingly."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"paths": {"type": "object", "properties": {"config": {"type": "array", "items": {"type": "string"}}, "output": {"type": "object", "properties": {"sassVariablesPath": {"type": "string"}, "jsonFileName": {"type": "str...
{"paths" : {"config" : ["config--libero.js"], "output" : {"sassVariablesPath" : "/source/css/sass/variables/", "jsonFileName" : "/source/js/derivedConfig.json"}}}
json_instruct
{"type": "object", "properties": {"paths": {"type": "object", "properties": {"config": {"type": "array", "items": {"type": "string"}}, "output": {"type": "object", "properties": {"sassVariablesPath": {"type": "string"}, "jsonFileName": {"type": "string"}}, "required": ["sassVariablesPath", "jsonFileName"]}}, "required"...
Using the following JSON schema, generate a compatible 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", "pro...
{"id" : "KIZG0", "name" : {"en" : "Fryeburg"}, "country" : "US", "region" : "ME", "identifiers" : {"icao" : "KIZG", "wban" : "54772", "usaf" : "726183"}, "location" : {"latitude" : 43.9833, "longitude" : -70.95, "elevation" : 138}, "timezone" : "America/New_York"}
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": {"icao": {"type": "string"}, "wban": {"type": "string"}, "usa...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"946791686415": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectN...
{"946791686415" : {"type" : "book open", "bookName" : "Epic%20Quest", "subjectName" : "school", "fName" : "users/My0vYW5kcm9pZF9hc3NldC93d3cvc2Nob29sL0VwaWMlMjBRdWVzdC92YXJpYWJsZS1FUV9TYW1wbGVyLUVRX1NhbXBsZXIuaHRtbC1hbmFseXRpY3MtOTQ2NzkxNjg1OTk5.json"}}
json_instruct
{"type": "object", "properties": {"946791686415": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}}, "required": ["946791686415"], "$schema": "http://js...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["330329106001", "\u817e\u9633\u793e\u533a", "121", "0"], ["330329106200", "\u4e2d\u6751\u6751\u59d4\u4f1a", "121", "0"], ["330329106201", "\u65b0\u8054\u6751\u59d4\u4f1a", "220", "0"], ["330329106202", "\u548c\u5e73\u6751\u59d4\u4f1a", "220", "0"], ["330329106205", "\u767d\u5de2\u6751\u59d4\u4f1a", "220", "0"], ["330...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"case": {"type": "integer"}, "local": {"type": "integer"}, "amend": {"type": "integer"}, "outside": {"type": "integer"}, "death": {"type": "integer"}, "date": {"type": "string"}, "brief": {"type": "string"}, "ur...
{"case" : 10, "local" : 6, "amend" : 0, "outside" : 4, "death" : 12, "date" : "2021-08-07", "brief" : "\u767c\u4f48\u65e5\u671f\uff1a2021-08-07 \u4e2d\u592e\u6d41\u884c\u75ab\u60c5\u6307\u63ee\u4e2d\u5fc3\u4eca(7)\u65e5\u516c\u5e03\u570b\u5167\u65b0\u589e10\u4f8bCOVID-19\u78ba\u5b9a\u75c5\u4f8b\uff0c\u5206\u5225\u70ba6...
json_instruct
{"type": "object", "properties": {"case": {"type": "integer"}, "local": {"type": "integer"}, "amend": {"type": "integer"}, "outside": {"type": "integer"}, "death": {"type": "integer"}, "date": {"type": "string"}, "brief": {"type": "string"}, "url": {"type": "string"}}, "required": ["case", "local", "amend", "outside", ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "workspaces": {"type": "array", "items": {"type": "string"}}, "depe...
{"name" : "aws-utils", "version" : "1.0.0", "main" : "index.js", "license" : "Apache-2.0", "private" : true, "workspaces" : ["packages/**/*"], "dependencies" : {"aws-sam-local" : "^0.2.11", "babel-eslint" : "^8.2.3", "eslint" : "^4.19.1", "eslint-config-airbnb-base" : "^12.1.0", "eslint-plugin-import" : "^2.11.0", "jes...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "workspaces": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"aws-sam-local": {"type"...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "unknownProperty": {"type": "string"}}, "required": ["type", "unknownProperty"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Schema", "unknownProperty" : "x"}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "unknownProperty": {"type": "string"}}, "required": ["type", "unknownProperty"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"area": {"type": "object", "properties": {"id": {"type": "string"}, "iso-3166-1-code-list": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "sort-name": {"type": "string"}}, "required": ["id", "iso-316...
{"area" : {"id" : "0df04709-c7d8-3b55-a6ea-f3e5069a947b", "iso-3166-1-code-list" : ["AR"], "name" : "Argentina", "sort-name" : "Argentina"}, "country" : "AR", "id" : "08dd2dbb-a747-42a7-a139-33e8d1f4a133", "name" : "Cola de Pato", "sort-name" : "Cola de Pato", "type" : "Group"}
json_instruct
{"type": "object", "properties": {"area": {"type": "object", "properties": {"id": {"type": "string"}, "iso-3166-1-code-list": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "sort-name": {"type": "string"}}, "required": ["id", "iso-3166-1-code-list", "name", "sort-name"]}, "country": {"type"...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0"]}}, "required": ["text"], "$schema": "http://jso...
{"text" : {"0" : {"m1" : "\u0645\u0648\u062c \u0648 \u0628\u062d\u0631 \u0648 \u062d\u0628\u0627\u0628 \u0627\u06cc \u062f\u0627\u0646\u0627", "m2" : "\u06af\u0631 \u0637\u0644\u0628 \u0645\u06cc\u200c\u06a9\u0646\u06cc \u0628\u062c\u0648 \u0627\u0632 \u0645\u0627"}}}
json_instruct
{"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"new_version" : "1.53.5"}
json_instruct
{"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": ...
{"id" : 404351637, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "18a51ea2b5befdd28f1842d0bdc28390", "wof:id" : 404351637, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [2.46023284418068, 42.5248354327047, 2.50637446109825, 42.61411092082243]...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"chromeWebSecurity": {"type": "boolean"}, "integrationFolder": {"type": "string"}, "modifyObstructiveCode": {"type": "boolean"}, "numTestsKeptInMemory": {"type": "integer"}, "reporter": {"type": "string"}, "retries": {"type"...
{"chromeWebSecurity" : false, "integrationFolder" : "tests", "modifyObstructiveCode" : false, "numTestsKeptInMemory" : 0, "reporter" : "spec", "retries" : {"openMode" : 0, "runMode" : 4}, "video" : false}
json_instruct
{"type": "object", "properties": {"chromeWebSecurity": {"type": "boolean"}, "integrationFolder": {"type": "string"}, "modifyObstructiveCode": {"type": "boolean"}, "numTestsKeptInMemory": {"type": "integer"}, "reporter": {"type": "string"}, "retries": {"type": "object", "properties": {"openMode": {"type": "integer"}, "r...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "...
{"contract" : "0xf9a6d3e592900b08d2a8cae7a47c13e0feb3dab3", "tool" : "slither", "start" : 1563646488.264524, "end" : 1563646492.5204904, "duration" : 4.255966424942017, "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://...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "erythrean", "definition" : "Red in color. \"The erythrean main.\" Milton."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"file": {"type": "string"}, "frames": {"type": "object", "properties": {"down": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "w": {"type": "integer"}, "h": {"type": "in...
{"file" : "buttons.png", "frames" : {"down" : {"x" : 0, "y" : 96, "w" : 46, "h" : 46, "offX" : 1, "offY" : 1, "sourceW" : 48, "sourceH" : 48}, "left" : {"x" : 48, "y" : 48, "w" : 46, "h" : 46, "offX" : 1, "offY" : 1, "sourceW" : 48, "sourceH" : 48}, "right" : {"x" : 0, "y" : 48, "w" : 46, "h" : 46, "offX" : 1, "offY" :...
json_instruct
{"type": "object", "properties": {"file": {"type": "string"}, "frames": {"type": "object", "properties": {"down": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "w": {"type": "integer"}, "h": {"type": "integer"}, "offX": {"type": "integer"}, "offY": {"type": "integer"}, "sourceW":...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"demos": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "images"]}}}, "required": ["demos"], "$sche...
{"demos" : [{"id" : "default", "images" : ["https://s10.mogucdn.com/mlcdn/c45406/171019_0hl990d5d59aa1ellakj93d39chjk_610x50.png"]}, {"id" : "format", "images" : ["https://s10.mogucdn.com/mlcdn/c45406/171019_427fgl911h8ikk2g0ci2khk05j3a8_604x50.png"]}, {"id" : "style", "images" : ["https://s10.mogucdn.com/mlcdn/c45406/...
json_instruct
{"type": "object", "properties": {"demos": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "images"]}}}, "required": ["demos"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"dataTable.cjs.js": {"type": "string"}, "dataTable.cjs.min.js": {"type": "string"}, "dataTable.css": {"type": "string"}, "dataTable.es6.js": {"type": "string"}, "dataTable.helpers.js": {"type": "string"}, "dataTable....
{"dataTable.cjs.js" : "sha512-Kn+tp1h1NEVugrz2KqE79XxJeVtgNGup/i/vzSTdiRvybW64EokN1xyOWOKTN9qG0NuH0ODOab7CmJIDnxYCqQ==", "dataTable.cjs.min.js" : "sha512-0LlpLMe76goodvdTbqCSq3IcnmTPNZAxxYeaTMtnI06FO/OLcxBPyTn7InyPNk9aw8xHeNfvuumsGZKMHLTckQ==", "dataTable.css" : "sha512-L+TYDmRVcBCoXpnvz51OVnlvlQTmzO36DGNvcThu1fqrm+Aj3...
json_instruct
{"type": "object", "properties": {"dataTable.cjs.js": {"type": "string"}, "dataTable.cjs.min.js": {"type": "string"}, "dataTable.css": {"type": "string"}, "dataTable.es6.js": {"type": "string"}, "dataTable.helpers.js": {"type": "string"}, "dataTable.helpers.min.js": {"type": "string"}, "dataTable.js": {"type": "string"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id_0359": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_0359"], "$schema": "http://json-schema.org/draft-07...
{"id_0359" : {"publicdate" : "2006-08-06 23:01:58", "title" : "Aesop's Fables, Volume 12 (Fables 276-284)"}}
json_instruct
{"type": "object", "properties": {"id_0359": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_0359"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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": {"...
{"nom" : "Faimbe", "dpt" : "Doubs", "inscrits" : 76, "abs" : 4, "votants" : 72, "blancs" : 10, "nuls" : 1, "exp" : 61, "res" : [{"panneau" : "2", "voix" : 38}, {"panneau" : "1", "voix" : 23}]}
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"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "conquest:block/marble_column_with_marble_base_wall_post"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-sc...
{"id" : "http://data.doremus.org/performance/f2e24425-e7b6-3ff7-91ad-b8025c7961d6", "expression" : [{"id" : "http://data.doremus.org/expression/e2433524-89ec-3331-9875-b35818c8d27a"}, {"id" : "http://data.doremus.org/expression/c410395b-822e-3c12-a521-fe5d351cfa9a"}, {"id" : "http://data.doremus.org/expression/084f51cd...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"Mnas\u014dni": {"type": "object", "properties": {"act.21.16|13": {"type": "array", "items": {"type": "string"}}}, "required": ["act.21.16|13"]}}, "requi...
{"pos" : "n", "translits" : {"Mnas\u014dni" : {"act.21.16|13" : ["we would lodge,", "Mnason,", "a certain"]}}, "meanings" : {"mnason" : 1}, "meaningsCount" : 1, "occurences" : 1}
json_instruct
{"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"Mnas\u014dni": {"type": "object", "properties": {"act.21.16|13": {"type": "array", "items": {"type": "string"}}}, "required": ["act.21.16|13"]}}, "required": ["Mnas\u014dni"]}, "meanings": {"type": "object", "pr...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "email"...
{"name" : "Forstwaldschule St\u00e4dt. Gem. Grundschule", "id" : "NRW-103202", "address" : "Bellenweg 50, 47804 Krefeld", "school_type" : "Grundschule", "fax" : "02151 3659567", "phone" : "02151 312603", "website" : " http://www.forstwaldschule.de", "email" : " 103202@schule.nrw.de ", "state" : "NRW", "programs" : {"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": ...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type"...
{"code" : 9418061006, "parent" : 9418061, "name" : "TALIKOBAK", "latitude" : null, "longitude" : null, "postal" : [99022], "children" : []}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "n...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"Website": {"type": "string"}, "Name": {"type": "string"}}, "required": ["Website", "Name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Website" : "http://tiledb.org/", "Name" : "TileDB"}
json_instruct
{"type": "object", "properties": {"Website": {"type": "string"}, "Name": {"type": "string"}}, "required": ["Website", "Name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "run_if": {"type": "string"}, "pipeline": {"type": "string"}, "stage": {"type": "string"}, "job": {"type": "string"}, "is_source_a_file": {"type": "boolean"}, "artifact_origin": {"type": "string"}, "...
{"type" : "fetch", "run_if" : "any", "pipeline" : "upstream", "stage" : "upstream_stage", "job" : "upstream_job", "is_source_a_file" : true, "artifact_origin" : "gocd", "source" : "result", "destination" : "test"}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "run_if": {"type": "string"}, "pipeline": {"type": "string"}, "stage": {"type": "string"}, "job": {"type": "string"}, "is_source_a_file": {"type": "boolean"}, "artifact_origin": {"type": "string"}, "source": {"type": "string"}, "destination": {"type": "strin...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"typeaheadjs.css": {"type": "string"}, "typeaheadjs.min.css": {"type": "string"}}, "required": ["typeaheadjs.css", "typeaheadjs.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"typeaheadjs.css" : "sha512-bem2NJHXCoSAby1NJLtUKHUX3iHneOyb0cHoGtPSejrK7Eeouf8stGmjbny011J37p0FSNUyGxl+phomMC431A==", "typeaheadjs.min.css" : "sha512-0uS9q578MxIMb0nZ9SQ2wN1ln81z/IZhXSmhxz0/KikE0HE3WBIbPJwumAs/GUQDdcnLFWwmFuzauBwFnKrcEw=="}
json_instruct
{"type": "object", "properties": {"typeaheadjs.css": {"type": "string"}, "typeaheadjs.min.css": {"type": "string"}}, "required": ["typeaheadjs.css", "typeaheadjs.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"count": {"type": "integer"}, "412031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "359031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required":...
{"count" : 26, "412031" : {"count" : 1}, "359031" : {"count" : 1}, "N.A.//" : {"count" : 16}, "252020" : {"count" : 2}, "291127" : {"count" : 1}, "353031" : {"count" : 1}, "113061" : {"count" : 1}, "113031" : {"count" : 1}, "119XXX" : {"count" : 1}, "439061" : {"count" : 1}}
json_instruct
{"type": "object", "properties": {"count": {"type": "integer"}, "412031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "359031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"typ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"Andoy": {"type": "string"}, "Anvaing": {"type": "string"}, "Auby": {"type": "string"}, "Baillonville": {"type": "string"}, "Ensival": {"type": "string"}, "Estaimbourg": {"type": "string"}, "Fayt-lez-Manage": {"type"...
{"Andoy" : "ANY", "Anvaing" : "AVG", "Auby" : "AUY", "Baillonville" : "BAI", "Ensival" : "ENS", "Estaimbourg" : "EST", "Fayt-lez-Manage" : "FLM", "Frasnes" : "FRS", "Ham" : "HAW", "Hoves" : "WAH", "Rocourt" : "RJT", "Sainte-C\u00e9cile" : "SCC", "Seny" : "SYE", "Soye" : "SWL", "Tourinnes-St-Lambert" : "TSL", "Vottem" :...
json_instruct
{"type": "object", "properties": {"Andoy": {"type": "string"}, "Anvaing": {"type": "string"}, "Auby": {"type": "string"}, "Baillonville": {"type": "string"}, "Ensival": {"type": "string"}, "Estaimbourg": {"type": "string"}, "Fayt-lez-Manage": {"type": "string"}, "Frasnes": {"type": "string"}, "Ham": {"type": "string"},...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "Mirino Reflex Leupold DeltaPoint", "ShortName" : "DP", "Description" : "Il mirino compatto DeltaPoint Reflex creato da Leupold quasi non conosce limiti nella variet\u00e0 di applicazione. Originariamente disegnato per l'uso su fucili a pompa nelle competizioni e nella pratica del tiro, \u00e8 stato riconosci...
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "array", "items": {"type": "string"}}}, "required": ["$schema", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"$schema" : "https://json-schema.org/draft/2019-09/schema", "type" : ["object", "string", "null"]}
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "array", "items": {"type": "string"}}}, "required": ["$schema", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "a268a86afa26a9142a92bf76c087e3f77af2e676"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "string"}}}, "required": ["plugins"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"plugins" : ["prettier-plugin-svelte"]}
json_instruct
{"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "string"}}}, "required": ["plugins"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"latest": {"type": "string"}, "8": {"type": "string"}}, "required": ["latest", "8"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"latest" : "9.4.0.24572", "8" : "8.18.8.23081"}
json_instruct
{"type": "object", "properties": {"latest": {"type": "string"}, "8": {"type": "string"}}, "required": ["latest", "8"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "codepoint": {"type": "string"}, "title": {"type": "string"}, "svg": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "object",...
{"name" : "tired", "codepoint" : "f5c8", "title" : "Tired Face", "svg" : "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"><path d=\"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "codepoint": {"type": "string"}, "title": {"type": "string"}, "svg": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "titleZh": {...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type...
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-0.276489, 50.932769]}, "properties" : {"name" : "DUFFIES HACKETTS", "start-date" : "1955-03-15", "point" : "POINT (-0.276489 50.932769)", "documentation-url" : "https://historicengland.org.uk/listing/the-list/list-entry/1027399", "listed-building-gr...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "start...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"subreddit" : "facebookwins", "author" : "im_hitman", "count" : 3}
json_instruct
{"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"navigationBarTitleText": {"type": "string"}, "enablePullDownRefresh": {"type": "boolean"}, "usingComponents": {"type": "object", "properties": {"uni-calendar": {"type": "string"}, "mx-datepicker": {"type": "string"}}, "require...
{"navigationBarTitleText" : "\u641c\u7d22", "enablePullDownRefresh" : true, "usingComponents" : {"uni-calendar" : "/components/uni-calendar/uni-calendar", "mx-datepicker" : "/components/mx-datepicker/mx-datepicker"}}
json_instruct
{"type": "object", "properties": {"navigationBarTitleText": {"type": "string"}, "enablePullDownRefresh": {"type": "boolean"}, "usingComponents": {"type": "object", "properties": {"uni-calendar": {"type": "string"}, "mx-datepicker": {"type": "string"}}, "required": ["uni-calendar", "mx-datepicker"]}}, "required": ["navi...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01005364": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"...
{"type" : "Topology", "objects" : {"E01005364" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00027154", "LAD11CD" : "E08000004"}, "arcs" : [[0, 1, 2, 3, 4, 5]]}, {"type" : "Polygon...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01005364": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "str...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"title": {"type": "string"}, "source": {"type": "string"}, "time": {"type": "string"}, "content": {"type": "string"}}, "required": ["title", "source", "time", "content"], "$schema": "http://json-schema.org/draft-07/s...
{"title" : "\u535a\u683c\u5df4\uff1a\u517b\u4f24\u671f\u95f4\u4e00\u76f4\u5728\u770bB\u8d39\u7684\u6bd4\u8d5b\uff0c\u4e3a\u7684\u5c31\u662f\u65e0\u7f1d\u8854\u63a5", "source" : "Twitter", "time" : "2020-07-16 21:16:32", "content" : "\u864e\u62517\u670816\u65e5\u8baf\u00a0\u66fc\u8054\u7403\u661f\u535a\u683c\u5df4\u8fd1...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "source": {"type": "string"}, "time": {"type": "string"}, "content": {"type": "string"}}, "required": ["title", "source", "time", "content"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"gatsby": {...
{"name" : "gatsbylius-starter-default", "private" : true, "description" : "A simple starter to get up and developing quickly with Gatsbylius", "version" : "0.2.2", "author" : "Waiting for a contact email, see https://github.com/Gatsbylius/Gatsbylius", "dependencies" : {"gatsby" : "^2.19.12", "gatsby-plugin-manifest" : ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"gatsby": {"type": "string"}, "gatsby-plugin-manifest": {"type": "string"}, "gat...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "pro...
{"name" : "kenlog/instant-mvc", "type" : "project", "description" : "Instant MVC PHP Micro-Framework", "homepage" : "https://github.com/kenlog/instant-mvc", "license" : "MIT", "authors" : [{"name" : "Valentino Pesce", "email" : "valentino@iltuobrand.it", "homepage" : "https://github.com/kenlog", "role" : "Developer"}],...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "ho...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"slug": {"type": "string"}, "title": {"type": "string"}, "parent_slug": {"type": "null"}, "path": {"type": "string"}, "repoCount": {"type": "integer"}, "userCount": {"type": "integer"}, "popularity": {"type": "integer"}}, "r...
{"slug" : "qtum", "title" : "Qtum", "parent_slug" : null, "path" : "qtum", "repoCount" : 100, "userCount" : 36, "popularity" : 803011}
json_instruct
{"type": "object", "properties": {"slug": {"type": "string"}, "title": {"type": "string"}, "parent_slug": {"type": "null"}, "path": {"type": "string"}, "repoCount": {"type": "integer"}, "userCount": {"type": "integer"}, "popularity": {"type": "integer"}}, "required": ["slug", "title", "parent_slug", "path", "repoCount"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "b5c5fdd0a762b1e74665", "c" : {"0" : false}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "requ...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[131.125, 44.75], [131.125, 44.833333333333336], [131.25, 44.833333333333336], [131.25, 44.75], [131.125, 44.75]]]}, "properties" : {"code" : 673111, "url" : "http://madefor.github.io/0410/api/v1/673111.geojson", "view" : "https://github.com/madef...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob...
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"}, "private": {"type": "boolean"}, "plugin": {"type": "object", "properties": {"provides": {"typ...
{"name" : "document", "version" : "0.1.0", "description" : "Module which provides functionality for managing and rendering mongo documents", "main" : "app.js", "private" : true, "plugin" : {"provides" : ["document"], "consumes" : ["api", "frontend", "backend"]}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "plugin": {"type": "object", "properties": {"provides": {"type": "array", "items": {"type": "string"}}, "consumes": {"type": "array"...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"typ...
{"name" : "angular-boilerplate", "version" : "0.0.1", "authors" : ["Rinat Mullayanov <nutsgamedev@gmail.com>"], "description" : "Angular boilerplate", "keywords" : ["angular", "boilerplate"], "license" : "MIT", "ignore" : ["node_modules", "bower_components", "src/bower_components"], "homepage" : "https://github.com/Rin...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"typ...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"946895619711": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fNa...
{"946895619711" : {"type" : "book open", "bookName" : "Epic%20Quest", "subjectName" : "school", "fName" : "users/My0vYW5kcm9pZF9hc3NldC93d3cvc2Nob29sL0VwaWMlMjBRdWVzdC92YXJpYWJsZS1FUV9NYXBfdmlkZW9zLUVRX01hcF92aWRfaG9yc2UuaHRtbC1hbmFseXRpY3MtOTQ2ODk1NjE5NjE4.json"}, "946895620055" : {"type" : "st"}, "946895620057" : {"t...
json_instruct
{"type": "object", "properties": {"946895619711": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}, "946895620055": {"type": "object", "properties": {"t...
The schema below describes a JSON structure. Generate a valid example: {"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)": {"t...
{"(0, 0, 2)" : "Jacques Cousteau", "(1, 0, 1)" : "Born", "(1, 1, 1)" : "Jacques-Yves Cousteau, (1910-06-11)11 June 1910, Saint-Andr\u00e9-de-Cubzac, France", "(2, 0, 1)" : "Died", "(2, 1, 1)" : "25 June 1997(1997-06-25) (aged 87), Paris, France", "(3, 0, 1)" : "Nationality", "(3, 1, 1)" : "French", "(4, 0, 1)" : "Occup...
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": ...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"migrate": {"type": "object", "properties": {"btn": {"type": "object", "properties": {"unlock": {"type": "string"}}, "required": ["unlock"]}, "description": {"type": "object", "properties": {"enterPass": {"type": "s...
{"migrate" : {"btn" : {"unlock" : "Odblokuj"}, "description" : {"enterPass" : "Wprowad\u017a swoje has\u0142o do konta lub", "goBack" : "powr\u00f3t", "unlock" : "Odblokuj swoje konta. Mo\u017cesz wr\u00f3ci\u0107 do tego kroku p\u00f3\u017aniej."}, "headers" : {"unlock" : "Odblokuj swoje konta", "unlockAccount" : "Odb...
json_instruct
{"type": "object", "properties": {"migrate": {"type": "object", "properties": {"btn": {"type": "object", "properties": {"unlock": {"type": "string"}}, "required": ["unlock"]}, "description": {"type": "object", "properties": {"enterPass": {"type": "string"}, "goBack": {"type": "string"}, "unlock": {"type": "string"}}, "...
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "str...
[{"namaKab" : "TIMOR TENGAH SELATAN", "originalFilename" : "9_1.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 85826, "noUrut" : 1, "nama" : "NICODEMUS ASBANU, SH", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "TIMOR TENGAH SELATAN", "originalFilename" : "9_2.jpg", "namaPartai" : "Persatuan Indonesia", "id" : ...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "helper-app"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"wall": {"type": "string"}, "opposite": {"type": "string"}, "end": {"type": "string"}}, "required": ["wall", "opposite", "end"]}}, "required": ["par...
{"parent" : "minecraft:block/template_wall_side_bricks_opposite", "textures" : {"wall" : "minecraft:block/walls/mossy_stone_bricks_wall_opposite", "opposite" : "minecraft:block/walls/mossy_stone_bricks_wall", "end" : "minecraft:block/walls/mossy_stone_bricks_wall_end"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"wall": {"type": "string"}, "opposite": {"type": "string"}, "end": {"type": "string"}}, "required": ["wall", "opposite", "end"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}...
[{"id" : "3216062001", "district_id" : "3216062", "name" : "SUKARAYA"}, {"id" : "3216062002", "district_id" : "3216062", "name" : "KARANGRAHAYU"}, {"id" : "3216062003", "district_id" : "3216062", "name" : "KARANGSETIA"}, {"id" : "3216062004", "district_id" : "3216062", "name" : "KARANGSATU"}, {"id" : "3216062005", "dis...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"state-machine.min.js": {"type": "string"}}, "required": ["state-machine.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"state-machine.min.js" : "sha512-zjTgpTbKUkFaHpDo5YoUYK8J3kU3q8M0hRelWMJCyu8IWI9rBzPSTuESB07/nzqtKBHZaZ0WjalyKVXNMsQJ8Q=="}
json_instruct
{"type": "object", "properties": {"state-machine.min.js": {"type": "string"}}, "required": ["state-machine.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"json": {"type": "string"}, "anObject": {"type": "object", "properties": {"anArray": {"type": "array", "items": {"type": "integer"}}}, "required": ["anArray"]}}, "required": ["json", "anObject"], "$schema": "http://json-sche...
{"json" : "json", "anObject" : {"anArray" : [0, 1, 2]}}
json_instruct
{"type": "object", "properties": {"json": {"type": "string"}, "anObject": {"type": "object", "properties": {"anArray": {"type": "array", "items": {"type": "integer"}}}, "required": ["anArray"]}}, "required": ["json", "anObject"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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": {...
{"nom" : "Saint-Julien-le-Petit", "dpt" : "Haute-Vienne", "inscrits" : 284, "abs" : 68, "votants" : 216, "blancs" : 23, "nuls" : 16, "exp" : 177, "res" : [{"panneau" : "1", "voix" : 125}, {"panneau" : "2", "voix" : 52}]}
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"...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "type": {"type": "string"}, "decimals": {"type": "integer"}, "description": {"type": "string"}, "website": {"type": "string"}, "explorer": {"type": "stri...
{"name" : "Swarm Fund Token", "symbol" : "SWM", "type" : "ERC20", "decimals" : 18, "description" : "-", "website" : "", "explorer" : "https://etherscan.io/token/0x9e88613418cF03dCa54D6a2cf6Ad934A78C7A17A", "status" : "active", "id" : "0x9e88613418cF03dCa54D6a2cf6Ad934A78C7A17A"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "type": {"type": "string"}, "decimals": {"type": "integer"}, "description": {"type": "string"}, "website": {"type": "string"}, "explorer": {"type": "string"}, "status": {"type": "string"}, "id": {"type": "string"}}, "required": ...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"url": {"type": "string"}, "name": {"type": "string"}, "password": {"type": "string"}, "email": {"type": "string"}, "wrong-password": {"type": "string"}, "wrong-email": {"type": "string"}, "testcasepageurl": {"type": "string"}}...
{"url" : "https://www.automationexercise.com/", "name" : "test0128879123", "password" : "test012890879123", "email" : "alexsmkovtkvtzb4979123@sgisfg.com", "wrong-password" : "test01289087912377", "wrong-email" : "alexsmkovtkvtzb497912377@sgisfg.com", "testcasepageurl" : "https://www.automationexercise.com/test_cases"}
json_instruct
{"type": "object", "properties": {"url": {"type": "string"}, "name": {"type": "string"}, "password": {"type": "string"}, "email": {"type": "string"}, "wrong-password": {"type": "string"}, "wrong-email": {"type": "string"}, "testcasepageurl": {"type": "string"}}, "required": ["url", "name", "password", "email", "wrong-p...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"outputFileName": {"type": "string"}, "inputFiles": {"type": "array", "items": {"type": "string"}}}, "required": ["outputFileName", "inputFiles"]}, "$schema": "http://json-schema.org/draf...
[{"outputFileName" : "wwwroot/UploadFile.min.js", "inputFiles" : ["wwwroot/UploadFile.js"]}, {"outputFileName" : "wwwroot/JavascriptUploadFileDemo.min.js", "inputFiles" : ["wwwroot/JavascriptUploadFileDemo.js"]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"outputFileName": {"type": "string"}, "inputFiles": {"type": "array", "items": {"type": "string"}}}, "required": ["outputFileName", "inputFiles"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "moduleType": {"...
{"name" : "peachpy.io", "description" : "GT HPC Garage Peachpy project", "main" : "index.js", "authors" : ["agubba3"], "license" : "ISC", "homepage" : "https://github.com/PeachPy/peachpy.io", "moduleType" : [], "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"bootstrap-sass"...
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"}, "moduleType": {"type": "array", "items": {}}, "ignore": {"type": "array",...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "object", "properties": {"email": {"type": "string"}, "n...
{"name" : "load-opts", "description" : "Load opts config file.", "homepage" : "https://github.com/Kikobeats/load-opts", "version" : "1.2.1", "main" : "./index.js", "author" : {"email" : "josefrancisco.verdu@gmail.com", "name" : "Kiko Beats", "url" : "https://github.com/Kikobeats"}, "repository" : {"type" : "git", "url"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "object", "properties": {"email": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}}, "re...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"origin": {"type": "string"}, "download_link": {"type": "string"}, "views": {"type": "integer"}, "x_resolution": {"type": "integer"}, "filetype": {"type": "string"}, "site": {"type": "string"}, "y_resolution": {"typ...
{"origin" : "http://wallbase.cc/wallpaper/409772", "download_link" : "http://wallpapers.wallbase.cc/rozne/wallpaper-409772.jpg", "views" : 2463, "x_resolution" : 1600, "filetype" : "jpg", "site" : "wallbase.cc", "y_resolution" : 1200, "colors" : ["#ffffff", "#322301", "#4d5253", "#cdca6a", "#a97f09"], "comments" : [""]...
json_instruct
{"type": "object", "properties": {"origin": {"type": "string"}, "download_link": {"type": "string"}, "views": {"type": "integer"}, "x_resolution": {"type": "integer"}, "filetype": {"type": "string"}, "site": {"type": "string"}, "y_resolution": {"type": "integer"}, "colors": {"type": "array", "items": {"type": "string"}...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "r...
{"name" : "turkeryildirim/lumen-config-autoloader", "description" : "This package provides an easy way to autoload config files from your application's config folder.", "authors" : [{"name" : "T\u00fcrker YILDIRIM", "email" : "me@turkeryildirim.com", "homepage" : "http://turkeryildirim.com"}], "homepage" : "https://git...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "homepage": {"ty...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": ...
{"id" : 404386867, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "2a0347a14e6c8a57dcd6e92e26897322", "wof:id" : 404386867, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [4.8499561681467, 44.37171976334582, 4.8993241473304, 44.40660253685589],...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["...
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "src": {"type": "string"}}, "required": ["name", "src"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "Onda Cero Vilanova", "src" : "http://icecast-streaming.nice264.com/vilanova?t=1526288508"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "src": {"type": "string"}}, "required": ["name", "src"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-70.291992, 43.630218], [-70.28596, 43.636855], [-70.282079, 43.639777], [-70.280262, 43.639005], [-70.27123, 43.64178], [-70.26433, 43.641821], [-70.258659, 43.633671], [-70.252187, 43.634489], [-70.251619, 43.631685], [...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "numbe...
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$sch...
[{"name" : "KAJALI", "frequency" : 2, "males" : "50.0 %", "females" : "50.0 %"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"hints": {"type": "array", "items": {"type": "string"}}}, "required": ["hints"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hints" : ["We are trying to make the reward high when the water level is high, and lower when it gets further away from that. The water level should be 0.5. So for example, when the water level, the reward should be the highest, when the water level is 0, the reward should be low and the same for a water level of 1. ...
json_instruct
{"type": "object", "properties": {"hints": {"type": "array", "items": {"type": "string"}}}, "required": ["hints"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d427-109", "text" : ".ftrbana, Illinois\nCOP!\n'! G D P 1\nSeptember 29, 1954\nDr. Maurice Seay\nDirector2 Division of Education\nW. K. Kellogg Foundation\nBattle Greek, Michigan\nBoar Br. Seays\nThis is simply to say how Bsuch I appreciated and enjoyed moating with\nyou a week ago today* * Since 1 assume that...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[124.0, 20.75], [124.0, 20.833333333333332], [124.125, 20.833333333333332], [124.125, 20.75], [124.0, 20.75]]]}, "properties" : {"code" : 312410, "url" : "http://madefor.github.io/0410/api/v1/312410.geojson", "view" : "https://github.com/madefor/0...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"birthday": {"type": "string"}, "position": {"type": "string"}, "name": {"type": "string"}}, "required": ["birthday", "position", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"birthday" : "1991-08-07", "position" : "TE", "name" : "Blake Bell"}
json_instruct
{"type": "object", "properties": {"birthday": {"type": "string"}, "position": {"type": "string"}, "name": {"type": "string"}}, "required": ["birthday", "position", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type...
{"id" : 101766163, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "b6816d228b6b0ddde305c4f7e15a6b41", "wof:id" : 101766163, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [3.61051, 47.7664, 3.61051, 47.7664], "geometry" : {"coordinates" :...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"aws-sdk.js": {"type": "string"}, "aws-sdk.min.js": {"type": "string"}}, "required": ["aws-sdk.js", "aws-sdk.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"aws-sdk.js" : "sha512-kaiA9zriZuYghA+Y8E+bmwhsLMXIVZQrNj+73inJjowdxfNuSZal+trf15C95K0Vs1uawG10LrMhf0x3bz1bdA==", "aws-sdk.min.js" : "sha512-6NVIp+8zFkoPMJOed563foLUiRTZtsdgnnciXC4j71HAhpsSP+WUdojoUKsFpEBYz1mz/zpetjISc7K4hGsYiw=="}
json_instruct
{"type": "object", "properties": {"aws-sdk.js": {"type": "string"}, "aws-sdk.min.js": {"type": "string"}}, "required": ["aws-sdk.js", "aws-sdk.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"template": {"type": "string"}, "data": {"type": "object", "properties": {"MyName": {"type": "string"}}, "required": ["MyName"]}, "expected": {"type": "string"}}, "required": ["template", "data", "expected"], ...
{"template" : "{{&'MyName}}", "data" : {"MyName" : "<span id=\"x\" class='bold'>`fethi`</span>\r\n\tgurcan"}, "expected" : "<span id=\"x\" class=''bold''>`fethi`</span>\r\n\tgurcan"}
json_instruct
{"type": "object", "properties": {"template": {"type": "string"}, "data": {"type": "object", "properties": {"MyName": {"type": "string"}}, "required": ["MyName"]}, "expected": {"type": "string"}}, "required": ["template", "data", "expected"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "...
{"\uc758\uc548\uc811\uc218\uc815\ubcf4" : {"\uc758\uc548\ubc88\ud638" : ["040570"], "\uc81c\uc548\uc77c\uc790" : [""], "\uc81c\uc548\uc790" : ["\uad6d\ud68c\uc6b4\uc601\uc704\uc6d0\uc7a5"], "\ubb38\uc11c" : [""], "\uc81c\uc548\ud68c\uae30" : ["\uc81c4\ub300(1958~1960)\uc81c32\ud68c"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\...
json_instruct
{"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "s...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"manifest": {"type": "object", "properties": {"manifest": {"type": "object", "properties": {"library": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "assets": {"type": "object",...
{"manifest" : {"manifest" : {"library" : {"name" : "acc_chest_U_rank1", "version" : "0.1", "assets" : {"asset" : [{"name" : "h_std_ca_2723_2_0", "mimeType" : "image/png", "param" : {"key" : "offset", "value" : "-28,35"}}, {"name" : "h_std_ca_2723_1_0", "mimeType" : "image/png", "param" : {"key" : "offset", "value" : "-...
json_instruct
{"type": "object", "properties": {"manifest": {"type": "object", "properties": {"manifest": {"type": "object", "properties": {"library": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "assets": {"type": "object", "properties": {"asset": {"type": "array", "items": {"type": "...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"...
{"Time" : "2021-03-09T17:00:00Z", "Temp" : 16.2, "RelHum" : 79, "WindSpeed" : 0.7, "WindDir" : 348}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "primoId": {"type": "string"}, "slug": {"type": "string"}, "shortcode": {"type": "string"}, "imageUrl": {"type": ...
{"data" : {"id" : 92873, "title" : "Daphne Lowe Kelley", "primoId" : "", "slug" : "", "shortcode" : "", "imageUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie-1544070594849.png", "content" : "Daphne Lowe Kelley", "imageType" : "gallery_selfie", "date" : "2018-12-06 15:29:54", "dateText" : "", "timestamp" ...
json_instruct
{"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "primoId": {"type": "string"}, "slug": {"type": "string"}, "shortcode": {"type": "string"}, "imageUrl": {"type": "string"}, "content": {"type": "string"}, "imageType": {"type": "string"}, ...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, ...
{"lastUpdated" : 1655019279666, "username" : "TemmieTime42", "scores" : [{"xp" : 18084, "rank" : 362, "cardId" : 312}]}
json_instruct
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["last...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"hour positive count": {"type": "integer"}, "hour neutral count": {"type": "integer"}, "hour negative count": {"type": "integer"}, "hour distri": {"type": "object", "properties": {"0.01": {"type": "integer"}, "0.64": ...
{"hour positive count" : 6, "hour neutral count" : 4, "hour negative count" : 11, "hour distri" : {"0.01" : 2, "0.64" : 1, "0.05" : 2, "0.0" : 3, "0.1" : 2, "1.0" : 4, "0.7" : 1, "0.8" : 1, "0.02" : 2, "0.97" : 1, "0.99" : 1, "0.74" : 1}}
json_instruct
{"type": "object", "properties": {"hour positive count": {"type": "integer"}, "hour neutral count": {"type": "integer"}, "hour negative count": {"type": "integer"}, "hour distri": {"type": "object", "properties": {"0.01": {"type": "integer"}, "0.64": {"type": "integer"}, "0.05": {"type": "integer"}, "0.0": {"type": "in...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "...
{"author" : {"id" : "t2_9dlff", "name" : "vincent__h"}, "date" : {"day" : 1601856000, "full" : 1601934504, "month" : 1601510400, "week" : 1601769600}, "id" : "t3_j5sob2", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 143008, "fullUrl" : "https://preview.redd.it/wrja4olljcr51.jpg?auto=webp&s=a290ce36f478de9...
json_instruct
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}},...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "...
{"n_dim" : 13, "n_trials" : 130, "objective" : "qing_on_cube", "white" : "platypus_ibea", "black" : "platypus_nsgaii", "traceback" : ["passing", "passing"], "best_val" : [1072112541769.2471, 3531454885549.0977], "best_x" : [[0.3864937820061728, 0.11856574148891597, 0.4549334571620349, 0.21099748387485373, 0.52871375006...
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "natively_connectable": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "manifest_v...
{"name" : "unit_tests --gtest_filter=NativelyConnectableManifestTest.Basic", "version" : "1", "manifest_version" : 2, "natively_connectable" : ["com.google.chrome.test.echo", "com.google.chrome.test.echo", "com.google.chrome.test.host_binary_missing"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "natively_connectable": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "manifest_version", "natively_connectable"], "$schema": "http://json-schema.org/d...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"typ...
{"geometry" : {"type" : "Point", "coordinates" : [-76.89, 40.24]}, "type" : "Feature", "id" : "17043", "properties" : {"other_cities" : "Wormleysburg", "city" : "Lemoyne", "state" : "PA", "county" : "Cumberland County"}}
json_instruct
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_c...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type"...
{"name" : "full-year-calendar", "version" : "1.0.0", "description" : "A calendar that shows dates in yearly view", "repository" : {"type" : "git", "url" : "https://github.com/andrefrua/FullYearCalendar_v2.git"}, "keywords" : ["calendar", "yearly", "yearlycalendar"], "author" : "Andr\u00e9 Rua", "license" : "MIT", "home...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "grunt": {"type": "string"}, "grunt-coveralls": {"type": "string"}, "istanbul": {"ty...
{"name" : "node-maze-game", "version" : "0.1.0", "dependencies" : {"express" : "~3.3.4", "grunt" : "~0.4.5", "grunt-coveralls" : "~1.0.0", "istanbul" : "~0.3.13", "mocha" : "~2.2.4", "should" : "~6.0.1", "grunt-mocha-istanbul" : "~2.4.0"}, "author" : "Nicolas Dubien <github@dubien.org>", "description" : "Puzzle-game wh...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "grunt": {"type": "string"}, "grunt-coveralls": {"type": "string"}, "istanbul": {"type": "string"}, "mocha": {"type": "string"}, "should": {"type"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Medology\\GherkinCsFixer\\": {"t...
{"name" : "medology/gherkin-cs-fixer", "description" : "Gherkin code auto formatter", "license" : "MIT", "autoload" : {"psr-4" : {"Medology\\GherkinCsFixer\\" : "src/"}}, "bin" : ["bin/gherkin-fixer"], "require" : {"php" : ">=7.1.0", "ext-mbstring" : "*"}, "require-dev" : {"phpunit/phpunit" : "^8.4", "medology/custom-p...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Medology\\GherkinCsFixer\\": {"type": "string"}}, "required": ["Medology\\GherkinCsFixer\\"]}}, "requi...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"beamWeights": {"type": "array", "items": {"type": "object", "properties": {"beamWeightsDetails": {"type": "array", "items": {"type": "object", "properties": {"receptor": {"type": "integer"}, "receptorWeightsDetails": {"type": ...
{"beamWeights" : [{"beamWeightsDetails" : [{"receptor" : 2, "receptorWeightsDetails" : [{"fsid" : 2, "weights" : [0.1, 0.2, 0.3, 0.4, 0.5, 0.6]}]}]}, {"beamWeightsDetails" : [{"receptor" : 2, "receptorWeightsDetails" : [{"fsid" : 2, "weights" : [1.1, 1.2, 1.3, 1.4, 1.5, 1.6]}]}]}, {"beamWeightsDetails" : [{"receptor" :...
json_instruct
{"type": "object", "properties": {"beamWeights": {"type": "array", "items": {"type": "object", "properties": {"beamWeightsDetails": {"type": "array", "items": {"type": "object", "properties": {"receptor": {"type": "integer"}, "receptorWeightsDetails": {"type": "array", "items": {"type": "object", "properties": {"fsid":...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"new_version" : "0.0_9"}
json_instruct
{"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "chroma-js": {"type": "string"}, "fontawesome": {"type": "strin...
{"name" : "fireball", "ignore" : ["**/.*", "3rd", "bower_components", "ext", "node_modules", "test"], "dependencies" : {"chai" : "2.3.0", "chroma-js" : "0.8.0", "fontawesome" : "4.3.0", "iron-behaviors" : "PolymerElements/iron-behaviors#^1.0.0", "iron-flex-layout" : "PolymerElements/iron-flex-layout#^1.0.0", "iron-inpu...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "chroma-js": {"type": "string"}, "fontawesome": {"type": "string"}, "iron-behaviors": {"type": "string"}, "iron-flex-layou...