input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"t...
{"user" : "swordfeng", "repos" : 1, "login" : "swordfeng", "id" : 5018356, "avatar_url" : "https://avatars2.githubusercontent.com/u/5018356?v=3", "url" : "https://api.github.com/users/swordfeng", "html_url" : "https://github.com/swordfeng", "followers_url" : "https://api.github.com/users/swordfeng/followers", "followin...
json_instruct
{"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gist...
Generate a valid JSON object that conforms to the following 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" : "9416026001", "district_id" : "9416026", "name" : "YALISOMON"}
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"body": {"type": "object", "properties": {"kind": {"type": "string"}, "description": {"type": "string"}, "creationTimestamp": {"type": "string"}, "ipVersion": {"type": "string"}, "networkTier": {"type": "string"}, "...
{"body" : {"kind" : "compute#forwardingRule", "description" : "", "creationTimestamp" : "2019-03-17T21:51:27.007-07:00", "ipVersion" : "IPV4", "networkTier" : "PREMIUM", "loadBalancingScheme" : "EXTERNAL", "target" : "https://www.googleapis.com/compute/v1/projects/cloud-custodian/global/targetHttpProxies/new-url-map-ta...
json_instruct
{"type": "object", "properties": {"body": {"type": "object", "properties": {"kind": {"type": "string"}, "description": {"type": "string"}, "creationTimestamp": {"type": "string"}, "ipVersion": {"type": "string"}, "networkTier": {"type": "string"}, "loadBalancingScheme": {"type": "string"}, "target": {"type": "string"},...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"...
{"name" : "node-tsc", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "", "license" : "ISC", "dependencies" : {"@types/chrome-remote-interface" : "^0.31.3", "@types/node" : "^16.7.13", "chokidar" : "^3.5.2", "chrome-remote-in...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "depen...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"description": {"type": "string"}, "name": {"type": "string"}}, "required": ["description", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "", "name" : "dashboard"}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "name": {"type": "string"}}, "required": ["description", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}...
{"name" : "@levibostian/eslint-config-node", "version" : "1.3.1", "description" : "eslint config file I use for all my nodejs projects", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "https://github.com/levibostian/eslint-config-node.g...
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": {"intelligence": {"type": "integer"}, "strength": {"type": "integer"}, "speed": {"type": "integer"}, "durability": {"type": "integer"}, "power": {"type": "integer"}, "combat": {"type": "integer"}}, "required": ["inte...
{"intelligence" : 88, "strength" : 38, "speed" : 23, "durability" : 56, "power" : 51, "combat" : 95}
json_instruct
{"type": "object", "properties": {"intelligence": {"type": "integer"}, "strength": {"type": "integer"}, "speed": {"type": "integer"}, "durability": {"type": "integer"}, "power": {"type": "integer"}, "combat": {"type": "integer"}}, "required": ["intelligence", "strength", "speed", "durability", "power", "combat"], "$sch...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema...
[{"name" : "SHAH", "frequency" : 459, "males" : "97.1677559912854 %", "females" : "2.832244008714597 %"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Default": {"type": "object", "properties": {"WP_Plugin_Rating": {"type": "object", "properties": {"action": {"type": "string"}, "state": {"type": "string"}}, "required": ["action", "state"]}}, "required": ["WP_Plugin_Rating"]}...
{"Default" : {"WP_Plugin_Rating" : {"action" : "", "state" : "active"}}}
json_instruct
{"type": "object", "properties": {"Default": {"type": "object", "properties": {"WP_Plugin_Rating": {"type": "object", "properties": {"action": {"type": "string"}, "state": {"type": "string"}}, "required": ["action", "state"]}}, "required": ["WP_Plugin_Rating"]}}, "required": ["Default"], "$schema": "http://json-schema....
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"_id": {"type": "string"}, "content": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "name": {"type": "string"}, "permission": {"type": "object", "properties": {"default": {"type": ...
{"_id" : "BvtKgDDIKsue17uU", "content" : "<p><strong>[Rare]</strong></p>\n<p><span id=\"docs-internal-guid-aabd5673-7fff-a643-f126-eb9419f32e52\">You are followed by a spirit or entity, either from childhood or since a traumatic or momentous event. You may have seen this entity. Others may have seen it as well. You hav...
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "content": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "name": {"type": "string"}, "permission": {"type": "object", "properties": {"default": {"type": "integer"}}, "required": ["default"]}}, "required": ["_id", "content"...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1998, 5], [1999, 5], [2000, 37], [2001, 27], [2002, 18], [2003, 33], [2004, 35], [2005, 35], [2006, 28], [2007, 43], [2008, 36], [2009, 45], [2010, 30], [2011, 39], [2012, 35], [2013, 42], [2014, 38]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1950, 6], [1959, 6], [1960, 6], [1961, 7], [1963, 8], [1965, 7], [1966, 5], [1967, 6], [1969, 5], [1970, 5], [1971, 5], [1980, 5], [1984, 6], [1985, 6], [1992, 6], [2005, 5], [2006, 5], [2007, 7], [2009, 8], [2010, 8], [2011, 9], [2012, 12], [2013, 17], [2014, 11]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"title": {"type": "string"}, "fa_class": {"type": "string"}, "link": {"type": "string"}}, "required": ["title", "fa_class", "link"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "welcome", "fa_class" : "fa-handshake-o", "link" : "index.html"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fa_class": {"type": "string"}, "link": {"type": "string"}}, "required": ["title", "fa_class", "link"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"...
[{"namaKab" : "KEPULAUAN YAPEN", "originalFilename" : "fotoo.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 206495, "noUrut" : 1, "nama" : "ETTY DWI NITASARI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KEPULAUAN YAPEN", "originalFilename" : "Foto.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAY...
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 sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft...
{"parent" : "item/generated", "textures" : {"layer0" : "charter:item/contract"}}
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 an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"...
{"id" : 131461, "info" : {"name" : "KanjiDamage Japanese Font", "description" : "KanjiDamage doesn't use a Japanese font, so a lot of the kanji don't look quite right.", "additionalInfo" : null, "format" : "uso", "category" : "kanjidamage", "createdAt" : "2016-08-16T20:22:35.000Z", "updatedAt" : "2019-10-22T18:29:21.00...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1996, 5], [1997, 5], [2001, 5], [2003, 7], [2004, 7]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1959, 6], [1963, 6], [2014, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"#": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required...
{"type" : "minecraft:crafting_shaped", "pattern" : ["###", "###", "###"], "key" : {"#" : {"item" : "pigsteel:pigsteel_nugget"}}, "result" : {"item" : "pigsteel:pigsteel_ingot", "count" : 1}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"#": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["#"]}, "result": {"type": "object", "properties": {"i...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "clean": {"type": "string"}, "generateIpcChannels": {"type": ...
{"name" : "electron-ipc", "version" : "1.0.0", "description" : "Electron IPC example", "scripts" : {"build" : "tsc", "clean" : "rm -rf dist && mkdir dist", "generateIpcChannels" : "node ./dist/scripts/build-generate-ipc-channels.js", "prestart" : "yarn clean && yarn build && yarn generateIpcChannels", "start" : "node_m...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "clean": {"type": "string"}, "generateIpcChannels": {"type": "string"}, "prestart": {"type": "string"}, "start": {"typ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"expo": {"type": "string"}, "expo-constants": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-nati...
{"main" : "./index", "dependencies" : {"expo" : "^43.0.0", "expo-constants" : "~12.1.3", "react" : "17.0.1", "react-dom" : "17.0.1", "react-native-svg" : "~12.1.1", "react-native-web" : "0.17.1", "resize-observer-polyfill" : "^1.5.1"}, "devDependencies" : {"@babel/core" : "^7.12.9"}, "private" : true}
json_instruct
{"type": "object", "properties": {"main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"expo": {"type": "string"}, "expo-constants": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-native-svg": {"type": "string"}, "react-native-web": {"type": "string"}, ...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "expiryDate": {"type": "string"}}, "required": ["name", "expiryDate"]}}}, "required": ["items"], "$schema": "http://json-schema.o...
{"items" : [{"name" : "Valid Item", "expiryDate" : "18/12/2019"}, {"name" : "Item With Invalid expiryDate Field", "expiryDate" : "31/122019"}]}
json_instruct
{"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "expiryDate": {"type": "string"}}, "required": ["name", "expiryDate"]}}}, "required": ["items"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01030626": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties"...
{"type" : "Topology", "objects" : {"E01030626" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00156184", "LAD11CD" : "E07000211"}, "arcs" : [[0, 1, 2]]}, {"type" : "Polygon", "prope...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01030626": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "str...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"python.pythonPath": {"type": "string"}, "python.jediEnabled": {"type": "boolean"}, "python.dataScience.jupyterServerURI": {"type": "string"}}, "required": ["python.pythonPath", "python.jediEnabled", "python.d...
{"python.pythonPath" : "/usr/local/bin/python3.8", "python.jediEnabled" : false, "python.dataScience.jupyterServerURI" : "local"}
json_instruct
{"type": "object", "properties": {"python.pythonPath": {"type": "string"}, "python.jediEnabled": {"type": "boolean"}, "python.dataScience.jupyterServerURI": {"type": "string"}}, "required": ["python.pythonPath", "python.jediEnabled", "python.dataScience.jupyterServerURI"], "$schema": "http://json-schema.org/draft-07/sc...
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"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required...
{"name" : "chinese-stroke", "version" : "0.0.1", "description" : "Retrieve the stroke count of Chinese character", "main" : "chinese-stroke.js", "directories" : {"test" : "test"}, "scripts" : {"test" : "./node_modules/.bin/nodeunit test"}, "repository" : {"type" : "git", "url" : "git@github.com:fayland/chinese-stroke.g...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properti...
{"name" : "8ukhv2-tela-contrato", "version" : "2.0.0", "description" : "Telas de contrato do fandi", "main" : "index.js", "author" : "AVONALE", "license" : "MIT", "dependencies" : {"eslint" : "^7.5.0"}, "devDependencies" : {"browser-sync" : "^2.26.12", "gulp" : "^4.0.2", "gulp-autoprefixer" : "^7.0.1", "gulp-babel" : "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"eslint": {"type": "string"}}, "required": ["eslint"]...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"mobx.js": {"type": "string"}, "mobx.min.js": {"type": "string"}, "mobx.umd.js": {"type": "string"}, "mobx.umd.min.js": {"type": "string"}}, "required": ["mobx.js", "mobx.min.js", "mobx.umd.js", "mobx.umd.min.js"], "$schema": "...
{"mobx.js" : "sha512-06o9c8avfmXmv5xeQrbOrvBgOMbTXZ9g3HSTp8A37wlCFZ58KXaI9J5h/xGeMrlx3lkxSDj+avtQ65wy8fXKFQ==", "mobx.min.js" : "sha512-AIO8XHl2tqwINylnaMo9YQScPbvxyl0/Ri2v0+NNh20IcGSJwP5Wxk7g4fztf4K5qDGAAkdwf4BGNb40AGcLhg==", "mobx.umd.js" : "sha512-DRmbAApvaEtHyxOSoKlbYP27yF/H9K4LRMTOuTbK/48Kz2BOSIQ7xfDwJmzRoTKN5p5Rl...
json_instruct
{"type": "object", "properties": {"mobx.js": {"type": "string"}, "mobx.min.js": {"type": "string"}, "mobx.umd.js": {"type": "string"}, "mobx.umd.min.js": {"type": "string"}}, "required": ["mobx.js", "mobx.min.js", "mobx.umd.js", "mobx.umd.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"AGE_AT_FIRST_EXPOSURE": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array...
{"AGE_AT_FIRST_EXPOSURE" : {"CATEGORY" : ["FEMALE", "MALE"], "MIN_VALUE" : [14, 17], "P10_VALUE" : [28, 17], "P25_VALUE" : [32, 27], "MEDIAN_VALUE" : [59, 55], "P75_VALUE" : [72, 60], "P90_VALUE" : [84, 78], "MAX_VALUE" : [85, 78]}, "PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR...
json_instruct
{"type": "object", "properties": {"AGE_AT_FIRST_EXPOSURE": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"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": {"test": {"type": "string"}}, "required": ["test"]...
{"name" : "webcrawler-designacao", "version" : "0.0.1", "description" : "Web Crawler para obter as designa\u00e7\u00f5es para professores do Estado de Minas Gerais", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com...
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": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "bcryptjs": {"type": "string"}, "body-par...
{"name" : "mongodb-demo", "version" : "0.1.0", "private" : true, "dependencies" : {"axios" : "^0.18.0", "bcryptjs" : "^2.4.3", "body-parser" : "^1.18.3", "express" : "^4.16.3", "jsonwebtoken" : "^8.3.0", "mongodb" : "^3.5.5", "react" : "^16.5.1", "react-dom" : "^16.5.1", "react-router-dom" : "^4.3.1", "react-scripts" :...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "bcryptjs": {"type": "string"}, "body-parser": {"type": "string"}, "express": {"type": "string"}, "jsonwebtoken": {"...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "bio": {"type": "string"}, "avatar": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, ...
{"name" : "Goutam Nath", "type" : "personal", "bio" : "Web & Game developer", "avatar" : "https://github.com/nathgoutam93.png", "links" : [{"name" : "Follow me on GitHub", "url" : "https://github.com/nathgoutam93", "icon" : "github"}, {"name" : "Follow me on Twitter", "url" : "https://twitter.com/nathgoutam93", "icon" ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "bio": {"type": "string"}, "avatar": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "icon": {"type": "string"}}, "required": ["name"...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"ExtensionName": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "ExtensionDescription": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["me...
{"ExtensionName" : {"message" : "I Like Google Rather Link"}, "ExtensionDescription" : {"message" : "Add search link text on context menu."}, "ContextMenuText_NormalSearch" : {"message" : "search link text"}, "ContextMenuText_ImFeelingLuckySearch" : {"message" : "search link text (I'm Feeling Lucky)"}}
json_instruct
{"type": "object", "properties": {"ExtensionName": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "ExtensionDescription": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "ContextMenuText_NormalSearch": {"type": "object", "propertie...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {}}...
{"contract" : "0x820b5d21d1b1125b1aad51951f6e032a07caec65", "tool" : "manticore", "start" : 1564128418.7181668, "end" : 1564130220.7663953, "duration" : 1802.0482285022736, "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": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "ana...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"global-cache": {"type": "object", "properties": {"pass": {"type": "integer"}, "action": {"type": "string"}, "input": {"type": "object", "properties": {"images": {"type": "string"}}, "required": ["images"]}, "gr...
{"global-cache" : {"pass" : 9, "action" : "group-resources", "input" : {"images" : "<build-path/>(.*)\\.image_header$"}, "group-by" : [1], "output" : {"group" : "<output-path/>global.cache"}, "options" : {}}}
json_instruct
{"type": "object", "properties": {"global-cache": {"type": "object", "properties": {"pass": {"type": "integer"}, "action": {"type": "string"}, "input": {"type": "object", "properties": {"images": {"type": "string"}}, "required": ["images"]}, "group-by": {"type": "array", "items": {"type": "integer"}}, "output": {"type"...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"pages/_app": {"type": "boolean"}, "pages/dashboard/profile": {"type": "boolean"}, "pages/workspace/servers": {"type": "boolean"}}, "required": ["pages...
{"h" : "8c33ea16b7a7aeb44f18", "c" : {"pages/_app" : true, "pages/dashboard/profile" : true, "pages/workspace/servers" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"pages/_app": {"type": "boolean"}, "pages/dashboard/profile": {"type": "boolean"}, "pages/workspace/servers": {"type": "boolean"}}, "required": ["pages/_app", "pages/dashboard/profile", "pages/workspace/servers"]}}, "requi...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "...
{"\u5de5\u5ee0\u540d\u7a31" : "\u5bcc\u81e8\u79d1\u6280\u5de5\u7a0b\u80a1\u4efd\u6709\u9650\u516c\u53f8\u4e94\u80a1\u5ee0", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "65001301", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u65b0\u5317\u5e02\u4e94\u80a1\u5340\u4e94\u6b0a\u8def57...
json_instruct
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "st...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"ty...
{"name" : "CARDIO ASPIRIN TABLET", "harga" : " Rp. 45.000/ kemasan", "golongan" : "http://medicastore.com/image_banner/obat_keras_dan_psikotropika.gif", "kandungan" : "Aspirin/Acetylsalicylic acid(Asam asetilsalisilat)/Asetosal.", "indikasi" : "Mengurangi bahaya trombosis koroner lebih lanjut, profilaksis reinfark.Kur...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "string"}, "efeksamping": {"type": "string"}, "indeksamanwanitahamil": {...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"ng-infinite-scroll.js": {"type": "string"}, "ng-infinite-scroll.min.js": {"type": "string"}}, "required": ["ng-infinite-scroll.js", "ng-infinite-scroll.min.js"], "$schema": "http://json-schema.org/draft-07/sche...
{"ng-infinite-scroll.js" : "sha256-yIGovzlvRxCBqjYjgrvJky25t40F3oX08BwZCCjQ6fc=", "ng-infinite-scroll.min.js" : "sha256-IXpFggDtvLGOWRCHeigUTH1p/i1dpHb2ZlIcqQe9+38="}
json_instruct
{"type": "object", "properties": {"ng-infinite-scroll.js": {"type": "string"}, "ng-infinite-scroll.min.js": {"type": "string"}}, "required": ["ng-infinite-scroll.js", "ng-infinite-scroll.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "propert...
{"contract" : "0xdb52872d1ba9218b32243de5a0c381d97984f4d3", "tool" : "solhint", "start" : 1563720858.8871682, "end" : 1563720863.8702672, "duration" : 4.983098983764648, "analysis" : [{"file" : "/unique_chucks/40/0xdb52872d1ba9218b32243de5a0c381d97984f4d3.sol", "line" : "550", "column" : "13", "message" : "Expected ind...
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": {"file": {"type": "string"}, "line": {"type": "string"}, "column":...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "car...
{"userId" : 4956, "cartId" : "df776a50-c966-467e-b517-a5878a154194", "preferredProducts" : [3651, 2295, 3126, 2559, 428, 2056, 339, 4911], "productReviews" : []}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema....
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}, "enabled": {"type": "string"}, "have_settings": {"type": "integer"}, "author": {"type": "string"}, "main_file": {"type": "string"}, "settings": {"type": "string"}, "slug"...
{"title" : "My items listing", "type" : "unit", "enabled" : "true", "have_settings" : 1, "author" : "Vahag", "main_file" : "tpl.blade.php", "settings" : "settings.blade.php", "slug" : "my_items_content", "folder" : "my_items_content", "created_at" : 1498152050, "is_core" : 1, "tags" : ["front_page_content", "my-items",...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}, "enabled": {"type": "string"}, "have_settings": {"type": "integer"}, "author": {"type": "string"}, "main_file": {"type": "string"}, "settings": {"type": "string"}, "slug": {"type": "string"}, "folder": {"type": "string"}, "create...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type...
{"name" : "cordovaframework7template", "displayName" : "CordovaFramework7Template", "version" : "1.0.0", "description" : "Cordova + Framework7 (v2).", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Apache Cordova Team", "license" : "Apache-2.0", "dependencies" : {...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "l...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"private": {"type": "boolean"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"copy-libs": {"type": "string"}, "now-build": {"ty...
{"private" : true, "engines" : {"node" : ">=12"}, "scripts" : {"copy-libs" : "mkdir -p ./lib64 && cp /usr/lib64/{libGL.so.1,libX11.so.6,libXxf86vm.so.1,libXi.so.6,libGLX.so.0,libXext.so.6,libGLdispatch.so.0,libxcb.so.1,libXau.so.6} ./lib64", "now-build" : "[[ $NOW_REGION != dev1 ]] && npm run copy-libs || exit 0", "tes...
json_instruct
{"type": "object", "properties": {"private": {"type": "boolean"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"copy-libs": {"type": "string"}, "now-build": {"type": "string"}, "test": {"type": "string"}}, "required": ["cop...
The schema below describes a JSON structure. Generate a valid example: {"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": "strin...
{"issuer_ca_id" : 16418, "issuer_name" : "C=US, O=Let's Encrypt, CN=Let's Encrypt Authority X3", "name_value" : "docker-registry.jx.35.228.13.144.nip.io", "min_cert_id" : 1214849165, "min_entry_timestamp" : "2019-02-18T21:11:20.292", "not_before" : "2019-02-18T20:11:19", "not_after" : "2019-05-19T20:11:19"}
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...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"argument": {"type": "string"}, "arguments": {"type": "string"}, "literalEqual:": {"type": "string"}, "re...
{"class" : {}, "instance" : {"argument" : "dkh 06/23/2008 18:00", "arguments" : "dkh 06/23/2008 18:00", "literalEqual:" : "dkh 02/18/2013 16:11", "refersToLiteral:" : "dkh 02/18/2013 16:10", "selector" : "dkh 06/23/2008 18:01"}}
json_instruct
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"argument": {"type": "string"}, "arguments": {"type": "string"}, "literalEqual:": {"type": "string"}, "refersToLiteral:": {"type": "string"}, "selector": {"type": "string"}}, "r...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {...
{"userId" : 18591, "cartId" : "d00ef7f8-4679-43ff-b571-336fa213e746", "preferredProducts" : [1557, 1594, 4311, 1842, 2157, 2149, 2138, 2474, 3349, 4091], "productReviews" : [{"productId" : 1424, "reviewText" : "one of my hobbies is sailing. and when i'm sailing this works great.", "reviewDate" : "2018-05-14T08:40:53.30...
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...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"buildNumber": {"type": "string"}, "cliPort": {"type": "string"}}, "required": ["buildNumber", "cliPort"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"buildNumber" : "${buildNumber}", "cliPort" : "${cli.port}"}
json_instruct
{"type": "object", "properties": {"buildNumber": {"type": "string"}, "cliPort": {"type": "string"}}, "required": ["buildNumber", "cliPort"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this 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": "array", "items": {}...
{"directions" : ["Preheat oven to 350 degrees F. Lightly grease a 9\" x 13\" pan.", "In a large mixing bowl, cream the butter and sugar together.", "Mix in the vanilla, corn syrup and oats.", "Pat this dough into the greased pan. Bake for 15-16 minutes (don't overbake).", "Meanwhile, over low heat melt together the c...
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...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"color": {"type": "string"}, "height": {"type": "number"}, "mass": {"type": "number"}, "mu": {"type": "number"}, "orientation": {"type": "array", "items": {"type": "number"}}, "position":...
[{"color" : "yellow", "height" : 0.14846643572002233, "mass" : 3.688937331322007, "mu" : 0.8110236496247137, "orientation" : [0.0, 0.0, 0.0, 1.0], "position" : [0.1717045862327373, 0.14117500556734816, 0.07423321786001116], "radius" : 0.024274704574643577, "shape" : "box"}, {"color" : "green", "height" : 0.149684583560...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"color": {"type": "string"}, "height": {"type": "number"}, "mass": {"type": "number"}, "mu": {"type": "number"}, "orientation": {"type": "array", "items": {"type": "number"}}, "position": {"type": "array", "items": {"type": "number"}}, "radius": {"type": "num...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"birthday": {"type": "string"}, "position": {"type": "string"}, "name": {"type": "string"}}, "required": ["birthday", "position", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"birthday" : "1989-11-22", "position" : "WR", "name" : "Damaris Johnson"}
json_instruct
{"type": "object", "properties": {"birthday": {"type": "string"}, "position": {"type": "string"}, "name": {"type": "string"}}, "required": ["birthday", "position", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"nifs...
{"template" : {"small" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/1.0", "medium" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/2.0", "large" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/3.0"}, "channels" : {"nifsta" : {"title" : "Nifsta", "channel_id" : 110310189, "link" : "http://twit...
json_instruct
{"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"nifsta": {"type": "object", "properties": {"title": {"type": ...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/active/weapons/melee/shortsword/stoneshortsword.activeitem": {"type": "array",...
[{"DeniedAlternatives" : [], "Files" : {"items/active/weapons/melee/shortsword/stoneshortsword.activeitem" : ["/shortdescription"]}, "Texts" : {"Chs" : "\u539f\u59cb\u77ed\u5251", "Eng" : "Primitive Shortsword"}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/active/weapons/melee/shortsword/stoneshortsword.activeitem": {"type": "array", "items": {"type": "string"}}}, "required": ["items/active/weapons/melee/shor...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "apocrypha", "definition" : "1. Something, as a writing, that is of doubtful authorship or authority; -- formerly used also adjectively. [Obs.] Locke. 2. Specif.: Certain writings which are received by some Christians as an authentic part of the Holy Scriptures, but are rejected by others. Note: Fourteen such...
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": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "imageName": {"type": "string"}, "nominations": {"type": "integer"}, "wins": {"type": "...
[{"id" : 33905, "title" : "Armed in Her Fashion", "year" : 2018, "type" : "novel", "imageName" : "kh_armedinh.jpg", "nominations" : 2, "wins" : -1}, {"id" : 31648, "title" : "Alice Payne Arrives", "year" : 2018, "type" : "novel", "imageName" : "kh_alicearr.jpg", "nominations" : 0, "wins" : -1}, {"id" : 31649, "title" :...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "imageName": {"type": "string"}, "nominations": {"type": "integer"}, "wins": {"type": "integer"}}, "required": ["id", "title", "year", "type", "im...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "integer"}, "application_id": {"type": "integer"}, "key": {"type": "string"}, "section": {"type": "string"}, "locale": {"type": "string"}, "value": {"type": "string"},...
{"data" : {"id" : 13, "application_id" : 1, "key" : "forceHeader", "section" : "versionControl", "locale" : "en-GB", "value" : "new text2", "can_delete" : true}}
json_instruct
{"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "integer"}, "application_id": {"type": "integer"}, "key": {"type": "string"}, "section": {"type": "string"}, "locale": {"type": "string"}, "value": {"type": "string"}, "can_delete": {"type": "boolean"}}, "required": ["id", "appli...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "411328001001", "text" : "\u65b0\u6c11\u8857\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "411328001002", "text" : "\u65b0\u5b89\u8857\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "411328001003", "text" : "\u65b0\u534e\u8857\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "411328001004", "text" : "\u8c22\u5e84\u793e\u533a\u5...
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 an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "6474020001", "nama" : "BONTANG KUALA"}, {"id" : "6474020002", "nama" : "BONTANG BARU"}, {"id" : "6474020003", "nama" : "API-API"}, {"id" : "6474020004", "nama" : "GUNUNG LAI"}, {"id" : "6474020005", "nama" : "LOK TUAN"}, {"id" : "6474020006", "nama" : "GUNTUNG"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repositor...
{"name" : "edriven-gui", "version" : "2.4.4", "description" : "Unity3d GUI framework", "main" : "/eDriven.Playground/Unity/eDriven.Playground.sln", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/dkozar/edriven-gui.git"}, "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"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "s...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"umbrella.js": {"type": "string"}, "umbrella.min.js": {"type": "string"}}, "required": ["umbrella.js", "umbrella.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"umbrella.js" : "sha512-z3Xo9oJf4jR0TwdgvIHWnGctGfz9Ua6H0gccYCQ24x49W33YrMQXdNZLpiNAiqy+MoOXt21RDUeGPYZxb0aqGg==", "umbrella.min.js" : "sha512-VdUsOIXfnBFMekS1uSGf148zv+6YRjU68qT9K6nYsrMKepSWTo9IM3Ds2stTZUEvs6zIuHYvD2BrpFXzxqr4wQ=="}
json_instruct
{"type": "object", "properties": {"umbrella.js": {"type": "string"}, "umbrella.min.js": {"type": "string"}}, "required": ["umbrella.js", "umbrella.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"subreddit" : "Prematurecelebration", "author" : "AmazingGamingYT", "count" : 2}
json_instruct
{"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "l...
{"citations" : [{"textCitation" : "[See elirr on Metamath](http://us.metamath.org/mpegif/elirr.html)"}], "argumentText" : "ARGUMENT\nx\n\n| Step | Hyp | Ref | Expression |\n|---|---|---|---|\n\n| 1 | | #P_id | |- ( x = A -> x = A ) |\n| 2 | 1, 1 | #P_eleq12d | |- ( x = A -> ( x e. x <-> A e. A ) ) |\n| 3 | 2 | #P_notb...
json_instruct
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items":...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"dialog/arrivedhome.config": {"type": "array", "items": {"type": "string"}}, "radiomessage...
[{"DeniedAlternatives" : [], "Files" : {"dialog/arrivedhome.config" : ["/rent/juux/default/0", "/rent/shadow/default/0"], "radiomessages/missions.radiomessages" : ["/lethialabs15c/text", "/lethialabs15d/text"]}, "Texts" : {"Eng" : "..."}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"dialog/arrivedhome.config": {"type": "array", "items": {"type": "string"}}, "radiomessages/missions.radiomessages": {"type": "array", "items": {"type": "string"}...
Create a JSON structure that matches this schema definition: {"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": {"...
{"body" : "- Keep dependencies up to date with recent flux develop.\r\n- Add new flux-sched release.\r\n- Fix git tags not being available in certain circumstances.\r\n- Fix typo in variant name", "user" : "SteVwonder", "url" : "https://api.github.com/repos/spack/spack/issues/9610", "updated_at" : "2018-11-17 18:35:06"...
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": ...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Text": {"type": "string"}}, "required": ["Text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Text" : ""}
json_instruct
{"type": "object", "properties": {"Text": {"type": "string"}}, "required": ["Text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "level": {"type": "integer"}, "rarity": {"type": "string"}, "vendor_value": {"type": "integer"}, "game_types": {"type": "array", "items"...
{"name" : "Black Lion Outfit Voucher", "description" : "Use this voucher to select your choice of outfits from a special selection.", "type" : "Container", "level" : 0, "rarity" : "Rare", "vendor_value" : 0, "game_types" : ["PvpLobby", "Wvw", "Dungeon", "Pve"], "flags" : ["AccountBound", "DeleteWarning", "AccountBindOn...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "level": {"type": "integer"}, "rarity": {"type": "string"}, "vendor_value": {"type": "integer"}, "game_types": {"type": "array", "items": {"type": "string"}}, "flags": {"type": "array", "items": ...
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"model": {"type": "string"}, "pk": {"type": "integer"}, "fields": {"type": "object", "properties": {"created_at": {"type": "string"}, "updated_at": {"type": "string"}, "symbol": {"type": "st...
[{"model" : "wx.qualityflag", "pk" : 1, "fields" : {"created_at" : "2019-01-09T13:58:57.129Z", "updated_at" : "2019-01-09T13:58:57.129Z", "symbol" : "-", "name" : "Not checked", "color" : "#FFFFFF"}}, {"model" : "wx.qualityflag", "pk" : 2, "fields" : {"created_at" : "2019-01-09T13:58:57.131Z", "updated_at" : "2019-01-0...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"model": {"type": "string"}, "pk": {"type": "integer"}, "fields": {"type": "object", "properties": {"created_at": {"type": "string"}, "updated_at": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "color": {"type": "string"}}, "re...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, ...
{"name" : "react-template-ts", "version" : "2.16.0", "author" : {"name" : "Luke Kozak", "email" : "kozakluke@gmail.com", "url" : "https://github.com/kozakl"}, "repository" : {"type" : "git", "url" : "https://github.com/kozakl/react-template-ts"}, "bin" : {"react-template-ts" : "./index.js"}, "dependencies" : {"fs-extra...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "repository": {"type": "object", "properties": {"type": {"t...
Construct a JSON document that adheres to this schema specification: {"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" : "Boissise-la-Bertrand", "circ" : "11\u00e8me circonscription", "dpt" : "Seine-et-Marne", "inscrits" : 782, "abs" : 425, "votants" : 357, "blancs" : 20, "nuls" : 5, "exp" : 332, "res" : [{"nuance" : "SOC", "nom" : "M. Olivier FAURE", "voix" : 199}, {"nuance" : "REM", "nom" : "Mme Amandine RUBINELLI", "voix" : 1...
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"...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "mon...
{"name" : "Live_reload_page", "description" : "A web app made to use jQuery", "author" : "Raynulfo_Mata", "version" : "0.1.0", "dependencies" : {"express" : "^4.17.1", "mongoose" : "^5.12.1"}, "devDependencies" : {"dotenv" : "^8.2.0"}, "scripts" : {"start" : "node server.js", "start_local" : "node -r dotenv/config ./ba...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "mongoose": {"type": "string"}}, "required": ["express", "mongoose"]}, "devDepend...
Following the schema specification below, generate a valid JSON instance: {"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"}, "wo...
{"id" : 85776341, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "674932bb1cf29365b1e045baedfd12ae", "wof:id" : 85776341, "wof:repo" : "whosonfirst-data-admin-au"}, "bbox" : [153.31436, -27.93994, 153.31436, -27.93994], "geometry" : {"coordina...
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": ["...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type...
{"\u5de5\u5ee0\u540d\u7a31" : "\ue26f\u63da\u5de5\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "T0800031", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u5357\u6295\u7e23\u8349\u5c6f\u93ae\u78a7\u8208\u8def\u4e8c\u6bb51221\u5df716\u865f",...
json_instruct
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "st...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "files": {"type": "object", "properties": {"LICENSE-MIT.txt": {"type": "object", "properties": {"checkedAt": {"type": "integer"}, "integrity": {"type": "st...
{"name" : "punycode", "version" : "2.1.1", "files" : {"LICENSE-MIT.txt" : {"checkedAt" : 1640884530824, "integrity" : "sha512-fWtEu2WGJSgbSBlOWj06B0Ur6h8lZQbdFveiGUHvPw0lnhvNDMYgJkK/H9EpvBh+ajkh04LVaNMSvYPzAjl5oA==", "mode" : 420, "size" : 1077}, "package.json" : {"checkedAt" : 1640884536760, "integrity" : "sha512-XnUs...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "files": {"type": "object", "properties": {"LICENSE-MIT.txt": {"type": "object", "properties": {"checkedAt": {"type": "integer"}, "integrity": {"type": "string"}, "mode": {"type": "integer"}, "size": {"type": "integer"}}, "requ...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"molssi_bse_schema": {"type": "object", "properties": {"schema_type": {"type": "string"}, "schema_version": {"type": "string"}}, "required": ["schema_type", "schema_version"]}, "name": {"type": "string"}, "descr...
{"molssi_bse_schema" : {"schema_type" : "element", "schema_version" : "0.1"}, "name" : "cc-pVDZ-F12(rev2)", "description" : "cc-pVDZ-F12(rev2)", "elements" : {"1" : {"components" : ["dunning_f12/cc-pVDZ-F12(rev2).1.json"]}}}
json_instruct
{"type": "object", "properties": {"molssi_bse_schema": {"type": "object", "properties": {"schema_type": {"type": "string"}, "schema_version": {"type": "string"}}, "required": ["schema_type", "schema_version"]}, "name": {"type": "string"}, "description": {"type": "string"}, "elements": {"type": "object", "properties": {...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"extends": {"type": "string"}, "exclude": {"type": "array", "items": {"type": "string"}}, "include": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "object", "properties": {"@terminus/ui-expansion-...
{"extends" : "../tsconfig.json", "exclude" : ["../**/test.ts", "../**/*.spec.ts"], "include" : ["../libs/**/*.ts"], "paths" : {"@terminus/ui-expansion-panel" : ["libs/ui/expansion-panel/src/index.ts", "dist/libs/expansion-panel"]}}
json_instruct
{"type": "object", "properties": {"extends": {"type": "string"}, "exclude": {"type": "array", "items": {"type": "string"}}, "include": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "object", "properties": {"@terminus/ui-expansion-panel": {"type": "array", "items": {"type": "string"}}}, "required": [...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "pkg_version": {"type": "string"}, "rebuild": {"type": "integer"}, "bottles": {"type": "object", "properties": {"arm64_monterey": {"type": "object", "properties": {"url": {"type": "strin...
{"name" : "xray", "pkg_version" : "1.5.5", "rebuild" : 0, "bottles" : {"arm64_monterey" : {"url" : "https://ghcr.io/v2/homebrew/core/xray/blobs/sha256:aec349ca4b667fb4b66c79b48060dce7903bf5a9d940f53b1e485b6709627810"}, "arm64_big_sur" : {"url" : "https://ghcr.io/v2/homebrew/core/xray/blobs/sha256:c2b2feab84321996940948...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "pkg_version": {"type": "string"}, "rebuild": {"type": "integer"}, "bottles": {"type": "object", "properties": {"arm64_monterey": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "arm64_big_sur": {"type": "object", "propert...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "damageType": {"type": "integer"}, "redacted": {"type": "boolean"}, "isDisplayable": {"type": "boolean"}, "displayProper...
{"index" : 1658, "hash" : 3626845877, "blacklisted" : false, "damageType" : 0, "redacted" : false, "isDisplayable" : true, "displayProperties" : {"icon" : "/common/destiny2_content/icons/d4810576aa1185423ade653671a8c713.png", "hasIcon" : true, "description" : "Grants bonus damage for all Arc melee abilities and refunds...
json_instruct
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "damageType": {"type": "integer"}, "redacted": {"type": "boolean"}, "isDisplayable": {"type": "boolean"}, "displayProperties": {"type": "object", "properties": {"icon": {"type": "string"}, "h...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"first": {"type": "object", "properties": {"type": {"type": "string"}, "content": {"type": "string"}, "next": {"type": "string"}}, "required": ["type", "content", "next"]}, "second": {"type": "object", "proper...
{"first" : {"type" : "mike", "content" : "Prippsen \u00e4r d\u00e4r, och jag \u00e4r h\u00e4r. Hmmmm.", "next" : "second"}, "second" : {"type" : "d4v3", "content" : "Bara hoppa \u00f6ver.", "next" : "third"}, "third" : {"type" : "mike", "content" : "Jag kanske kan anv\u00e4nda j3n5 p\u00e5 n\u00e5got- N\u00e4 det hade ...
json_instruct
{"type": "object", "properties": {"first": {"type": "object", "properties": {"type": {"type": "string"}, "content": {"type": "string"}, "next": {"type": "string"}}, "required": ["type", "content", "next"]}, "second": {"type": "object", "properties": {"type": {"type": "string"}, "content": {"type": "string"}, "next": {"...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"problem": {"type": "string"}, "optimizer": {"type": "string"}, "Genelation": {"type": "integer"}, "popsize": {"type": "integer"}, "dv_size": {"type": "integer"}, "n_obj": {"type": "integer"}, "n_constraint": {"type": "integ...
{"problem" : "mCDTLZ", "optimizer" : "C_MOEAD_HXDMA", "Genelation" : 300, "popsize" : 100, "dv_size" : 4, "n_obj" : 2, "n_constraint" : 2, "ksize" : 11, "alpha" : 4, "dv_bounds" : [[0.0], [1.0]], "CR" : 1.0, "F" : 0.5, "cross_rate_dm" : 0.5, "normalize" : true, "save" : false}
json_instruct
{"type": "object", "properties": {"problem": {"type": "string"}, "optimizer": {"type": "string"}, "Genelation": {"type": "integer"}, "popsize": {"type": "integer"}, "dv_size": {"type": "integer"}, "n_obj": {"type": "integer"}, "n_constraint": {"type": "integer"}, "ksize": {"type": "integer"}, "alpha": {"type": "integer...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"css/iziModal.css": {"type": "string"}, "css/iziModal.min.css": {"type": "string"}, "js/iziModal.js": {"type": "string"}, "js/iziModal.min.js": {"type": "string"}}, "required": ["css/iziModal.css", "css/iziModal.min.css", "j...
{"css/iziModal.css" : "sha512-J76/Dwu3NbxzYEt+SNmncrW4Qj2atd1hklMuRNK12SrGOIKfhItMiLWQlet2/ZWt33ylQRUJqAz2XPg8TxXTLQ==", "css/iziModal.min.css" : "sha512-9to0dRfxO4t0jZVDKWZw6Pu0JA3eMmHex/m9M/x/FpOkCs119m0CDDYvWMjgeqgANC5I0WoBY3PJEBxs8jAKdA==", "js/iziModal.js" : "sha512-AdWzaCLYo/e5SHzbKnzvUvPIznemRcEckBiCNlTatRdvzhId...
json_instruct
{"type": "object", "properties": {"css/iziModal.css": {"type": "string"}, "css/iziModal.min.css": {"type": "string"}, "js/iziModal.js": {"type": "string"}, "js/iziModal.min.js": {"type": "string"}}, "required": ["css/iziModal.css", "css/iziModal.min.css", "js/iziModal.js", "js/iziModal.min.js"], "$schema": "http://json...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"champ": {"type": "integer"}, "item": {"type": "integer"}, "kills": {"type": "string"}, "deaths": {"type": "string"}, "assists": {"type": "string"}, "gold": {"type": "string"}, "cs": {"type": "string"}, "total...
{"champ" : 103, "item" : 3430, "kills" : "7.2439024390243905", "deaths" : "6.134146341463414", "assists" : "8.817073170731707", "gold" : "11874.926829268292", "cs" : "137.6829268292683", "total" : "82", "wins" : "47", "losses" : "35"}
json_instruct
{"type": "object", "properties": {"champ": {"type": "integer"}, "item": {"type": "integer"}, "kills": {"type": "string"}, "deaths": {"type": "string"}, "assists": {"type": "string"}, "gold": {"type": "string"}, "cs": {"type": "string"}, "total": {"type": "string"}, "wins": {"type": "string"}, "losses": {"type": "string...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$sc...
{"id" : "2030", "provinceId" : "81", "regencyId" : "09", "districtId" : "05", "name" : "Terkuri"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "stack": {"type": "string"}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"...
{"name" : "Scuba - Portugal", "description" : "A Simple python example for BDD/ATDD development", "image" : "heroku/python", "stack" : "cedar-14", "repository" : "https://github.com/wouterla/scuba-portugal", "keywords" : ["python", "django"], "addons" : [], "environments" : {"test" : {"buildpacks" : [{"url" : "https://...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "stack": {"type": "string"}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "addons": {"type": "array", "items": {}}, "environments": {"type": "obj...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"Name": {"type": "string"}, "Author": {"type": "string"}, "Website": {"type": "string"}, "DependsOn": {"type": "array", "items": {"type": "string"}}, "DLL": {"type": "string"}, "DLLEntryPoint": {"type": "string"}}, "required": ["...
{"Name" : "StartingMercsMod", "Author" : "CptMoore", "Website" : "https://github.com/CptMoore/StartingMercsMod", "DependsOn" : ["DynModLib"], "DLL" : "StartingMercsMod.dll", "DLLEntryPoint" : "StartingMercsMod.Control.Start"}
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "Author": {"type": "string"}, "Website": {"type": "string"}, "DependsOn": {"type": "array", "items": {"type": "string"}}, "DLL": {"type": "string"}, "DLLEntryPoint": {"type": "string"}}, "required": ["Name", "Author", "Website", "DependsOn", "DLL", "DLLEntry...
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" : "pufferutilities:block/cracked_deepslate_bricks"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"config": {"type": "object", "properties": {"step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"region": {"type": "string"}}, "required": ["r...
{"config" : {"step" : {"user" : {"data" : {"region" : "Regi\u00f3n de ConnectedDrive"}}}}, "options" : {"step" : {"account_options" : {"data" : {"read_only" : "Solo lectura (solo sensores y notificaci\u00f3n, sin ejecuci\u00f3n de servicios, sin bloqueo)"}}}}}
json_instruct
{"type": "object", "properties": {"config": {"type": "object", "properties": {"step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"region": {"type": "string"}}, "required": ["region"]}}, "required": ["data"]}}, "required": ["user"]}}, "required":...
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" : "0x145b4b373db67895485f0746b3ad3f3a5897299e", "tool" : "honeybadger", "start" : 1565793251.7662978, "end" : 1565793253.791577, "duration" : 2.0252792835235596, "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": {"sha": {"type": "string"}, "commit": {"type": "object", "properties": {"author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "date": {"type": "string"}}, "required": ["name", "e...
{"sha" : "\"47e7bc67f932866e4467f7ab8a23bb167405bebd\"", "commit" : {"author" : {"name" : "\"Nicolas Silva\"", "email" : "\"nsilva@mozilla.com\"", "date" : "\"2016-09-01T15:51:09+02:00\""}, "committer" : {"name" : "\"Nicolas Silva\"", "email" : "\"nsilva@mozilla.com\"", "date" : "\"2016-09-01T15:51:09+02:00\""}, "messa...
json_instruct
{"type": "object", "properties": {"sha": {"type": "string"}, "commit": {"type": "object", "properties": {"author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "date": {"type": "string"}}, "required": ["name", "email", "date"]}, "committer": {"type": "object", "properties":...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "use...
{"cam/image_array" : "438_cam-image_array_.jpg", "user/angle" : -1.0, "user/throttle" : 0.7518003393086202, "user/mode" : "user", "milliseconds" : 54734}
json_instruct
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "milliseconds"], "$schema": "...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "number": {"type": "string"}, "is_illegal": {"type": "boolean"}, "text": {"type": "string"}, "type": {"type": "string"}, "is_monster": {"type": "boolean"}, "is_spell": {"type": "boo...
{"name" : "Dodododraw", "number" : "73866096", "is_illegal" : false, "text" : "Send 1 \"Dododo\" monster from your hand or face-up from your side of the field to the Graveyard; draw 2 cards. You can only activate 1 \"Dodododraw\" per turn.", "type" : "Spell", "is_monster" : false, "is_spell" : true, "is_trap" : false, ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "number": {"type": "string"}, "is_illegal": {"type": "boolean"}, "text": {"type": "string"}, "type": {"type": "string"}, "is_monster": {"type": "boolean"}, "is_spell": {"type": "boolean"}, "is_trap": {"type": "boolean"}, "property": {"type": "string"}}, "req...
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" : [[[133.375, 20.666666666666668], [133.375, 20.75], [133.5, 20.75], [133.5, 20.666666666666668], [133.375, 20.666666666666668]]]}, "properties" : {"code" : 313303, "url" : "http://madefor.github.io/0410/api/v1/313303.geojson", "view" : "https://githu...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"ty...
{"author" : "Dilruba Ahmed", "classification" : "", "keywords" : [], "period" : "", "reference" : "http://www.poetryfoundation.org/poetrymagazine/poem/246696", "region" : "", "text" : ["They staunched the wound with a stone.", "They drew blue venom from his blood", "until there was none.", "When his veins ran true his ...
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"keys": {"type": "array", "items": {"type": "integer"}}, "values": {"type": "array", "items": {"type": "object", "properties": {"Code": {"type": "integer"}, "Name": {"type": "string"}, "TextureName": {"type": "strin...
{"keys" : [0, 1, 2], "values" : [{"Code" : 0, "Name" : "\uac80\ub0a8\uc790\uc758 \ud5ec\uba67", "TextureName" : "Hat-Helmet", "Part" : 0}, {"Code" : 1, "Name" : "\uac80\ub0a8\uc790\uc758 \uac80", "TextureName" : "Weapon-Sword", "Part" : 1}, {"Code" : 2, "Name" : "\uac80\ub0a8\uc790\uc758 \ubc29\ud328", "TextureName" : ...
json_instruct
{"type": "object", "properties": {"keys": {"type": "array", "items": {"type": "integer"}}, "values": {"type": "array", "items": {"type": "object", "properties": {"Code": {"type": "integer"}, "Name": {"type": "string"}, "TextureName": {"type": "string"}, "Part": {"type": "integer"}}, "required": ["Code", "Name", "Textur...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/dr...
{"index" : 4042, "redacted" : false, "hash" : 93315511, "blacklisted" : false}
json_instruct
{"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"...
{"name" : "sublime-tailwindcss", "version" : "0.1.0", "description" : "This package adds syntax definitions for the TailwindCSS", "repository" : {"type" : "git", "url" : "https://github.com/SublimeText/TailwindCSS"}, "bugs" : {"url" : "https://github.com/SublimeText/TailwindCSS/issues"}, "license" : "MIT", "scripts" : ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": ...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"expres...
{"name" : "rabbitwatch", "version" : "1.0.0", "description" : "Watch multiple RabbitMQ servers", "private" : true, "main" : "rabbitwatch.js", "dependencies" : {"express" : "^4.13.3", "morgan" : "^1.6.1"}, "devDependencies" : {}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "morgan": {"type": "string"}}, "required": ["expres...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type...
{"id" : 101790623, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "81c49d257dd5c2317b87b3f41b08afc7", "wof:id" : 101790623, "wof:repo" : "whosonfirst-data-admin-ro"}, "bbox" : [20.822843, 45.986766, 20.845276, 46.002653], "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": ["...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"parameters": {"type": "object", "properties": {"WsMethod": {"type": "string"}, "PsUseOrderPdf": {"type": "boolean"}, "PsUseMultiShopParser": {"type": "boolean"}, "PsIsLightMultiShop": {"type": "boolean"}, "PsIsSourceCatalog": {"...
{"parameters" : {"WsMethod" : "SOAP", "PsUseOrderPdf" : true, "PsUseMultiShopParser" : true, "PsIsLightMultiShop" : true, "PsIsSourceCatalog" : false}, "Address" : {"enable_push_deleted" : false}, "ThirdParty" : {"enable_push_deleted" : false}, "Order" : {"allow_push_updated" : true, "fields" : {"status" : {"write" : 1...
json_instruct
{"type": "object", "properties": {"parameters": {"type": "object", "properties": {"WsMethod": {"type": "string"}, "PsUseOrderPdf": {"type": "boolean"}, "PsUseMultiShopParser": {"type": "boolean"}, "PsIsLightMultiShop": {"type": "boolean"}, "PsIsSourceCatalog": {"type": "boolean"}}, "required": ["WsMethod", "PsUseOrderP...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["./fonts/google/homenaje/files/homenaje-latin-400-normal.woff", "./fonts/google/homenaje/files/homenaje-latin-400-normal.woff2", "./fonts/google/homenaje/files/homenaje-all-400-normal.woff"]
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"}, "type": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"ty...
{"name" : "spambarrier/spambarrier-api-php", "type" : "library", "description" : "PHP wrapper for spambarrier API.", "homepage" : "https://github.com/spambarrier/spambarrier-api-php", "keywords" : ["spambarrier", "api", "php", "antispam"], "license" : "MIT", "authors" : [{"name" : "Daniel Jost", "homepage" : "http://ww...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"Snoocore-standalone.js": {"type": "string"}}, "required": ["Snoocore-standalone.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Snoocore-standalone.js" : "sha512-QblJK4JZ2ftzl/uav9oUPQophDAidkx2h+kOBsMISIhuT+Gv4ERCxIk4zCB5HBlGK8q9jdnI5lFj4h5fEoQUag=="}
json_instruct
{"type": "object", "properties": {"Snoocore-standalone.js": {"type": "string"}}, "required": ["Snoocore-standalone.js"], "$schema": "http://json-schema.org/draft-07/schema#"}