input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"combinedContextPoolId": {"type": "string"}, "description": {"type": "string"}, "extending": {"type": "array", "items": {"type": "string"}}}, "required": ["combinedContextPoolId", "description", "extending"], "$schema": "htt...
{"combinedContextPoolId" : "d5fda249-2d97-497f-b0f9-e1a56a466ed1", "description" : "Master", "extending" : ["471abba0-3ed6-4edd-94ef-902f650a1a48", "dd3af5da-aef9-4233-ad74-532d6ac02a1d", "d16b3dcf-434b-4d17-b724-41c5679fbcfe", "fad380ce-bfe0-47a4-9102-8009fa24f1dd", "b1659d40-b980-47e5-a3dc-2456e9a2d9fc", "f23379a5-23...
json_instruct
{"type": "object", "properties": {"combinedContextPoolId": {"type": "string"}, "description": {"type": "string"}, "extending": {"type": "array", "items": {"type": "string"}}}, "required": ["combinedContextPoolId", "description", "extending"], "$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"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "Pilgrim tourist backpack", "ShortName" : "Pilgrim", "Description" : "Large and roomy tourist backpack of bright colors"}
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"qewd_up": {"type": "boolean"}, "qewd": {"type": "object", "properties": {"port": {"type": "integer"}, "poolSize": {"type": "string"}, "managementPassword": {"type": "string"}, "database": {"type": "object", "proper...
{"qewd_up" : true, "qewd" : {"port" : 8080, "poolSize" : "2", "managementPassword" : "keepThisSecret!", "database" : {"type" : "dbx", "params" : {"database" : "LMDB", "db_library" : "liblmdb.so", "env_dir" : "/opt/lmdb", "key_type" : "m"}}}}
json_instruct
{"type": "object", "properties": {"qewd_up": {"type": "boolean"}, "qewd": {"type": "object", "properties": {"port": {"type": "integer"}, "poolSize": {"type": "string"}, "managementPassword": {"type": "string"}, "database": {"type": "object", "properties": {"type": {"type": "string"}, "params": {"type": "object", "prope...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"feedstocks" : ["scikit-learn-intelex"]}
json_instruct
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "i...
[{"results" : [{"tech" : 1, "pts" : 215, "connections" : 102968, "capacity" : 7020271, "investments" : 41654845}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pt...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"class_name": {"type": "string"}, "bbox": {"type": "string"}, "used": {"type": "boolean"}}, "required": ["class_name", "bbox", "used"]}, "$schema": "http://json-schema.org/draft-07/schema#...
[{"class_name" : "artifact", "bbox" : "3 308 36 366", "used" : true}, {"class_name" : "specularity", "bbox" : "12 389 43 435", "used" : false}, {"class_name" : "specularity", "bbox" : "423 244 437 277", "used" : false}, {"class_name" : "blur", "bbox" : "180 80 405 413", "used" : false}, {"class_name" : "contrast", "bbo...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"class_name": {"type": "string"}, "bbox": {"type": "string"}, "used": {"type": "boolean"}}, "required": ["class_name", "bbox", "used"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"temporalGeometries": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "datetimes": {"type": "array", "items": {"type": "string"}}, "coordinates": {"type": "a...
{"temporalGeometries" : [{"id" : "tgeom1", "type" : "MovingPoint", "datetimes" : ["2011-07-14T22:01:02Z", "2011-07-14T22:01:03Z", "2011-07-14T22:01:04Z"], "coordinates" : [[139.757399, 35.627701, 2.0], [139.757555, 35.627688, 4.0], [139.757651, 35.627596, 4.0]], "interpolation" : "Linear", "base" : {"type" : "glTF", "h...
json_instruct
{"type": "object", "properties": {"temporalGeometries": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "datetimes": {"type": "array", "items": {"type": "string"}}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"vue-smart-table-default.css": {"type": "string"}, "vue-smart-table.js": {"type": "string"}}, "required": ["vue-smart-table-default.css", "vue-smart-table.js"], "$schema": "http://json-schema.org/draft-07/schema#"}...
{"vue-smart-table-default.css" : "sha256-WydHbcwMFC27ahWDZ75SMZR0mbWE9aubixCDGx5CDzU=", "vue-smart-table.js" : "sha256-TQahksi3K7RKZut5gQBcHoTGG68tcOhSiW/WKgg3+RM="}
json_instruct
{"type": "object", "properties": {"vue-smart-table-default.css": {"type": "string"}, "vue-smart-table.js": {"type": "string"}}, "required": ["vue-smart-table-default.css", "vue-smart-table.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"ImportPath": {"type": "string"}, "GoVersion": {"type": "string"}, "GodepVersion": {"type": "string"}, "Packages": {"type": "array", "items": {"type": "string"}}, "Deps": {"type": "array", "items": {"type": "object", "proper...
{"ImportPath" : "github.com/box/kube-applier", "GoVersion" : "go1.7", "GodepVersion" : "v74", "Packages" : ["./..."], "Deps" : [{"ImportPath" : "github.com/beorn7/perks/quantile", "Rev" : "3ac7bf7a47d159a033b107610db8a1b6575507a4"}, {"ImportPath" : "github.com/davecgh/go-spew/spew", "Comment" : "v1.0.0-3-g6d21280", "Re...
json_instruct
{"type": "object", "properties": {"ImportPath": {"type": "string"}, "GoVersion": {"type": "string"}, "GodepVersion": {"type": "string"}, "Packages": {"type": "array", "items": {"type": "string"}}, "Deps": {"type": "array", "items": {"type": "object", "properties": {"ImportPath": {"type": "string"}, "Rev": {"type": "str...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "provinc...
{"name" : "Academy of the Federal Security Administration of the Russian Federation", "alt_name" : "Akademija Federalnoj Slu\u017eby Bezopasnosti Rossii", "country" : "Russia", "state" : null, "address" : {"street" : "prosp. Mi\u010durinskij 70", "city" : "Moskva", "province" : null, "postal_code" : "119602"}, "contact...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "null"}, "postal_code": {"type": "string"}},...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"$schema": {"type": "string"}, "$id": {"type": "string"}, "type": {"type": "string"}, "title": {"type": "string"}, "allOf": {"type": "array", "items": {"type": "object", "properties": {"$ref": {"type": "string"}...
{"$schema" : "http://json-schema.org/draft-07/schema#", "$id" : "https://fdc3.finos.org/schemas/next/position.schema.json", "type" : "object", "title" : "Position", "allOf" : [{"$ref" : "context.schema.json#/"}], "properties" : {"type" : {"const" : "fdc3.position"}, "instrument" : {"$ref" : "instrument.schema.json#/"},...
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "$id": {"type": "string"}, "type": {"type": "string"}, "title": {"type": "string"}, "allOf": {"type": "array", "items": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "properties": {"type": "object", "properties": {...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "string"}, "authors": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "...
{"name" : "ATOM_DTU_CAT1", "description" : "Library for ATOM DTU CAT1 development kit", "keywords" : "M5STACK ATOM DTU CAT1", "authors" : {"name" : "M5Stack", "url" : "http://www.m5stack.com"}, "repository" : {"type" : "git", "url" : "https://github.com/m5stack/ATOM_DTU_CAT1.git"}, "version" : "0.0.1", "frameworks" : "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "string"}, "authors": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "repository": {"type": "object", "properties": {"type": {"ty...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "group": {"type": "string"}, "checksum": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "text": {"type": "...
{"id" : "00800", "group" : "spam-2", "checksum" : {"type" : "MD5", "value" : "770c5025e1f05a52d805d04cbc74252f"}, "text" : "From freequote@49.six86.com Mon Jul 22 18:39:17 2002\nReturn-Path: <freequote@49.six86.com>\nDelivered-To: yyyy@localhost.netnoteinc.com\nReceived: from localhost (localhost [127.0.0.1])\n\tby ph...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "group": {"type": "string"}, "checksum": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "text": {"type": "string"}}, "required": ["id", "group", "checksum", "text"], "$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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, "license": {"type": "...
{"name" : "@rebox/android", "version" : "2.0.5", "description" : "Set of helpers to deal with React Native applications on Android", "keywords" : ["react", "react-native", "android"], "repository" : "nextools/metarepo", "license" : "MIT", "engines" : {"node" : ">=10.13.0"}, "main" : "src/index.ts", "buildAssets" : {"an...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "stri...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "string"}}}, "required": ["baseObject...
{"baseObjects" : ["[403,460,618,0,618]", "[403,460,618,0,618]", "[403,460,618,0,618]", "[403,460,618,0,null]"], "returnObjects" : ["[]", "[]", "[403,460,618,0,618]", "[]"], "callbackArgs" : ["{\"0\":403,\"1\":0,\"2\":[403,460,618,0,618]}", "{\"0\":460,\"1\":1,\"2\":[403,460,618,0,618]}", "{\"0\":618,\"1\":2,\"2\":[403,...
json_instruct
{"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "string"}}}, "required": ["baseObjects", "returnObjects", "callbackArgs"], "$schema": "http://json-schema....
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"cpuInfo": {"type": "string"}, "lang": {"type": "string"}, "os": {"type": "string"}, "compiler": {"type": "string"}, "compilerVersion": {"type": "string"}, "test": {"type": "string"}, "code": {"type": "string"}, "input": {"t...
{"cpuInfo" : "[x86_64][2 cores] Intel(R) Xeon(R) Platinum 8272CL CPU @ 2.60GHz", "lang" : "javascript", "os" : "linux", "compiler" : "node", "compilerVersion" : "current", "test" : "json-serde", "code" : "1.js", "input" : "canada 15", "timeMS" : 1132.7158, "timeStdDevMS" : 5.958622803131484, "memBytes" : 234917888, "cp...
json_instruct
{"type": "object", "properties": {"cpuInfo": {"type": "string"}, "lang": {"type": "string"}, "os": {"type": "string"}, "compiler": {"type": "string"}, "compilerVersion": {"type": "string"}, "test": {"type": "string"}, "code": {"type": "string"}, "input": {"type": "string"}, "timeMS": {"type": "number"}, "timeStdDevMS":...
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#"}
[[1956, 5], [1961, 5], [1966, 5], [1967, 5], [1970, 6], [1971, 6], [1972, 5], [1976, 6], [1977, 7], [1980, 6], [1981, 8], [1982, 13], [1983, 12], [1984, 9], [1985, 13], [1986, 5], [1987, 11], [1988, 7], [1990, 6]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$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"}, "description": {"type": "string"}, "homepage_url": {"type": "string"}, "manifest_version": {"type": "integer"}, "minimum_chrome_version": {"type": "st...
{"name" : "Lurk", "version" : "2.0.0", "description" : "Twitter, for those who don't tweet", "homepage_url" : "https://github.com/heyjordn/lurk", "manifest_version" : 2, "minimum_chrome_version" : "50", "permissions" : ["https://twitter.com/*"], "applications" : {"gecko" : {"id" : "twitterlurk@twitterlurk.com"}}, "icon...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage_url": {"type": "string"}, "manifest_version": {"type": "integer"}, "minimum_chrome_version": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "appli...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"PRODUCT_NAME": {"type": "string"}, "MANUFACTURER": {"type": "string"}, "BRANDNAME": {"type": "string"}, "WEIGHT": {"type": "string"}}, "required": ["PRODUCT_NAME", "MANUFACTURER", "BRANDNAME", "WEIGHT"], "$sc...
{"PRODUCT_NAME" : "Peanut Butter", "MANUFACTURER" : "Nutristar Enterprises", "BRANDNAME" : "Nutri", "WEIGHT" : "450g"}
json_instruct
{"type": "object", "properties": {"PRODUCT_NAME": {"type": "string"}, "MANUFACTURER": {"type": "string"}, "BRANDNAME": {"type": "string"}, "WEIGHT": {"type": "string"}}, "required": ["PRODUCT_NAME", "MANUFACTURER", "BRANDNAME", "WEIGHT"], "$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"}, "short_name": {"type": "string"}, "start_url": {"type": "string"}, "background_color": {"type": "string"}, "theme_color": {"type": "string"}, "description": {"type": "string"}, "dis...
{"name" : "Eternus Global Landing Page Checklist", "short_name" : "Checklist", "start_url" : ".", "background_color" : "#fff", "theme_color" : "#e4e4f2", "description" : "Landing Page Checklist", "display" : "standalone", "icons" : [{"src" : "./logo.png", "sizes" : "200x200", "type" : "image/png"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "short_name": {"type": "string"}, "start_url": {"type": "string"}, "background_color": {"type": "string"}, "theme_color": {"type": "string"}, "description": {"type": "string"}, "display": {"type": "string"}, "icons": {"type": "array", "items": {"type": "obje...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "623027100", "text" : "\u62c9\u535c\u695e\u9547"}, {"id" : "623027101", "text" : "\u738b\u683c\u5c14\u5858\u9547"}, {"id" : "623027102", "text" : "\u963f\u6728\u53bb\u4e4e\u9547"}, {"id" : "623027103", "text" : "\u6851\u79d1\u9547"}, {"id" : "623027104", "text" : "\u7518\u52a0\u9547"}, {"id" : "623027105", "te...
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#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "ite...
{"t" : "mipakahotay", "h" : [{"d" : [{"f" : "\u6b63\u5728\u6293\u4e00\u628a\u7d66\u5c0d\u65b9\u4e86\u3002", "e" : ["\ufff9`Mipakahot~`ay~ `kako~ `to~ `wawa~ `to~ `kodasing~.\ufffa\ufffb\u6211\u6293\u4e00\u628a\u82b1\u751f\u7d66\u5b69\u5b50\u4e86\u3002"]}, {"f" : "\u6307\u6293\u4e00\u628a\u6771\u897f\u7d66\u4eba\u7684\u...
json_instruct
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "s...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "prereqTree": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode...
{"courseCode" : "MB5102", "courseCredit" : "4", "description" : "To provide a working understanding of basic problems of mechanobiology. In practical terms, we will present to the students a number of important problems relevant to force-generation and force-sensing in living systems, and how the cells interpret the me...
json_instruct
{"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "prereqTree": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "prereqTree", "ti...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "inputsData": {"type": "object", "properties": {"in": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "in2": {"type": "object", "properties": {"type"...
{"name" : "feDisplacementMap", "inputsData" : {"in" : {"type" : "select"}, "in2" : {"type" : "select"}, "scale" : {"min" : 0, "type" : "number"}, "xChannelSelector" : {"type" : "select"}, "yChannelSelector" : {"type" : "select"}, "x" : {"type" : "text"}, "y" : {"type" : "text"}, "width" : {"type" : "text"}, "height" : ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "inputsData": {"type": "object", "properties": {"in": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "in2": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "scale": {"type": "object...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "prope...
{"name" : "challenge", "version" : "1.0.0", "description" : "Technical refactor challenge", "main" : "runner.ts", "author" : "Cyber Dive Engineers", "license" : "ISC", "devDependencies" : {"@types/node" : "^16.11.7", "ts-node" : "^10.4.0", "tslib" : "^2.3.1", "typescript" : "^4.4.4", "underscore" : "^1.13.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "ts-node": {"ty...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "string"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"typ...
{"title" : "Leaves, Mills College, Oakland, California", "creation_date" : "ca. 1932", "creation_date_earliest" : "1927-01-01", "creation_date_latest" : "1937-01-01", "medium" : "gelatin silver print", "accession_number" : "75.59.1", "id" : "cmoa:things/77b05daf-5988-4d78-b6ba-8a189c366860", "credit_line" : "Gift of Mr...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "string"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "string"}, "id": {"type": "string"}, "credit_line": {"type": "string"},...
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" : 66430, "cartId" : "1c30a65f-6e30-45b0-9b59-8f52f78c9b42", "preferredProducts" : [3419], "productReviews" : [{"productId" : 3459, "reviewText" : "I tried to pepper it but got prune all over it.", "reviewDate" : "2017-10-18T11:07:29.9787641+03:00"}, {"productId" : 708, "reviewText" : "My neighbor Elisha has o...
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 sample JSON data that conforms to the following schema definition: {"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" : "askscience", "author" : "Soggy-Tampon", "count" : 16}
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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"description": {"type": "string"}, "name": {"type": "string"}, "notes": {"type": "string"}, "project_id": {"type": "integer"}, "related": {"type": "string"}, "theme_id": {"type": "null"}, "thumbnail_url": {"type": "st...
{"description" : "Contains all interactivities and embeddables.", "name" : "Full Fledged example", "notes" : "", "project_id" : 1, "related" : "Contains all interactivities and embeddables.", "theme_id" : null, "thumbnail_url" : "", "time_to_complete" : null}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "name": {"type": "string"}, "notes": {"type": "string"}, "project_id": {"type": "integer"}, "related": {"type": "string"}, "theme_id": {"type": "null"}, "thumbnail_url": {"type": "string"}, "time_to_complete": {"type": "null"}}, "required": ["descript...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "scripts": {"type": "object", "properties": {"parcel": {"type": "string"}, "build:app": {"type"...
{"name" : "streamdeck-plugintemplate", "version" : "1.0.0", "main" : "index.js", "repository" : "https://github.com/cmgriffing/streamdeck-stinger-scene-transition.git", "scripts" : {"parcel" : "parcel", "build:app" : "parcel build ./src/app.js -d ./Sources/com.elgato.template.sdPlugin --target node --bundle-node-module...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "scripts": {"type": "object", "properties": {"parcel": {"type": "string"}, "build:app": {"type": "string"}, "build": {"type": "string"}}, "required": ["parcel", "bui...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "ascMain": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"asb": {"type": "string"}, "...
{"name" : "@as-bench/assembly", "version" : "0.0.1", "description" : "The assembly package glue code for running benchmarks", "ascMain" : "assemmbly/index.ts", "types" : "types/as-bench.d.ts", "scripts" : {"asb" : "node ../cli/lib/bench --verbose", "bench" : "node ../cli/lib/bench --verbose", "test" : "run-s asb", "tsc...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "ascMain": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"asb": {"type": "string"}, "bench": {"type": "string"}, "test": {"type": "string"}, "ts...
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" : "KOTA PEMATANGSIANTAR", "originalFilename" : "pas poto.jpg", "namaPartai" : "Partai Gerakan Perubahan Indonesia", "id" : 117525, "noUrut" : 1, "nama" : "SYAWALUDDIN RIZAL SIAGIAN", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA PEMATANGSIANTAR", "originalFilename" : "Pas Ftho_001.jpg", "namaParta...
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", "...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"participants": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "summonerName": {"type": "string"}, "summonerId": {"type": "string"}, "accountId": {"type": "string"}, "puuid": {"type": "...
{"participants" : [{"name" : "Noway", "summonerName" : "Don Noway", "summonerId" : "dyLJmzvLTZfKpZqFVh0P57ltGlTjgCg5RjATDiCYDxxGp_8", "accountId" : "ElnE1LybchVVmuLurR4l81t4gGW4rBQEtfiTZprnUufxNg", "puuid" : "EuiVTF4FmwuVbQIl-pIzrhd2hvLCmiUy7n1anjjhsoJdz7xCuPNyhulzY7-mOD0IOqe9B5adUkUxSw"}, {"name" : "Drututt", "summone...
json_instruct
{"type": "object", "properties": {"participants": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "summonerName": {"type": "string"}, "summonerId": {"type": "string"}, "accountId": {"type": "string"}, "puuid": {"type": "string"}}, "required": ["name", "summonerName", "summonerId...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "conquest:block/damaged_concrete_wall_vertical_quarter_4"}
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": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type":...
{"author" : "William E. Stafford", "classification" : "Free Verse", "keywords" : ["Health", "Illness", "Death", "Living"], "period" : "", "reference" : "http://www.poetryfoundation.org/poem/171508", "region" : "U.S., Northwestern", "text" : ["Ours are the streets where Bess first met her", "cancer. She went to work eve...
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": ...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "tel": {"type": "string"}, "fax": {"type": "string"}, "licensee": {"type": "string"}, "licensePeriod": {"type": "string"}, "licenseClass": {"type": "string"}, "hciCode": {"type": "string"}, "address": ...
{"name" : "NEXUS SURGICAL ASSOCIATES", "tel" : "62358633", "fax" : "62355675", "licensee" : "NEXUS SURGICAL ASSOCIATES PTE. LTD.", "licensePeriod" : "19/10/2014 to 18/10/2019", "licenseClass" : "[ 5 Years ]", "hciCode" : "9405726", "address" : "3 MOUNT ELIZABETH, MOUNT ELIZABETH MEDICAL CENTRE, #08-06 Singapore 228510"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "tel": {"type": "string"}, "fax": {"type": "string"}, "licensee": {"type": "string"}, "licensePeriod": {"type": "string"}, "licenseClass": {"type": "string"}, "hciCode": {"type": "string"}, "address": {"type": "string"}, "doctorInCharge": {"type": "array", "...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"api": {"type": "object", "properties": {"upstream_url": {"type": "string"}, "name": {"type": "string"}, "routes": {"type": "array", "items": {"type": "object", "properties": {"paths": {"type": "array", "items": {"...
{"api" : {"upstream_url" : "http://mockbin.com/", "name" : "brilliant", "routes" : [{"paths" : ["/brilliant"]}]}, "plugins" : [{"name" : "rate-limiting", "enabled" : true, "config" : {"day" : 100, "fault_tolerant" : true}}]}
json_instruct
{"type": "object", "properties": {"api": {"type": "object", "properties": {"upstream_url": {"type": "string"}, "name": {"type": "string"}, "routes": {"type": "array", "items": {"type": "object", "properties": {"paths": {"type": "array", "items": {"type": "string"}}}, "required": ["paths"]}}}, "required": ["upstream_url...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dojoBuild": {"type": "string"}}, "required": ["name", "version", "dojoBuild"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Aras", "version" : "0.4.0.0", "dojoBuild" : "package.js"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dojoBuild": {"type": "string"}}, "required": ["name", "version", "dojoBuild"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/sche...
[{"year" : 1978, "sex" : "F", "n" : 5, "prop" : 3.04e-06}, {"year" : 1979, "sex" : "F", "n" : 5, "prop" : 2.9e-06}, {"year" : 1982, "sex" : "F", "n" : 5, "prop" : 2.76e-06}, {"year" : 1986, "sex" : "F", "n" : 5, "prop" : 2.71e-06}, {"year" : 1987, "sex" : "F", "n" : 13, "prop" : 6.94e-06}, {"year" : 1988, "sex" : "F", ...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kecamatan": {"type": "string"}, "name": {"type": "stri...
{"code" : "200", "messages" : "Successfully received data", "value" : [{"id" : "7317041005", "id_kecamatan" : "731704", "name" : "Bajo"}, {"id" : "7317042004", "id_kecamatan" : "731704", "name" : "Rumaju"}, {"id" : "7317042006", "id_kecamatan" : "731704", "name" : "Sampa"}, {"id" : "7317042007", "id_kecamatan" : "73170...
json_instruct
{"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kecamatan": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "id_kecamatan", "name"]}}}, "required": ["code...
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" : "360481207200", "text" : "\u53cc\u6865\u6751\u59d4\u4f1a"}, {"id" : "360481207201", "text" : "\u71d5\u5c71\u6751\u59d4\u4f1a"}, {"id" : "360481207202", "text" : "\u4e25\u7548\u6751\u59d4\u4f1a"}, {"id" : "360481207203", "text" : "\u7ea2\u65e5\u6751\u59d4\u4f1a"}, {"id" : "360481207204", "text" : "\u6392\u7802\...
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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "sample": {"type": "string"}, "technique": {"type": "string"}, "isotope": {"type": "string"}, "date": {"type": "string"}, "analysis_date": {"type": "null"}, "copi...
{"id" : 79, "name" : "m79 is Rao1D activity on 18I18 by ECMS", "sample" : "Rao1D", "technique" : "ECMS", "isotope" : "16", "date" : "18I18", "analysis_date" : null, "copied_at" : null, "raw_data_path" : "~/Dropbox/DATA/LowOverpotentialRegime/EC_MS/18I19_Rao1D_16O/01 Rao1D 18I19 18I18_IrO2_RuO2_18O.pkl", "exported_data_...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "sample": {"type": "string"}, "technique": {"type": "string"}, "isotope": {"type": "string"}, "date": {"type": "string"}, "analysis_date": {"type": "null"}, "copied_at": {"type": "null"}, "raw_data_path": {"type": "string"}, "expor...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@commitlint/config-conventional": {"type": "string"}, "husky": {"type": "string"}}, "required": [...
{"name" : "dotfiles", "description" : "My dotfiles", "devDependencies" : {"@commitlint/config-conventional" : "^12.0.1", "husky" : "^5.1.3"}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "husky" : {"hooks" : {"commit-msg" : "commitlint -E HUSKY_GIT_PARAMS"}}, "repository" : {"type" : "git", "ur...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@commitlint/config-conventional": {"type": "string"}, "husky": {"type": "string"}}, "required": ["@commitlint/config-conventional", "husky"]}, "scripts": {"type": "objec...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"...
{"geometry" : {"type" : "Point", "coordinates" : [-80.16, 39.28]}, "type" : "Feature", "id" : "26424", "properties" : {"other_cities" : "", "city" : "Rosemont", "state" : "WV", "county" : "Taylor County"}}
json_instruct
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_c...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"NAME": {"type": "string"}, "PATH_TRAIN_CLEAN": {"type": "string"}, "PATH_TRAIN_NOISY": {"type": "string"}, "PATH_DEV": {"type": "string"}, "PATH_TEST": {"type": "string"}, "DATA_SEPARATOR": {"type": "string"}, "WORD_EMBEDDING": ...
{"NAME" : "dynamic", "PATH_TRAIN_CLEAN" : "../data/dummy_data/train.txt", "PATH_TRAIN_NOISY" : "../data/dummy_data/train_noisy.txt", "PATH_DEV" : "../data/dummy_data/dev.txt", "PATH_TEST" : "../data/dummy_data/test.txt", "DATA_SEPARATOR" : "\t", "WORD_EMBEDDING" : "../data/fasttext/cc.en.300.bin", "LABEL_FORMAT" : "io"...
json_instruct
{"type": "object", "properties": {"NAME": {"type": "string"}, "PATH_TRAIN_CLEAN": {"type": "string"}, "PATH_TRAIN_NOISY": {"type": "string"}, "PATH_DEV": {"type": "string"}, "PATH_TEST": {"type": "string"}, "DATA_SEPARATOR": {"type": "string"}, "WORD_EMBEDDING": {"type": "string"}, "LABEL_FORMAT": {"type": "string"}, "...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"count": {"type": "integer"}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "391021": {"type": "object", "properties": {"count": {"type": "integer"}}, "requ...
{"count" : 12, "N.A.//" : {"count" : 9}, "391021" : {"count" : 1}, "512090" : {"count" : 1}, "412010" : {"count" : 1}}
json_instruct
{"type": "object", "properties": {"count": {"type": "integer"}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "391021": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "512090": {"type": "object", "properties": {"count": {"typ...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "slug": {"type": "string"}, "powerstats": {"type": "object", "properties": {"intelligence": {"type": "integer"}, "strength": {"type": "integer"}, "speed": {"type": "integer"}...
{"id" : 583, "name" : "Sentry", "slug" : "583-sentry", "powerstats" : {"intelligence" : 75, "strength" : 100, "speed" : 100, "durability" : 84, "power" : 100, "combat" : 40}, "appearance" : {"gender" : "Male", "race" : "Mutant", "height" : ["6'2", "188 cm"], "weight" : ["194 lb", "87 kg"], "eyeColor" : "Blue", "hairCol...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "slug": {"type": "string"}, "powerstats": {"type": "object", "properties": {"intelligence": {"type": "integer"}, "strength": {"type": "integer"}, "speed": {"type": "integer"}, "durability": {"type": "integer"}, "power": {"type": "i...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "i...
{"directions" : ["In a bowl, sift the ground ancho chile, cayenne pepper, and cinnamon with the confectioners' sugar. Beat in the cream cheese and butter with an electric mixer on medium speed until the frosting is smooth; mix in the vanilla extract. Use to frost cupcakes or cakes."], "ingredients" : ["1 teaspoon groun...
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...
Create a JSON structure that matches this schema definition: {"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", "ite...
{"name" : "Bottle of Elonian Wine", "description" : "Elonian wine, purchased from Miyani in Lion's Arch.", "type" : "Trophy", "level" : 0, "rarity" : "Exotic", "vendor_value" : 313, "game_types" : ["Wvw", "Dungeon", "Pve"], "flags" : ["NoSalvage"], "restrictions" : [], "id" : 19663, "chat_link" : "[&AgHPTAAA]", "icon" ...
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": ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type...
{"id" : 96852, "info" : {"name" : "stream2vlc dark", "description" : "Simple dark CSS for bogs amazing stream2vlc script (http://bog.no-ip.biz/sc2/stream2vlc.php)", "additionalInfo" : null, "format" : "uso", "category" : "no-ip", "createdAt" : "2014-01-07T17:16:58.000Z", "updatedAt" : "2014-01-07T18:17:38.000Z", "licen...
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": "...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "strin...
{"schema_version" : "1.2.0", "id" : "GHSA-97gj-hw58-qf2c", "modified" : "2021-12-23T00:01:50Z", "published" : "2021-12-18T00:01:00Z", "aliases" : ["CVE-2021-0673"], "details" : "In Audio Aurisys HAL, there is a possible permission bypass due to a missing permission check. This could lead to local escalation of privileg...
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...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"moniker": {"type": "string"}, "valopr_address": {"type": "string"}, "addedPeer": {"type": "string"}}, "required": ["moniker", "valopr_address", "addedPeer"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"moniker" : "gigimon", "valopr_address" : "cohovaloper1dshklqtu50z5m8xxyzcwv26p03rm5tewt43a8q", "addedPeer" : "53b725b39aaa794a9793a5aa2f85f513af9810fa@65.108.126.175:27656"}
json_instruct
{"type": "object", "properties": {"moniker": {"type": "string"}, "valopr_address": {"type": "string"}, "addedPeer": {"type": "string"}}, "required": ["moniker", "valopr_address", "addedPeer"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "The Hackers Meet-up is a monthly must attend Meet-up which features in the calendars of security researchers, hackers and professionals around the nation. The event aims to bring together primarily security researchers, hackers, business leaders, entrepreneurs but also includes practitioners from acad...
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"Entries": {"type": "array", "items": {"type": "object", "properties": {"RequestUri": {"type": "string"}, "RequestMethod": {"type": "string"}, "RequestHeaders": {"type": "object", "properties": {"Accept": {"type": "st...
{"Entries" : [{"RequestUri" : "https://pakrym-azconfig-ui.azconfig.io/kv/key-771968621", "RequestMethod" : "GET", "RequestHeaders" : {"Accept" : "application/vnd.microsoft.appconfig.kv+json", "Authorization" : "Sanitized", "Content-Type" : "application/json", "Date" : "Tue, 21 May 2019 17:38:33 GMT", "User-Agent" : ["a...
json_instruct
{"type": "object", "properties": {"Entries": {"type": "array", "items": {"type": "object", "properties": {"RequestUri": {"type": "string"}, "RequestMethod": {"type": "string"}, "RequestHeaders": {"type": "object", "properties": {"Accept": {"type": "string"}, "Authorization": {"type": "string"}, "Content-Type": {"type":...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@buckpkg/buckit": {"type": "string"}, "@buckpkg/python": {"type": "string"}}, "required": ["@buckpkg/buckit", "@buckpkg/python"]}, "description...
{"author" : "Boost", "dependencies" : {"@buckpkg/buckit" : "*", "@buckpkg/python" : "*"}, "description" : "boost", "flat" : true, "license" : "Boost Software License - Version 1.0", "name" : "@buckpkg/boost", "repository" : {"type" : "tarball", "url" : "https://dl.bintray.com/boostorg/release/1.64.0/source/boost_1_64_0...
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@buckpkg/buckit": {"type": "string"}, "@buckpkg/python": {"type": "string"}}, "required": ["@buckpkg/buckit", "@buckpkg/python"]}, "description": {"type": "string"}, "flat": {"type": "boolean"}, "license":...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"hierarchy": {"type": "string"}, "description": {"type": "string"}, "holidays": {"type": "array", "items": {"type": "object", "properties": {"holidayType": {"type": "string"}, "key": {"type": "string"}}, "required": ["holidayTy...
{"hierarchy" : "lu", "description" : "Luxembourg", "holidays" : [{"holidayType" : "CHRISTIAN", "key" : "EASTER"}, {"holidayType" : "CHRISTIAN", "key" : "EASTER_MONDAY"}, {"holidayType" : "CHRISTIAN", "key" : "ASCENSION_DAY"}, {"holidayType" : "CHRISTIAN", "key" : "WHIT_MONDAY"}, {"holidayType" : "FIXED_DATE", "key" : "...
json_instruct
{"type": "object", "properties": {"hierarchy": {"type": "string"}, "description": {"type": "string"}, "holidays": {"type": "array", "items": {"type": "object", "properties": {"holidayType": {"type": "string"}, "key": {"type": "string"}}, "required": ["holidayType", "key"]}}, "subConfigurations": {"type": "array", "item...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"6455": {"type": "string"}, "6457": {"type": "string"}}, "required": ["6455", "6457"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"6455" : "6456", "6457" : "6458"}
json_instruct
{"type": "object", "properties": {"6455": {"type": "string"}, "6457": {"type": "string"}}, "required": ["6455", "6457"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"Type": {"type": "string"}, "Properties": {"type": "object", "properties": {"VpcId": {"type": "object", "properties": {"Ref": {"type": "string"}}, "required": ["Ref"]}, "CidrBlock": {"type": "string"}, "AvailabilityZone": {"...
{"Type" : "AWS::EC2::Subnet", "Properties" : {"VpcId" : {"Ref" : "${ clusterName }VPC"}, "CidrBlock" : "${ cidrBlock }", "AvailabilityZone" : "${ availabilityZone }"}}
json_instruct
{"type": "object", "properties": {"Type": {"type": "string"}, "Properties": {"type": "object", "properties": {"VpcId": {"type": "object", "properties": {"Ref": {"type": "string"}}, "required": ["Ref"]}, "CidrBlock": {"type": "string"}, "AvailabilityZone": {"type": "string"}}, "required": ["VpcId", "CidrBlock", "Availab...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "...
{"name" : "@theforeman/env", "version" : "3.3.2", "description" : "Development environment for foreman core and plugins", "author" : "Avi Sharvit <sharvita@gmail.com>", "homepage" : "https://github.com/theforeman/foreman-js#readme", "bugs" : {"url" : "https://github.com/theforeman/foreman-js/issues"}, "license" : "MIT"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "license": {"type": "string"}, "publis...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"config": {"type": "object", "properties": {"view": {"type": "object", "properties": {"height": {"type": "integer"}, "width": {"type": "integer"}}, "required": ["height", "width"]}}, "required": ["view"]}, "encoding": {"type": ...
{"config" : {"view" : {"height" : 300, "width" : 400}}, "encoding" : {"y" : {"title" : "b", "field" : "properties.b", "type" : "quantitative"}, "x" : {"title" : "a", "field" : "properties.a", "type" : "nominal"}}, "data" : {"values" : {"features" : [{"properties" : {"a" : "A", "b" : 28}, "geometry" : {"coordinates" : [...
json_instruct
{"type": "object", "properties": {"config": {"type": "object", "properties": {"view": {"type": "object", "properties": {"height": {"type": "integer"}, "width": {"type": "integer"}}, "required": ["height", "width"]}}, "required": ["view"]}, "encoding": {"type": "object", "properties": {"y": {"type": "object", "propertie...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "integer"}, "group": {"type": "string"}, "joblink": {"type": "boolean"}, "name": {"type": "string"}, "potential": {"type": "integer"}, "skills": {"type": "array", "items": {"type": "object", "propert...
{"id" : 9060, "group" : "83142100", "joblink" : true, "name" : "Betreuungskraft / Alltagsbegleiter/in", "potential" : 0, "skills" : [{"id" : 63129, "skill" : "Hauswirtschaft", "replaceable" : false}, {"id" : 64326, "skill" : "Altenarbeit, Seniorenarbeit", "replaceable" : false}, {"id" : 64354, "skill" : "Freizeitgestal...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "group": {"type": "string"}, "joblink": {"type": "boolean"}, "name": {"type": "string"}, "potential": {"type": "integer"}, "skills": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "skill": {"type": "string"}, "replacea...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"countries": {"type": "array", "items": {}}, "topics": {"type": "array", "items": {}}, "section_title": {"type": "string"}, "enb_start_date": {"type": "string"}, "enb_short_title": {"type": "string"}, "subtype": {"type": "strin...
{"countries" : [], "topics" : [], "section_title" : "SESSION 4", "enb_start_date" : "28-Apr-09", "enb_short_title" : "Workshop", "subtype" : "", "actors" : [], "sentences" : ["POSSIBLE NEXT STEPS AND CONCLUSIONS"], "enb_url" : "http://www.iisd.ca/vol12/enb12409e.html", "enb_long_title" : "UN Framework Convention on Cli...
json_instruct
{"type": "object", "properties": {"countries": {"type": "array", "items": {}}, "topics": {"type": "array", "items": {}}, "section_title": {"type": "string"}, "enb_start_date": {"type": "string"}, "enb_short_title": {"type": "string"}, "subtype": {"type": "string"}, "actors": {"type": "array", "items": {}}, "sentences":...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "number"}, "category": {"type": "integer"}}, "required": ["name", "value", "category"]}}, "li...
{"nodes" : [{"name" : "\u6d59\u6c5f\u4e07\u9a6c\u80a1\u4efd\u6709\u9650\u516c\u53f8", "value" : 7355673292.13, "category" : 1289}, {"name" : "\u4e07\u9a6c\u79d1\u6280\u80a1\u4efd\u6709\u9650\u516c\u53f8", "value" : 0.0, "category" : 1289}, {"name" : "\u6d59\u6c5f\u4e07\u9a6c\u6d77\u7acb\u65af\u65b0\u80fd\u6e90\u6709\u9...
json_instruct
{"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "number"}, "category": {"type": "integer"}}, "required": ["name", "value", "category"]}}, "links": {"type": "array", "items": {"type": "object", "properties": {"source": ...
Construct a JSON document that adheres to this schema specification: {"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"}, "ti...
{"body" : "To follow up with https://github.com/spack/spack/pull/22318#issuecomment-803626368, this will add an extra test to ensure that we can run a SpackCommand with global_args for config, meaning that a one off config argument is preserved with a SpackCommand. There was a bug in missing a call to setup_main_option...
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": ...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["431025104201", "\u7389\u5c4f\u6751\u6751\u59d4\u4f1a", "122", "0"], ["431025104202", "\u8f66\u5934\u6751\u6751\u59d4\u4f1a", "122", "0"], ["431025104203", "\u9ec4\u83b2\u6751\u6751\u59d4\u4f1a", "121", "0"], ["431025104204", "\u6155\u51b2\u6751\u6751\u59d4\u4f1a", "122", "0"], ["431025104205", "\u9676\u5bb6\u6751\u6...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01021287": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "propertie...
{"type" : "Topology", "objects" : {"E01021287" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00108139", "LAD11CD" : "E07000066"}, "arcs" : [[0, 1, 2]]}, {"type" : "Polygon", "prope...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01021287": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "str...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items"...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-75.775204, 39.952116], [-75.772849, 39.959148], [-75.769002, 39.958218], [-75.766171, 39.965456], [-75.768516, 39.985321], [-75.749806, 39.986806], [-75.750125, 39.990562], [-75.728083, 39.992547], [-75.708953, 39.997259...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "numbe...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "user": {"type": "string"}, "post": {"type": "string"}}, "required": ["id", "date", "user", "post"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 764, "date" : "2011-11-29 18:04:09", "user" : "BassHost", "post" : "A BassHost's Linux VPS Hosting plan is a great bridge between shared hosting and dedicated servers. You can completely customize your VPS plan to match your specific hosting needs and upgraded anytime as your site grows. We provide Low End Box ...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "user": {"type": "string"}, "post": {"type": "string"}}, "required": ["id", "date", "user", "post"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "null"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}},...
{"title" : "Deep Correlated Metric Learning for Sketch-based 3D Shape Retrieval.", "fields" : ["computer science", "sketch", "computer vision", "artificial intelligence", "machine learning"], "abstract" : null, "citation" : "Citations (1)", "departments" : ["New York University Abu Dhabi", "New York University Abu Dhab...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "null"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "obj...
{"hash" : "0xda6a45afcb07c177f0dd67fbb289786a2fde9188d98cc4648cab7097a2bea4ea", "parentHash" : "0xfaf941f139cffa9b337ccea99171b93a90d0aab0fb5d5d4b65aad0e522cb02f1", "number" : 77022, "timestamp" : 1439430192, "nonce" : "0x017e141dbdfd1198", "difficulty" : 2231732468877, "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"]...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "st...
{"name" : "bashka/bricks_business_ym_merchant_receipt", "description" : "\u0413\u0435\u043d\u0435\u0440\u0430\u0442\u043e\u0440 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u0434\u043b\u044f \u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0447\u0435\u043a\u0430 \u0441\u043e\u...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object",...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"baseUri": {"type": "string"}}, "required": ["baseUri"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"baseUri" : "http://localhost:8087/"}
json_instruct
{"type": "object", "properties": {"baseUri": {"type": "string"}}, "required": ["baseUri"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["$data", "$props", "$el", "$options", "$parent", "$root", "$children", "$slots", "$scopedSlots", "$refs", "$isServer", "$attrs", "$listeners", "$watch", "$set", "$delete", "$on", "$once", "$off", "$emit", "$mount", "$forceUpdate", "$nextTick", "$destroy"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "edges": {"type": "array", "items": {"type": "object", "properties": {"first": {"type": "integer"}, "s...
{"vertices" : [{"id" : "0"}, {"id" : "1"}, {"id" : "2"}, {"id" : "3"}, {"id" : "4"}, {"id" : "5"}, {"id" : "6"}, {"id" : "7"}, {"id" : "8"}, {"id" : "9"}, {"id" : "10"}, {"id" : "11"}, {"id" : "12"}], "edges" : [{"first" : 0, "second" : 1}, {"first" : 0, "second" : 2}, {"first" : 0, "second" : 3}, {"first" : 0, "second...
json_instruct
{"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "edges": {"type": "array", "items": {"type": "object", "properties": {"first": {"type": "integer"}, "second": {"type": "integer"}}, "required": ["first", "second"]}...
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" : 8104024004, "parent" : 8104024, "name" : "WAELAPIA", "latitude" : null, "longitude" : null, "postal" : [97374, 97577], "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...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@material-ui/core": {"type": "string"}, "@material-ui/icons": {"type": "string"}, "mo...
{"name" : "front", "version" : "0.1.0", "private" : true, "dependencies" : {"@material-ui/core" : "^1.4.1", "@material-ui/icons" : "^2.0.0", "moment" : "^2.22.2", "prop-types" : "^15.6.2", "react" : "^16.4.1", "react-big-calendar" : "^0.19.2", "react-dom" : "^16.4.1", "react-flexbox-grid" : "^2.1.2", "react-redux" : "^...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@material-ui/core": {"type": "string"}, "@material-ui/icons": {"type": "string"}, "moment": {"type": "string"}, "prop-types": {"type": "string"}...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Sources": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "ra": {"type": "number"}, "dec": {"type": "number"}, "epoch": {"type": "null"}, "equinox": {"type": "string"}, "shortname": {...
{"Sources" : [{"source" : "SSSPM J0134-6315", "ra" : 23.3853, "dec" : -63.2449, "epoch" : null, "equinox" : "2000", "shortname" : null, "reference" : "Lodi05", "comments" : null}], "Names" : [{"other_name" : "SSSPM J0134-6315"}], "ProperMotions" : [{"mu_ra" : 77.1, "mu_ra_error" : 8.81, "mu_dec" : -81.24, "mu_dec_error...
json_instruct
{"type": "object", "properties": {"Sources": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "ra": {"type": "number"}, "dec": {"type": "number"}, "epoch": {"type": "null"}, "equinox": {"type": "string"}, "shortname": {"type": "null"}, "reference": {"type": "string"}, "comments...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"VictoryQuote": {"type": "array", "items": {"type": "string"}}}, "required": ["VictoryQuote"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"VictoryQuote" : ["FightingGame", "VictoryPose", "UnsportsmanlikeGloating", "Rival", "BondOneLiner", "StreetFighter", "UrbanLegendOfZelda", "WelcomeToCorneria", "TheVoiceless", "TheUnintelligible", "OutOfCharacterMoment", "FinalBoss", "Narm", "HaveANiceDeath", "MirrorMatch", "SpiritualSuccessor", "VictoryPose", "Visua...
json_instruct
{"type": "object", "properties": {"VictoryQuote": {"type": "array", "items": {"type": "string"}}}, "required": ["VictoryQuote"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "ar...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-81.467483, 41.073157], [-81.466625, 41.09472], [-81.465535, 41.094756], [-81.465751, 41.093486], [-81.451301, 41.09295], [-81.451368, 41.089435], [-81.453227, 41.089557], [-81.456669, 41.087434], [-81.456812, 41.085025],...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "numbe...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "emai...
{"name" : "trilopin/pt_mock", "type" : "library", "description" : "Easy mock for php testing", "license" : "MIT", "authors" : [{"name" : "Gabi Ramos", "email" : "gabi@gabiramos.com"}], "require" : {"php" : ">=5.3", "sebastian/comparator" : "1.*"}, "require-dev" : {"phpunit/phpunit" : "4.*", "fabpot/php-cs-fixer" : "dev...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "type": {"type":...
{"id" : "0xce256e6b5ba84c9b3a97df5990716fe065af736daa30a14d97e454deb47ad036", "title" : "About the epoch of the coronation, some petty affair connected with his curacy--just what, is not pr", "body" : "About the epoch of the coronation, some petty affair connected with his curacy--just what, is not precisely known--too...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "type": {"type": "string"}, "scores": {"type": "array", "items": {"type": "integer"}},...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "...
{"body" : "Hi Tim,\n\n\nThe roughness will influence any transmitted specular component as well.\n\n\nYour calculation of trans parameters is off because your Rd is not 40% using RGB of 25%, 70% and 25%. If you want 40% reflectance, you need to adjust the RGB to (0.181,0.508,0.181). I computed these based on the Y fu...
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email...
{"id" : 105754, "name" : "AOL Reader BY Killo", "description" : "AOL READER", "user" : {"id" : 274611, "name" : "killo3", "email" : "redacted", "paypal_email" : "bestwiki@gmail.com", "homepage" : null, "about" : "I am a UI designer work for a Chinese company.", "license" : "ccbysa"}, "updated" : "2017-12-06T05:11:13.00...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "string"}, "homepage": {"type": "null"}, "abo...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"hint.css": {"type": "string"}, "hint.min.css": {"type": "string"}}, "required": ["hint.css", "hint.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hint.css" : "sha256-xqV1Ot2Tq/Tu8Iz60qt2KbohgRvo/wwV35L1yxBarwI=", "hint.min.css" : "sha256-5dWWoICNw9za0/xPYdEst6y5hf0wA65Nl7MEBC3980Q="}
json_instruct
{"type": "object", "properties": {"hint.css": {"type": "string"}, "hint.min.css": {"type": "string"}}, "required": ["hint.css", "hint.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "data": {"type": "object", "properties": {}, "required": []}, "start": {"type": "string"}, "end": {"type": "string"}}, "required": ["id", "type", "data", "start",...
{"id" : "e2peeXFCgol2peXFCgol2", "type" : "MAP_LINK", "data" : {}, "start" : "peXFCgol2", "end" : "eXFCgol2"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "data": {"type": "object", "properties": {}, "required": []}, "start": {"type": "string"}, "end": {"type": "string"}}, "required": ["id", "type", "data", "start", "end"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"external_references": {"type": "array", "items": {"type": "object", "properties": {"source_name": {"type": "string"}, "external_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["source_name", "extern...
{"external_references" : [{"source_name" : "mitre-attack", "external_id" : "T1588.001", "url" : "https://attack.mitre.org/techniques/T1588/001"}], "created_by_ref" : "The MITRE Corporation", "name" : "Malware", "description" : "Before compromising a victim, adversaries may buy, steal, or download malware that can be us...
json_instruct
{"type": "object", "properties": {"external_references": {"type": "array", "items": {"type": "object", "properties": {"source_name": {"type": "string"}, "external_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["source_name", "external_id", "url"]}}, "created_by_ref": {"type": "string"}, "name": {"typ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", ...
{"id" : "2002", "provinceId" : "92", "regencyId" : "09", "districtId" : "26", "name" : "Warpaperi"}
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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"count": {"type": "integer"}, "435071": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]},...
{"count" : 4, "435071" : {"count" : 1}, "N.A.//" : {"count" : 1}, "352021" : {"count" : 1}, "412010" : {"count" : 1}}
json_instruct
{"type": "object", "properties": {"count": {"type": "integer"}, "435071": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "352021": {"type": "object", "properties": {"count": {"typ...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "id": {"type": "string"}}, "required": ["title", "text", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"title" : "Get car fixed", "text" : "get it towed", "id" : "9a7df245-32bf-43cf-a180-cef0eead1647"}, {"title" : "work on homeworks", "text" : "do more work son", "id" : "1ee440de-0a09-4c3d-b2c7-85ac1ba2a041"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "id": {"type": "string"}}, "required": ["title", "text", "id"]}, "$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"}, "number": {"type": "string"}, "is_illegal": {"type": "boolean"}, "text": {"type": "string"}, "type": {"type": "string"}, "is_monster": {"type": "boolean"}, "is_spell": {"type": "boo...
{"name" : "Outstanding Dog Treo", "number" : "21000156", "is_illegal" : false, "text" : "If you control 2 or more \"Outstanding Dog\" monsters on the field: you can Special Summon this card from your Hand. You can only Special Summon \"Outstanding Dog Treo\" once per turn this way. If this card is Summoned: add 1 \"Out...
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"}, "species": {"type": "string"}, "attac...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "homepage": {"type": "string"}, "des...
{"name" : "react-svg-hexagon", "version" : "1.0.0", "author" : {"name" : "C\u00e9dric Delpoux", "email" : "xuopled@gmail.com"}, "homepage" : "https://github.com/xuopled/react-svg-hexagon#readme", "description" : "A React Svg valid hexagon component that can contain html and components", "repository" : {"type" : "git", ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "homepage": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "ob...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Gr\u00e8s rouge taill\u00e9", "description" : "Bloc de sable compress\u00e9, mais qui contrairement au sable rouge n'est pas sensible \u00e0 la gravit\u00e9: le bloc ne tombera pas s'il est pos\u00e9 en l'air. Il est recouvert de motifs myst\u00e9rieux, purement d\u00e9coratif, repr\u00e9sentant un Wither."}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"],...
{"id" : "2007", "provinceId" : "61", "regencyId" : "03", "districtId" : "13", "name" : "Balai Belungai"}
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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, ...
{"author" : {"id" : "t2_7y2vzfqd", "name" : "BioHacker202"}, "date" : {"day" : 1617408000, "full" : 1617477261, "month" : 1617235200, "week" : 1616889600}, "id" : "t3_mjf4zv", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 116205, "fullUrl" : "https://preview.redd.it/wm1q4qf8c0r61.jpg?auto=webp&s=b07cf4f43d...
json_instruct
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}},...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "te...
{"source" : "http://lema.rae.es/drae/srv/search?val=rememorar", "word" : "rememorar", "infinitivo" : "rememorar", "participio" : ["rememorado"], "gerundio" : ["rememorando"], "tenses" : {"3" : [["rememoro"], ["rememoras", "rememor\u00e1s"], ["rememora"], ["rememoramos"], ["rememor\u00e1is", "rememoran"], ["rememoran"]]...
json_instruct
{"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "item...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}}, "required": ["files"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"files" : ["discord_modules.node", "ceed6bb952\\2\\discord_game_sdk_x86.dll", "ceed6bb952\\2\\discord_game_sdk_x64.dll", "ceed6bb952\\discord_aegis_x86.dll", "ceed6bb952\\discord_aegis_x64.dll", "index.js", "manifest.json"]}
json_instruct
{"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}}, "required": ["files"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}},...
{"code" : 3321110, "parent" : 3321, "name" : "KARANGANYAR", "latitude" : "-6.8450217335146", "longitude" : "110.77677790874", "postal" : [59582], "children" : [3321110001, 3321110002, 3321110003, 3321110004, 3321110005, 3321110006, 3321110007, 3321110008, 3321110009, 3321110010, 3321110011, 3321110012, 3321110013, 3321...
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ...
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" : "gitech", "version" : "1.0.0", "description" : "GiTech Official Website", "main" : "sw.js", "scripts" : {"test" : "npm gitech"}, "repository" : {"type" : "git", "url" : "git+https://github.com/GiTechConsults/gitechonline.com.ng.git"}, "keywords" : ["gitech"], "author" : "GiTech Consults", "license" : "MIT", "...
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...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"webpackCompilationHash": {"type": "string"}}, "required": ["webpackCompilationHash"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"webpackCompilationHash" : "78d1ca8c65f80830aa90"}
json_instruct
{"type": "object", "properties": {"webpackCompilationHash": {"type": "string"}}, "required": ["webpackCompilationHash"], "$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"}, "image": {"type": "string"}, "dna": {"type": "string"}, "edition": {"type": "integer"}, "date": {"type": "integer"}, "attributes": {"type": "array...
{"name" : "GoldenGames #6545", "description" : "golden games nft", "image" : "ipfs://NewUriToReplace/6545.png", "dna" : "7e84423912ac9d77cdc5f9b56115c675ebb1efb0", "edition" : 6545, "date" : 1643859076450, "attributes" : [{"trait_type" : "Background", "value" : "Black"}, {"trait_type" : "Texture", "value" : "TEXTURE"},...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "dna": {"type": "string"}, "edition": {"type": "integer"}, "date": {"type": "integer"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"...