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": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", ...
{"localities" : ["Hillerman, IL", "New Grand Chain, IL", "Grand Chain, IL"], "state" : "IL", "postal_code" : "62941", "locality" : "Grand Chain, IL", "lat" : 37.239258, "region" : {"fips" : "17", "abbr" : "IL", "name" : "Illinois"}, "city" : "Grand Chain", "type" : "STANDARD", "lng" : -88.986107, "counties" : [{"fips" ...
json_instruct
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:country": {"type": "string"}, "addr:housenumber": {"type": "string"}, ...
{"type" : "Feature", "id" : "node/5327229492", "properties" : {"addr:city" : "Windsbach", "addr:country" : "DE", "addr:housenumber" : "25", "addr:postcode" : "91575", "addr:street" : "Suddersdorf", "addr:suburb" : "Suddersdorf", "contact:phone" : "+49 9871 477", "contact:website" : "http://www.demeterhof-schwab.de/schw...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:country": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "ad...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "betterend:block/neon_cactus_slab"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"commit": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "url": {"type": "string"}}, "required": ["commit", "name", "type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"commit" : "1234abcd", "name" : "status-react/nightly/3", "type" : "android", "url" : "https://status-im.ams3.digitaloceanspaces.com/StatusIm-190113-032212-40aff1-nightly.apk"}
json_instruct
{"type": "object", "properties": {"commit": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "url": {"type": "string"}}, "required": ["commit", "name", "type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "ite...
{"ast" : null, "code" : "var O = 'object';\n\nvar check = function check(it) {\n return it && it.Math == Math && it;\n}; // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\n\n\nmodule.exports = // eslint-disable-next-line no-undef\ncheck(typeof globalThis == O && globalThis) || check(typeof window...
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesCont...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "ingredient": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "output": {"type": "object", "properties": {"item": {"type": "string"}, "count": {"type": "integ...
{"type" : "indrev:pulverize", "ingredient" : {"item" : "minecraft:bone"}, "output" : {"item" : "minecraft:bone_meal", "count" : 5}, "processTime" : 200, "extra" : {"item" : "minecraft:bone_meal", "count" : 2, "chance" : 0.5}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "ingredient": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "output": {"type": "object", "properties": {"item": {"type": "string"}, "count": {"type": "integer"}}, "required": ["item", "count"]}, "processTime": {"type":...
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "632525400500", "text" : "\u573a\u90e8"}, {"id" : "632525400501", "text" : "\u4e00\u5206\u516c\u53f8\u751f\u6d3b\u533a"}, {"id" : "632525400502", "text" : "\u4e8c\u5206\u516c\u53f8\u751f\u6d3b\u533a"}, {"id" : "632525400503", "text" : "\u4e09\u5206\u516c\u53f8\u751f\u6d3b\u533a"}, {"id" : "632525400504", "text...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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": {"...
{"name" : "Gladius Token", "symbol" : "GLA", "type" : "ERC20", "decimals" : 8, "description" : "-", "website" : "", "explorer" : "https://etherscan.io/token/0x71D01dB8d6a2fBEa7f8d434599C237980C234e4C", "status" : "abandoned", "id" : "0x71D01dB8d6a2fBEa7f8d434599C237980C234e4C"}
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": ...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "5303182001", "district_id" : "5303182", "name" : "FATUMONAS"}
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 a JSON structure that matches this schema definition: {"type": "object", "properties": {"category": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "caption": {"type": "string"}}, "required": ["url", "caption"]}}, "name": {"type": "string"}, ...
{"category" : "NobleHouses", "images" : [{"url" : "http://awoiaf.westeros.org/images/thumb/f/fa/House_Osgrey.PNG/250px-House_Osgrey.PNG", "caption" : ""}], "name" : "House Osgrey", "summary" : "<p><b>House Osgrey of Standfast</b> is a noble house from <a href=\"http://awoiaf.westeros.org/index.php/Standfast\" title=\"S...
json_instruct
{"type": "object", "properties": {"category": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "caption": {"type": "string"}}, "required": ["url", "caption"]}}, "name": {"type": "string"}, "summary": {"type": "string"}}, "required": ["category", "imag...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"value" : ["2007", "2010", "2018", "1982", "1984", "2024"]}
json_instruct
{"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "b65b4b4a4df08c28d903df1ae838cd9374d93ebb"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["co...
{"contract" : "0x01329995f618a3f28b0a197e51893f792c13b69b", "tool" : "osiris", "start" : 1564590706.9492228, "end" : 1564590709.7789361, "duration" : 2.8297133445739746, "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 a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "external_url": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type"...
{"name" : "EightBit #1630", "description" : "A Collection of 8,888 Generative Bits", "external_url" : "https://eightbit.me/bit/1630", "attributes" : [{"trait_type" : "Body", "value" : "Female"}, {"trait_type" : "Skin Tone", "value" : "Skin Tone 1"}, {"trait_type" : "Shoes", "value" : "Loafer"}, {"trait_type" : "Shoes C...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "external_url": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}, "token_id...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@cljs-oss/module-deps": {"type": "string"}, "prop-types": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "stri...
{"private" : true, "dependencies" : {"@cljs-oss/module-deps" : "1.1.1", "prop-types" : "15.7.2", "react" : "17.0.1", "react-dom" : "17.0.1"}, "scripts" : {"start" : "lein figwheel client-npm"}, "devDependencies" : {"gzip-size-cli" : "3.0.0", "karma" : "4.4.1", "karma-chrome-launcher" : "3.1.0", "karma-cljs-test" : "0.1...
json_instruct
{"type": "object", "properties": {"private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@cljs-oss/module-deps": {"type": "string"}, "prop-types": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["@cljs-oss/module-deps", "prop-types", "react", "...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "risk_score": {"type": "integer"}, "severity": {"type": "string"}, "type": {"type": "string"}, "from": {"type": "string"}, "to": {"type": "string"},...
{"name" : "Query which is disabled", "description" : "Example query which will is disabled and will not run after being posted", "risk_score" : 1, "severity" : "high", "type" : "query", "from" : "now-6m", "to" : "now", "query" : "user.name: root or user.name: admin", "enabled" : false}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "risk_score": {"type": "integer"}, "severity": {"type": "string"}, "type": {"type": "string"}, "from": {"type": "string"}, "to": {"type": "string"}, "query": {"type": "string"}, "enabled": {"type": "boolean"}}, "required": ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "keywords": {"type": "array", "i...
{"name" : "donut", "private" : true, "description" : "Cryptocurrency Tracker", "authors" : ["Harsh Vakharia <harsh@etherbit.in>"], "license" : "MIT", "keywords" : ["donut", "cryptocurrency", "bitcoin", "ethereum"], "homepage" : "https://www.etherbit.in/open-source/donut", "ignore" : ["**/.*", "node_modules", "bower_com...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "ignore":...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "devDependencies": {"type": "object", "...
{"name" : "flexgetui", "version" : "1.0.0", "main" : "gulpfile.js", "directories" : {"test" : "test"}, "devDependencies" : {"del" : "^2.0.2", "gulp" : "^3.9.0", "gulp-bower" : "0.0.10", "gulp-concat" : "^2.6.0", "gulp-concat-vendor" : "0.0.4", "gulp-css-url-adjuster" : "^0.2.3", "gulp-filter" : "^3.0.1", "gulp-flatten"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "devDependencies": {"type": "object", "properties": {"del": {"type": "string"}, "gulp": {"type": "...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"roles": {"type": "array", "items": {"type": "string"}}, "ID": {"type": "integer"}, "Patch": {"type": "string"}, "Name": {"type": "string"}, "Alignment": {"type": "integer"}, "Movespeed": {"type": "integer"}, "MaxDmg": {"typ...
{"roles" : ["Carry", "Durable", "Disabler", "Initiator"], "ID" : 19, "Patch" : "6.79c", "Name" : "Slardar", "Alignment" : 1, "Movespeed" : 300, "MaxDmg" : 59, "MinDmg" : 51, "HP" : 549, "Mana" : 195, "HPRegen" : 0.25, "ManaRegen" : 0.01, "Armor" : 5.38, "Range" : 128, "ProjectileSpeed" : 0, "BaseStr" : 21, "BaseAgi" : ...
json_instruct
{"type": "object", "properties": {"roles": {"type": "array", "items": {"type": "string"}}, "ID": {"type": "integer"}, "Patch": {"type": "string"}, "Name": {"type": "string"}, "Alignment": {"type": "integer"}, "Movespeed": {"type": "integer"}, "MaxDmg": {"type": "integer"}, "MinDmg": {"type": "integer"}, "HP": {"type": ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}...
{"schema_version" : "1.2.0", "id" : "GHSA-9mfh-2h7f-xf6h", "modified" : "2021-12-11T00:01:04Z", "published" : "2021-12-09T00:00:24Z", "aliases" : ["CVE-2021-38508"], "details" : "By displaying a form validity message in the correct location at the same time as a permission prompt (such as for geolocation), the validity...
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "a...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "unity": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": [...
{"name" : "com.josef212.cached-scroll", "displayName" : "Cached scroll list", "description" : "A cached scroll list to optimize scroll lists with lots of items.", "version" : "1.0.1", "unity" : "2018.3", "dependencies" : {}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "unity": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "displayName", "description", "versi...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "sortorder": {"type": "integer"}, "rarity": {"type": "string"}, "category": {"type": "string"}, "materialtype": {"type": "string"}, "source": {"type": "array", "items...
{"name" : "B\u00e1nh kem t\u1eb7ng cho Nh\u00e0 L\u1eef H\u00e0nh", "description" : "V\u1eadt k\u1ef7 ni\u1ec7m cho m\u1ed9t ng\u00e0y c\u00f3 \u00fd ngh\u0129a tr\u1ecdng \u0111\u1ea1i n\u00e0o \u0111\u00f3.\n\nT\u1eb7ng cho b\u1ea1n - ng\u01b0\u1eddi l\u00fac n\u00e0o c\u0169ng b\u00f4n ba kh\u1eafp n\u01a1i.\nCh\u00...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "sortorder": {"type": "integer"}, "rarity": {"type": "string"}, "category": {"type": "string"}, "materialtype": {"type": "string"}, "source": {"type": "array", "items": {}}}, "required": ["name", "description", "sortorder",...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"description": {"type": "string"}, "parameters": {"type": "object", "properties": {"user": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type",...
{"description" : "This script will reset the sticky alerts for a logfile before they time out (3 days)", "parameters" : {"user" : {"type" : "Optional[String[1]]", "description" : "Optional: Name of user to run the unstick as, defaults to icinga"}, "config" : {"type" : "Optional[String[1]]", "description" : "The name of...
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "parameters": {"type": "object", "properties": {"user": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "config": {"type": "object", "properties": {"type": {"type"...
Based on the schema below, produce a valid JSON object: {"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": {"ty...
{"title" : "A Low False Negative Filter for Detecting Rare Bird Species from Short Video Segments using a Probable Observation Data Set-based EKF Method.", "fields" : ["monocular vision", "extended kalman filter", "eye tracking", "convergence", "computer vision", "observational error", "mathematical optimization", "kal...
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...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"district": {"type": "string"}, "flight": {"type": "string"}, "level": {"type": "string"}, "loser": {"type": "string"}, "matchDate": {"type": "string"}, "matchId": {"type": "string"}, "ma...
[{"district" : "", "flight" : "", "level" : "NTRP Men's 4.0 Singles", "loser" : "Jon Espejo", "matchDate" : "10/21/2011", "matchId" : "", "matchType" : "", "name" : "MIDTOWN FALL NTRP (3.0,3.5,4.0,4.5) & OPEN CHAMPIONSHIP", "round" : "Round 16", "score" : "6-4; 7-6(5)", "section" : "", "type" : "Tournament", "winner" :...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"district": {"type": "string"}, "flight": {"type": "string"}, "level": {"type": "string"}, "loser": {"type": "string"}, "matchDate": {"type": "string"}, "matchId": {"type": "string"}, "matchType": {"type": "string"}, "name": {"type": "string"}, "round": {"typ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "files": {"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "strin...
{"id" : "version_fix", "name" : "NW 0.54.1 compat", "description" : "Makes the game work on NW 0.54.1", "version" : "1.0.0", "files" : {"plugins" : ["version_fix.js"]}, "_flags" : ["prevent_disable", "randomize_plugin_name"], "manifestVersion" : 1}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "files": {"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "string"}}}, "required": ["plugins"]}, "_flags": {"type": "array", "items": ...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool"...
{"contract" : "0xd35a2d8c651f3eba4f0a044db961b5b0ccf68a2d", "tool" : "solhint", "start" : 1563205957.0812721, "end" : 1563205973.5425217, "duration" : 16.461249589920044, "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://...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "stri...
{"name" : "@express/openapi", "version" : "0.0.0", "description" : "Middleware for generating OpenAPI/Swagger documentation for your Express app", "author" : "Wes Todd <wes@wesleytodd.com>", "keywords" : ["express", "openapi", "swagger", "documentation"], "license" : "ISC", "main" : "index.js", "repository" : {"type" :...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "propertie...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"RuBisCO large subunit": {"type": "string"}, "Q9XPR5": {"type": "string"}, "RBL_IDEPO": {"type": "string"}, "Ribulose bisphosphate carboxylase large chain": {"type": "string"}, "rbcL": {"type": "string"}}, "requ...
{"RuBisCO large subunit" : "Q9XPR5", "Q9XPR5" : "Q9XPR5", "RBL_IDEPO" : "Q9XPR5", "Ribulose bisphosphate carboxylase large chain" : "Q9XPR5", "rbcL" : "Q9XPR5"}
json_instruct
{"type": "object", "properties": {"RuBisCO large subunit": {"type": "string"}, "Q9XPR5": {"type": "string"}, "RBL_IDEPO": {"type": "string"}, "Ribulose bisphosphate carboxylase large chain": {"type": "string"}, "rbcL": {"type": "string"}}, "required": ["RuBisCO large subunit", "Q9XPR5", "RBL_IDEPO", "Ribulose bisphosph...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"About us": {"type": "string"}, "Team": {"type": "string"}, "Pricing": {"type": "string"}, "Contact": {"type": "string"}, "My Account": {"type": "string"}, "Sign In": {"type": "string"}, "User name": {"type": "s...
{"About us" : "About us", "Team" : "Team", "Pricing" : "Pricing", "Contact" : "Contact", "My Account" : "My Account", "Sign In" : "Sign In", "User name" : "User name", "Edit my profile" : "Edit my profile", "Account's settings" : "Account's settings", "Disconnect" : "Disconnect", "My profile" : "My profile", "Switzerla...
json_instruct
{"type": "object", "properties": {"About us": {"type": "string"}, "Team": {"type": "string"}, "Pricing": {"type": "string"}, "Contact": {"type": "string"}, "My Account": {"type": "string"}, "Sign In": {"type": "string"}, "User name": {"type": "string"}, "Edit my profile": {"type": "string"}, "Account's settings": {"typ...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"},...
[{"name" : "\u5289\u73a5\u6700\u65b0\u88ab\u7aa9\u88e1\u8214\u5927\u5c4c", "size" : 54283936, "link" : "https://streamtape.com/e/49p9YMRDZourG6", "created_at" : "2022\u5e7404\u670830\u65e5 03:33:23", "downloads" : 0, "linkid" : "49p9YMRDZourG6", "convert" : "converted", "achorname" : "\u4e38\u5b50\u5466", "subscribe" :...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe":...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children...
{"code" : 3303040005, "parent" : 3303040, "name" : "PANUNGGALAN", "latitude" : null, "longitude" : null, "postal" : [53393], "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...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"jquery.magnific-popup.min.js": {"type": "string"}, "magnific-popup.css": {"type": "string"}, "magnific-popup.min.css": {"type": "string"}}, "required": ["jquery.magnific-popup.min.js", "magnific-popup.css", "magnific...
{"jquery.magnific-popup.min.js" : "sha512-Dkl46VEG5WCXP3WikRxqhdzyvLifKm+fAmMq38qaPUucHgpxUi03WlOcyew3Vbl7IKS5mLD43tVGaMcJwIP52w==", "magnific-popup.css" : "sha512-dGYnQJuDGkKgKw7/iN8OEaES5CFFF75cMfkORuLEd8sCiiddOof6gNYebEFGOM11k5sRHTHd2WMywTBXmW+7jA==", "magnific-popup.min.css" : "sha512-1F2gASmLjK7LKuIsGOekty+GBaK2Jt...
json_instruct
{"type": "object", "properties": {"jquery.magnific-popup.min.js": {"type": "string"}, "magnific-popup.css": {"type": "string"}, "magnific-popup.min.css": {"type": "string"}}, "required": ["jquery.magnific-popup.min.js", "magnific-popup.css", "magnific-popup.min.css"], "$schema": "http://json-schema.org/draft-07/schema#...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"Day of the year": {"type": "string"}, "Person": {"type": "string"}, "Notable for": {"type": "string"}, "Year": {"type": "string"}, "Accomplishment": {"type": "string"}, "Web Reference": {"type": "string"}}, "requir...
{"Day of the year" : "February 26", "Person" : "Kenneth Edgeworth", "Notable for" : "Engineer, Astronomer", "Year" : "1880", "Accomplishment" : "Distant solar objects", "Web Reference" : "wikipedia.org/wiki/Kenneth_Edgeworth"}
json_instruct
{"type": "object", "properties": {"Day of the year": {"type": "string"}, "Person": {"type": "string"}, "Notable for": {"type": "string"}, "Year": {"type": "string"}, "Accomplishment": {"type": "string"}, "Web Reference": {"type": "string"}}, "required": ["Day of the year", "Person", "Notable for", "Year", "Accomplishme...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"Gary Court": {"type": "string"}, "Derek Perez": {"type": "string"}}, "...
{"name" : "murmurhash", "version" : "0.0.2", "description" : "A Node.js module for the optimized JavaScript implementation of the MurmurHash algorithms.", "author" : {"Gary Court" : "gary.court@gmail.com", "Derek Perez" : "derek@derekperez.com"}, "main" : "murmurhash", "repository" : {"type" : "git", "url" : "git://git...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"Gary Court": {"type": "string"}, "Derek Perez": {"type": "string"}}, "required": ["Gary Court", "Derek Perez"]}, "main": {"type": "string"}, "repos...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repo...
{"name" : "atomar-cli", "version" : "1.1.2", "description" : "A command line tool to create and deploy atomar sites", "main" : "./atomar.js", "scripts" : {"test" : "jest"}, "repository" : {"type" : "git", "url" : "git+https://github.com/atomar-php/node-atomar-cli.git"}, "keywords" : ["atomar", "cli", "php"], "author" :...
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...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"kind": {"type": "string"}, "metadata": {"type": "object", "properties": {"name": {"type": "string"}, "namespace": {"type": "string"}, "selfLink": {"type": "string"}, "uid": {"type": "string"}, "resourceVersion"...
{"kind" : "Service", "metadata" : {"name" : "fabric8-console-service", "namespace" : "default", "selfLink" : "/api/v1beta3/namespaces/default/services/fabric8-console-service", "uid" : "a49c15ec-046f-11e5-9ad2-0800275503ae", "resourceVersion" : "95", "creationTimestamp" : "2015-05-27T12:55:25Z"}, "spec" : {"ports" : [{...
json_instruct
{"type": "object", "properties": {"kind": {"type": "string"}, "metadata": {"type": "object", "properties": {"name": {"type": "string"}, "namespace": {"type": "string"}, "selfLink": {"type": "string"}, "uid": {"type": "string"}, "resourceVersion": {"type": "string"}, "creationTimestamp": {"type": "string"}}, "required":...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"jsoneditor-minimalist.js": {"type": "string"}, "jsoneditor-minimalist.min.js": {"type": "string"}, "jsoneditor.css": {"type": "string"}, "jsoneditor.js": {"type": "string"}, "jsoneditor.min.css": {"type": "string"...
{"jsoneditor-minimalist.js" : "sha512-YIqAvuaeZbyA4K7jQG2x0GZSGnJTWcFTQ8Q+FurZR8a8WEOlvPXqAOsXRp6EOupf+tWxnVbB+adpanI11VCTOA==", "jsoneditor-minimalist.min.js" : "sha512-FX5OU+F32kTLzdfy3+BUGu8EDPhzd2Bi9L4VHeRv4msxekuTP7BUDdJrHN1ykiUXu/Dt90CqQjkHWfZbpV6Nqg==", "jsoneditor.css" : "sha512-PfHuBnkRFePK7kDZbdemLG4T6sCf9VqQ...
json_instruct
{"type": "object", "properties": {"jsoneditor-minimalist.js": {"type": "string"}, "jsoneditor-minimalist.min.js": {"type": "string"}, "jsoneditor.css": {"type": "string"}, "jsoneditor.js": {"type": "string"}, "jsoneditor.min.css": {"type": "string"}, "jsoneditor.min.js": {"type": "string"}}, "required": ["jsoneditor-mi...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "expo": {"type": "object", "properties": {"name": {"type": "string"}, "slug": {"type": "string"}, "icon": {"type": "string"}, "splash": {"type": "object", "properties...
{"name" : "Surlyn", "displayName" : "Surlyn", "expo" : {"name" : "Surlyn", "slug" : "Surlyn", "icon" : "./assets/icone.png", "splash" : {"image" : "./assets/icone.png", "backgroundColor" : "#5A9C54"}, "version" : "1.0.0", "assetBundlePatterns" : ["**/*"], "android" : {"package" : "com.diegocrodrigues.surlyn"}, "descrip...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "expo": {"type": "object", "properties": {"name": {"type": "string"}, "slug": {"type": "string"}, "icon": {"type": "string"}, "splash": {"type": "object", "properties": {"image": {"type": "string"}, "backgroundColor": {"typ...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "3305070028", "district_id" : "3305070", "name" : "KRADENAN"}
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items":...
{"version" : 1.3, "people" : [{"person_id" : [-1], "pose_keypoints_2d" : [0.460784, 0.284503, 0.863794, 0.468405, 0.411271, 0.897515, 0.405178, 0.453196, 0.888627, 0.34998, 0.609344, 0.951559, 0.413007, 0.510193, 0.839242, 0.524099, 0.397492, 0.85056, 0, 0, 0, 0, 0, 0, 0.468999, 0.778438, 0.866589, 0.421161, 0.806386, ...
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, ...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"file_name": {"type": "string"}, "guid": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}, "exports": {"t...
{"file_name" : "FactoryGame/Content/FactoryGame/Buildable/Vehicle/Truck/Audio/Vehicle_IndustrialTruck.uasset", "guid" : {"a" : 1405300739, "b" : 1325348385, "c" : 3370397857, "d" : 407611266}, "exports" : [{"name" : "Vehicle_IndustrialTruck", "class" : {"package" : "/Script/AkAudio", "name" : "AkAudioBank"}, "super" : ...
json_instruct
{"type": "object", "properties": {"file_name": {"type": "string"}, "guid": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}, "exports": {"type": "array", "items": {"type": "object", "properties": ...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity"...
{"schema_version" : "1.2.0", "id" : "GHSA-cm42-569j-qx8w", "modified" : "2022-04-29T02:58:15Z", "published" : "2022-04-29T02:58:15Z", "aliases" : ["CVE-2004-0728"], "details" : "The Remote Control Client service in Microsoft's Systems Management Server (SMS) 2.50.2726.0 allows remote attackers to cause a denial of serv...
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "a...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"realization": {"type": "integer"}, "acquisition_time_sec": {"type": "integer"}, "random_seed": {"type": "integer"}, "use_random_seed": {"type": "boolean"}, "noise_level_meter": {"type": "array", "items": {"type": "n...
{"realization" : 1, "acquisition_time_sec" : 400, "random_seed" : 8941, "use_random_seed" : true, "noise_level_meter" : [0.0005], "noise_std_meter" : 0, "bUse_static_init" : true, "staticLat" : 0, "staticLon" : 0, "bReconstruct" : true, "RCT_ALG_BFGS" : {"bReconstruct_from_dct" : true, "bReconstruct" : true, "bUse_gaus...
json_instruct
{"type": "object", "properties": {"realization": {"type": "integer"}, "acquisition_time_sec": {"type": "integer"}, "random_seed": {"type": "integer"}, "use_random_seed": {"type": "boolean"}, "noise_level_meter": {"type": "array", "items": {"type": "number"}}, "noise_std_meter": {"type": "integer"}, "bUse_static_init": ...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependen...
{"name" : "node", "version" : "0.1.0", "private" : true, "main" : "main.js", "scripts" : {"start" : "node main.js"}, "dependencies" : {"@diaas/api-sdk" : "file:../../lib"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"@diaas/api-sdk": ...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {...
{"id" : "88678237", "name" : "Wells Close", "nodes" : [{"type" : "node", "id" : 1029556132, "lat" : 52.3899146, "lon" : -0.7436962}, {"type" : "node", "id" : 1029556138, "lat" : 52.3899343, "lon" : -0.7438142}, {"type" : "node", "id" : 1029556228, "lat" : 52.3899228, "lon" : -0.7435245}, {"type" : "node", "id" : 102955...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunte...
Create a JSON structure that matches this 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"}, "nuls": {"type": "...
{"nom" : "Saint-Victor-sur-Arlanc", "circ" : "2\u00e8me circonscription", "dpt" : "Haute-Loire", "inscrits" : 113, "abs" : 63, "votants" : 50, "blancs" : 1, "nuls" : 1, "exp" : 48, "res" : [{"nuance" : "LR", "nom" : "M. Jean-Pierre VIGIER", "voix" : 30}, {"nuance" : "REM", "nom" : "M. Pierre ETEOCLE", "voix" : 18}]}
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": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": ...
{"artist_id" : "ARCF06I1187B995398", "artist_latitude" : null, "artist_location" : "", "artist_longitude" : null, "artist_name" : "K-OS", "duration" : 235.04934, "num_songs" : 1, "song_id" : "SOAXBAE12A6D4F79C3", "title" : "Heaven Only Knows", "year" : 2002}
json_instruct
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"message" : "Your nino has successfully been registered"}
json_instruct
{"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"activities_easter": {"type": "array", "items": {}}, "activities_epiphany": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "code_info": {"type": "null"}, "code_long": {"type": "string"}...
{"activities_easter" : [], "activities_epiphany" : [{"code" : "SEM/001", "code_info" : null, "code_long" : "SOCI3587/SEM/001", "day" : "2022-01-13", "description" : "Justice, Violence and Abuse\r\n", "end" : "16:00", "id" : 0, "planned_size" : "20", "room" : "ER231", "staff" : "Professor Nicole Westmarland", "start" : ...
json_instruct
{"type": "object", "properties": {"activities_easter": {"type": "array", "items": {}}, "activities_epiphany": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "code_info": {"type": "null"}, "code_long": {"type": "string"}, "day": {"type": "string"}, "description": {"type": "strin...
Using the following JSON schema, generate a compatible JSON instance: {"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": {...
{"nom" : "Grandvilliers", "circ" : "2\u00e8me circonscription", "dpt" : "Oise", "inscrits" : 2218, "abs" : 1267, "votants" : 951, "blancs" : 52, "nuls" : 37, "exp" : 862, "res" : [{"nuance" : "REM", "nom" : "Mme Agn\u00e8s THILL", "voix" : 456}, {"nuance" : "FN", "nom" : "M. Ga\u00ebtan DUSSAUSAYE", "voix" : 406}]}
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"...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"prod...
{"userId" : 94050, "cartId" : "277b56ba-9192-4bff-bdbb-9e9944350dca", "preferredProducts" : [2154, 2612, 4431], "productReviews" : [{"productId" : 4469, "reviewText" : "heard about this on Kansas City jazz radio, decided to give it a try.", "reviewDate" : "2018-03-26T02:38:11.6890739+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type":...
{"name" : "gira", "version" : "1.0.0", "author" : "Roman Glushach", "description" : "Google Chrome Extension for creating GitLab MR in Jira Server", "repository" : {"type" : "git", "url" : "https://github.com/EliFuzz/gira"}, "license" : "MIT", "scripts" : {"dev" : "webpack --mode=development --watch", "build" : "webpac...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"minimist": {"type": "string"}, "prog...
{"name" : "bmf", "version" : "0.1.0", "description" : "simple file backer-upper", "main" : "main.js", "dependencies" : {"minimist" : "^1.2.0", "progress" : "^1.1.8"}, "optionalDependencies" : {"xxhash" : "^0.2.4"}, "devDependencies" : {}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"minimist": {"type": "string"}, "progress": {"type": "string"}}, "required": ["minimist", "progress"]}, "optionalD...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"Penicillin-binding protein": {"type": "string"}, "DD-carboxypeptidase": {"type": "string"}, "DD-peptidase": {"type": "string"}, "PBP": {"type": "string"}, "P39042": {"type": "string"}, "DACX_STRSK": {"type": "string"...
{"Penicillin-binding protein" : "P39042", "DD-carboxypeptidase" : "P39042", "DD-peptidase" : "P39042", "PBP" : "P39042", "P39042" : "P39042", "DACX_STRSK" : "P39042", "D-alanyl-D-alanine carboxypeptidase" : "P39042"}
json_instruct
{"type": "object", "properties": {"Penicillin-binding protein": {"type": "string"}, "DD-carboxypeptidase": {"type": "string"}, "DD-peptidase": {"type": "string"}, "PBP": {"type": "string"}, "P39042": {"type": "string"}, "DACX_STRSK": {"type": "string"}, "D-alanyl-D-alanine carboxypeptidase": {"type": "string"}}, "requi...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"MTND3": {"type": "string"}, "NADH3": {"type": "string"}, "ND3": {"type": "string"}, "NADH dehydrogenase subunit 3": {"type": "string"}, "O21604": {"type": "string"}, "NU3M_PERER": {"type": "string"}, "NADH-ubiquin...
{"MTND3" : "O21604", "NADH3" : "O21604", "ND3" : "O21604", "NADH dehydrogenase subunit 3" : "O21604", "O21604" : "O21604", "NU3M_PERER" : "O21604", "NADH-ubiquinone oxidoreductase chain 3" : "O21604", "MT-ND3" : "O21604"}
json_instruct
{"type": "object", "properties": {"MTND3": {"type": "string"}, "NADH3": {"type": "string"}, "ND3": {"type": "string"}, "NADH dehydrogenase subunit 3": {"type": "string"}, "O21604": {"type": "string"}, "NU3M_PERER": {"type": "string"}, "NADH-ubiquinone oxidoreductase chain 3": {"type": "string"}, "MT-ND3": {"type": "str...
Using the following JSON schema, generate a compatible 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" : ["\u65e0\u7f1d", "\u5929\u8863\u65e0\u7f1d", "\u65e0\u63a5\u7f1d"], "key" : "Seamless"}, {"value" : ["\u65e0\u7f1d\u8f6c\u6362"], "key" : "Seamless Transitions"}, {"value" : ["\u65e0\u7f1d\u7ba1", "\u65e0\u7f1d\u94a2\u7ba1"], "key" : "seamless pipes"}], "query" : "seamless", "translation" : ["\u65e...
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...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"dygraph-combined-dev.js": {"type": "string"}, "dygraph-combined.js": {"type": "string"}}, "required": ["dygraph-combined-dev.js", "dygraph-combined.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"dygraph-combined-dev.js" : "sha512-M0P3o2rw7Bk6sRjYOCx72kmTeysvtQaJ0ayYLE5eNQ+koVzglsQDlOTgTHYTH4C+q3enkTysUo0mKIxnTiK5jA==", "dygraph-combined.js" : "sha512-/rvpWaMaXbiT9nyw1YeM1VZ9lbFQ0Jj0g6i6DA6oW30Qw4+RpMMan4Y0MxEw50qiIPa2lVkTvQlXQxcGARhL4Q=="}
json_instruct
{"type": "object", "properties": {"dygraph-combined-dev.js": {"type": "string"}, "dygraph-combined.js": {"type": "string"}}, "required": ["dygraph-combined-dev.js", "dygraph-combined.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"},...
[{"namaKab" : "BONE", "originalFilename" : "HILMIANI.JPG", "namaPartai" : "Partai Keadilan Sejahtera", "id" : 270073, "noUrut" : 1, "nama" : "HILMIANI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "BONE", "originalFilename" : "KASMI RAHAYU.JPG", "namaPartai" : "Partai Keadilan Sejahtera", "id" : 271056, "noUrut" ...
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", "...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"error-stack-parser": {"type": "obj...
{"name" : "@cobo/apm-rum-react-native-core", "version" : "0.6.0", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"error-stack-parser" : {"version" : "1.3.6", "resolved" : "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-1.3.6.tgz", "integrity" : "sha1-4Oc7k+QXE40c18C3RrGkoUhUwpI=", "requ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"error-stack-parser": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"typ...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"$schema": {"type": "string"}, "title": {"type": "string"}, "oneOf": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "array", "items": {"type": "string"}}, "prope...
{"$schema" : "http://json-schema.org/draft-07/schema#", "title" : "QueryMsg", "oneOf" : [{"type" : "object", "required" : ["base"], "properties" : {"base" : {"$ref" : "#/definitions/BaseQueryMsg"}}, "additionalProperties" : false}], "definitions" : {"BaseQueryMsg" : {"oneOf" : [{"description" : "Returns the state of th...
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "title": {"type": "string"}, "oneOf": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"base": {"type": "ob...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"desc": {"type": "string"}, "home": {"type": "string"}, "license": {"type": "string"}}, "required": ["desc", "home", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"desc" : "replace __all__ with @public.add decorator", "home" : "https://github.com/andrewp-as-is/public.py", "license" : "Unlicense"}
json_instruct
{"type": "object", "properties": {"desc": {"type": "string"}, "home": {"type": "string"}, "license": {"type": "string"}}, "required": ["desc", "home", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"page": {"type": "object", "properties": {"layout": {"type": "boolean"}}, "required": ["layout"]}, "test": {"type": "object", "properties": {"layout": {"type": "boolean"}}, "required": ["layout"]}}, "required": ["p...
{"page" : {"layout" : false}, "test" : {"layout" : false}}
json_instruct
{"type": "object", "properties": {"page": {"type": "object", "properties": {"layout": {"type": "boolean"}}, "required": ["layout"]}, "test": {"type": "object", "properties": {"layout": {"type": "boolean"}}, "required": ["layout"]}}, "required": ["page", "test"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"review": {"type": "string"}, "date": {"type": "string"}, "rating": {"type": "string"}, "author": {"type": "string"}, "review_id": {"type": "string"}, "movie_id": {"type": "string"}}, "req...
[{"review" : "1\ud0c4\ubcf4\ub2e8 \ubb50\ub784\uae4c \uc561\uc158\uc5d0 \ub354 \uce58\uc911\ud55c \ub290\ub08c\uc774\ub77c 1\ud3b8\uc774 \uc2dc\ub9ac\uc988\uc911 \ucd5c\uace0\uc778\uac74 \ud655\uc2e4. imdb \ud3c9\uc810\uc5d0\uc11c\ub3c4 1\ud3b8\uc774 \ub354 \ub192\uac8c \ub098\uc640\uc788\uc74c. \uc2dc\ub9ac\uc9885\ud3...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"review": {"type": "string"}, "date": {"type": "string"}, "rating": {"type": "string"}, "author": {"type": "string"}, "review_id": {"type": "string"}, "movie_id": {"type": "string"}}, "required": ["review", "date", "rating", "author", "review_id", "movie_id"]...
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#"}
[["341524202200", "\u6cb9\u5e97\u6751\u59d4\u4f1a", "210", "0"], ["341524202201", "\u9f9a\u51b2\u6751\u59d4\u4f1a", "220", "0"], ["341524202202", "\u5143\u51b2\u6751\u59d4\u4f1a", "220", "0"], ["341524202203", "\u77f3\u5830\u6751\u59d4\u4f1a", "220", "0"], ["341524202204", "\u9ec4\u826f\u6751\u59d4\u4f1a", "220", "0"],...
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": {"id": {"type": "string"}, "name": {"type": "string"}, "values": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}, "description": {"type": "strin...
{"id" : "e86f1c07-db3f-4ec2-ba52-5c32f2ec2865", "name" : "device-virtual", "values" : [{"key" : "coreMetaDataServiceHost", "value" : "http://localhost", "description" : "", "enabled" : true}, {"key" : "virtualDeviceServiceHost", "value" : "http://localhost", "description" : "", "enabled" : true}, {"key" : "coreMetadata...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "values": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}, "description": {"type": "string"}, "enabled": {"type": "boolean"}}, "required": ["key", "value", "descrip...
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" : 101833725, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "66c6bfe540ecc0a4a34cb28042577a97", "wof:id" : 101833725, "wof:repo" : "whosonfirst-data-admin-ro"}, "bbox" : [27.068881, 47.144715, 27.089969, 47.171375], "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": ["...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "properties": {"type": "object", "properties": {"activities": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "dependsOn": {"type"...
{"name" : "Custom Activity", "properties" : {"activities" : [{"name" : "HelloWorld", "type" : "Custom", "dependsOn" : [], "policy" : {"timeout" : "7.00:00:00", "retry" : 0, "retryIntervalInSeconds" : 30, "secureOutput" : false, "secureInput" : false}, "userProperties" : [], "typeProperties" : {"command" : "CustomActivi...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "properties": {"type": "object", "properties": {"activities": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "dependsOn": {"type": "array", "items": {}}, "policy": {"type": "object", "prop...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "proper...
{"hash" : "0x26eaa259da342e51212e911855d255a317ac99f8c2167713bc23d02446d56dfc", "parentHash" : "0x28f29321de80219a1b73319328df82aec9a19a20133a7b6e77c8e0b04f04ad37", "number" : 120492, "timestamp" : 1440160689, "nonce" : "0xb88f67586536b467", "difficulty" : 4415390160350, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : ...
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"]...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "summary": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "frameworks": {"type": "string"}, "source_files": {"type": "string"}, "platforms": {"type...
{"name" : "MimeR", "summary" : "A library to facilitate building iOS applications in line with Clean Architecture principles.", "version" : "0.1.7", "homepage" : "https://github.com/kocodude/MimeR", "frameworks" : "UIKit", "source_files" : "MimeR/Classes/**/*", "platforms" : {"ios" : "9.0"}, "authors" : {"Grant Oladipo...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "summary": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "frameworks": {"type": "string"}, "source_files": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "architectonic:block/small_diorite_bricks"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "a...
{"name" : "BitcoinForecast", "description" : "Predict bitcoin price with deep learning", "license" : null, "starNum" : 114, "folkNum" : 46, "watchNum" : 114, "topic" : ["bitcoin", "deep-learning", "keras", "machine-learning", "rnn", "trading"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "li...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "amenit...
{"type" : "Feature", "id" : "node/5820173773", "properties" : {"addr:city" : "Kaltennordheim", "addr:postcode" : "36452", "addr:street" : "Neumarkt", "amenity" : "marketplace", "name" : "Kaltennordheimer Wochenmarkt", "opening_hours" : "Tu", "operator" : "Stadt Kaltennordheim", "id" : "node/5820173773"}, "geometry" : {...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "amenity": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"t...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "st...
{"name" : "@simuf0/cli-console", "version" : "0.0.1", "description" : "", "main" : "./dist/index.js", "scripts" : {"build" : "tsc", "test" : "exit 0"}, "repository" : {"type" : "git", "url" : "git+https://github.com/simuf0/cli-console.git"}, "keywords" : ["cli"], "author" : "Simon Cabos <cabos.simon.dev@gmail.com> (htt...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "test"]}, "repository": {"type": "objec...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"service": {"type": "object", "properties": {"name": {"type": "string"}, "port": {"type": "integer"}, "checks": {"type": "array", "items": {"type": "object", "properties": {"http": {"type": "string"}, "interval"...
{"service" : {"name" : "docker", "port" : 2375, "checks" : [{"http" : "http://localhost:2375/info", "interval" : "30s"}], "tags" : ["customer-{{ pillar['schub']['customer_id'] }}"]}}
json_instruct
{"type": "object", "properties": {"service": {"type": "object", "properties": {"name": {"type": "string"}, "port": {"type": "integer"}, "checks": {"type": "array", "items": {"type": "object", "properties": {"http": {"type": "string"}, "interval": {"type": "string"}}, "required": ["http", "interval"]}}, "tags": {"type":...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"900721635": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900721636": {"type": "object", "properties": {"nama": {"t...
{"900721635" : {"nama" : "TPS 1", "dapil" : [7302, 17305, 2730704]}, "900721636" : {"nama" : "TPS 2", "dapil" : [7302, 17305, 2730704]}, "900721637" : {"nama" : "TPS 3", "dapil" : [7302, 17305, 2730704]}, "900721638" : {"nama" : "TPS 4", "dapil" : [7302, 17305, 2730704]}, "900721639" : {"nama" : "TPS 5", "dapil" : [730...
json_instruct
{"type": "object", "properties": {"900721635": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900721636": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"@context": {"type": "string"}, "@id": {"type": "string"}, "@type": {"type": "string"}, "o:comment": {"type": "string"}, "o:id": {"type": "integer"}, "o:label": {"type": "string"}, "o:local_name": {"type": "string"},...
{"@context" : "https://iiif.dl.itc.u-tokyo.ac.jp/repo/api-context", "@id" : "https://iiif.dl.itc.u-tokyo.ac.jp/repo/api/properties/59", "@type" : "o:Property", "o:comment" : "Relates a document to another document that cites the\nfirst document.", "o:id" : 59, "o:label" : "cited by", "o:local_name" : "citedBy", "o:term...
json_instruct
{"type": "object", "properties": {"@context": {"type": "string"}, "@id": {"type": "string"}, "@type": {"type": "string"}, "o:comment": {"type": "string"}, "o:id": {"type": "integer"}, "o:label": {"type": "string"}, "o:local_name": {"type": "string"}, "o:term": {"type": "string"}, "o:vocabulary": {"type": "object", "pro...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "minecraft:item/handheld", "textures" : {"layer0" : "testingmod:items/miner_pickaxe"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["pageup", "read-glob-promise"]
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": {"name": {"type": "string"}, "fields": {"type": "array", "items": {"type": "object", "properties": {"fieldName": {"type": "string"}, "fieldType": {"type": "string"}, "fieldValidateRules": {"type": "array", "items": {"type": "strin...
{"name" : "Quote", "fields" : [{"fieldName" : "symbol", "fieldType" : "String", "fieldValidateRules" : ["required", "unique"]}, {"fieldName" : "price", "fieldType" : "BigDecimal", "fieldValidateRules" : ["required"]}, {"fieldName" : "lastTrade", "fieldType" : "ZonedDateTime", "fieldValidateRules" : ["required"]}], "rel...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "fields": {"type": "array", "items": {"type": "object", "properties": {"fieldName": {"type": "string"}, "fieldType": {"type": "string"}, "fieldValidateRules": {"type": "array", "items": {"type": "string"}}}, "required": ["fieldName", "fieldType", "fieldValid...
Based on the schema below, produce a valid JSON object: {"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" : "1108081014", "district_id" : "1108081", "name" : "COT BAGI"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd...
{"station" : [{"pref_cd" : 24, "line_cd" : 11513, "line_name" : "JR\u540d\u677e\u7dda", "station_cd" : 1151302, "station_g_cd" : 1151302, "station_name" : "\u4e0a\u30ce\u5e84", "lon" : 136.499273, "lat" : 34.597996}]}
json_instruct
{"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"version": {"type": "string"}, "homepage": {"type": "string"}, "architecture": {"type": "object", "properties": {"64bit": {"type": "object", "properties": {"url": {"type": "string"}, "hash": {"type": "string"}}, "r...
{"version" : "4VmDzA7iaHb", "homepage" : "https://ngrok.com/", "architecture" : {"64bit" : {"url" : "https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-windows-amd64.zip", "hash" : "72112b04ff4a7854e800a6633298906f87e6744339a19dcae3ec299046fb55e5"}, "32bit" : {"url" : "https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-w...
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "homepage": {"type": "string"}, "architecture": {"type": "object", "properties": {"64bit": {"type": "object", "properties": {"url": {"type": "string"}, "hash": {"type": "string"}}, "required": ["url", "hash"]}, "32bit": {"type": "object", "properties": {"...
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "511781105001", "text" : "\u8349\u575d\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "511781105002", "text" : "\u91d1\u94f6\u574e\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "511781105200", "text" : "\u5149\u534e\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "511781105201", "text" : "\u6768\u5bb6\u6...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["arkive"]
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": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "arrays-desc": {"type": "string"}}, "required": ["@metadata", "arrays-desc"], "$sch...
{"@metadata" : {"authors" : ["Jagwar"]}, "arrays-desc" : "Hitahiry ary mandika ny tabilao misy anarana"}
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "arrays-desc": {"type": "string"}}, "required": ["@metadata", "arrays-desc"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "array", "items": {"type": "array", "items": {"type": "num...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[130.875, 33.25], [130.875, 33.333333333333336], [131.0, 33.333333333333336], [131.0, 33.25], [130.875, 33.25]]]}, "properties" : {"code" : 493077, "url" : "http://madefor.github.io/0410/api/v1/493077.geojson", "view" : "https://github.com/madefor...
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...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "jest": {"type": "object", "properties"...
{"name" : "covidanalysisserver", "version" : "0.1.0", "private" : true, "engines" : {"node" : "15.12.0"}, "jest" : {"testEnvironment" : "node", "coveragePathIgnorePatterns" : ["/node_modules/"]}, "main" : "./bin/www.js", "scripts" : {"start" : "node ./bin/www", "test" : "jest --runInBand"}, "dependencies" : {"cookie-pa...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "jest": {"type": "object", "properties": {"testEnvironment": {"type": "string"}, "coveragePathIgno...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "ite...
{"ast" : null, "code" : "class UnsupportedError extends Error {\n constructor() {\n let message = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'Unsupported';\n super(message);\n }\n\n}\n/**\n * Creates a new UnsupportedError\n * @param message\n */\n\n\nfunction createUnsupportedError(mes...
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesCont...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type": "string"}, "id": {"type": "...
{"type" : "Feature", "id" : "node/375779845", "properties" : {"amenity" : "marketplace", "name" : "Marktplatz", "opening_hours" : "Tu 07:00-13:00; Fr 07:00-13:00", "id" : "node/375779845"}, "geometry" : {"type" : "Point", "coordinates" : [7.0253363, 50.9318241]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type": "string"}, "id": {"type": "string"}}, "required": ["amenity", "name", "opening_hours", "id"]}, "geo...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"navigationBarTitleText": {"type": "string"}, "navigationBarBackgroundColor": {"type": "string"}}, "required": ["navigationBarTitleText", "navigationBarBackgroundColor"], "$schema": "http://json-schema.org/draft-07...
{"navigationBarTitleText" : "\u4e2a\u4eba\u4e2d\u5fc3", "navigationBarBackgroundColor" : "#ffdd00"}
json_instruct
{"type": "object", "properties": {"navigationBarTitleText": {"type": "string"}, "navigationBarBackgroundColor": {"type": "string"}}, "required": ["navigationBarTitleText", "navigationBarBackgroundColor"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "arra...
{"directions" : ["Whisk espresso powder, onion powder, paprika, brown sugar, black pepper, salt, and chili powder together in a bowl."], "ingredients" : ["1 tablespoon espresso coffee powder", "1 tablespoon onion powder", "1 tablespoon paprika", "1 tablespoon brown sugar", "1 teaspoon ground black pepper", "1 teaspoon ...
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...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"$schema": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}, "languages": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}}, "...
{"$schema" : "https://repometric.github.io/linterhub/schema/meta.json", "name" : "php_codesniffer", "description" : "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards. ", "url" : "https://github.com/squizlabs/PHP_CodeSniffer", "languages" : ["PHP", "Java...
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}, "languages": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}}, "required": ["$schema", "name", "description", "url", "languages", "lice...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"editor.defaultFormatter": {"type": "string"}, "editor.formatOnSave": {"type": "boolean"}, "cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["editor.defaultFormatter", "editor.formatOnSave", "cSpell.wo...
{"editor.defaultFormatter" : "esbenp.prettier-vscode", "editor.formatOnSave" : true, "cSpell.words" : ["Pricewatch", "tweakblogs", "Tweakers"]}
json_instruct
{"type": "object", "properties": {"editor.defaultFormatter": {"type": "string"}, "editor.formatOnSave": {"type": "boolean"}, "cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["editor.defaultFormatter", "editor.formatOnSave", "cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"stationGroupId" : 1132111, "stations" : ["1132111"]}
json_instruct
{"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "require...
{"Logging" : {"LogLevel" : {"Default" : "Information", "Microsoft" : "Warning", "Microsoft.Hosting.Lifetime" : "Information"}}, "Jwt" : {"Authority" : "https://dev.oidc.gov.bc.ca/auth/realms/g7v0xlf4/", "Audience" : "account"}, "CmsUrl" : "http://localhost:1337/", "ApiToken" : "MYqcUAOLoCKbJxJSNGc4MDwM1ObhWr5X78YHN", "...
json_instruct
{"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required": ["Default", "Microsoft", "Microsoft.Hosting.Lifetime"]}}, "required"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "propertie...
{"contract" : "0x8361638cf6ee3d6587f8435523cbeffd23b826ff", "tool" : "honeybadger", "start" : 1565839182.1321683, "end" : 1565839280.1880002, "duration" : 98.05583190917969, "analysis" : [{"errors" : [], "file" : "/unique_chucks/27/0x8361638cf6ee3d6587f8435523cbeffd23b826ff.sol", "name" : "TokenERC20"}, {"errors" : [],...
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "strin...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"extends": {"type": "string"}}, "required": ["extends"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"extends" : "../a/jest.config.json"}
json_instruct
{"type": "object", "properties": {"extends": {"type": "string"}}, "required": ["extends"], "$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"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "cors": {"type": "string"}, "express": {"type": "string"}, "path"...
{"name" : "metamatic-mock-car-server", "version" : "1.0.0", "dependencies" : {"body-parser" : "^1.18.3", "cors" : "^2.8.4", "express" : "^4.16.3", "path" : "^0.12.7"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "cors": {"type": "string"}, "express": {"type": "string"}, "path": {"type": "string"}}, "required": ["body-parser", "cors", "express", "path"]...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type"...
{"name" : "@lawchihon/videojs-dailymotion", "description" : "Dailymotion playback technology for Video.js", "version" : "0.0.1", "author" : "John Law <chihonlaw@gmail.com>", "main" : "dist/Dailymotion.js", "license" : "MIT", "keywords" : ["video", "videojs", "video.js", "vjs", "Dailymotion", "tech"], "repository" : {"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "propertie...