input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "chrome-remote-interface": {"type":...
{"name" : "prerenderi-docker", "description" : "Docker image of Prerender.io", "version" : "0.0.1", "dependencies" : {"body-parser" : "~1.18.3", "chrome-remote-interface" : "~0.25.7", "compression" : "~1.7.3", "express" : "~4.16.3", "he" : "~1.1.1", "valid-url" : "~1.0.9"}, "devDependencies" : {"mocha" : "^5.2.0", "sin...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "chrome-remote-interface": {"type": "string"}, "compression": {"type": "string"}, "express": {"type": "stri...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"t...
{"citations" : [{"textCitation" : "[See distrsr on Metamath](http://us.metamath.org/mpegif/distrsr.html)"}], "names" : ["distrsr"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cA", "#T_cmr", "#T_cB", "#T_cplr", "#T_cC", "#T_wceq", "#T_cA", "#T_cmr", "#T_cB", "#T_cplr", "#T_cA", "#T_cmr", "#T_cC"], "metaLanguag...
json_instruct
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "st...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "tillandsia", "definition" : "A genus of epiphytic endogenous plants found in the Southern United States and in tropical America. Tillandsia usneoides, called long moss, black moss, Spanish moss, and Florida moss, has a very slender pendulous branching stem, and forms great hanging tufts on the branches of tr...
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "xlit...
{"derivation" : "from, H7556 (\u05e8\u05b8\u05e7\u05b7\u05e7) in its original sense;", "pron" : "raw-keek'", "outline" : "<ol><li> thin cake, wafer</li></ol>", "kjv_def" : "cake, wafer.", "lemma" : "\u05e8\u05b8\u05e7\u05b4\u05d9\u05e7", "frequency" : 8, "strongs_def" : "a thin cake", "xlit" : "r\u00e2q\u00eeyq"}
json_instruct
{"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "xlit": {"type": "string"}}, "required": ["derivation", "pron", ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string...
{"title" : "Learning Deep Boltzmann Machines using Adaptive MCMC.", "fields" : ["boltzmann machine", "energy landscape", "dbm", "markov chain monte carlo", "boltzmann constant"], "abstract" : "When modeling high-dimensional richly structured data, it is often the case that the distribution defined by the Deep Boltzmann...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"typ...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"inputFileName": {"type": "string"}, "outputFileName": {"type": "string"}, "split": {"type": "object", "properties": {"fileSize": {"type": "integer"}}, "required": ["fileSize"]}, "sort": {"type": "object", "properti...
{"inputFileName" : "C:/Temp/input.txt", "outputFileName" : "C:/Temp/output.txt", "split" : {"fileSize" : 300971520}, "sort" : {"inputBufferSize" : 300971520, "outputBufferSize" : 300971520}, "merge" : {"FilesPerRun" : 10, "InputBufferSize" : 300971520, "OutputBufferSize" : 300971520}}
json_instruct
{"type": "object", "properties": {"inputFileName": {"type": "string"}, "outputFileName": {"type": "string"}, "split": {"type": "object", "properties": {"fileSize": {"type": "integer"}}, "required": ["fileSize"]}, "sort": {"type": "object", "properties": {"inputBufferSize": {"type": "integer"}, "outputBufferSize": {"typ...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "cars4_32714", "displayName" : "cars4_32714"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "reposit...
{"name" : "devsecops-poc", "version" : "0.1.0", "description" : "A proof of concept for a devsecops pipeline", "main" : "index.js", "scripts" : {"test" : "test"}, "repository" : {"type" : "git", "url" : "git+https://github.com/trycrmr/devsecops-poc.git"}, "author" : "trycrmr", "license" : "MIT", "bugs" : {"url" : "http...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "s...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:watch": {"type...
{"name" : "deadsimpletodo-parser", "version" : "0.1.0", "description" : "Simple text-only parser for notes", "main" : "index.js", "scripts" : {"test" : "mocha --parallel tests/*js", "test:watch" : "mocha --parallel tests/*js --watch --bail", "test:one" : "mocha --parallel tests/commands.js --watch --bail"}, "keywords" ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:watch": {"type": "string"}, "test:one": {"type": "string"}}, "required": ["test", "te...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"ID": {"type": "string"}, "project": {"type": "string"}, "bug_id": {"type": "string"}, "correctness": {"type": "string"}, "tool": {"type": "string"}, "delta_allowed": {"type": "string"}, "target": {"type": "array", "items": {"t...
{"ID" : "Math_bug24", "project" : "Math", "bug_id" : "24", "correctness" : "Correct", "tool" : "developer", "delta_allowed" : "1e-6", "target" : ["org/apache/commons/math3/optimization/univariate/BrentOptimizer.java:230", "org/apache/commons/math3/optimization/univariate/BrentOptimizer.java:268"]}
json_instruct
{"type": "object", "properties": {"ID": {"type": "string"}, "project": {"type": "string"}, "bug_id": {"type": "string"}, "correctness": {"type": "string"}, "tool": {"type": "string"}, "delta_allowed": {"type": "string"}, "target": {"type": "array", "items": {"type": "string"}}}, "required": ["ID", "project", "bug_id", ...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"values" : ["minecraft:sea_pickle"]}
json_instruct
{"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "version": {"type": "string"}, "default_locale": {"type": "string"}, "description": {"type": "string"}, "background_color": {"type": "string"}, "start_url": {...
{"manifest_version" : 2, "name" : "RetroArch Remote", "version" : "1.0.0", "default_locale" : "en", "description" : "Remote control RetroArch", "background_color" : "#fff", "start_url" : "index.html", "display" : "standalone", "orientation" : "portrait", "icons" : [{"src" : "/assets/img/retroarch-remote-48x48.png", "si...
json_instruct
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "version": {"type": "string"}, "default_locale": {"type": "string"}, "description": {"type": "string"}, "background_color": {"type": "string"}, "start_url": {"type": "string"}, "display": {"type": "string"}, "orientat...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "@types/re...
{"name" : "@nexys/snowpack-boilerplate", "version" : "1.0.0", "main" : "index.js", "license" : "MIT", "dependencies" : {"@types/react" : "^17.0.3", "@types/react-dom" : "^17.0.3", "@types/react-router" : "^5.1.13", "@types/react-router-dom" : "^5.1.7", "react" : "^17.0.2", "react-dom" : "^17.0.2", "react-router-dom" : ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "@types/react-router": {"type": "string"},...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "descriptor": {"type": "string"}}, "required": ["name", "descriptor"]}}, "methods": ...
{"name" : "enu$a$1", "fields" : [{"name" : "a", "descriptor" : "Lvk;"}, {"name" : "b", "descriptor" : "Lemq;"}, {"name" : "c", "descriptor" : "Lenu$a;"}], "methods" : [{"name" : "<init>", "descriptor" : "(Lenu$a;Lvk;Lemq;)V"}, {"name" : "a", "descriptor" : "()Lemq;"}, {"name" : "a", "descriptor" : "(Lenr;)V", "paramete...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "descriptor": {"type": "string"}}, "required": ["name", "descriptor"]}}, "methods": {"type": "array", "items": {"type": "object", "properties": {"name": {"type...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"defaults": {"type": "object", "properties": {"imageResolutions": {"type": "object", "properties": {"thumbnail": {"type": "object", "properties": {"height": {"type": "integer"}, "width": {"type": "integer"}}, "requ...
{"defaults" : {"imageResolutions" : {"thumbnail" : {"height" : 88, "width" : 88}, "featureThumbnail" : {"height" : 187, "width" : 337}, "image" : {"height" : 360, "width" : 200}}}}
json_instruct
{"type": "object", "properties": {"defaults": {"type": "object", "properties": {"imageResolutions": {"type": "object", "properties": {"thumbnail": {"type": "object", "properties": {"height": {"type": "integer"}, "width": {"type": "integer"}}, "required": ["height", "width"]}, "featureThumbnail": {"type": "object", "pro...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["cordova-android-scrollbar"]
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": {"firstname": {"type": "string"}, "lastname": {"type": "string"}, "title": {"type": "string"}, "phone": {"type": "string"}}, "required": ["firstname", "lastname", "title", "phone"], "$schema": "http://json-schema.org/draft-07...
{"firstname" : "LeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleoleoLeoleol...
json_instruct
{"type": "object", "properties": {"firstname": {"type": "string"}, "lastname": {"type": "string"}, "title": {"type": "string"}, "phone": {"type": "string"}}, "required": ["firstname", "lastname", "title", "phone"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"target": {"type": "string"}, "module": {"type": "string"}, "baseUrl": {"type": "string"}, "moduleResolution": {"type": "string"}, "paths": {"type": "object",...
{"compilerOptions" : {"target" : "esnext", "module" : "esnext", "baseUrl" : "./", "moduleResolution" : "node", "paths" : {"@/*" : ["./src/*"], "@api/*" : ["./src/api/*"], "@util/*" : ["./src/utils/*"], "@view/*" : ["./src/views/*"], "@comp/*" : ["./src/comp/*"], "@style/*" : ["./src/style/*"], "@hook/*" : ["./src/hooks...
json_instruct
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"target": {"type": "string"}, "module": {"type": "string"}, "baseUrl": {"type": "string"}, "moduleResolution": {"type": "string"}, "paths": {"type": "object", "properties": {"@/*": {"type": "array", "items": {"type": "string"}}, "@ap...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"keV": {"type": "array", "items": {"type": "number"}}, "intensity": {"type": "array", "items": {"type": "number"}}, "halfLife": {"type": "array", "items": {"type": "string"}}}, "required": ["keV", "intensity", "half...
{"keV" : [2.04, 15.691, 15.775, 17.653, 17.667, 17.969, 146.653, 328.7, 469.5, 475.3, 644.4, 699.9, 771.7, 781.2, 918.5, 1175.0, 1225.2, 1315.0, 1332.4, 1462.0, 1612.1, 1625.8, 1699.6, 1750.4, 1897.4, 1912.1, 1956.3, 2225.6, 2274.0, 2940.0, 3086.9, 3212.9, 3257.4, 3615.2, 3701.0, 3730.8, 3826.6, 3861.7, 3992.2, 4044.2,...
json_instruct
{"type": "object", "properties": {"keV": {"type": "array", "items": {"type": "number"}}, "intensity": {"type": "array", "items": {"type": "number"}}, "halfLife": {"type": "array", "items": {"type": "string"}}}, "required": ["keV", "intensity", "halfLife"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "theme": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "visual-designer": {"type": "array", "items":...
{"name" : "jquery-combobox", "version" : "1.0.0", "description" : "A jQuery plugin for custom combo box.", "theme" : "minimalism", "authors" : ["Joshua Tai (HIE-TW)<joshua_tai@trend.com.tw>", "Austin Hung (HIE-TW)<austin_h_hung@trend.com.tw>"], "visual-designer" : ["Lesley Chien (HIE-TW-CON) <Lesley_Chien@trend.com.tw>...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "theme": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "visual-designer": {"type": "array", "items": {"type": "string"}}, "ui-designer": {"type": "string"}, "p...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "date": {"type": "string"}, "distance": {"type": "number"}, "pace": {"type": "number"}, "distanceLabel": {"type": "string"}, "duration": {"type": "number"}, "runByRunner": {"type": "s...
{"id" : "10k2-7", "date" : "2016-05-01", "distance" : 6.2, "pace" : 9.86, "distanceLabel" : "10k", "duration" : 61.132, "runByRunner" : "Reinaldo"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "date": {"type": "string"}, "distance": {"type": "number"}, "pace": {"type": "number"}, "distanceLabel": {"type": "string"}, "duration": {"type": "number"}, "runByRunner": {"type": "string"}}, "required": ["id", "date", "distance", "pace", "distanceLabel", "du...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"sky_copy_to_clipboard_button_title": {"type": "object", "properties": {"message": {"type": "string"}, "_description": {"type": "string"}}, "required": ["message", "_description"]}}, "required": ["sky_copy_to_clipboa...
{"sky_copy_to_clipboard_button_title" : {"message" : "Copy to clipboard", "_description" : "Button title for the copy to clipboard button"}}
json_instruct
{"type": "object", "properties": {"sky_copy_to_clipboard_button_title": {"type": "object", "properties": {"message": {"type": "string"}, "_description": {"type": "string"}}, "required": ["message", "_description"]}}, "required": ["sky_copy_to_clipboard_button_title"], "$schema": "http://json-schema.org/draft-07/schema#...
Generate a valid JSON object that conforms to the following 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"], ...
{"Time" : "2021-05-27T21:00:00Z", "Temp" : 21.2, "RelHum" : 72, "WindSpeed" : 1.5, "WindDir" : 199}
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#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"profiles": {"type": "object", "properties": {"HtmlGenerator": {"type": "object", "properties": {"commandName": {"type": "string"}, "commandLineArgs": {"type": "string"}}, "required": ["commandName", "commandL...
{"profiles" : {"HtmlGenerator" : {"commandName" : "Project", "commandLineArgs" : "\"C:\\Projects\\Branches\\trunk\\cleanCore\\TSBpm\\Src\\Lib\\TSLib.sln\" /out:\"C:\\Projects\\Branches\\trunk\\cleanCore\\index\" /force"}}}
json_instruct
{"type": "object", "properties": {"profiles": {"type": "object", "properties": {"HtmlGenerator": {"type": "object", "properties": {"commandName": {"type": "string"}, "commandLineArgs": {"type": "string"}}, "required": ["commandName", "commandLineArgs"]}}, "required": ["HtmlGenerator"]}}, "required": ["profiles"], "$sch...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"PyDWI": {"type": "object", "properties": {"Overview": {"type": "string"}, "PyDWI": {"type": "string"}}, "required": ["Overview", "PyDWI"]}}, "required": ["PyDWI"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"PyDWI" : {"Overview" : "/", "PyDWI" : "/core"}}
json_instruct
{"type": "object", "properties": {"PyDWI": {"type": "object", "properties": {"Overview": {"type": "string"}, "PyDWI": {"type": "string"}}, "required": ["Overview", "PyDWI"]}}, "required": ["PyDWI"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"project_name": {"type": "string"}, "files": {"type": "object", "properties": {"/src/main/java/es/urjc/etsii/labtel/service/util/RandomUtil.java": {"type": "integer"}}, "required": ["/src/main/java/es/urjc/ets...
{"project_name" : "VSeryi/labtel", "files" : {"/src/main/java/es/urjc/etsii/labtel/service/util/RandomUtil.java" : 3}, "pull_request" : "https://github.com/VSeryi/labtel/pull/2", "report" : {"files_fixed" : 1, "vulnerabilities_fixed" : 3, "file_name_fixed" : ["/src/main/java/es/urjc/etsii/labtel/service/util/RandomUtil...
json_instruct
{"type": "object", "properties": {"project_name": {"type": "string"}, "files": {"type": "object", "properties": {"/src/main/java/es/urjc/etsii/labtel/service/util/RandomUtil.java": {"type": "integer"}}, "required": ["/src/main/java/es/urjc/etsii/labtel/service/util/RandomUtil.java"]}, "pull_request": {"type": "string"}...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"values" : ["freezetag:setup/objectives", "freezetag:setup/teams"]}
json_instruct
{"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"slug": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}}, "required": ["slug", "name"...
[{"slug" : "capistrano", "name" : "Capistrano", "description" : "The Ruby equivalent of Fabric, Capistrano is a Ruby framework to configure and run deployment or system administration tasks on local or remote machines. It extends the Rake DSL to define tasks, and can group tasks by Roles.", "tags" : ["linux", "osx", "o...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"slug": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}}, "required": ["slug", "name", "description", "tags", "url"]}, "$schema": "http://json...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"code": {"type": "string"}, "description": {"type": "string"}, "label": {"type": "string"}, "mode": {"type": "integer"}, "status": {"type": "integer"}, "uuid": {"type": "string"}}, "required": ["code", "description", ...
{"code" : "529", "description" : "", "label" : "No policy for checking the correct sizing of the equipment of the information processing infrastructure, including the emergency equipment", "mode" : 0, "status" : 1, "uuid" : "69fc1a11-4591-11e9-9173-0800277f0571"}
json_instruct
{"type": "object", "properties": {"code": {"type": "string"}, "description": {"type": "string"}, "label": {"type": "string"}, "mode": {"type": "integer"}, "status": {"type": "integer"}, "uuid": {"type": "string"}}, "required": ["code", "description", "label", "mode", "status", "uuid"], "$schema": "http://json-schema.or...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"SolverName": {"type": "string"}, "ObjBound": {"type": "number"}, "SolveTime": {"type": "number"}, "PrimalStatus": {"type": "string"}, "InstanceName": {"type": "string"}, "SolveTimeRaw": {"type": "number"}, "Com...
{"SolverName" : "EAGO", "ObjBound" : -0.6553398614806472, "SolveTime" : 100.03500008583069, "PrimalStatus" : "UNKNOWN_RESULT_STATUS", "InstanceName" : "60_gelu_4_3_5", "SolveTimeRaw" : 100.03600001335144, "CompletedSolveTime" : 100.0, "ObjValue" : -0.5146836437679478, "Error" : false, "TerminationStatus" : "TIME_LIMIT"...
json_instruct
{"type": "object", "properties": {"SolverName": {"type": "string"}, "ObjBound": {"type": "number"}, "SolveTime": {"type": "number"}, "PrimalStatus": {"type": "string"}, "InstanceName": {"type": "string"}, "SolveTimeRaw": {"type": "number"}, "CompletedSolveTime": {"type": "number"}, "ObjValue": {"type": "number"}, "Erro...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["react-native-code-push"]
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": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "3501110005", "district_id" : "3501110", "name" : "PAGEREJO"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string"}, "not_aft...
{"issuer_ca_id" : 16418, "issuer_name" : "C=US, O=Let's Encrypt, CN=Let's Encrypt Authority X3", "name_value" : "useroperand.51.15.243.49.nip.io", "min_cert_id" : 1217274840, "min_entry_timestamp" : "2019-02-19T17:00:39.628", "not_before" : "2019-02-19T16:00:39", "not_after" : "2019-05-20T16:00:39"}
json_instruct
{"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string"}, "not_after": {"type": "string"}}, "required": ["issuer_ca_id", "iss...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "qualified_name": {"type": "string"}, "examine": {"type": "string"}, "members": {"type": "boolean"}, "release_date": {"type": "string"}, "quest": {"type": "boole...
{"id" : 13530, "name" : "Twill accord", "qualified_name" : "Twill accord", "examine" : "The Royal Accord of Twill.", "members" : true, "release_date" : "2016-01-07", "quest" : false, "weight" : 0.005, "value" : 1, "tradeable" : false, "stackable" : false, "noteable" : false, "equipable" : false, "tradeable_ge" : false,...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "qualified_name": {"type": "string"}, "examine": {"type": "string"}, "members": {"type": "boolean"}, "release_date": {"type": "string"}, "quest": {"type": "boolean"}, "weight": {"type": "number"}, "value": {"type": "integer"}, "tra...
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["Tafo", "Shama Junction", "Saltpond", "Dunkwa", "Chum", "Muete", "Twinsisim", "Kabalima", "Adibo", "Nawari", "Sakumona", "Akwechi", "Avelete", "Takwaim", "Dodo-Iri", "Yendi", "Winneba", "Wenchi", "Wa", "Teshi", "Tema", "Techiman", "Tarkwa", "Swedru", "Brong-Ahafo Region", "Sunyani", "Suhum", "Western Region", "Sekondi...
json_instruct
{"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": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"...
{"web" : [{"value" : ["\u672a\u88ab\u9080\u8bf7", "\u56db\u4eba\u9910\u684c", "\u4e0d\u901f\u4e4b\u5ba2"], "key" : "Uninvited"}, {"value" : ["\u672a\u7ecf\u8bf7\u6c42\u7684"], "key" : "uncalled uninvited"}, {"value" : ["\u672a\u88ab\u9080\u8bf7\u7684"], "key" : "uninvited a"}], "query" : "uninvited", "translation" : ["...
json_instruct
{"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCod...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/...
{"towns" : [{"name" : "Roth", "url" : "roth"}, {"name" : "Roth", "url" : "roth-1"}]}
json_instruct
{"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["appirio-tech-ng-messaging", "appirio-tech-ng-status-report"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"granules": {"type": "array", "items": {"type": "object", "properties": {"granuleId": {"type": "string"}, "dataType": {"type": "string"}, "version": {"type": "string"}, "files": {"type": "array", "items": {"ty...
{"granules" : [{"granuleId" : "MOD09GQ.A2016358.h13v04.006.2016360104606", "dataType" : "MOD09GQ", "version" : "006", "files" : [{"path" : "cumulus-test-data/pdrs", "size" : 1098034, "name" : "MOD09GQ.A2016358.h13v04.006.2016360104606.hdf", "type" : "data", "url_path" : "{cmrMetadata.Granule.GranuleUR}/{file.name}"}, {...
json_instruct
{"type": "object", "properties": {"granules": {"type": "array", "items": {"type": "object", "properties": {"granuleId": {"type": "string"}, "dataType": {"type": "string"}, "version": {"type": "string"}, "files": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "size": {"type": "i...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "id": {"type": "integer"}, "image_url": {"type": "string"}, "updated_at": {"type": "string"}, "deleted_at": {"type": "null"}, "recipe_type": {"typ...
{"name" : "KY\u2019s Melon Bourbon Tobacco", "description" : "WIld melon is a key player in this, along with bourbon which is a strong profile had to back it down to .5% so it doesnt overpower the mix. FLV virginia is a background flavor alittle mild and earthy notes to give support to FLV KY blend, as for Kentucky bl...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "id": {"type": "integer"}, "image_url": {"type": "string"}, "updated_at": {"type": "string"}, "deleted_at": {"type": "null"}, "recipe_type": {"type": "integer"}, "recipe_flavors": {"type": "array", "items": {"type": "object...
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" : "0x2883559ab95de4ac617cdcf777ea23c852ccdc33", "tool" : "solhint", "start" : 1563784281.541332, "end" : 1563784285.4786873, "duration" : 3.9373552799224854, "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://...
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" : 101798147, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "a5d173b4b40f77408cc3123d946ab426", "wof:id" : 101798147, "wof:repo" : "whosonfirst-data-admin-bg"}, "bbox" : [25.7, 42.21667, 25.7, 42.21667], "geometry" : {"coordinates" : [25...
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 an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"...
{"name" : "MBNetwork", "version" : "0.4.0", "summary" : "MBNetwork - Network request can be easier", "description" : "MBNetwork is a network request framework based on Alamofire and ObjectMapper, aiming at making network request easier for business development", "homepage" : "https://github.com/mmoaay/MBNetwork", "lice...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"...
Using the following JSON schema, generate a compatible JSON instance: {"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"]}},...
[{"label" : "Person", "normalizedVertices" : [{"x" : 0.7301941, "y" : 0.868255}, {"x" : 0.9187967, "y" : 0.868255}, {"x" : 0.9187967, "y" : 0.9606738}, {"x" : 0.7301941, "y" : 0.9606738}], "score" : 0.8546155}]
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...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": [...
{"type" : "FeatureCollection", "name" : "D01_BART_R1_P1_v1", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features" : [{"type" : "Feature", "properties" : {"Name" : "", "description" : null, "FID" : "0"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[-71.3342560118...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "a...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"just": {"type": "array", "items": {"type": "integer"}}, "journal": {"type": "array", "items": {"type": "integer"}}, "json": {"type": "array", "items": {"type": "integer"}}}, "required": ["just", "journal", "json"], ...
{"just" : [589825, 917505, 1966082, 4980738], "journal" : [1966081, 4980737], "json" : [2097154, 11599874]}
json_instruct
{"type": "object", "properties": {"just": {"type": "array", "items": {"type": "integer"}}, "journal": {"type": "array", "items": {"type": "integer"}}, "json": {"type": "array", "items": {"type": "integer"}}}, "required": ["just", "journal", "json"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}...
{"name" : "move-file-loader", "version" : "1.0.0", "license" : "MIT", "description" : "A Webpack loader to move files from one location to another and return the contents.", "main" : "lib/index.js", "authors" : ["Cody Reichert <codyreichert@gmail.com>", "Christopher Reichert <creichert07@gmail.com>", "Assertible, Inc <...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"zones": {"type": "array", "items": {"type": "string"}}, "links": {"type": "array", "items": {"type": "string"}}}, "required": ["zones", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"zones" : ["Indian/Chagos|LMT IOT IOT|-4N.E -50 -60|012|-2xosN.E 3AGLN.E", "Indian/Christmas|CXT|-70|0|", "Indian/Cocos|CCT|-6u|0|", "Indian/Kerguelen|zzz TFT|0 -50|01|-MG00", "Indian/Mahe|LMT SCT|-3F.M -40|01|-2yO3F.M", "Indian/Maldives|MMT MVT|-4S -50|01|-olgS", "Indian/Mauritius|LMT MUT MUST|-3O -40 -50|012121|-2xo...
json_instruct
{"type": "object", "properties": {"zones": {"type": "array", "items": {"type": "string"}}, "links": {"type": "array", "items": {"type": "string"}}}, "required": ["zones", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "quote_1": {"type": "string"}, "quote_2": {"type": "string"}, "quote_3": {"type": "string"}}, "required": ["name", "title", "quote_1", "quote_2", "quote_3"], "$schema": "ht...
{"name" : "Jayesh", "title" : "Techno-Disaster", "quote_1" : "Quote_1", "quote_2" : "Quote_2", "quote_3" : "Quote_3"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "quote_1": {"type": "string"}, "quote_2": {"type": "string"}, "quote_3": {"type": "string"}}, "required": ["name", "title", "quote_1", "quote_2", "quote_3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": {"type": "strin...
{"type" : "Feature", "properties" : {"name" : "Jonavos rajono savivaldyb\u0117", "iso2" : "LT-10", "admin_level" : 5, "osm_id" : 1447848, "wikidata_id" : "Q1351768", "wikipedia_id" : "lt:Jonavos rajono savivaldyb\u0117", "population" : 52300, "countrylevel_id" : "iso2:LT-10", "osm_data" : {"localname" : "Jonavos rajono...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}, "population": {"...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "categories": {"type": "array", "items": {"type": "string"}}, "organization": {"type": "string"}, "iconUrl": {"type": "string"}, "sourceUrl": {"type": "string"},...
{"id" : "RENUANT", "name" : "Renuant", "categories" : ["ADVERTISING", "TOOLS"], "organization" : "RENUANT", "iconUrl" : "https://images.squarespace-cdn.com/content/5b3424f93e2d09ed172fb573/1530144216616-RB8R0OH5F9JSEJXQJOGD/renuant+favicon.png?content-type=image%2Fpng", "sourceUrl" : "https://www.renuant.com", "dataVis...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "categories": {"type": "array", "items": {"type": "string"}}, "organization": {"type": "string"}, "iconUrl": {"type": "string"}, "sourceUrl": {"type": "string"}, "dataVisibility": {"type": "array", "items": {"type": "string"}}}, "re...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "descriptio...
{"title" : "\u5168\u88f8\u9ad8\u5c3e\u306e\u97d3\u30b9\u30b1\u30d9\u8e0a\u308a\uff11\uff18\u6b73\u4ee5\u4e0a\uff01", "author" : "jiraigenn1999", "description" : "\u6bd4\u8f03\u4fdd\u5b58", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thumbnails/2181019/thumbnail-2181019_0001.jpg?itok=oQYO3...
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://js...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"serverOpen": {"type": "string"}, "onlinePlayers": {"type": "string"}, "currentTime": {"type": "string"}, "cachedUntil": {"type": "string"}}, "required": ["serverOpen", "onlinePlayers", "currentTime", "cachedU...
{"serverOpen" : "True", "onlinePlayers" : "30271", "currentTime" : "2012-09-09 09:22:35", "cachedUntil" : "2012-09-09 09:25:24"}
json_instruct
{"type": "object", "properties": {"serverOpen": {"type": "string"}, "onlinePlayers": {"type": "string"}, "currentTime": {"type": "string"}, "cachedUntil": {"type": "string"}}, "required": ["serverOpen", "onlinePlayers", "currentTime", "cachedUntil"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "pattern": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "key": {"type": "object", "properties": {...
{"result" : {"item" : "cdm:motherboard"}, "pattern" : ["CSR", "GBG", "TTT"], "type" : "minecraft:crafting_shaped", "key" : {"C" : {"item" : "minecraft:comparator"}, "S" : {"item" : "minecraft:daylight_detector"}, "R" : {"item" : "minecraft:repeater"}, "G" : {"item" : "minecraft:gold_ingot"}, "B" : {"item" : "minecraft:...
json_instruct
{"type": "object", "properties": {"result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "pattern": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "key": {"type": "object", "properties": {"C": {"type": "object", "properties": {"item": {"type": "strin...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"$schema": {"type": "string"}, "$id": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"administratorsCanLogInAsAnyUser": {"type": "object", "propertie...
{"$schema" : "http://json-schema.org/draft-07/schema", "$id" : "https://github.com/amtrack/sfdx-browserforce-plugin/src/plugins/login-access-policies/schema.json", "title" : "Login Access Policies", "type" : "object", "properties" : {"administratorsCanLogInAsAnyUser" : {"$comment" : "Administrators Can Log in as Any Us...
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "$id": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"administratorsCanLogInAsAnyUser": {"type": "object", "properties": {"$comment": {"type": "string"}, "type": {"type": "stri...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"activitynotyetviewable": {"type": "string"}, "activitynotyetviewablegothere": {"type": "string"}, "allsections": {"type": "string"}, "confirmdeletemodulefiles": {"type": "string"}, "confirmdownload": {"type": "str...
{"activitynotyetviewable" : "Die Aktivit\u00e4t oder das Material kann bisher in der App nicht angezeigt werden.", "activitynotyetviewablegothere" : "Die Aktivit\u00e4t oder das Material kann bisher in der App nicht angezeigt werden. Tippen Sie auf die Taste, um die Website im Browser anzuzeigen.", "allsections" : "All...
json_instruct
{"type": "object", "properties": {"activitynotyetviewable": {"type": "string"}, "activitynotyetviewablegothere": {"type": "string"}, "allsections": {"type": "string"}, "confirmdeletemodulefiles": {"type": "string"}, "confirmdownload": {"type": "string"}, "confirmdownloadsection": {"type": "string"}, "confirmdownloadunk...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "valid_targets": {"type": "array", "items": {"type": "string"}}, "effect": {"type": "string"}, "ef...
{"id" : "t7_mana_idol_vex", "type" : "SPELL", "name" : "Idol: <color_dark_blue>Vex</color>", "description" : "Calls forth the ancient idol: <color_light_blue>Vex</color>, the etherean calamity. A deity who fulfills your desire for annihilation with its etherean prowess.\n* Once it is successfully summoned, you are affe...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "valid_targets": {"type": "array", "items": {"type": "string"}}, "effect": {"type": "string"}, "effect_str": {"type": "string"}, "base_energy_cost": {"type": "integer"},...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"publishedAt": {"type": "string"}, "content": {"type": "string"}, "title": {"type": "string"}, "featuredImage": {"type": "string"}}, "required": ["publishedAt", "content", "title", "featuredImage"], "$schema": "http://json-sche...
{"publishedAt" : "13th Mar 2021", "content" : "Just wanted to showcase some highlights from our Good Bull Nights throughout this semester. Whether it\u2019s ice skating, playing ultimate frisbee, or just hanging out at Lake Bryan, our Good Bull Nights have been a great opportunity for us to come together as an organiza...
json_instruct
{"type": "object", "properties": {"publishedAt": {"type": "string"}, "content": {"type": "string"}, "title": {"type": "string"}, "featuredImage": {"type": "string"}}, "required": ["publishedAt", "content", "title", "featuredImage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "longest_coverage_vector": {"type": "integer"}, "max_coverage_total_length": {"type": "integer"}, "max_coverage_vector_count": {"type": "integer"}, "longest_tree": {"type": "integer"}...
{"name" : "kiddle", "longest_coverage_vector" : 5374, "max_coverage_total_length" : 1827830, "max_coverage_vector_count" : 16728, "longest_tree" : 451, "max_profile_tick" : 27, "deepest_tree_depth" : 29}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "longest_coverage_vector": {"type": "integer"}, "max_coverage_total_length": {"type": "integer"}, "max_coverage_vector_count": {"type": "integer"}, "longest_tree": {"type": "integer"}, "max_profile_tick": {"type": "integer"}, "deepest_tree_depth": {"type": "...
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": {}}, ...
{"directions" : ["Whisk pickle juice, brown sugar, kosher salt, 1 teaspoon black pepper, and 1 pinch cayenne pepper together in a large bowl until sugar dissolves. Submerge chicken breasts in brine, using a plate or bowl to sink the breasts into the brine; refrigerate for 1 to 2 hours.", "Preheat an outdoor grill for m...
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "r...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"confidence": {"type": "integer"},...
{"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {"confidence" : 9, "authenticationResultCode" : "ValidCredentials", "brandLogoUri" : "http://dev.virtualearth.net/Branding/logo_powered_by.png", "copyright" : "Copyright \u00a9 2017 Microsoft and its suppliers. All rights reserved. This AP...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"confidence": {"type": "integer"}, "authenticationResultCode": {"type": "string"}, "brandLogoUri": {"type": "...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema...
{"towns" : [{"name" : "Cap-haiten", "url" : "cap-haiten"}]}
json_instruct
{"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index"...
{"index" : 2931, "hash" : 3086546322, "artDyeHash" : 3086546322, "redacted" : false, "dyeManifestHash" : 2894134162, "blacklisted" : false}
json_instruct
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blackl...
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "gempId": {"type": "string"}, "side": {"type": "string"}, "rarity": {"type": "string"}, "set": {"type": "string"}, "printings": {"type": "array", "items": {"type": "objec...
[{"id" : 2154, "gempId" : "7_261", "side" : "Dark", "rarity" : "F", "set" : "7", "printings" : [{"set" : "7"}], "front" : {"title" : "\u2022Sacrifice", "imageUrl" : "https://res.starwarsccg.org/cards/SpecialEdition-Dark/large/sacrifice.gif", "type" : "Interrupt", "subType" : "Used", "uniqueness" : "*", "destiny" : "4",...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "gempId": {"type": "string"}, "side": {"type": "string"}, "rarity": {"type": "string"}, "set": {"type": "string"}, "printings": {"type": "array", "items": {"type": "object", "properties": {"set": {"type": "string"}}, "required": ["s...
Based on the schema below, produce a valid JSON object: {"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"}, "conten...
{"data" : {"id" : 58599, "title" : "An old woman and her two daughters", "primoId" : "ADLIB110002295", "slug" : "adlib110002295", "shortcode" : "", "imageUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie1526436686624.jpg", "content" : "groups (people), Adult Females", "imageType" : "portrait", "date" : "20...
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"}, ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"encrypted": {"type": "array", "items": {}}, "unencrypted": {"type": "array", "items": {"type": "string"}}}, "required": ["encrypted", "unencrypted"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"encrypted" : [], "unencrypted" : [".atom/config.cson", ".atom/keymap.cson", ".atom/styles.less", ".bash_profile", ".config/alacritty/", ".gitconfig", ".gnupg/gpg-agent.conf", ".tmux.conf", ".vimrc", "run.sh", "tresor-jack/projects/execs"]}
json_instruct
{"type": "object", "properties": {"encrypted": {"type": "array", "items": {}}, "unencrypted": {"type": "array", "items": {"type": "string"}}}, "required": ["encrypted", "unencrypted"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"sentences": {"type": "array", "items": {"type": "string"}}}, "required": ["sentences"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"sentences" : ["It's snowing!", "It's sleeting", "be careful, it hails", "don't go out, there are thunderstorm", "take your umbrella, it's heavy rain", "take your umbrella, it has a little rain", "showers are forecast", "oh no, there are big clouds outside", "there are some little clouds in the sky", "the weather is c...
json_instruct
{"type": "object", "properties": {"sentences": {"type": "array", "items": {"type": "string"}}}, "required": ["sentences"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}...
[{"package" : "bioconductor-scaledmatrix", "downloads" : 3800, "count" : 3640}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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" : "Hannah-Arendt-Gymnasium Lengerich", "id" : "NRW-168427", "address" : "Bahnhofstr. 110, 49525 Lengerich", "school_type" : "Gymnasium", "fax" : "05481 82052", "phone" : "05481 82051", "website" : " http://home.teo.de/~hag", "email" : " 168427@schule.nrw.de ", "state" : "NRW", "programs" : {"programs" : ["Fai...
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": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, ...
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Buenavista, Buenavista, Quezon, CALABARZON (Region IV-A), PH", "locale" : "ph.calabarzon-region-iv-a.quezon.buenavista.buenavista", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "4", "regio...
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": {...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"plyr.css": {"type": "string"}, "plyr.js": {"type": "string"}, "plyr.min.js": {"type": "string"}, "plyr.polyfilled.js": {"type": "string"}, "plyr.polyfilled.min.js": {"type": "string"}}, "required": ["plyr.css", "pl...
{"plyr.css" : "sha512-W2xMWdfvhxC4Lm7VB642rb87vmahsjheFUM69wbgQaK+WwguUhD5g+9HL2P0yebJM7ICDXWOU8/G0grlq1xNEg==", "plyr.js" : "sha512-ehEEsOOZn7yJJH8JfNKBnUpSpWx31Yb5lvZx0QnK6t/clYFEGBg5/J77EHTwDkmBa4opZmsJ8v1T1vEsk3MaDQ==", "plyr.min.js" : "sha512-uM0l9fIn5+bGJ7qTK8Us+Tt7VUjdc9T5UvGfLEqcIxzKd5VSxq/7ttxNjtOVdS96Soxx8WEF...
json_instruct
{"type": "object", "properties": {"plyr.css": {"type": "string"}, "plyr.js": {"type": "string"}, "plyr.min.js": {"type": "string"}, "plyr.polyfilled.js": {"type": "string"}, "plyr.polyfilled.min.js": {"type": "string"}}, "required": ["plyr.css", "plyr.js", "plyr.min.js", "plyr.polyfilled.js", "plyr.polyfilled.min.js"],...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "proper...
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-0.782329, 50.841971]}, "properties" : {"start-date" : "1971-10-08", "listed-building-grade" : "II", "listed-building" : "1026800", "name" : "3 AND 4, CAVENDISH STREET", "documentation-url" : "https://historicengland.org.uk/listing/the-list/list-entr...
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": {"start-date": {"type": "string"}, ...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"CreationDate": {"type": "string"}, "DEC": {"type": "number"}, "RA": {"type": "number"}, "class": {"type": "string"}, "components": {"type": "object", "properties": {}, "required": []}, "em_type": {"type": "null"}, "name": {"ty...
{"CreationDate" : "2016-Nov-18", "DEC" : 0.6268, "RA" : 44.90608333333333, "class" : "IGMSightline", "components" : {}, "em_type" : null, "name" : "J025937.46+003736.48", "sl_type" : "IGM", "user" : "xavier", "zem" : 0.534}
json_instruct
{"type": "object", "properties": {"CreationDate": {"type": "string"}, "DEC": {"type": "number"}, "RA": {"type": "number"}, "class": {"type": "string"}, "components": {"type": "object", "properties": {}, "required": []}, "em_type": {"type": "null"}, "name": {"type": "string"}, "sl_type": {"type": "string"}, "user": {"ty...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "website": {"type": "string"}, "doom9": {"type": "string"}, "category": {"type": "string"}, "identifier": {"type": "string"...
{"name" : "SmoothUV", "type" : "VSPlugin", "description" : "A spatial derainbow filter", "website" : "https://github.com/dubhater/vapoursynth-smoothuv", "doom9" : "https://forum.doom9.org/showthread.php?t=175520", "category" : "Dot Crawl and Rainbows", "identifier" : "com.nodame.smoothuv", "namespace" : "smoothuv", "gi...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "website": {"type": "string"}, "doom9": {"type": "string"}, "category": {"type": "string"}, "identifier": {"type": "string"}, "namespace": {"type": "string"}, "github": {"type": "string"}, "relea...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "obje...
{"name" : "helpers", "description" : "helper functions for Node.js", "version" : "0.0.6", "author" : "Nathan Cartwright", "license" : "MIT", "main" : "node-helpers", "repository" : {"type" : "git", "url" : "https://github.com/fshost/helpers.git"}, "scripts" : {"test" : "mocha"}, "devDependencies" : {"should" : "*", "mo...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}},...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": ...
{"type" : "Feature", "properties" : {"name" : "South Banat Administrative District", "iso2" : "RS-04", "admin_level" : 6, "osm_id" : 1639496, "wikidata_id" : "Q720030", "wikipedia_id" : "en:South Banat District", "population" : 293730, "countrylevel_id" : "iso2:RS-04", "osm_data" : {"localname" : "\u0408\u0443\u0436\u0...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}, "population": {"...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "corntopia:block/barn_stairs"}
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": {"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...
{"word" : "Civilization", "definitions" : ["The stage of human social development and organization which is considered most advanced.", "The process by which a society or place reaches an advanced stage of social development and organization.", "The society, culture, and way of life of a particular area.", "The comfort...
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": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "ob...
{"hash" : "0x0a0318ea209cded3e375d0522662bbece939e5c28cde2955d9c0bf6e29a8643c", "parentHash" : "0x1f076c897688752d0a640ed978432339dff57a935d29983114eaf09799a82bd4", "number" : 4132, "timestamp" : 1438282281, "nonce" : "0xf8696647c8315812", "difficulty" : 123578755344, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_he...
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "str...
{"name" : "swmitra.brackets-touch", "title" : "Basic TouchEvent handling in Brackets", "description" : "Enable TouchEvents in brackets", "homepage" : "https://github.com/swmitra/brackets-touch", "version" : "1.0.0", "author" : "Swagatam Mitra <swagatammitra@gmail.com>", "license" : "MIT", "engines" : {"brackets" : ">=1...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"brackets": {"type": "str...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["des...
{"latest_version" : ["0.4"], "meta" : {"description" : "Friendly Color Normalization", "homepage" : "http://github.com/solute/python-tint", "license" : "GPL2"}, "versions" : {"0.3" : {"sha256" : "fb6fa9f4292df1d9d35b083911a4407dbbe487e57fd3d918ebb7fd24a848cbbb", "url" : "https://files.pythonhosted.org/packages/86/64/f5...
json_instruct
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "obje...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"652201001": {"type": "string"}, "652201002": {"type": "string"}, "652201003": {"type": "string"}, "652201004": {"type": "string"}, "652201005": {"type": "string"}, "652201100": {"type": "string"}, "652201101": {"typ...
{"652201001" : "\u4e1c\u6cb3\u533a\u8857\u9053", "652201002" : "\u897f\u6cb3\u533a\u8857\u9053", "652201003" : "\u65b0\u5e02\u533a\u8857\u9053", "652201004" : "\u4e3d\u56ed\u8857\u9053", "652201005" : "\u77f3\u6cb9\u65b0\u57ce\u8857\u9053", "652201100" : "\u96c5\u6ee1\u82cf\u9547", "652201101" : "\u4e03\u89d2\u4e95\u95...
json_instruct
{"type": "object", "properties": {"652201001": {"type": "string"}, "652201002": {"type": "string"}, "652201003": {"type": "string"}, "652201004": {"type": "string"}, "652201005": {"type": "string"}, "652201100": {"type": "string"}, "652201101": {"type": "string"}, "652201102": {"type": "string"}, "652201103": {"type": ...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/...
{"variants" : {"" : {"model" : "wildnature:block/stone_small_bricks"}}}
json_instruct
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"objects": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "number"}}, "required": ["id", "name", "value"]}}, "meta": {"typ...
{"objects" : [{"id" : 1, "name" : "First name", "value" : 29.99}], "meta" : {"success" : true}}
json_instruct
{"type": "object", "properties": {"objects": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "number"}}, "required": ["id", "name", "value"]}}, "meta": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["s...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}, "parentId": {"type": "string"}, "slotId": {"type": "string"}}, "required": ["_id", "_tpl", "parentId", "slotId"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_id" : "5ece83d301e14e770d5833dd", "_tpl" : "5839a7742459773cf9693481", "parentId" : "5ece83d301e14e770d5833d8", "slotId" : "mod_reciever"}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}, "parentId": {"type": "string"}, "slotId": {"type": "string"}}, "required": ["_id", "_tpl", "parentId", "slotId"], "$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"}, "title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"timestamp": {"type...
{"$id" : "docs/spec/timestamp_rfc3339.json", "title" : "Timestamp", "description" : "Used for '@timestamp' property.", "type" : ["object"], "properties" : {"timestamp" : {"type" : ["string", "null"], "pattern" : "Z$", "format" : "date-time", "description" : "Recorded time of the transaction, UTC based and formatted as ...
json_instruct
{"type": "object", "properties": {"$id": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"timestamp": {"type": "object", "properties": {"type": {"type": "array", "items": {"type": ...
Using the following JSON schema, generate a compatible JSON instance: {"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"}, "t...
{"body" : "On my CentOS system it was getting linked in (from Spack, no less)\r\nfortuitously.\r\n\r\nOn a minimal Ubuntu system it failed until it was added as an explicit\r\ndependency.", "user" : "hartzell", "url" : "https://api.github.com/repos/spack/spack/issues/11265", "updated_at" : "2019-04-24 00:01:37", "creat...
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": ...
Generate sample JSON data that conforms to the following schema definition: {"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": {"c...
[{"fees" : -2500000000, "ts" : "1534762802", "txid" : "44ef19a8f19e347016a90ba9f84efec459eca3850da4001a9b53c27d63405343", "block" : 1416371, "in" : [{"coinbase" : "03b39c1504329f7a5b0850567f4f000000000d2f6e6f64655374726174756d2f"}], "sent" : 2500000000, "out" : [{"value" : 0}, {"addr" : "M9YnFfBVUH2GqQeJKFmdkLskQTVRwbH...
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": "...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nu...
{"nom" : "Ambrumesnil", "circ" : "6\u00e8me circonscription", "dpt" : "Seine-Maritime", "inscrits" : 409, "abs" : 202, "votants" : 207, "blancs" : 6, "nuls" : 2, "exp" : 199, "res" : [{"nuance" : "FN", "nom" : "M. Nicolas BAY", "voix" : 59}, {"nuance" : "REM", "nom" : "M. Philippe DUFOUR", "voix" : 58}, {"nuance" : "CO...
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"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"...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"_comment": {"type": "string"}, "name": {"type": "string"}, "full_name": {"type": "string"}, "owner": {"type": "string"}, "private": {"type": "boolean"}, "html_url": {"type": "string"}, "description": {"type": "null"}, "fork": ...
{"_comment" : "DO NOT EDIT MANUALLY - See ../../../README.md", "name" : "rlmlogs", "full_name" : "RajaSrinivasan/rlmlogs", "owner" : "RajaSrinivasan", "private" : false, "html_url" : "https://github.com/RajaSrinivasan/rlmlogs", "description" : null, "fork" : false, "url" : "https://api.github.com/repos/RajaSrinivasan/r...
json_instruct
{"type": "object", "properties": {"_comment": {"type": "string"}, "name": {"type": "string"}, "full_name": {"type": "string"}, "owner": {"type": "string"}, "private": {"type": "boolean"}, "html_url": {"type": "string"}, "description": {"type": "null"}, "fork": {"type": "boolean"}, "url": {"type": "string"}, "languages_...
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["graft", "jschan-spdy", "jschan-ws"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"private_registry_create": {"type": "string"}, "private_registry_create_region": {"type": "string"}, "private_registry_create_name_cluster": {"type": "string"}, "private_registry_create_choose_plan": {"type": "string"}, "private_...
{"private_registry_create" : "Crea un Registry privato", "private_registry_create_region" : "Seleziona una localizzazione", "private_registry_create_name_cluster" : "Nome del cluster", "private_registry_create_choose_plan" : "Scegli la tua offerta", "private_registry_create_button" : "Crea"}
json_instruct
{"type": "object", "properties": {"private_registry_create": {"type": "string"}, "private_registry_create_region": {"type": "string"}, "private_registry_create_name_cluster": {"type": "string"}, "private_registry_create_choose_plan": {"type": "string"}, "private_registry_create_button": {"type": "string"}}, "required":...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"__type__": {"type": "string"}, "content": {"type": "object", "properties": {"name": {"type": "string"}, "texture": {"type": "string"}, "rect": {"type": "array", "items": {"type": "integer"}}, "offset": {"type": "array", "it...
{"__type__" : "cc.SpriteFrame", "content" : {"name" : "share_gift_active", "texture" : "77Kr6QaGtPS4SChiXW1OTF", "rect" : [6, 0, 117, 116], "offset" : [-0.5, 18], "originalSize" : [130, 152]}}
json_instruct
{"type": "object", "properties": {"__type__": {"type": "string"}, "content": {"type": "object", "properties": {"name": {"type": "string"}, "texture": {"type": "string"}, "rect": {"type": "array", "items": {"type": "integer"}}, "offset": {"type": "array", "items": {"type": "number"}}, "originalSize": {"type": "array", "...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"loss": {"type": "array", "items": {"type": "number"}}, "val_acc": {"type": "array", "items": {"type": "number"}}, "val_loss": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"typ...
{"loss" : [14.483568609110515, 14.519986049906413, 14.519986020406087, 14.519986057535807, 14.519986104329426, 14.519986010233561, 14.519986060078939, 14.519986077372232, 14.51998605295817, 14.519986006164551, 14.51998606821696, 14.51998604329427, 14.519986037190755, 14.51998606109619, 14.51998606821696, 14.51998606821...
json_instruct
{"type": "object", "properties": {"loss": {"type": "array", "items": {"type": "number"}}, "val_acc": {"type": "array", "items": {"type": "number"}}, "val_loss": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}}, "required": ["loss", "val_acc", "val_loss", "acc"], "$s...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"restartable": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "watch": {"type": "array", "items": {"type": "string"}}, "execMap": {"type": "object", "properties": {"ts": {"type": "string"}}, "r...
{"restartable" : "rs", "ignore" : [".git", "node_modules/", "dist/", "coverage/"], "watch" : ["server/", "client/", "nuxt.config.js", "config/"], "execMap" : {"ts" : "node -r ts-node/register -r tsconfig-paths/register"}, "env" : {"TS_NODE_PROJECT" : "server/tsconfig.json", "NODE_ENV" : "development", "USE_ENGINE" : "e...
json_instruct
{"type": "object", "properties": {"restartable": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "watch": {"type": "array", "items": {"type": "string"}}, "execMap": {"type": "object", "properties": {"ts": {"type": "string"}}, "required": ["ts"]}, "env": {"type": "object", "properties": {"T...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "ite...
{"directions" : ["Preheat oven to 350 degrees F (175 degrees C). Grease the bottoms only of 12 muffin cups, or line with baking cups. Sift together the flour, cinnamon, baking soda, baking powder, and salt; set aside.", "Beat the eggs and sugar until frothy and lightened in color. Stir in the oil, vanilla extract, and ...
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "r...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"1,4-beta-D-xylan xylanohydrolase B": {"type": "string"}, "Xylanase B": {"type": "string"}, "1,4-beta-D-xylan xylanohydrolase A": {"type": "string"}, "Xylanase A": {"type": "string"}, "P80717": {"type": "string"}, "XYNB_DICB4":...
{"1,4-beta-D-xylan xylanohydrolase B" : "P80717", "Xylanase B" : "P80717", "1,4-beta-D-xylan xylanohydrolase A" : "P80718", "Xylanase A" : "P80718", "P80717" : "P80717", "XYNB_DICB4" : "P80717", "Endo-1,4-beta-xylanase B" : "P80717", "P80718" : "P80718", "XYNA_DICB4" : "P80718", "Endo-1,4-beta-xylanase A" : "P80718"}
json_instruct
{"type": "object", "properties": {"1,4-beta-D-xylan xylanohydrolase B": {"type": "string"}, "Xylanase B": {"type": "string"}, "1,4-beta-D-xylan xylanohydrolase A": {"type": "string"}, "Xylanase A": {"type": "string"}, "P80717": {"type": "string"}, "XYNB_DICB4": {"type": "string"}, "Endo-1,4-beta-xylanase B": {"type": "...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"assessment": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "integer"}}, "required": ["name", "weight"]}}}, "required": ["assessment"], "$schema": ...
{"assessment" : [{"name" : "Midsemester Exam", "weight" : 25}, {"name" : "1. Descriptive Statistics", "weight" : 4}, {"name" : "2. Probability", "weight" : 4}, {"name" : "3. Normal and Sampling Distributions", "weight" : 4}, {"name" : "4. Confidence Intervals", "weight" : 4}, {"name" : "5. Hypothesis Testing", "weight"...
json_instruct
{"type": "object", "properties": {"assessment": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "integer"}}, "required": ["name", "weight"]}}}, "required": ["assessment"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array"...
{"type" : "Feature", "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[-0.78032, 51.62487], [-0.780074, 51.624803], [-0.780243, 51.624478], [-0.779792, 51.624398], [-0.779804, 51.624365], [-0.780202, 51.624435], [-0.780268, 51.624398], [-0.780847, 51.623217], [-0.781105, 51.623265], [-0.78092, 51.623637], [-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": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "type": {"t...
{"id" : "0x09532c00afb0b075cc2758cf8a52dc7a817a82d79e2de11c30e07fc5f376118d", "title" : "Set the bonds discount price to not go below the backing price. ", "body" : "", "choices" : ["For", "Against"], "start" : 1639330500, "end" : 1639346400, "type" : "single-choice", "scores" : [489.10523787, 0], "scores_total" : 489...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "type": {"type": "string"}, "scores": {"type": "array", "items": {"type": "number"}}, ...