input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"ContainerService": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"clusterID": {"type": "string"}, "servicePrincipalProfile": {"type": "object", "properties": {"clientId": {"type": "string"}, "secret": {"type": "string"}}, "required": ["clientId", "secret"]}, "certificateProfile": {"type": "object", "properties": {"caCertificate": {"type": "string"}, "apiServerCertificate": {"type": "string"}, "clientPrivateKey": {"type": "string"}}, "required": ["caCertificate", "apiServerCertificate", "clientPrivateKey"]}, "hostedMasterProfile": {"type": "object", "properties": {"fqdn": {"type": "string"}}, "required": ["fqdn"]}}, "required": ["clusterID", "servicePrincipalProfile", "certificateProfile", "hostedMasterProfile"]}}, "required": ["properties"]}, "TenantID": {"type": "string"}, "SubscriptionID": {"type": "string"}, "ResourceGroupName": {"type": "string"}, "UserAssignedIdentityClientID": {"type": "string"}, "KubeletClientTLSBootstrapToken": {"type": "string"}}, "required": ["ContainerService", "TenantID", "SubscriptionID", "ResourceGroupName", "UserAssignedIdentityClientID", "KubeletClientTLSBootstrapToken"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ContainerService" : {"properties" : {"clusterID" : "${clusterID}", "servicePrincipalProfile" : {"clientId" : "${aadClientId}", "secret" : "${aadClientSecret}"}, "certificateProfile" : {"caCertificate" : "${caCrt}", "apiServerCertificate" : "${apiserverCrt}", "clientPrivateKey" : "${clientKey}"}, "hostedMasterProfile" : {"fqdn" : "${fqdn}"}}}, "TenantID" : "${tenantId}", "SubscriptionID" : "${subID}", "ResourceGroupName" : "${resourceGroup}", "UserAssignedIdentityClientID" : "${userAssignedIdentityID}", "KubeletClientTLSBootstrapToken" : "${tlsbootstraptoken}"}
json_instruct
{"type": "object", "properties": {"ContainerService": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"clusterID": {"type": "string"}, "servicePrincipalProfile": {"type": "object", "properties": {"clientId": {"type": "string"}, "secret": {"type": "string"}}, "required": ["clientId", "secret"]}, "certificateProfile": {"type": "object", "properties": {"caCertificate": {"type": "string"}, "apiServerCertificate": {"type": "string"}, "clientPrivateKey": {"type": "string"}}, "required": ["caCertificate", "apiServerCertificate", "clientPrivateKey"]}, "hostedMasterProfile": {"type": "object", "properties": {"fqdn": {"type": "string"}}, "required": ["fqdn"]}}, "required": ["clusterID", "servicePrincipalProfile", "certificateProfile", "hostedMasterProfile"]}}, "required": ["properties"]}, "TenantID": {"type": "string"}, "SubscriptionID": {"type": "string"}, "ResourceGroupName": {"type": "string"}, "UserAssignedIdentityClientID": {"type": "string"}, "KubeletClientTLSBootstrapToken": {"type": "string"}}, "required": ["ContainerService", "TenantID", "SubscriptionID", "ResourceGroupName", "UserAssignedIdentityClientID", "KubeletClientTLSBootstrapToken"], "$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"}, "type": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "elife/api-problem": {"type": "string"}, "elife/ping": {"type": "string"}, "silex/silex": {"type": "string"}, "symfony/finder": {"type": "string"}, "symfony/http-foundation": {"type": "string"}, "symfony/http-kernel": {"type": "string"}}, "required": ["php", "elife/api-problem", "elife/ping", "silex/silex", "symfony/finder", "symfony/http-foundation", "symfony/http-kernel"]}, "config": {"type": "object", "properties": {"platform": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "sort-packages": {"type": "boolean"}}, "required": ["platform", "sort-packages"]}}, "required": ["name", "type", "license", "require", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ijm/dummy-api", "type" : "project", "license" : "MIT", "require" : {"php" : "^7.0", "elife/api-problem" : "^1.1", "elife/ping" : "^1.0", "silex/silex" : "^2.0", "symfony/finder" : "^3.1", "symfony/http-foundation" : "^3.1", "symfony/http-kernel" : "^3.1"}, "config" : {"platform" : {"php" : "7.0.29"}, "sort-packages" : true}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "elife/api-problem": {"type": "string"}, "elife/ping": {"type": "string"}, "silex/silex": {"type": "string"}, "symfony/finder": {"type": "string"}, "symfony/http-foundation": {"type": "string"}, "symfony/http-kernel": {"type": "string"}}, "required": ["php", "elife/api-problem", "elife/ping", "silex/silex", "symfony/finder", "symfony/http-foundation", "symfony/http-kernel"]}, "config": {"type": "object", "properties": {"platform": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "sort-packages": {"type": "boolean"}}, "required": ["platform", "sort-packages"]}}, "required": ["name", "type", "license", "require", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"towns" : [{"name" : "Vila Velha (e.s.)", "url" : "vila-velha-e-s"}]}
json_instruct
{"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"g1": {"type": "number"}, "g2": {"type": "number"}, "logK": {"type": "number"}, "loc": {"type": "number"}, "logScale": {"type": "number"}}, "required": ["g1", "g2", "logK", "loc", "logScale"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"g1" : 0.9975213636742573, "g2" : 13.792427050212838, "logK" : -2.843185030559565, "loc" : 0.005513229463857797, "logScale" : -3.9722418763036043}
json_instruct
{"type": "object", "properties": {"g1": {"type": "number"}, "g2": {"type": "number"}, "logK": {"type": "number"}, "loc": {"type": "number"}, "logScale": {"type": "number"}}, "required": ["g1", "g2", "logK", "loc", "logScale"], "$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"}, "lint": {"type": "string"}, "start": {"type": "string"}, "jsdoc": {"type": "string"}}, "required": ["test", "lint", "start", "jsdoc"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@nmq/q": {"type": "string"}, "dotenv": {"type": "string"}, "eslint": {"type": "string"}, "jest": {"type": "string"}, "jsdoc": {"type": "string"}, "socket.io": {"type": "string"}, "socket.io-client": {"type": "string"}}, "required": ["@nmq/q", "dotenv", "eslint", "jest", "jsdoc", "socket.io", "socket.io-client"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "lab-18", "version" : "1.0.0", "description" : "TCP Server / Message Application", "main" : "app.js", "scripts" : {"test" : "jest", "lint" : "eslint **/*.js", "start" : "node server/server.js", "jsdoc" : "jsdoc -c ./docs/config/jsdoc.config.json ."}, "repository" : {"type" : "git", "url" : "git+https://github.com/yourname-401-advanced-javascript/lab-18.git"}, "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/yourname-401-advanced-javascript/lab-18/issues"}, "homepage" : "https://github.com/yourname-401-advanced-javascript/lab-18#readme", "dependencies" : {"@nmq/q" : "^1.0.3", "dotenv" : "^8.0.0", "eslint" : "^5.16.0", "jest" : "^24.8.0", "jsdoc" : "^3.6.2", "socket.io" : "^2.2.0", "socket.io-client" : "^2.2.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}, "start": {"type": "string"}, "jsdoc": {"type": "string"}}, "required": ["test", "lint", "start", "jsdoc"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@nmq/q": {"type": "string"}, "dotenv": {"type": "string"}, "eslint": {"type": "string"}, "jest": {"type": "string"}, "jsdoc": {"type": "string"}, "socket.io": {"type": "string"}, "socket.io-client": {"type": "string"}}, "required": ["@nmq/q", "dotenv", "eslint", "jest", "jsdoc", "socket.io", "socket.io-client"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"precommit": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "tdd": {"type": "string"}, "coverage": {"type": "string"}, "coveralls": {"type": "string"}}, "required": ["precommit", "build", "test", "tdd", "coverage", "coveralls"]}, "files": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-core": {"type": "string"}, "babel-eslint": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-stage-0": {"type": "string"}, "coveralls": {"type": "string"}, "eslint": {"type": "string"}, "isparta": {"type": "string"}, "mocha": {"type": "string"}, "rimraf": {"type": "string"}, "unexpected": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["babel-cli", "babel-core", "babel-eslint", "babel-loader", "babel-preset-es2015", "babel-preset-stage-0", "coveralls", "eslint", "isparta", "mocha", "rimraf", "unexpected", "webpack"]}}, "required": ["name", "version", "description", "main", "scripts", "files", "engines", "repository", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "tt-event-emitter", "version" : "1.0.0", "description" : "README.md", "main" : "dist/tt-event-emitter.js", "scripts" : {"precommit" : "npm test && npm run build", "build" : "rimraf dist && webpack --no-minimize && webpack", "test" : "mocha --compilers js:babel-register --recursive --bail", "tdd" : "npm run test -- --watch", "coverage" : "babel-node node_modules/isparta/bin/isparta cover node_modules/mocha/bin/_mocha --report lcovonly -- -R spec", "coveralls" : "npm run coverage && coveralls < coverage/lcov.info && rimraf coverage"}, "files" : ["dist", "source"], "engines" : {"node" : ">=6.1.0", "npm" : ">=3.8.6"}, "repository" : {"type" : "git", "url" : "git+https://github.com/Trip-Trax/tt-event-emitter.git"}, "author" : "Genert Org <contact@genert.org> (http://genert.org/)", "license" : "MIT", "bugs" : {"url" : "https://github.com/Trip-Trax/tt-event-emitter/issues"}, "homepage" : "https://github.com/Trip-Trax/tt-event-emitter#readme", "devDependencies" : {"babel-cli" : "^6.8.0", "babel-core" : "^6.8.0", "babel-eslint" : "^6.0.4", "babel-loader" : "^6.2.4", "babel-preset-es2015" : "^6.6.0", "babel-preset-stage-0" : "^6.5.0", "coveralls" : "^2.11.9", "eslint" : "^2.9.0", "isparta" : "^4.0.0", "mocha" : "^2.4.5", "rimraf" : "^2.5.2", "unexpected" : "^10.13.2", "webpack" : "^1.13.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"precommit": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "tdd": {"type": "string"}, "coverage": {"type": "string"}, "coveralls": {"type": "string"}}, "required": ["precommit", "build", "test", "tdd", "coverage", "coveralls"]}, "files": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-core": {"type": "string"}, "babel-eslint": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-stage-0": {"type": "string"}, "coveralls": {"type": "string"}, "eslint": {"type": "string"}, "isparta": {"type": "string"}, "mocha": {"type": "string"}, "rimraf": {"type": "string"}, "unexpected": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["babel-cli", "babel-core", "babel-eslint", "babel-loader", "babel-preset-es2015", "babel-preset-stage-0", "coveralls", "eslint", "isparta", "mocha", "rimraf", "unexpected", "webpack"]}}, "required": ["name", "version", "description", "main", "scripts", "files", "engines", "repository", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}, "casingName": {"type": "string"}}, "required": ["Name", "ShortName", "Description", "casingName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "5.7x28 mm SS198LF", "ShortName" : "SS198LF", "Description" : "Muni\u00e7\u00e3o LE restrita, de n\u00facleo de alum\u00ednio e ponta oca, com ponta verde.", "casingName" : "5.7x28 mm SS198LF"}
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}, "casingName": {"type": "string"}}, "required": ["Name", "ShortName", "Description", "casingName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "brewery_type": {"type": "string"}, "street": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "website_url": {"type": "string"}, "phone": {"type": "string"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "country": {"type": "string"}, "longitude": {"type": "string"}, "latitude": {"type": "string"}, "tags": {"type": "array", "items": {}}}, "required": ["id", "name", "brewery_type", "street", "city", "state", "postal_code", "website_url", "phone", "created_at", "updated_at", "country", "longitude", "latitude", "tags"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "rochester-mills-beer-co", "name" : "Rochester Mills Beer Co", "brewery_type" : "brewpub", "street" : "400 Water St Ste 101", "city" : "Rochester", "state" : "Michigan", "postal_code" : "48307-2089", "website_url" : "http://www.beercos.com", "phone" : "2486505080", "created_at" : "2018-07-24 01:33:36.323092", "updated_at" : "2018-08-11 21:37:55.349597", "country" : "United States", "longitude" : "", "latitude" : "", "tags" : []}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "brewery_type": {"type": "string"}, "street": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "website_url": {"type": "string"}, "phone": {"type": "string"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "country": {"type": "string"}, "longitude": {"type": "string"}, "latitude": {"type": "string"}, "tags": {"type": "array", "items": {}}}, "required": ["id", "name", "brewery_type", "street", "city", "state", "postal_code", "website_url", "phone", "created_at", "updated_at", "country", "longitude", "latitude", "tags"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"__type": {"type": "string"}, "_parentPath": {"type": "string"}, "_paramName": {"type": "string"}, "_paramType": {"type": "string"}, "_description": {"type": "null"}, "_newType": {"type": "null"}, "_override": {"type": "boolean"}}, "required": ["__type", "_parentPath", "_paramName", "_paramType", "_description", "_newType", "_override"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"__type" : "NewParamCommand_30", "_parentPath" : "/paths[/foo]/get", "_paramName" : "username", "_paramType" : "path", "_description" : null, "_newType" : null, "_override" : true}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"__type": {"type": "string"}, "_parentPath": {"type": "string"}, "_paramName": {"type": "string"}, "_paramType": {"type": "string"}, "_description": {"type": "null"}, "_newType": {"type": "null"}, "_override": {"type": "boolean"}}, "required": ["__type", "_parentPath", "_paramName", "_paramType", "_description", "_newType", "_override"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "500106013002", "text" : "\u6c11\u4e3b\u6751\u5c45\u59d4\u4f1a"}, {"id" : "500106013003", "text" : "\u65b0\u751f\u6751\u5c45\u59d4\u4f1a"}, {"id" : "500106013004", "text" : "\u6a21\u8303\u6751\u5c45\u59d4\u4f1a"}, {"id" : "500106013005", "text" : "\u91d1\u6c99\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "500106013007", "text" : "\u5de5\u4eba\u6751\u5c45\u59d4\u4f1a"}, {"id" : "500106013008", "text" : "\u6ee8\u6c5f\u793e\u533a\u5c45\u59d4\u4f1a"}]
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"content": {"type": "string"}, "id": {"type": "integer"}, "sender_full_name": {"type": "string"}, "timestamp": {"type": "integer"}}, "required": ["content", "id", "sender_full_name", "timestamp"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"content" : "<p>Does anybody know anything about this: <a href=\"https://bum.pm/\" target=\"_blank\" title=\"https://bum.pm/\">https://bum.pm/</a>?</p>", "id" : 175158146, "sender_full_name" : "Andrew Ashworth", "timestamp" : 1567895306}, {"content" : "<p><span class=\"user-mention\" data-user-id=\"198363\">@Namdak Tonpa</span> perhaps?<br>\nThe packages themselves look interesting too (<a href=\"https://github.com/o89/n2o/blob/master/src/network/n2o/web/http.lean\" target=\"_blank\" title=\"https://github.com/o89/n2o/blob/master/src/network/n2o/web/http.lean\">https://github.com/o89/n2o/blob/master/src/network/n2o/web/http.lean</a> seems to be an example of the FFI, using (2) from the other thread)</p>", "id" : 175159795, "sender_full_name" : "Reid Barton", "timestamp" : 1567898582}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"content": {"type": "string"}, "id": {"type": "integer"}, "sender_full_name": {"type": "string"}, "timestamp": {"type": "integer"}}, "required": ["content", "id", "sender_full_name", "timestamp"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {}}}, "required": ["baseObjects", "returnObjects", "callbackArgs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"baseObjects" : ["[\"}VTJY89x?\",\"5\",\"Q\",\"!\",\"q3\",\"F|r!?\",\"W\"]"], "returnObjects" : ["\"Error\""], "callbackArgs" : []}
json_instruct
{"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {}}}, "required": ["baseObjects", "returnObjects", "callbackArgs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"black": {"type": "string"}, "white": {"type": "string"}, "gray": {"type": "string"}, "brown": {"type": "string"}, "gold": {"type": "string"}, "green": {"type": "string"}, "red": {"type": "string"}, "blue": {"type": "string"}, "purple": {"type": "string"}, "yellow": {"type": "string"}, "orange": {"type": "string"}, "cream": {"type": "string"}}, "required": ["black", "white", "gray", "brown", "gold", "green", "red", "blue", "purple", "yellow", "orange", "cream"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"black" : "#000000", "white" : "#ffffff", "gray" : "#969696", "brown" : "#522700", "gold" : "#D4AF37", "green" : "#00ff44", "red" : "#ff0000", "blue" : "#00a2ff", "purple" : "#b700ff", "yellow" : "#ffff00", "orange" : "#ff7b00", "cream" : "#fffdd0"}
json_instruct
{"type": "object", "properties": {"black": {"type": "string"}, "white": {"type": "string"}, "gray": {"type": "string"}, "brown": {"type": "string"}, "gold": {"type": "string"}, "green": {"type": "string"}, "red": {"type": "string"}, "blue": {"type": "string"}, "purple": {"type": "string"}, "yellow": {"type": "string"}, "orange": {"type": "string"}, "cream": {"type": "string"}}, "required": ["black", "white", "gray", "brown", "gold", "green", "red", "blue", "purple", "yellow", "orange", "cream"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"ng-clip.min.js": {"type": "string"}}, "required": ["ng-clip.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ng-clip.min.js" : "sha512-aI+AzFvNRq6FAW2y6TDvvFshlwm5LqP4gFCF0LMrPDQSfMP113cwUUw/Fz/oSCQuSMDhTHb74bmFs1nnQRNT0Q=="}
json_instruct
{"type": "object", "properties": {"ng-clip.min.js": {"type": "string"}}, "required": ["ng-clip.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"error": {"type": "integer"}, "success": {"type": "boolean"}, "timeout": {"type": "string"}, "data": {"type": "object", "properties": {}, "required": []}}, "required": ["error", "success", "timeout", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"error" : 0, "success" : true, "timeout" : "false", "data" : {}}
json_instruct
{"type": "object", "properties": {"error": {"type": "integer"}, "success": {"type": "boolean"}, "timeout": {"type": "string"}, "data": {"type": "object", "properties": {}, "required": []}}, "required": ["error", "success", "timeout", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "apihelp-graph-param-title": {"type": "string"}}, "required": ["@metadata", "apihelp-graph-param-title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"@metadata" : {"authors" : ["Mikel Ibaiba"]}, "apihelp-graph-param-title" : "Grafikodun orriaren izena"}
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "apihelp-graph-param-title": {"type": "string"}}, "required": ["@metadata", "apihelp-graph-param-title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Talisawa, Datu Abdullah Sanki, Maguindanao, Autonomous Region of Muslim Mindanao (ARMM), PH", "locale" : "ph.autonomous-region-of-muslim-mindanao-armm.maguindanao.datu-abdullah-sanki.talisawa", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "1", "region_reference" : "15", "region_name" : "Autonomous Region of Muslim Mindanao (ARMM)", "province_id" : "44", "province_reference" : "44", "province_name" : "Maguindanao", "city_id" : "395", "city_reference" : "903", "city_name" : "Datu Abdullah Sanki", "barangay_id" : "11194", "barangay_reference" : "23139", "barangay_name" : "Talisawa"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[124.459427, 6.79354], [124.479477, 6.79494], [124.479347, 6.79147], [124.481041, 6.78452], [124.481857, 6.78101], [124.483093, 6.7771], [124.483398, 6.77585], [124.484688, 6.76939], [124.481934, 6.76916], [124.479813, 6.76947], [124.473457, 6.76888], [124.467827, 6.76763], [124.456451, 6.76597], [124.451912, 6.76471], [124.446327, 6.76245], [124.444923, 6.76105], [124.43824, 6.78877], [124.443138, 6.79042], [124.445618, 6.79142], [124.451576, 6.7925], [124.453827, 6.79304], [124.459427, 6.79354]]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"kind": {"type": "string"}, "apiVersion": {"type": "string"}, "metadata": {"type": "object", "properties": {"name": {"type": "string"}, "labels": {"type": "object", "properties": {"run": {"type": "string"}}, "required": ["run"]}}, "required": ["name", "labels"]}, "spec": {"type": "object", "properties": {"replicas": {"type": "integer"}, "selector": {"type": "object", "properties": {"matchLabels": {"type": "object", "properties": {"run": {"type": "string"}}, "required": ["run"]}}, "required": ["matchLabels"]}, "template": {"type": "object", "properties": {"metadata": {"type": "object", "properties": {"creationTimestamp": {"type": "null"}, "labels": {"type": "object", "properties": {"run": {"type": "string"}}, "required": ["run"]}}, "required": ["creationTimestamp", "labels"]}, "spec": {"type": "object", "properties": {"terminationGracePeriodSeconds": {"type": "integer"}, "containers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "image": {"type": "string"}, "ports": {"type": "array", "items": {"type": "object", "properties": {"containerPort": {"type": "integer"}, "protocol": {"type": "string"}}, "required": ["containerPort", "protocol"]}}, "resources": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "image", "ports", "resources"]}}}, "required": ["terminationGracePeriodSeconds", "containers"]}}, "required": ["metadata", "spec"]}, "strategy": {"type": "object", "properties": {}, "required": []}}, "required": ["replicas", "selector", "template", "strategy"]}, "status": {"type": "object", "properties": {}, "required": []}}, "required": ["kind", "apiVersion", "metadata", "spec", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"kind" : "Deployment", "apiVersion" : "extensions/v1beta1", "metadata" : {"name" : "test123", "labels" : {"run" : "test123"}}, "spec" : {"replicas" : 1, "selector" : {"matchLabels" : {"run" : "test123"}}, "template" : {"metadata" : {"creationTimestamp" : null, "labels" : {"run" : "test123"}}, "spec" : {"terminationGracePeriodSeconds" : 30, "containers" : [{"name" : "test123", "image" : "nginx:1.19.1", "ports" : [{"containerPort" : 80, "protocol" : "TCP"}], "resources" : {}}]}}, "strategy" : {}}, "status" : {}}
json_instruct
{"type": "object", "properties": {"kind": {"type": "string"}, "apiVersion": {"type": "string"}, "metadata": {"type": "object", "properties": {"name": {"type": "string"}, "labels": {"type": "object", "properties": {"run": {"type": "string"}}, "required": ["run"]}}, "required": ["name", "labels"]}, "spec": {"type": "object", "properties": {"replicas": {"type": "integer"}, "selector": {"type": "object", "properties": {"matchLabels": {"type": "object", "properties": {"run": {"type": "string"}}, "required": ["run"]}}, "required": ["matchLabels"]}, "template": {"type": "object", "properties": {"metadata": {"type": "object", "properties": {"creationTimestamp": {"type": "null"}, "labels": {"type": "object", "properties": {"run": {"type": "string"}}, "required": ["run"]}}, "required": ["creationTimestamp", "labels"]}, "spec": {"type": "object", "properties": {"terminationGracePeriodSeconds": {"type": "integer"}, "containers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "image": {"type": "string"}, "ports": {"type": "array", "items": {"type": "object", "properties": {"containerPort": {"type": "integer"}, "protocol": {"type": "string"}}, "required": ["containerPort", "protocol"]}}, "resources": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "image", "ports", "resources"]}}}, "required": ["terminationGracePeriodSeconds", "containers"]}}, "required": ["metadata", "spec"]}, "strategy": {"type": "object", "properties": {}, "required": []}}, "required": ["replicas", "selector", "template", "strategy"]}, "status": {"type": "object", "properties": {}, "required": []}}, "required": ["kind", "apiVersion", "metadata", "spec", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "redacted": {"type": "boolean"}, "displayProperties": {"type": "object", "properties": {"hasIcon": {"type": "boolean"}, "description": {"type": "string"}, "name": {"type": "string"}}, "required": ["hasIcon", "description", "name"]}, "subtitle": {"type": "string"}}, "required": ["index", "hash", "blacklisted", "redacted", "displayProperties", "subtitle"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"index" : 0, "hash" : 4155311137, "blacklisted" : false, "redacted" : false, "displayProperties" : {"hasIcon" : false, "description" : "An iris unfurls. Our gaze caught. Cortex clutched. Suspended.\n\nA million lights bend inward. Pulled on a wave of enigmatic tone.\n\nA million lights rip inward. Fall. Link. Scream. Cycle. Bleed. Blend. Cycle.\n\nOne light alone. Pulled. Discordant. Suspended in the Endless.\n\nScreams.\n\nAn iris unfurls.\n\nRun. Run. Run.\n\nAn iris unfurls.\n\nRun. Run.\n\nAn iris unfurls.\n\nRun.\n\nBlink. An iris folds in.", "name" : "The Gate Lord's Eye"}, "subtitle" : "It looks through you, toward the infinite."}
json_instruct
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "redacted": {"type": "boolean"}, "displayProperties": {"type": "object", "properties": {"hasIcon": {"type": "boolean"}, "description": {"type": "string"}, "name": {"type": "string"}}, "required": ["hasIcon", "description", "name"]}, "subtitle": {"type": "string"}}, "required": ["index", "hash", "blacklisted", "redacted", "displayProperties", "subtitle"], "$schema": "http://json-schema.org/draft-07/schema#"}
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#"}
[["110105040001", "\u53cc\u6865\u7b2c\u4e00\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["110105040002", "\u53cc\u6865\u7b2c\u4e8c\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["110105040003", "\u5eb7\u57ce\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["110105040004", "\u6021\u666f\u57ce\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["110105040005", "\u65ed\u56ed\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["110105040006", "\u4e1c\u65ed\u793e\u533a\u5c45\u59d4\u4f1a", "112", "0"], ["110105040007", "\u53cc\u6865\u7b2c\u4e09\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["110105040200", "\u5927\u9c81\u5e97\u4e00\u6751\u59d4\u4f1a", "112", "0"], ["110105040201", "\u5927\u9c81\u5e97\u4e8c\u6751\u59d4\u4f1a", "111", "0"], ["110105040202", "\u5927\u9c81\u5e97\u4e09\u6751\u59d4\u4f1a", "111", "0"], ["110105040203", "\u5c0f\u9c81\u5e97\u6751\u59d4\u4f1a", "112", "0"], ["110105040204", "\u90ce\u5404\u5e84\u6751\u59d4\u4f1a", "111", "0"], ["110105040205", "\u90ce\u8f9b\u5e84\u6751\u59d4\u4f1a", "112", "0"], ["110105040206", "\u4e07\u5b50\u8425\u897f\u6751\u59d4\u4f1a", "112", "0"], ["110105040207", "\u4e07\u5b50\u8425\u4e1c\u6751\u59d4\u4f1a", "112", "0"], ["110105040208", "\u9ed1\u5e84\u6237\u6751\u59d4\u4f1a", "111", "0"], ["110105040209", "\u56db\u5408\u5e84\u6751\u59d4\u4f1a", "112", "0"], ["110105040210", "\u5b9a\u8f9b\u5e84\u897f\u6751\u59d4\u4f1a", "112", "0"], ["110105040211", "\u5b9a\u8f9b\u5e84\u4e1c\u6751\u59d4\u4f1a", "112", "0"], ["110105040212", "\u53cc\u6811\u5357\u6751\u59d4\u4f1a", "112", "0"], ["110105040213", "\u53cc\u6811\u5317\u6751\u59d4\u4f1a", "112", "0"], ["110105040214", "\u82cf\u575f\u6751\u59d4\u4f1a", "112", "0"], ["110105040215", "\u5e7a\u94fa\u6751\u59d4\u4f1a", "112", "0"]]
json_instruct
{"type": "array", "items": {"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": {"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://json-schema.org/draft-07/schema#"}
{"contract" : "0xf7123d59bd184f4a07ef758640206a28a62cf8cd", "tool" : "solhint", "start" : 1563620780.7510262, "end" : 1563620785.5061903, "duration" : 4.75516414642334, "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://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "abv": {"type": "number"}, "ibu": {"type": "number"}, "srm": {"type": "number"}, "upc": {"type": "integer"}, "type": {"type": "string"}, "brewery_id": {"type": "string"}, "updated": {"type": "string"}, "description": {"type": "string"}, "style": {"type": "string"}, "category": {"type": "string"}}, "required": ["name", "abv", "ibu", "srm", "upc", "type", "brewery_id", "updated", "description", "style", "category"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Zoigl Star Lager", "abv" : 5.9, "ibu" : 0.0, "srm" : 0.0, "upc" : 0, "type" : "beer", "brewery_id" : "appalachian_brewing_company", "updated" : "2010-07-22 20:00:20", "description" : "Zoigl is a golden, unfiltered lager beer which was originally brewed only in the region of Eastern Bavaria, between Franconia and the Czech Republic. For centuries, Zoigl was brewed in brewhouses owned by the town or an association of small brewers. \r\n\r\nThe Zoigl-Star, a six-angular star similar to the Star of David, was the sign of brewers in the middle ages. The star symbolizes the three elements (water, earth, and fire) and the three ingredients (water, malt, and hops) used for brewing. The importance of the yeast was not yet known in the 1400\u2019s.", "style" : "American-Style Lager", "category" : "North American Lager"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "abv": {"type": "number"}, "ibu": {"type": "number"}, "srm": {"type": "number"}, "upc": {"type": "integer"}, "type": {"type": "string"}, "brewery_id": {"type": "string"}, "updated": {"type": "string"}, "description": {"type": "string"}, "style": {"type": "string"}, "category": {"type": "string"}}, "required": ["name", "abv", "ibu", "srm", "upc", "type", "brewery_id", "updated", "description", "style", "category"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"identifier": {"type": "string"}, "name": {"type": "string"}, "grapthData": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "closePrice": {"type": "number"}}, "required": ["identifier", "name", "grapthData", "closePrice"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"identifier" : "OPTIDXBANKNIFTY26-05-2022CE32900.00", "name" : "BANKNIFTY", "grapthData" : [[1646645264000, 0], [1646653490000, 0], [1646653510000, 0], [1646654144000, 0], [1646654279000, 0], [1646655239000, 0], [1646655491000, 0]], "closePrice" : 3664.55}
json_instruct
{"type": "object", "properties": {"identifier": {"type": "string"}, "name": {"type": "string"}, "grapthData": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "closePrice": {"type": "number"}}, "required": ["identifier", "name", "grapthData", "closePrice"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"element": {"type": "string"}, "content": {"type": "array", "items": {"type": "object", "properties": {"element": {"type": "string"}, "meta": {"type": "object", "properties": {"classes": {"type": "object", "properties": {"element": {"type": "string"}, "content": {"type": "array", "items": {"type": "object", "properties": {"element": {"type": "string"}, "content": {"type": "string"}}, "required": ["element", "content"]}}}, "required": ["element", "content"]}}, "required": ["classes"]}, "attributes": {"type": "object", "properties": {"sourceMap": {"type": "object", "properties": {"element": {"type": "string"}, "content": {"type": "array", "items": {"type": "object", "properties": {"element": {"type": "string"}, "content": {"type": "array", "items": {"type": "object", "properties": {"element": {"type": "string"}, "content": {"type": "array", "items": {"type": "object", "properties": {"element": {"type": "string"}, "attributes": {"type": "object", "properties": {"line": {"type": "object", "properties": {"element": {"type": "string"}, "content": {"type": "integer"}}, "required": ["element", "content"]}, "column": {"type": "object", "properties": {"element": {"type": "string"}, "content": {"type": "integer"}}, "required": ["element", "content"]}}, "required": ["line", "column"]}, "content": {"type": "integer"}}, "required": ["element", "attributes", "content"]}}}, "required": ["element", "content"]}}}, "required": ["element", "content"]}}}, "required": ["element", "content"]}}, "required": ["sourceMap"]}, "content": {"type": "string"}}, "required": ["element", "meta", "attributes", "content"]}}}, "required": ["element", "content"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"element" : "parseResult", "content" : [{"element" : "annotation", "meta" : {"classes" : {"element" : "array", "content" : [{"element" : "string", "content" : "error"}]}}, "attributes" : {"sourceMap" : {"element" : "array", "content" : [{"element" : "sourceMap", "content" : [{"element" : "array", "content" : [{"element" : "number", "attributes" : {"line" : {"element" : "number", "content" : 7}, "column" : {"element" : "number", "content" : 1}}, "content" : 275}, {"element" : "number", "attributes" : {"line" : {"element" : "number", "content" : 7}, "column" : {"element" : "number", "content" : 57}}, "content" : 57}]}]}]}}, "content" : "Type \"ErrorFromInnerFile\" already defined in import-with-duplicated-named-types-1-inner.apib"}]}
json_instruct
{"type": "object", "properties": {"element": {"type": "string"}, "content": {"type": "array", "items": {"type": "object", "properties": {"element": {"type": "string"}, "meta": {"type": "object", "properties": {"classes": {"type": "object", "properties": {"element": {"type": "string"}, "content": {"type": "array", "items": {"type": "object", "properties": {"element": {"type": "string"}, "content": {"type": "string"}}, "required": ["element", "content"]}}}, "required": ["element", "content"]}}, "required": ["classes"]}, "attributes": {"type": "object", "properties": {"sourceMap": {"type": "object", "properties": {"element": {"type": "string"}, "content": {"type": "array", "items": {"type": "object", "properties": {"element": {"type": "string"}, "content": {"type": "array", "items": {"type": "object", "properties": {"element": {"type": "string"}, "content": {"type": "array", "items": {"type": "object", "properties": {"element": {"type": "string"}, "attributes": {"type": "object", "properties": {"line": {"type": "object", "properties": {"element": {"type": "string"}, "content": {"type": "integer"}}, "required": ["element", "content"]}, "column": {"type": "object", "properties": {"element": {"type": "string"}, "content": {"type": "integer"}}, "required": ["element", "content"]}}, "required": ["line", "column"]}, "content": {"type": "integer"}}, "required": ["element", "attributes", "content"]}}}, "required": ["element", "content"]}}}, "required": ["element", "content"]}}}, "required": ["element", "content"]}}, "required": ["sourceMap"]}, "content": {"type": "string"}}, "required": ["element", "meta", "attributes", "content"]}}}, "required": ["element", "content"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"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": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"\u5de5\u5ee0\u540d\u7a31" : "\u6771\u91ce\u7cbe\u6a5f\u80a1\u4efd\u6709\u9650\u516c\u53f8\u53f0\u5357\u5ee0", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99706289", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u81fa\u5357\u5e02\u6c38\u5eb7\u5340\u738b\u884c\u91cc\u8208\u5de5\u8def22\u865f", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u81fa\u5357\u5e02\u6c38\u5eb7\u5340\u738b\u884c\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u7f85\u6587\u9032", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "84530329", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "0950517", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["29\u6a5f\u68b0\u8a2d\u5099\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["291\u91d1\u5c6c\u52a0\u5de5\u7528\u6a5f\u68b0\u8a2d\u5099", "293\u901a\u7528\u6a5f\u68b0\u8a2d\u5099"]}
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": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"last_check": {"type": "string"}, "pypi_version": {"type": "string"}}, "required": ["last_check", "pypi_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"last_check" : "2018-01-25T13:00:28Z", "pypi_version" : "9.0.1"}
json_instruct
{"type": "object", "properties": {"last_check": {"type": "string"}, "pypi_version": {"type": "string"}}, "required": ["last_check", "pypi_version"], "$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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"atom": {"type": "string"}}, "required": ["atom"]}}, "required": ["name", "version", "description", "keywords", "repository", "author", "license", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "language-pcb", "version" : "1.0.1", "description" : "Syntax highlighting for various PCB (Printed Circuit Board) formats.", "keywords" : ["KiCad", "circuitry", "circuitboard", "CAD", "Gerber", "RS-274X", "LTSpice"], "repository" : "https://github.com/Alhadis/language-pcb", "author" : "Alhadis <gardnerjohng@gmail.com>", "license" : "ISC", "engines" : {"atom" : "*"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"atom": {"type": "string"}}, "required": ["atom"]}}, "required": ["name", "version", "description", "keywords", "repository", "author", "license", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"652928100": {"type": "string"}, "652928101": {"type": "string"}, "652928102": {"type": "string"}, "652928200": {"type": "string"}, "652928201": {"type": "string"}, "652928202": {"type": "string"}, "652928203": {"type": "string"}, "652928204": {"type": "string"}}, "required": ["652928100", "652928101", "652928102", "652928200", "652928201", "652928202", "652928203", "652928204"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"652928100" : "\u963f\u74e6\u63d0\u9547", "652928101" : "\u4e4c\u9c81\u5374\u52d2\u9547", "652928102" : "\u62dc\u4ec0\u827e\u65e5\u514b\u9547", "652928200" : "\u963f\u4f9d\u5df4\u683c\u4e61", "652928201" : "\u5854\u6728\u6258\u683c\u62c9\u514b\u4e61", "652928202" : "\u82f1\u827e\u65e5\u514b\u4e61", "652928203" : "\u591a\u6d6a\u4e61", "652928204" : "\u5df4\u683c\u6258\u683c\u62c9\u514b\u4e61"}
json_instruct
{"type": "object", "properties": {"652928100": {"type": "string"}, "652928101": {"type": "string"}, "652928102": {"type": "string"}, "652928200": {"type": "string"}, "652928201": {"type": "string"}, "652928202": {"type": "string"}, "652928203": {"type": "string"}, "652928204": {"type": "string"}}, "required": ["652928100", "652928101", "652928102", "652928200", "652928201", "652928202", "652928203", "652928204"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"telegram-bot-api": {"type": "string"}}, "required": ["telegram-bot-api"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "node-code-evaluating-bot", "version" : "1.0.0", "description" : "A Telegram bot for executing node.js code and giving the results to users.", "main" : "index.coffee", "directories" : {"test" : "test"}, "scripts" : {"test" : "mocha"}, "repository" : {"type" : "git", "url" : "git+https://github.com/BirkhoffLee/node-code-evaluating-tg-bot.git"}, "author" : "Birkhoff Lee <birkhoff.lee.cn@gmail.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/BirkhoffLee/node-code-evaluating-tg-bot/issues"}, "homepage" : "https://github.com/BirkhoffLee/node-code-evaluating-tg-bot#readme", "dependencies" : {"telegram-bot-api" : "^1.1.0"}}
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": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"telegram-bot-api": {"type": "string"}}, "required": ["telegram-bot-api"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "node": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "image": {"type": "string"}, "date": {"type": "string"}}, "required": ["id", "name", "image", "date"]}}, "relate": {"type": "array", "items": {"type": "object", "properties": {"relate": {"type": "string"}, "src": {"type": "integer"}, "dst": {"type": "integer"}}, "required": ["relate", "src", "dst"]}}}, "required": ["id", "node", "relate"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 205352, "node" : [{"id" : 205352, "name" : "\u5287\u5834\u7248\u30de\u30af\u30ed\u30b9F\uff08\u4e0b\uff09\u30b5\u30e8\u30ca\u30e9\u30ce\u30c4\u30d0\u30b5", "image" : "//lain.bgm.tv/pic/cover/m/a5/8a/205352_jp.jpg", "date" : "2011-03-31"}, {"id" : 205353, "name" : "\u5287\u5834\u7248\u30de\u30af\u30ed\u30b9F\uff08\u4e0a\uff09\u30a4\u30c4\u30ef\u30ea\u30ce\u30a6\u30bf\u30d2\u30e1", "image" : "//lain.bgm.tv/pic/cover/m/87/43/205353_jp.jpg", "date" : "2011-03-01"}], "relate" : [{"relate" : "\u524d\u4f20", "src" : 205352, "dst" : 205353}, {"relate" : "\u7eed\u96c6", "src" : 205353, "dst" : 205352}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "node": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "image": {"type": "string"}, "date": {"type": "string"}}, "required": ["id", "name", "image", "date"]}}, "relate": {"type": "array", "items": {"type": "object", "properties": {"relate": {"type": "string"}, "src": {"type": "integer"}, "dst": {"type": "integer"}}, "required": ["relate", "src", "dst"]}}}, "required": ["id", "node", "relate"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"frame_id": {"type": "integer"}, "walking": {"type": "string"}, "video_id": {"type": "string"}, "bbs": {"type": "array", "items": {"type": "object", "properties": {"artwork_id": {"type": "string"}, "right": {"type": "number"}, "bottom": {"type": "number"}, "top": {"type": "number"}, "confidence": {"type": "integer"}, "recognized": {"type": "boolean"}, "bb_big_enough": {"type": "boolean"}, "class": {"type": "string"}, "left": {"type": "number"}}, "required": ["artwork_id", "right", "bottom", "top", "confidence", "recognized", "bb_big_enough", "class", "left"]}}, "p_voice": {"type": "string"}}, "required": ["frame_id", "walking", "video_id", "bbs", "p_voice"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"frame_id" : 546, "walking" : "0", "video_id" : "VID_20161007_131547_reduced", "bbs" : [{"artwork_id" : "marzocco", "right" : 0.773168, "bottom" : 0.65719, "top" : 0.14462, "confidence" : 259, "recognized" : true, "bb_big_enough" : true, "class" : "artwork", "left" : 0.326529}], "p_voice" : "0"}
json_instruct
{"type": "object", "properties": {"frame_id": {"type": "integer"}, "walking": {"type": "string"}, "video_id": {"type": "string"}, "bbs": {"type": "array", "items": {"type": "object", "properties": {"artwork_id": {"type": "string"}, "right": {"type": "number"}, "bottom": {"type": "number"}, "top": {"type": "number"}, "confidence": {"type": "integer"}, "recognized": {"type": "boolean"}, "bb_big_enough": {"type": "boolean"}, "class": {"type": "string"}, "left": {"type": "number"}}, "required": ["artwork_id", "right", "bottom", "top", "confidence", "recognized", "bb_big_enough", "class", "left"]}}, "p_voice": {"type": "string"}}, "required": ["frame_id", "walking", "video_id", "bbs", "p_voice"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "tauricornous", "definition" : "Having horns like those of a bull. Sir T. Browne."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "6105160001", "nama" : "SEMONCOL"}, {"id" : "6105160002", "nama" : "MAK KAWING"}, {"id" : "6105160003", "nama" : "CUWET"}, {"id" : "6105160004", "nama" : "BULU BALA"}, {"id" : "6105160005", "nama" : "TEMIANG TABA"}, {"id" : "6105160006", "nama" : "SENYABANG"}, {"id" : "6105160007", "nama" : "KEBADU"}, {"id" : "6105160008", "nama" : "HILIR"}, {"id" : "6105160009", "nama" : "TEMIANG MALI"}, {"id" : "6105160010", "nama" : "TAE"}, {"id" : "6105160011", "nama" : "PADI KAYE"}, {"id" : "6105160012", "nama" : "EMPIRANG UJUNG"}]
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#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"n_dim" : 5, "n_trials" : 130, "objective" : "markowitz_return_on_cube", "white" : "skopt_gp_default", "black" : "pysot_random", "traceback" : ["passing", "passing"], "best_val" : [8957.24960588346, 9559.812854509692], "best_x" : [[0.9090407132611054, 0.3064671528473184, 0.0, 0.40210364921754294, 0.36734290267419556], [0.9961641193964162, 0.4894351572947798, 0.0864329851789023, 0.5099777513127282, 0.626327398031469]], "feval_count" : [130, 130], "n_trials_instructed" : [130, 130], "passing" : [true, true], "completed" : true, "points" : 1.0, "winner" : "skopt_gp_default", "loser" : "pysot_random"}
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"link": {"type": "string"}, "name": {"type": "string"}, "authors": {"type": "string"}, "additional_data": {"type": "boolean"}, "number_forward_passes": {"type": "integer"}, "dataset": {"type": "string"}, "venue": {"type": "string"}, "architecture": {"type": "string"}, "eps": {"type": "string"}, "clean_acc": {"type": "string"}, "reported": {"type": "string"}, "footnote": {"type": "string"}, "autoattack_acc": {"type": "string"}}, "required": ["link", "name", "authors", "additional_data", "number_forward_passes", "dataset", "venue", "architecture", "eps", "clean_acc", "reported", "footnote", "autoattack_acc"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"link" : "https://arxiv.org/abs/1905.11911", "name" : "Controlling Neural Level Sets", "authors" : "Matan Atzmon, Niv Haim, Lior Yariv, Ofer Israelov, Haggai Maron, Yaron Lipman", "additional_data" : false, "number_forward_passes" : 1, "dataset" : "cifar10", "venue" : "NeurIPS 2019", "architecture" : "ResNet-18", "eps" : "0.031", "clean_acc" : "81.30", "reported" : "43.17", "footnote" : "Uses \\(\\ell_{\\infty} \\) = 0.031 \u2248 7.9/255 instead of 8/255.", "autoattack_acc" : "40.22"}
json_instruct
{"type": "object", "properties": {"link": {"type": "string"}, "name": {"type": "string"}, "authors": {"type": "string"}, "additional_data": {"type": "boolean"}, "number_forward_passes": {"type": "integer"}, "dataset": {"type": "string"}, "venue": {"type": "string"}, "architecture": {"type": "string"}, "eps": {"type": "string"}, "clean_acc": {"type": "string"}, "reported": {"type": "string"}, "footnote": {"type": "string"}, "autoattack_acc": {"type": "string"}}, "required": ["link", "name", "authors", "additional_data", "number_forward_passes", "dataset", "venue", "architecture", "eps", "clean_acc", "reported", "footnote", "autoattack_acc"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"1": {"type": "integer"}, "2": {"type": "integer"}, "3": {"type": "integer"}, "4": {"type": "integer"}, "5": {"type": "integer"}, "6": {"type": "integer"}, "7": {"type": "integer"}, "8": {"type": "integer"}, "9": {"type": "integer"}, "10": {"type": "integer"}, "11": {"type": "integer"}, "12": {"type": "integer"}, "13": {"type": "integer"}, "14": {"type": "integer"}, "15": {"type": "integer"}, "16": {"type": "integer"}, "17": {"type": "integer"}, "31": {"type": "integer"}, "32": {"type": "integer"}, "33": {"type": "integer"}, "34": {"type": "integer"}, "35": {"type": "integer"}, "36": {"type": "integer"}, "37": {"type": "integer"}, "38": {"type": "integer"}, "39": {"type": "integer"}, "40": {"type": "integer"}, "41": {"type": "integer"}, "42": {"type": "integer"}, "43": {"type": "integer"}, "44": {"type": "integer"}, "45": {"type": "integer"}, "46": {"type": "integer"}, "47": {"type": "integer"}, "61": {"type": "integer"}, "62": {"type": "integer"}, "63": {"type": "integer"}, "64": {"type": "integer"}, "65": {"type": "integer"}, "66": {"type": "integer"}, "68": {"type": "integer"}, "69": {"type": "integer"}, "70": {"type": "integer"}, "71": {"type": "integer"}, "72": {"type": "integer"}, "73": {"type": "integer"}, "74": {"type": "integer"}, "76": {"type": "integer"}, "77": {"type": "integer"}}, "required": ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "61", "62", "63", "64", "65", "66", "68", "69", "70", "71", "72", "73", "74", "76", "77"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"1" : 0, "2" : 0, "3" : 0, "4" : 0, "5" : 0, "6" : 0, "7" : 0, "8" : 0, "9" : 0, "10" : 0, "11" : 0, "12" : 0, "13" : 0, "14" : 0, "15" : 0, "16" : 0, "17" : 0, "31" : 0, "32" : 0, "33" : 0, "34" : 0, "35" : 0, "36" : 0, "37" : 0, "38" : 0, "39" : 0, "40" : 0, "41" : 0, "42" : 0, "43" : 0, "44" : 0, "45" : 0, "46" : 0, "47" : 0, "61" : 27, "62" : 0, "63" : 0, "64" : 0, "65" : 0, "66" : 0, "68" : 0, "69" : 0, "70" : 0, "71" : 0, "72" : 0, "73" : 0, "74" : 0, "76" : 0, "77" : 0}
json_instruct
{"type": "object", "properties": {"1": {"type": "integer"}, "2": {"type": "integer"}, "3": {"type": "integer"}, "4": {"type": "integer"}, "5": {"type": "integer"}, "6": {"type": "integer"}, "7": {"type": "integer"}, "8": {"type": "integer"}, "9": {"type": "integer"}, "10": {"type": "integer"}, "11": {"type": "integer"}, "12": {"type": "integer"}, "13": {"type": "integer"}, "14": {"type": "integer"}, "15": {"type": "integer"}, "16": {"type": "integer"}, "17": {"type": "integer"}, "31": {"type": "integer"}, "32": {"type": "integer"}, "33": {"type": "integer"}, "34": {"type": "integer"}, "35": {"type": "integer"}, "36": {"type": "integer"}, "37": {"type": "integer"}, "38": {"type": "integer"}, "39": {"type": "integer"}, "40": {"type": "integer"}, "41": {"type": "integer"}, "42": {"type": "integer"}, "43": {"type": "integer"}, "44": {"type": "integer"}, "45": {"type": "integer"}, "46": {"type": "integer"}, "47": {"type": "integer"}, "61": {"type": "integer"}, "62": {"type": "integer"}, "63": {"type": "integer"}, "64": {"type": "integer"}, "65": {"type": "integer"}, "66": {"type": "integer"}, "68": {"type": "integer"}, "69": {"type": "integer"}, "70": {"type": "integer"}, "71": {"type": "integer"}, "72": {"type": "integer"}, "73": {"type": "integer"}, "74": {"type": "integer"}, "76": {"type": "integer"}, "77": {"type": "integer"}}, "required": ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "61", "62", "63", "64", "65", "66", "68", "69", "70", "71", "72", "73", "74", "76", "77"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "primoId": {"type": "string"}, "slug": {"type": "string"}, "shortcode": {"type": "string"}, "imageUrl": {"type": "string"}, "content": {"type": "string"}, "imageType": {"type": "string"}, "date": {"type": "string"}, "dateText": {"type": "string"}, "timestamp": {"type": "string"}, "instagramUsername": {"type": "string"}, "featuredMedia": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "sizes": {"type": "object", "properties": {"medium": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "width", "height", "__typename"]}, "full": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "width", "height", "__typename"]}, "__typename": {"type": "string"}}, "required": ["medium", "full", "__typename"]}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "sizes", "__typename"]}, "__typename": {"type": "string"}}, "required": ["id", "title", "primoId", "slug", "shortcode", "imageUrl", "content", "imageType", "date", "dateText", "timestamp", "instagramUsername", "featuredMedia", "__typename"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"data" : {"id" : 36224, "title" : "Mr Love", "primoId" : "ADLIB110042774", "slug" : "adlib110042774", "shortcode" : "", "imageUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie1525672328326.jpg", "content" : "interiors, portraits, Adult Males", "imageType" : "portrait", "date" : "2018-05-07 05:52:08", "dateText" : "1870-1875", "timestamp" : "", "instagramUsername" : "", "featuredMedia" : {"sourceUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie1525672328326.jpg", "sizes" : {"medium" : {"sourceUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie1525672328326-229x300.jpg", "width" : 229, "height" : 300, "__typename" : "MediaSize"}, "full" : {"sourceUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie1525672328326.jpg", "width" : 803, "height" : 1050, "__typename" : "MediaSize"}, "__typename" : "MediaSizes"}, "__typename" : "Media"}, "__typename" : "NewSelfWalesPortrait"}}
json_instruct
{"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "primoId": {"type": "string"}, "slug": {"type": "string"}, "shortcode": {"type": "string"}, "imageUrl": {"type": "string"}, "content": {"type": "string"}, "imageType": {"type": "string"}, "date": {"type": "string"}, "dateText": {"type": "string"}, "timestamp": {"type": "string"}, "instagramUsername": {"type": "string"}, "featuredMedia": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "sizes": {"type": "object", "properties": {"medium": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "width", "height", "__typename"]}, "full": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "width", "height", "__typename"]}, "__typename": {"type": "string"}}, "required": ["medium", "full", "__typename"]}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "sizes", "__typename"]}, "__typename": {"type": "string"}}, "required": ["id", "title", "primoId", "slug", "shortcode", "imageUrl", "content", "imageType", "date", "dateText", "timestamp", "instagramUsername", "featuredMedia", "__typename"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "dt": {"type": "integer"}, "ar": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "al": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "picUrl": {"type": "string"}}, "required": ["id", "name", "picUrl"]}}, "required": ["id", "name", "dt", "ar", "al"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : 30590268, "name" : "Break Me Up", "dt" : 178000, "ar" : {"id" : 444990, "name" : "Erika Selin"}, "al" : {"id" : 3102813, "name" : "Break Me Up", "picUrl" : "https://p2.music.126.net/7GdJfSvO1j3aFpD6scnLzg==/7743860394623955.jpg"}}, {"id" : 1500721380, "name" : "Christmas on My Own", "dt" : 212408, "ar" : {"id" : 444990, "name" : "Erika Selin"}, "al" : {"id" : 99178880, "name" : "Christmas on My Own", "picUrl" : "https://p2.music.126.net/NGYeoDmzGk1gOybhEw4djA==/109951165519977452.jpg"}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "dt": {"type": "integer"}, "ar": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "al": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "picUrl": {"type": "string"}}, "required": ["id", "name", "picUrl"]}}, "required": ["id", "name", "dt", "ar", "al"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "ContactTelephone1": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "ContactTelephone1", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "GeneralComments": {"type": "string"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "OperatorsReference", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "GeneralComments", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IsRecentlyVerified" : false, "ID" : 99466, "UUID" : "06FAA3B7-8360-467A-BA8D-385B56D98507", "DataProviderID" : 1, "OperatorID" : 23, "OperatorsReference" : "40033", "UsageTypeID" : 4, "AddressInfo" : {"ID" : 99812, "Title" : "JW Marriott Santa Monica le Merigot", "AddressLine1" : "1740 Ocean Ave", "Town" : "Santa Monica", "StateOrProvince" : "California", "Postcode" : "90401", "CountryID" : 2, "Latitude" : 34.00854, "Longitude" : -118.492438, "ContactTelephone1" : "(310) 395-9700", "DistanceUnit" : 0}, "Connections" : [{"ID" : 140555, "ConnectionTypeID" : 30, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 16, "CurrentTypeID" : 20, "Quantity" : 4}], "NumberOfPoints" : 4, "GeneralComments" : "4 Tesla Connectors, up to 16kW.Available for customers. Please see valet.", "StatusTypeID" : 50, "DateLastStatusUpdate" : "2018-01-26T06:54:00Z", "DataQualityLevel" : 1, "DateCreated" : "2018-01-26T06:54:00Z", "SubmissionStatusTypeID" : 200}
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "ContactTelephone1": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "ContactTelephone1", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "GeneralComments": {"type": "string"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "OperatorsReference", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "GeneralComments", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"fees": {"type": "integer"}, "ts": {"type": "string"}, "txid": {"type": "string"}, "block": {"type": "integer"}, "in": {"type": "array", "items": {"type": "object", "properties": {"coinbase": {"type": "string"}}, "required": ["coinbase"]}}, "sent": {"type": "integer"}, "out": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "integer"}}, "required": ["value"]}}}, "required": ["fees", "ts", "txid", "block", "in", "sent", "out"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"fees" : -2500000000, "ts" : "1534490779", "txid" : "672621e6e08c6761ca427e8396a66d147c969a0a0d5be11dd6cb1ba3c7e9875d", "block" : 1413494, "in" : [{"coinbase" : "03769115049b78765b082000d69601000000052f6d70682f"}], "sent" : 2500000000, "out" : [{"value" : 0}, {"addr" : "MJpTHvn5TSgzr6mNsdEu28zMnQX232jr9q", "value" : 2500000000}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"fees": {"type": "integer"}, "ts": {"type": "string"}, "txid": {"type": "string"}, "block": {"type": "integer"}, "in": {"type": "array", "items": {"type": "object", "properties": {"coinbase": {"type": "string"}}, "required": ["coinbase"]}}, "sent": {"type": "integer"}, "out": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "integer"}}, "required": ["value"]}}}, "required": ["fees", "ts", "txid", "block", "in", "sent", "out"]}, "$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"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "author", "contributors", "main", "dependencies", "devDependencies", "repository", "keywords", "license", "bugs", "homepage", "scripts", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "jsdom-cheerio-adapter", "version" : "0.0.2", "description" : "A direct drop-in replacement for 'jsdom' that delegates to your own 'cheerio' and 'request' versions of choice.", "author" : "Leonard Wu <leonard.wu92@alumni.ic.ac.uk>", "contributors" : [{"name" : "Leonard Wu", "email" : "leonard.wu92@alumni.ic.ac.uk"}], "main" : "lib/adapter.js", "dependencies" : {}, "devDependencies" : {}, "repository" : {"type" : "git", "url" : "https://github.com/leonardw/jsdom-cheerio-adapter.git"}, "keywords" : ["adapter", "jsdom", "cheerio", "dom", "jquery", "scrape", "http", "https"], "license" : "MIT", "bugs" : {"url" : "https://github.com/leonardw/jsdom-cheerio-adapter/issues"}, "homepage" : "https://github.com/leonardw/jsdom-cheerio-adapter", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "engines" : {"node" : ">= 0.8"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "author", "contributors", "main", "dependencies", "devDependencies", "repository", "keywords", "license", "bugs", "homepage", "scripts", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"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#"}
{"id" : "2002", "provinceId" : "53", "regencyId" : "11", "districtId" : "08", "name" : "Umalulu"}
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#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"react": {"type": "string"}}, "required": ["react"]}}, "required": ["name", "version", "homepage", "author", "license", "main", "keywords", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "react-bootstrap", "version" : "0.13.0", "homepage" : "http://react-bootstrap.github.io/", "author" : "Stephen J. Collings <stevoland@gmail.com>", "license" : "MIT", "main" : ["react-bootstrap.js"], "keywords" : ["react", "react-component", "boostrap"], "ignore" : ["**/.*"], "dependencies" : {"react" : ">= 0.12.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"react": {"type": "string"}}, "required": ["react"]}}, "required": ["name", "version", "homepage", "author", "license", "main", "keywords", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"@context": {"type": "object", "properties": {"hits._id": {"type": "string"}}, "required": ["hits._id"]}}, "required": ["@context"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"@context" : {"hits._id" : "http://identifiers.org/ncbigene/"}}
json_instruct
{"type": "object", "properties": {"@context": {"type": "object", "properties": {"hits._id": {"type": "string"}}, "required": ["hits._id"]}}, "required": ["@context"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"packages": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}}, "required": ["packages", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"packages" : ["apps/*"], "version" : "3.14.1"}
json_instruct
{"type": "object", "properties": {"packages": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}}, "required": ["packages", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"page-about-h2": {"type": "string"}, "page-about-h3": {"type": "string"}, "page-about-h3-1": {"type": "string"}, "page-about-h3-2": {"type": "string"}, "page-about-li-1": {"type": "string"}, "page-about-li-2": {"type": "string"}, "page-about-li-3": {"type": "string"}, "page-about-li-4": {"type": "string"}, "page-about-link-1": {"type": "string"}, "page-about-link-2": {"type": "string"}, "page-about-link-3": {"type": "string"}, "page-about-link-4": {"type": "string"}, "page-about-link-5": {"type": "string"}, "page-about-link-6": {"type": "string"}, "page-about-link-7": {"type": "string"}, "page-about-p-1": {"type": "string"}, "page-about-p-2": {"type": "string"}, "page-about-p-3": {"type": "string"}, "page-about-p-4": {"type": "string"}, "page-about-p-5": {"type": "string"}, "page-about-p-6": {"type": "string"}, "page-about-p-7": {"type": "string"}, "page-about-p-8": {"type": "string"}}, "required": ["page-about-h2", "page-about-h3", "page-about-h3-1", "page-about-h3-2", "page-about-li-1", "page-about-li-2", "page-about-li-3", "page-about-li-4", "page-about-link-1", "page-about-link-2", "page-about-link-3", "page-about-link-4", "page-about-link-5", "page-about-link-6", "page-about-link-7", "page-about-p-1", "page-about-p-2", "page-about-p-3", "page-about-p-4", "page-about-p-5", "page-about-p-6", "page-about-p-7", "page-about-p-8"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"page-about-h2" : "Minta fitur", "page-about-h3" : "Sedang dalam pengerjaan", "page-about-h3-1" : "Fitur-fitur yang diterapkan", "page-about-h3-2" : "Fitur-fitur yang direncanakan", "page-about-li-1" : "sedang berlangsung", "page-about-li-2" : "direncanakan", "page-about-li-3" : "diimplementasikan", "page-about-li-4" : "diimplementasikan", "page-about-link-1" : "Kode sumber repositori ini dilisensikan di bawah Lisensi MIT", "page-about-link-2" : "GitHub", "page-about-link-3" : "Lihat daftar lengkap tugas yang sedang berlangsung di GitHub", "page-about-link-4" : "Bergabung dengan server Discord kami", "page-about-link-5" : "Hubungi kami di Twitter", "page-about-link-6" : "Lihat daftar lengkap tugas yang diimplementasikan di GitHub", "page-about-link-7" : "Buat isu di GitHub", "page-about-p-1" : "Sejak ethereum.org diluncurkan, kami berusaha untuk bersikap transparan tentang cara kami beroperasi. Ini adalah salah satu nilai inti kami karena kami percaya transparansi sangat penting untuk kesuksesan Ethereum.", "page-about-p-2" : "Kami menggunakan", "page-about-p-3" : "sebagai alat manajemen proyek utama kami. Kami mengatur tugas kami dalam 3 kategori:", "page-about-p-4" : "Kami melakukan yang terbaik untuk memberi tahu komunitas tentang status tugas tertentu.", "page-about-p-5" : "Tugas yang kami terapkan.", "page-about-p-6" : "Tugas-tugas yang menunggu untuk diterapkan selanjutnya.", "page-about-p-7" : "Tugas yang baru saja diselesaikan.", "page-about-p-8" : "Apakah Anda punya ide untuk meningkatkan ethereum.org? Kami ingin sekali bekerja sama dengan Anda!"}
json_instruct
{"type": "object", "properties": {"page-about-h2": {"type": "string"}, "page-about-h3": {"type": "string"}, "page-about-h3-1": {"type": "string"}, "page-about-h3-2": {"type": "string"}, "page-about-li-1": {"type": "string"}, "page-about-li-2": {"type": "string"}, "page-about-li-3": {"type": "string"}, "page-about-li-4": {"type": "string"}, "page-about-link-1": {"type": "string"}, "page-about-link-2": {"type": "string"}, "page-about-link-3": {"type": "string"}, "page-about-link-4": {"type": "string"}, "page-about-link-5": {"type": "string"}, "page-about-link-6": {"type": "string"}, "page-about-link-7": {"type": "string"}, "page-about-p-1": {"type": "string"}, "page-about-p-2": {"type": "string"}, "page-about-p-3": {"type": "string"}, "page-about-p-4": {"type": "string"}, "page-about-p-5": {"type": "string"}, "page-about-p-6": {"type": "string"}, "page-about-p-7": {"type": "string"}, "page-about-p-8": {"type": "string"}}, "required": ["page-about-h2", "page-about-h3", "page-about-h3-1", "page-about-h3-2", "page-about-li-1", "page-about-li-2", "page-about-li-3", "page-about-li-4", "page-about-link-1", "page-about-link-2", "page-about-link-3", "page-about-link-4", "page-about-link-5", "page-about-link-6", "page-about-link-7", "page-about-p-1", "page-about-p-2", "page-about-p-3", "page-about-p-4", "page-about-p-5", "page-about-p-6", "page-about-p-7", "page-about-p-8"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"upper_left_x": {"type": "number"}, "upper_left_y": {"type": "number"}, "bottom_right_x": {"type": "integer"}, "bottom_right_y": {"type": "number"}, "time": {"type": "integer"}, "is_final": {"type": "boolean"}, "event_type": {"type": "string"}, "op_order": {"type": "integer"}, "id": {"type": "integer"}}, "required": ["upper_left_x", "upper_left_y", "bottom_right_x", "bottom_right_y", "time", "is_final", "event_type", "op_order", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"upper_left_x" : 2168.3070335448883, "upper_left_y" : 30.06476138948795, "bottom_right_x" : 2800, "bottom_right_y" : 986.670805600468, "time" : 1480174961343, "is_final" : false, "event_type" : "movement", "op_order" : 73, "id" : 73}
json_instruct
{"type": "object", "properties": {"upper_left_x": {"type": "number"}, "upper_left_y": {"type": "number"}, "bottom_right_x": {"type": "integer"}, "bottom_right_y": {"type": "number"}, "time": {"type": "integer"}, "is_final": {"type": "boolean"}, "event_type": {"type": "string"}, "op_order": {"type": "integer"}, "id": {"type": "integer"}}, "required": ["upper_left_x", "upper_left_y", "bottom_right_x", "bottom_right_y", "time", "is_final", "event_type", "op_order", "id"], "$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"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 92842, "info" : {"name" : "RSI", "description" : "Side bar removal", "additionalInfo" : null, "format" : "uso", "category" : "robertsspaceindustries", "createdAt" : "2013-09-10T07:19:10.000Z", "updatedAt" : "2013-09-10T07:19:10.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 212137, "name" : "iMik"}}, "stats" : {"installs" : {"total" : 44, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "92842-after.png", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n\r\n@-moz-document domain(\"forums.robertsspaceindustries.com\") {\r\n\r\n#Panel {\r\nvisibility:hidden !important;\r\n}\r\n\r\n#rightbody {\r\npadding-left: 0 !important;\r\nmax-width: none !important;\r\n}\r\n\r\n#contentbody {\r\npadding-left: 0 !important;\r\nmax-width: none !important;\r\n}\r\n}"}}
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": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "aqueduct", "definition" : "1. A conductor, conduit, or artificial channel for conveying water, especially one for supplying large cities with water. Note: The term is also applied to a structure (similar to the ancient aqueducts), for conveying a canal over a river or hollow; more properly called an aqueduct bridge. 2. (Anat.) A canal or passage; as, the aqueduct of Sylvius, a channel connecting the third and fourth ventricles of the brain."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "cocoapods_version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Aleksandr Gusev": {"type": "string"}}, "required": ["Aleksandr Gusev"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "social_media_url": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}, "osx": {"type": "string"}, "watchos": {"type": "string"}, "tvos": {"type": "string"}}, "required": ["ios", "osx", "watchos", "tvos"]}, "subspecs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "source_files": {"type": "string"}}, "required": ["name", "source_files"]}}}, "required": ["name", "version", "summary", "cocoapods_version", "description", "homepage", "license", "authors", "source", "social_media_url", "platforms", "subspecs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Anthology", "version" : "1.0.0", "summary" : "Exotic Swift collections", "cocoapods_version" : ">= 1.0.0.beta2", "description" : "A collection of less common collections in Swift.", "homepage" : "https://github.com/sanekgusev/Anthology", "license" : "MIT", "authors" : {"Aleksandr Gusev" : "sanekgusev@gmail.com"}, "source" : {"git" : "https://github.com/sanekgusev/Anthology.git", "tag" : "1.0.0"}, "social_media_url" : "https://twitter.com/sanekgusev", "platforms" : {"ios" : "8.0", "osx" : "10.10", "watchos" : "2.0", "tvos" : "9.0"}, "subspecs" : [{"name" : "OrderedDictionary", "source_files" : "Pod/Classes/OrderedDictionary.swift"}, {"name" : "OrderedSet", "source_files" : "Pod/Classes/OrderedSet.swift", "dependencies" : {"Anthology/OrderedDictionary" : []}}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "cocoapods_version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Aleksandr Gusev": {"type": "string"}}, "required": ["Aleksandr Gusev"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "social_media_url": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}, "osx": {"type": "string"}, "watchos": {"type": "string"}, "tvos": {"type": "string"}}, "required": ["ios", "osx", "watchos", "tvos"]}, "subspecs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "source_files": {"type": "string"}}, "required": ["name", "source_files"]}}}, "required": ["name", "version", "summary", "cocoapods_version", "description", "homepage", "license", "authors", "source", "social_media_url", "platforms", "subspecs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {}}, "creation_date": {"type": "null"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions": {"type": "string"}, "dynasty": {"type": "null"}, "images": {"type": "array", "items": {}}, "irn": {"type": "integer"}, "materials": {"type": "string"}, "on_view": {"type": "boolean"}, "period": {"type": "null"}, "printers": {"type": "array", "items": {}}, "publishers": {"type": "array", "items": {}}, "rights": {"type": "null"}, "title": {"type": "string"}}, "required": ["accession_number", "actors", "creation_date", "credit_line", "cultures", "dimensions", "dynasty", "images", "irn", "materials", "on_view", "period", "printers", "publishers", "rights", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"accession_number" : "1989.1255A-P", "actors" : [], "creation_date" : null, "credit_line" : "Gift of Mr. and Mrs. Harrison Eiteljorg", "cultures" : [], "dimensions" : "L: 27' (with lid) (A-B) | L: 24 1/2' (C-P", "dynasty" : null, "images" : [], "irn" : 13587, "materials" : "hide | Fiber (a) | bamboo | Sinew (c-p)", "on_view" : false, "period" : null, "printers" : [], "publishers" : [], "rights" : null, "title" : "quiver and quiver lid with 14 arrows"}
json_instruct
{"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {}}, "creation_date": {"type": "null"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions": {"type": "string"}, "dynasty": {"type": "null"}, "images": {"type": "array", "items": {}}, "irn": {"type": "integer"}, "materials": {"type": "string"}, "on_view": {"type": "boolean"}, "period": {"type": "null"}, "printers": {"type": "array", "items": {}}, "publishers": {"type": "array", "items": {}}, "rights": {"type": "null"}, "title": {"type": "string"}}, "required": ["accession_number", "actors", "creation_date", "credit_line", "cultures", "dimensions", "dynasty", "images", "irn", "materials", "on_view", "period", "printers", "publishers", "rights", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"manufacturer": {"type": "string"}, "devices": {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}}}, "required": ["manufacturer", "devices"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"manufacturer" : "RENSO", "devices" : [{"manufacturer" : "", "market_name" : "NEP N1", "codename" : "NEP_N1", "model" : "NEP N1"}]}
json_instruct
{"type": "object", "properties": {"manufacturer": {"type": "string"}, "devices": {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}}}, "required": ["manufacturer", "devices"], "$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": {"start": {"type": "string"}, "start:dev": {"type": "string"}, "start:mock-server": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["start", "start:dev", "start:mock-server", "postinstall"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "npm-run-all": {"type": "string"}, "parcel": {"type": "string"}, "rimraf": {"type": "string"}}, "required": ["dotenv", "npm-run-all", "parcel", "rimraf"]}, "dependencies": {"type": "object", "properties": {"@lemoncode/fonk": {"type": "string"}, "@lemoncode/fonk-iban-validator": {"type": "string"}, "@lemoncode/fonk-range-number-validator": {"type": "string"}, "axios": {"type": "string"}, "qs": {"type": "string"}}, "required": ["@lemoncode/fonk", "@lemoncode/fonk-iban-validator", "@lemoncode/fonk-range-number-validator", "axios", "qs"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "00-start", "version" : "1.0.0", "description" : "En este m\u00f3dulo trabajaremos con una aplicaci\u00f3n m\u00e1s completa, vamos a simular un portal de banca online, mostraremos un listado de movimientos de cuenta, as\u00ed como un formulario de transferencia.", "main" : "index.js", "scripts" : {"start" : "run-p start:dev start:mock-server", "start:dev" : "rimraf dist && parcel ./src/index.html", "start:mock-server" : "cd ./server && npm start", "postinstall" : "cd ./server && npm i"}, "keywords" : [], "author" : "", "license" : "ISC", "devDependencies" : {"dotenv" : "^8.2.0", "npm-run-all" : "^4.1.5", "parcel" : "^1.12.4", "rimraf" : "^3.0.0"}, "dependencies" : {"@lemoncode/fonk" : "^1.4.0", "@lemoncode/fonk-iban-validator" : "^1.0.0", "@lemoncode/fonk-range-number-validator" : "^1.1.0", "axios" : "^0.19.0", "qs" : "^6.9.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "start:dev": {"type": "string"}, "start:mock-server": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["start", "start:dev", "start:mock-server", "postinstall"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "npm-run-all": {"type": "string"}, "parcel": {"type": "string"}, "rimraf": {"type": "string"}}, "required": ["dotenv", "npm-run-all", "parcel", "rimraf"]}, "dependencies": {"type": "object", "properties": {"@lemoncode/fonk": {"type": "string"}, "@lemoncode/fonk-iban-validator": {"type": "string"}, "@lemoncode/fonk-range-number-validator": {"type": "string"}, "axios": {"type": "string"}, "qs": {"type": "string"}}, "required": ["@lemoncode/fonk", "@lemoncode/fonk-iban-validator", "@lemoncode/fonk-range-number-validator", "axios", "qs"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"hour positive count": {"type": "integer"}, "hour neutral count": {"type": "integer"}, "hour negative count": {"type": "integer"}, "hour distri": {"type": "object", "properties": {"0.81": {"type": "integer"}, "0.96": {"type": "integer"}, "0.99": {"type": "integer"}, "1.0": {"type": "integer"}, "0.94": {"type": "integer"}, "0.05": {"type": "integer"}, "0.64": {"type": "integer"}, "0.44": {"type": "integer"}}, "required": ["0.81", "0.96", "0.99", "1.0", "0.94", "0.05", "0.64", "0.44"]}}, "required": ["hour positive count", "hour neutral count", "hour negative count", "hour distri"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hour positive count" : 12, "hour neutral count" : 3, "hour negative count" : 1, "hour distri" : {"0.81" : 1, "0.96" : 2, "0.99" : 3, "1.0" : 6, "0.94" : 1, "0.05" : 1, "0.64" : 1, "0.44" : 1}}
json_instruct
{"type": "object", "properties": {"hour positive count": {"type": "integer"}, "hour neutral count": {"type": "integer"}, "hour negative count": {"type": "integer"}, "hour distri": {"type": "object", "properties": {"0.81": {"type": "integer"}, "0.96": {"type": "integer"}, "0.99": {"type": "integer"}, "1.0": {"type": "integer"}, "0.94": {"type": "integer"}, "0.05": {"type": "integer"}, "0.64": {"type": "integer"}, "0.44": {"type": "integer"}}, "required": ["0.81", "0.96", "0.99", "1.0", "0.94", "0.05", "0.64", "0.44"]}}, "required": ["hour positive count", "hour neutral count", "hour negative count", "hour distri"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "short_name": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}, "start_url": {"type": "string"}, "scope": {"type": "string"}, "display": {"type": "string"}, "theme_color": {"type": "string"}, "background_color": {"type": "string"}}, "required": ["name", "short_name", "icons", "start_url", "scope", "display", "theme_color", "background_color"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Nicole Schafer Photo & Film", "short_name" : "Nicole Schafer", "icons" : [{"src" : "/media/icon-192x192.png", "sizes" : "192x192", "type" : "image/png"}, {"src" : "/media/icon-512x512.png", "sizes" : "512x512", "type" : "image/png"}], "start_url" : "https://nicole-schafer.com", "scope" : "https://nicole-schafer.com", "display" : "browser", "theme_color" : "#fff", "background_color" : "#fff"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "short_name": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}, "start_url": {"type": "string"}, "scope": {"type": "string"}, "display": {"type": "string"}, "theme_color": {"type": "string"}, "background_color": {"type": "string"}}, "required": ["name", "short_name", "icons", "start_url", "scope", "display", "theme_color", "background_color"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"layers": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "provider": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "level": {"type": "integer"}}, "required": ["id", "type", "name", "level"]}, "min": {"type": "integer"}, "max": {"type": "integer"}, "data": {"type": "object", "properties": {"local": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"featureClass": {"type": "string"}, "type": {"type": "string"}}, "required": ["featureClass", "type"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["id", "type", "properties", "geometry"]}}}, "required": ["local"]}, "clear": {"type": "object", "properties": {"minLon": {"type": "number"}, "minLat": {"type": "number"}, "maxLon": {"type": "number"}, "maxLat": {"type": "number"}}, "required": ["minLon", "minLat", "maxLon", "maxLat"]}}, "required": ["id", "provider", "min", "max", "data", "clear"]}}}, "required": ["layers"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"layers" : [{"id" : "buildingLayer", "provider" : {"id" : "buildingProvider", "type" : "TestLocalProvider", "name" : "Buildings", "level" : 13}, "min" : 14, "max" : 20, "data" : {"local" : [{"id" : -9076, "type" : "Feature", "properties" : {"featureClass" : "AREA", "type" : "building"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[74.91592702, 12.968749367, 0], [74.91592702, 12.968226607, 0], [74.916114774, 12.968226607, 0], [74.916222063, 12.968487987, 0], [74.91592702, 12.968749367, 0]]]]}}, {"id" : -9077, "type" : "Feature", "properties" : {"featureClass" : "AREA", "type" : "building"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[74.916195241, 12.969010746, 0], [74.916195241, 12.968749367, 0], [74.916382995, 12.968697091, 0], [74.916195241, 12.969010746, 0]]]]}}]}, "clear" : {"minLon" : 74.9147200257016, "minLat" : 12.96757315692858, "maxLon" : 74.91686579291351, "maxLat" : 12.969141435124598}}]}
json_instruct
{"type": "object", "properties": {"layers": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "provider": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "level": {"type": "integer"}}, "required": ["id", "type", "name", "level"]}, "min": {"type": "integer"}, "max": {"type": "integer"}, "data": {"type": "object", "properties": {"local": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"featureClass": {"type": "string"}, "type": {"type": "string"}}, "required": ["featureClass", "type"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["id", "type", "properties", "geometry"]}}}, "required": ["local"]}, "clear": {"type": "object", "properties": {"minLon": {"type": "number"}, "minLat": {"type": "number"}, "maxLon": {"type": "number"}, "maxLat": {"type": "number"}}, "required": ["minLon", "minLat", "maxLon", "maxLat"]}}, "required": ["id", "provider", "min", "max", "data", "clear"]}}}, "required": ["layers"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"babel": {"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "string"}}}, "required": ["plugins"]}}, "required": ["babel"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"babel" : {"plugins" : ["pkg"]}}
json_instruct
{"type": "object", "properties": {"babel": {"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "string"}}}, "required": ["plugins"]}}, "required": ["babel"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "operating_systems": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "availability": {"type": "array", "items": {"type": "string"}}, "github_url": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "tags", "operating_systems", "license", "availability", "github_url", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Detecting Credential Compromise in AWS", "description" : "Detecting Credential Compromise in AWS based on CloudTrail logs in AWS.", "tags" : ["cloud-security", "continuous-security", "aws", "security-detection"], "operating_systems" : ["linux", "mac", "windows"], "license" : "", "availability" : ["opensource"], "github_url" : "https://github.com/Netflix-Skunkworks/aws-credential-compromise-detection", "url" : "https://github.com/Netflix-Skunkworks/aws-credential-compromise-detection"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "operating_systems": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "availability": {"type": "array", "items": {"type": "string"}}, "github_url": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "tags", "operating_systems", "license", "availability", "github_url", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "ectasia", "definition" : "A dilatation of a hollow organ or of a canal."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "PROCEDURE_FREQUENCY_DISTRIBUTION": {"type": "object", "properties": {"Y_NUM_PERSONS": {"type": "array", "items": {"type": "integer"}}, "X_COUNT": {"type": "array", "items": {"type": "integer"}}}, "required": ["Y_NUM_PERSONS", "X_COUNT"]}, "PROCEDURES_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_OCCURRENCE": {"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": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "PROCEDURE_FREQUENCY_DISTRIBUTION", "PROCEDURES_BY_TYPE", "AGE_AT_FIRST_OCCURRENCE"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "PROCEDURE_FREQUENCY_DISTRIBUTION" : {"Y_NUM_PERSONS" : [0, 0], "X_COUNT" : [1, 2]}, "PROCEDURES_BY_TYPE" : {"CONCEPT_NAME" : "Procedure recorded as diagnostic code", "COUNT_VALUE" : 63}, "AGE_AT_FIRST_OCCURRENCE" : {"CATEGORY" : ["FEMALE", "MALE"], "MIN_VALUE" : [35, 40], "P10_VALUE" : [42, 56], "P25_VALUE" : [50, 63], "MEDIAN_VALUE" : [59, 69], "P75_VALUE" : [76, 76], "P90_VALUE" : [81, 80], "MAX_VALUE" : [89, 85]}}
json_instruct
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "PROCEDURE_FREQUENCY_DISTRIBUTION": {"type": "object", "properties": {"Y_NUM_PERSONS": {"type": "array", "items": {"type": "integer"}}, "X_COUNT": {"type": "array", "items": {"type": "integer"}}}, "required": ["Y_NUM_PERSONS", "X_COUNT"]}, "PROCEDURES_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_OCCURRENCE": {"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": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "PROCEDURE_FREQUENCY_DISTRIBUTION", "PROCEDURES_BY_TYPE", "AGE_AT_FIRST_OCCURRENCE"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K21284": {"type": "string"}}, "required": ["K21284"]}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {}, "required": []}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"comment" : "", "definition" : "ATP + 3-Hydroxy-4-methylanthranilate <=> Diphosphate + (3-Hydroxy-4-methylanthranilyl)adenylate", "orthologs" : {"K21284" : "3-hydroxy-4-methylanthranilate adenylyltransferase [EC:2.7.7.97]"}, "name" : "ATP:3-hydroxy-4-methylanthranilate adenylyltransferase", "product_stoichiometries" : ["1", "1"], "enzymes" : ["2.7.7.97"], "equation" : "C00002 + C03986 <=> C00013 + C21460", "glycans" : false, "substrate_stoichiometries" : ["1", "1"], "rpairs" : {}, "entry_id" : "R11554", "pathways" : {}, "products" : ["C00013", "C21460"], "substrates" : ["C00002", "C03986"]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K21284": {"type": "string"}}, "required": ["K21284"]}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {}, "required": []}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"public_repos": {"type": "integer"}, "site_admin": {"type": "boolean"}, "subscriptions_url": {"type": "string"}, "gravatar_id": {"type": "string"}, "hireable": {"type": "null"}, "id": {"type": "integer"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "blog": {"type": "string"}, "followers": {"type": "integer"}, "location": {"type": "string"}, "type": {"type": "string"}, "email": {"type": "string"}, "bio": {"type": "null"}, "gists_url": {"type": "string"}, "company": {"type": "null"}, "events_url": {"type": "string"}, "html_url": {"type": "string"}, "updated_at": {"type": "string"}, "received_events_url": {"type": "string"}, "starred_url": {"type": "string"}, "public_gists": {"type": "integer"}, "name": {"type": "string"}, "organizations_url": {"type": "string"}, "url": {"type": "string"}, "created_at": {"type": "string"}, "avatar_url": {"type": "string"}, "repos_url": {"type": "string"}, "following": {"type": "integer"}, "login": {"type": "string"}}, "required": ["public_repos", "site_admin", "subscriptions_url", "gravatar_id", "hireable", "id", "followers_url", "following_url", "blog", "followers", "location", "type", "email", "bio", "gists_url", "company", "events_url", "html_url", "updated_at", "received_events_url", "starred_url", "public_gists", "name", "organizations_url", "url", "created_at", "avatar_url", "repos_url", "following", "login"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"public_repos" : 25, "site_admin" : false, "subscriptions_url" : "https://api.github.com/users/codeforjapan/subscriptions", "gravatar_id" : "", "hireable" : null, "id" : 5137738, "followers_url" : "https://api.github.com/users/codeforjapan/followers", "following_url" : "https://api.github.com/users/codeforjapan/following{/other_user}", "blog" : "http://code4japan.org/", "followers" : 0, "location" : "Tokyo, Japan", "type" : "Organization", "email" : "info@code4japan.org", "bio" : null, "gists_url" : "https://api.github.com/users/codeforjapan/gists{/gist_id}", "company" : null, "events_url" : "https://api.github.com/users/codeforjapan/events{/privacy}", "html_url" : "https://github.com/codeforjapan", "updated_at" : "2016-09-24T06:05:27Z", "received_events_url" : "https://api.github.com/users/codeforjapan/received_events", "starred_url" : "https://api.github.com/users/codeforjapan/starred{/owner}{/repo}", "public_gists" : 0, "name" : "Code for Japan", "organizations_url" : "https://api.github.com/users/codeforjapan/orgs", "url" : "https://api.github.com/users/codeforjapan", "created_at" : "2013-08-01T11:14:19Z", "avatar_url" : "https://avatars.githubusercontent.com/u/5137738?v=3", "repos_url" : "https://api.github.com/users/codeforjapan/repos", "following" : 0, "login" : "codeforjapan"}
json_instruct
{"type": "object", "properties": {"public_repos": {"type": "integer"}, "site_admin": {"type": "boolean"}, "subscriptions_url": {"type": "string"}, "gravatar_id": {"type": "string"}, "hireable": {"type": "null"}, "id": {"type": "integer"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "blog": {"type": "string"}, "followers": {"type": "integer"}, "location": {"type": "string"}, "type": {"type": "string"}, "email": {"type": "string"}, "bio": {"type": "null"}, "gists_url": {"type": "string"}, "company": {"type": "null"}, "events_url": {"type": "string"}, "html_url": {"type": "string"}, "updated_at": {"type": "string"}, "received_events_url": {"type": "string"}, "starred_url": {"type": "string"}, "public_gists": {"type": "integer"}, "name": {"type": "string"}, "organizations_url": {"type": "string"}, "url": {"type": "string"}, "created_at": {"type": "string"}, "avatar_url": {"type": "string"}, "repos_url": {"type": "string"}, "following": {"type": "integer"}, "login": {"type": "string"}}, "required": ["public_repos", "site_admin", "subscriptions_url", "gravatar_id", "hireable", "id", "followers_url", "following_url", "blog", "followers", "location", "type", "email", "bio", "gists_url", "company", "events_url", "html_url", "updated_at", "received_events_url", "starred_url", "public_gists", "name", "organizations_url", "url", "created_at", "avatar_url", "repos_url", "following", "login"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "3520130007", "district_id" : "3520130", "name" : "PANGGUNG"}
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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "stage": {"type": "string"}, "steps": {"type": "array", "items": {}}, "attachments": {"type": "array", "items": {}}, "parameters": {"type": "array", "items": {}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "stage", "steps", "attachments", "parameters", "start", "stop"]}}, "afters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "stage": {"type": "string"}, "steps": {"type": "array", "items": {}}, "attachments": {"type": "array", "items": {}}, "parameters": {"type": "array", "items": {}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "stage", "steps", "attachments", "parameters", "start", "stop"]}}, "links": {"type": "array", "items": {}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "name", "children", "befores", "afters", "links", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"uuid" : "7239c4f7-f5f7-4e2e-aaab-512e33be70b5", "name" : "Scenario: To Add a new Team", "children" : ["99fc9484-1335-4da4-a274-5d13662d04df"], "befores" : [{"name" : "steps.Hooks.runsBeforeAnyScenario()", "status" : "passed", "stage" : "finished", "steps" : [], "attachments" : [], "parameters" : [], "start" : 1631736223175, "stop" : 1631736223176}], "afters" : [{"name" : "steps.Hooks.runsAfterAnyscenario()", "status" : "passed", "stage" : "finished", "steps" : [], "attachments" : [], "parameters" : [], "start" : 1631736245978, "stop" : 1631736245978}], "links" : [], "start" : 1631736223175, "stop" : 1631736245978}
json_instruct
{"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "stage": {"type": "string"}, "steps": {"type": "array", "items": {}}, "attachments": {"type": "array", "items": {}}, "parameters": {"type": "array", "items": {}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "stage", "steps", "attachments", "parameters", "start", "stop"]}}, "afters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "stage": {"type": "string"}, "steps": {"type": "array", "items": {}}, "attachments": {"type": "array", "items": {}}, "parameters": {"type": "array", "items": {}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "stage", "steps", "attachments", "parameters", "start", "stop"]}}, "links": {"type": "array", "items": {}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "name", "children", "befores", "afters", "links", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "attribute": {"type": "string"}, "atk": {"type": "integer"}, "species": {"type": "string"}, "monster_type": {"type": "string"}, "is_pendulum": {"type": "boolean"}, "ability": {"type": "string"}, "has_effect": {"type": "boolean"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "is_tuner": {"type": "boolean"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "attribute", "atk", "species", "monster_type", "is_pendulum", "ability", "has_effect", "def", "level", "is_tuner"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 62624486, "name" : "Masked HERO Dian", "is_illegal" : false, "is_custom" : false, "text" : "Must be Special Summoned with \"Mask Change\". When this card destroys an opponent's monster by battle and sends it to the GY: You can Special Summon 1 Level 4 or lower \"HERO\" monster from your Deck.", "images" : ["https://storage.googleapis.com/ygoprodeck.com/pics/62624486.jpg"], "type" : "Monster", "attribute" : "EARTH", "atk" : 2800, "species" : "Warrior", "monster_type" : "Fusion", "is_pendulum" : false, "ability" : "", "has_effect" : true, "def" : 3000, "level" : 8, "is_tuner" : false}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "attribute": {"type": "string"}, "atk": {"type": "integer"}, "species": {"type": "string"}, "monster_type": {"type": "string"}, "is_pendulum": {"type": "boolean"}, "ability": {"type": "string"}, "has_effect": {"type": "boolean"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "is_tuner": {"type": "boolean"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "attribute", "atk", "species", "monster_type", "is_pendulum", "ability", "has_effect", "def", "level", "is_tuner"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"merged" : "/Users/yifenglai/proj/rn/ofo-engine/node_modules/react-native-image-picker/android/build/intermediates/res/merged/release/xml/preferences.xml", "source" : "/Users/yifenglai/proj/rn/ofo-engine/node_modules/react-native-image-picker/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.47.1/res/xml/preferences.xml"}, {"merged" : "/Users/yifenglai/proj/rn/ofo-engine/node_modules/react-native-image-picker/android/build/intermediates/res/merged/release/xml/provider_paths.xml", "source" : "/Users/yifenglai/proj/rn/ofo-engine/node_modules/react-native-image-picker/android/src/main/res/xml/provider_paths.xml"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$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"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"request": {"type": "string"}}, "required": ["request"]}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}, "should": {"type": "string"}}, "required": ["mocha", "should"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "keyvalue-xyz", "version" : "1.0.2", "description" : "Unofficial keyvalue.xyz client", "main" : "index.js", "scripts" : {"test" : "mocha --timeout 5000 tests.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/mattmcneeney/keyvalue-xyz.git"}, "keywords" : ["keyvalue", "storage", "key", "value", "store"], "author" : "mattmcneeney", "license" : "MIT", "bugs" : {"url" : "https://github.com/mattmcneeney/keyvalue-xyz/issues"}, "homepage" : "https://github.com/mattmcneeney/keyvalue-xyz#readme", "dependencies" : {"request" : "2.81.0"}, "devDependencies" : {"mocha" : "3.3.0", "should" : "11.2.1"}}
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": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"request": {"type": "string"}}, "required": ["request"]}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}, "should": {"type": "string"}}, "required": ["mocha", "should"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"bs-platform": {"type": "string"}}, "required": ["bs-platform"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}}, "required": ["express"]}}, "required": ["name", "version", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "express-reasonml-example", "version" : "1.0.0", "scripts" : {"build" : "bsb -make-world"}, "author" : "Phillip Johnsen <johphi@gmail.com>", "license" : "MIT", "devDependencies" : {"bs-platform" : "^5.0.3"}, "dependencies" : {"express" : "^4.16.4"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"bs-platform": {"type": "string"}}, "required": ["bs-platform"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}}, "required": ["express"]}}, "required": ["name", "version", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "code": {"type": "string"}, "id_parent": {"type": "array", "items": {"type": "string"}}, "items": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "code": {"type": "string"}}, "required": ["text", "code"]}}}, "required": ["text", "code", "id_parent", "items"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"text" : "Widgets", "code" : "widgets", "id_parent" : ["home", "|*appui-dashboard*|/", "page", "permissions", "appui"], "items" : [{"text" : "Users", "code" : "users"}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "code": {"type": "string"}, "id_parent": {"type": "array", "items": {"type": "string"}}, "items": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "code": {"type": "string"}}, "required": ["text", "code"]}}}, "required": ["text", "code", "id_parent", "items"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "BRISEYDA", "frequency" : 1195, "males" : "0.0 %", "females" : "100.0 %"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"content": {"type": "string"}, "entities": {"type": "array", "items": {"type": "object", "properties": {"entity": {"type": "string"}, "type": {"type": "string"}, "id": {"type": "integer"}, "offset": {"type": "integer"}}, "required": ["entity", "type", "id", "offset"]}}, "topics": {"type": "array", "items": {"type": "object", "properties": {"topic": {"type": "string"}, "id": {"type": "integer"}}, "required": ["topic", "id"]}}, "tweet_id": {"type": "string"}}, "required": ["content", "entities", "topics", "tweet_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"content" : "It appears that many lefties are unable to tell the difference between tax evasion and tax avoidance #bbcqt", "entities" : [{"entity" : "tax avoidance", "type" : "topic keyword", "id" : 2, "offset" : 87}, {"entity" : "tax evasion", "type" : "topic keyword", "id" : 3, "offset" : 71}], "topics" : [{"topic" : "public spending", "id" : 1}], "tweet_id" : "568544488139964416"}
json_instruct
{"type": "object", "properties": {"content": {"type": "string"}, "entities": {"type": "array", "items": {"type": "object", "properties": {"entity": {"type": "string"}, "type": {"type": "string"}, "id": {"type": "integer"}, "offset": {"type": "integer"}}, "required": ["entity", "type", "id", "offset"]}}, "topics": {"type": "array", "items": {"type": "object", "properties": {"topic": {"type": "string"}, "id": {"type": "integer"}}, "required": ["topic", "id"]}}, "tweet_id": {"type": "string"}}, "required": ["content", "entities", "topics", "tweet_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "img": {"type": "string"}, "email": {"type": "string"}, "links": {"type": "object", "properties": {"website": {"type": "string"}, "linkedin": {"type": "string"}, "github": {"type": "string"}}, "required": ["website", "linkedin", "github"]}, "jobTitle": {"type": "string"}, "location": {"type": "object", "properties": {"city": {"type": "string"}, "state": {"type": "string"}, "country": {"type": "string"}}, "required": ["city", "state", "country"]}}, "required": ["id", "name", "img", "email", "links", "jobTitle", "location"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "6e94e0d0-da64-4dc0-ae49-b1bf48f771cf", "name" : "Jordan George", "img" : "", "email" : "", "links" : {"website" : "https://jordan-george-portfolio.netlify.app/", "linkedin" : "https://www.linkedin.com/in/jordan-george5/", "github" : "https://github.com/jgeo777"}, "jobTitle" : "Front-End Developer", "location" : {"city" : "London", "state" : "England", "country" : "United Kingdom"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "img": {"type": "string"}, "email": {"type": "string"}, "links": {"type": "object", "properties": {"website": {"type": "string"}, "linkedin": {"type": "string"}, "github": {"type": "string"}}, "required": ["website", "linkedin", "github"]}, "jobTitle": {"type": "string"}, "location": {"type": "object", "properties": {"city": {"type": "string"}, "state": {"type": "string"}, "country": {"type": "string"}}, "required": ["city", "state", "country"]}}, "required": ["id", "name", "img", "email", "links", "jobTitle", "location"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"svn2GitApp": {"type": "object", "properties": {"mapping": {"type": "object", "properties": {"add": {"type": "string"}, "home": {"type": "object", "properties": {"title": {"type": "string"}, "createLabel": {"type": "string"}, "createOrEditLabel": {"type": "string"}}, "required": ["title", "createLabel", "createOrEditLabel"]}, "created": {"type": "string"}, "updated": {"type": "string"}, "deleted": {"type": "string"}, "delete": {"type": "object", "properties": {"question": {"type": "string"}}, "required": ["question"]}, "detail": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}, "svnDirectory": {"type": "string"}, "regex": {"type": "string"}, "gitDirectory": {"type": "string"}}, "required": ["add", "home", "created", "updated", "deleted", "delete", "detail", "svnDirectory", "regex", "gitDirectory"]}}, "required": ["mapping"]}}, "required": ["svn2GitApp"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"svn2GitApp" : {"mapping" : {"add" : "Ajouter un mapping", "home" : {"title" : "Mappings", "createLabel" : "Cr\u00e9er un nouveau Mapping", "createOrEditLabel" : "Cr\u00e9er ou \u00e9diter un Mapping"}, "created" : "Un nouveau Mapping a \u00e9t\u00e9 cr\u00e9\u00e9 avec l'identifiant {{ param }}", "updated" : "Le Mapping avec l'identifiant {{ param }} a \u00e9t\u00e9 mis \u00e0 jour", "deleted" : "Le Mapping avec l'identifiant {{ param }} a \u00e9t\u00e9 supprim\u00e9", "delete" : {"question" : "Etes-vous certain de vouloir supprimer le Mapping {{ id }} ?"}, "detail" : {"title" : "Mapping"}, "svnDirectory" : "Svn Directory", "regex" : "Regex", "gitDirectory" : "Git Directory"}}}
json_instruct
{"type": "object", "properties": {"svn2GitApp": {"type": "object", "properties": {"mapping": {"type": "object", "properties": {"add": {"type": "string"}, "home": {"type": "object", "properties": {"title": {"type": "string"}, "createLabel": {"type": "string"}, "createOrEditLabel": {"type": "string"}}, "required": ["title", "createLabel", "createOrEditLabel"]}, "created": {"type": "string"}, "updated": {"type": "string"}, "deleted": {"type": "string"}, "delete": {"type": "object", "properties": {"question": {"type": "string"}}, "required": ["question"]}, "detail": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}, "svnDirectory": {"type": "string"}, "regex": {"type": "string"}, "gitDirectory": {"type": "string"}}, "required": ["add", "home", "created", "updated", "deleted", "delete", "detail", "svnDirectory", "regex", "gitDirectory"]}}, "required": ["mapping"]}}, "required": ["svn2GitApp"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"title": {"type": "object", "properties": {"zh": {"type": "string"}, "en": {"type": "string"}}, "required": ["zh", "en"]}, "demos": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "title": {"type": "object", "properties": {"en": {"type": "string"}, "zh": {"type": "string"}}, "required": ["en", "zh"]}, "screenshot": {"type": "string"}}, "required": ["filename", "title", "screenshot"]}}}, "required": ["title", "demos"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : {"zh" : "\u4e2d\u6587\u5206\u7c7b", "en" : "Category"}, "demos" : [{"filename" : "linter-steps.jsx", "title" : {"en" : "Existing Chart to Linter", "zh" : "\u7ed9\u5b9a\u56fe\u8868\u5230 Linter \u8fdb\u884c\u4f18\u5316"}, "screenshot" : "https://gw.alipayobjects.com/zos/antfincdn/Gu8zDCffu/linter-steps.gif"}, {"filename" : "chart-linter.jsx", "title" : {"en" : "Basic Linter", "zh" : "Linter \u57fa\u7840\u7528\u6cd5"}, "screenshot" : "https://gw.alipayobjects.com/zos/antfincdn/1bZn%26b5Os/chart-linter.gif"}, {"filename" : "custom-rules-linter.jsx", "title" : {"en" : "Custom rules for Linter", "zh" : "\u5b9a\u5236 Linter \u6240\u4f7f\u7528\u7684\u89c4\u5219"}, "screenshot" : "https://gw.alipayobjects.com/zos/antfincdn/2Jjp04b6%26/custom-rules-linter.gif"}, {"filename" : "fixer.jsx", "title" : {"en" : "Basic Fixer", "zh" : "Fixer \u57fa\u7840\u7528\u6cd5"}, "screenshot" : "https://gw.alipayobjects.com/zos/antfincdn/kOe0rIsAR7/basic-fixer.gif"}]}
json_instruct
{"type": "object", "properties": {"title": {"type": "object", "properties": {"zh": {"type": "string"}, "en": {"type": "string"}}, "required": ["zh", "en"]}, "demos": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "title": {"type": "object", "properties": {"en": {"type": "string"}, "zh": {"type": "string"}}, "required": ["en", "zh"]}, "screenshot": {"type": "string"}}, "required": ["filename", "title", "screenshot"]}}}, "required": ["title", "demos"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"nodeID": {"type": "string"}, "text": {"type": "string"}, "type": {"type": "string"}, "timestamp": {"type": "string"}}, "required": ["nodeID", "text", "type", "timestamp"]}}, "edges": {"type": "array", "items": {"type": "object", "properties": {"edgeID": {"type": "string"}, "fromID": {"type": "string"}, "toID": {"type": "string"}, "formEdgeID": {"type": "null"}}, "required": ["edgeID", "fromID", "toID", "formEdgeID"]}}, "locutions": {"type": "array", "items": {}}}, "required": ["nodes", "edges", "locutions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nodes" : [{"nodeID" : "3511", "text" : "This being is God", "type" : "I", "timestamp" : "2012-04-12 17:29:22"}, {"nodeID" : "3512", "text" : "it cannot be any physical object. It cannot be any material object. It cannot be any spatial or temporal object", "type" : "I", "timestamp" : "2012-04-12 17:29:22"}, {"nodeID" : "3513", "text" : "It has to be a being which is timeless immaterial spaceless and therefore changeless and enormously powerful", "type" : "I", "timestamp" : "2012-04-12 17:29:22"}, {"nodeID" : "3514", "text" : "it has the properties of God", "type" : "I", "timestamp" : "2012-04-12 17:29:22"}, {"nodeID" : "3515", "text" : "this cause has to transcend space and time", "type" : "I", "timestamp" : "2012-04-12 17:29:22"}, {"nodeID" : "3516", "text" : "Spatial or temporal objects cannot transcend time and space", "type" : "I", "timestamp" : "2012-04-12 17:29:22"}, {"nodeID" : "3517", "text" : "in order to bring the universe into existence.", "type" : "I", "timestamp" : "2012-04-12 17:29:22"}, {"nodeID" : "3518", "text" : "Only an enormously powerful being can bring the universe into existence", "type" : "I", "timestamp" : "2012-04-12 17:29:22"}, {"nodeID" : "3519", "text" : "RA", "type" : "RA", "timestamp" : "2012-04-12 17:29:22"}, {"nodeID" : "3520", "text" : "RA", "type" : "RA", "timestamp" : "2012-04-12 17:29:23", "scheme" : "VerbalClassification", "schemeID" : "31"}, {"nodeID" : "3521", "text" : "RA", "type" : "RA", "timestamp" : "2012-04-12 17:29:23"}], "edges" : [{"edgeID" : "3332", "fromID" : "3512", "toID" : "3519", "formEdgeID" : null}, {"edgeID" : "3333", "fromID" : "3513", "toID" : "3519", "formEdgeID" : null}, {"edgeID" : "3334", "fromID" : "3514", "toID" : "3519", "formEdgeID" : null}, {"edgeID" : "3335", "fromID" : "3519", "toID" : "3511", "formEdgeID" : null}, {"edgeID" : "3336", "fromID" : "3515", "toID" : "3520", "formEdgeID" : null}, {"edgeID" : "3337", "fromID" : "3516", "toID" : "3520", "formEdgeID" : null}, {"edgeID" : "3338", "fromID" : "3520", "toID" : "3512", "formEdgeID" : null}, {"edgeID" : "3339", "fromID" : "3517", "toID" : "3521", "formEdgeID" : null}, {"edgeID" : "3340", "fromID" : "3518", "toID" : "3521", "formEdgeID" : null}, {"edgeID" : "3341", "fromID" : "3521", "toID" : "3513", "formEdgeID" : null}], "locutions" : []}
json_instruct
{"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"nodeID": {"type": "string"}, "text": {"type": "string"}, "type": {"type": "string"}, "timestamp": {"type": "string"}}, "required": ["nodeID", "text", "type", "timestamp"]}}, "edges": {"type": "array", "items": {"type": "object", "properties": {"edgeID": {"type": "string"}, "fromID": {"type": "string"}, "toID": {"type": "string"}, "formEdgeID": {"type": "null"}}, "required": ["edgeID", "fromID", "toID", "formEdgeID"]}}, "locutions": {"type": "array", "items": {}}}, "required": ["nodes", "edges", "locutions"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"}, "demo": {"type": "string"}, "demo-fg": {"type": "string"}}, "required": ["test", "demo", "demo-fg"]}, "bin": {"type": "object", "properties": {"fauxpas": {"type": "string"}}, "required": ["fauxpas"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"chalk": {"type": "string"}, "chrome-remote-interface": {"type": "string"}, "command-line-args": {"type": "string"}, "command-line-usage": {"type": "string"}, "connect": {"type": "string"}, "fg-faux-pas": {"type": "string"}, "fs-extra": {"type": "string"}, "join-path": {"type": "string"}, "lighthouse": {"type": "string"}, "serve-static": {"type": "string"}, "valid-url": {"type": "string"}}, "required": ["chalk", "chrome-remote-interface", "command-line-args", "command-line-usage", "connect", "fg-faux-pas", "fs-extra", "join-path", "lighthouse", "serve-static", "valid-url"]}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}}, "required": ["mocha"]}, "NFP_VARS": {"type": "object", "properties": {"port": {"type": "integer"}, "testStartupMessage": {"type": "string"}}, "required": ["port", "testStartupMessage"]}}, "required": ["name", "version", "description", "main", "scripts", "bin", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies", "NFP_VARS"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "node-faux-pas", "version" : "1.0.1", "description" : "A command line utility to test a URL for faux web font rendering and mismatched web font code.", "main" : "index.js", "scripts" : {"test" : "mocha --delay", "demo" : "node index.js https://filamentgroup.github.io/faux-pas/dist/demo.html", "demo-fg" : "node index.js https://filamentgroup.com/"}, "bin" : {"fauxpas" : "./index.js"}, "repository" : {"type" : "git", "url" : "git+ssh://git@github.com/filamentgroup/node-faux-pas.git"}, "author" : "zachleat <zachleatherman@gmail.com> (http://zachleat.com/)", "license" : "MIT", "bugs" : {"url" : "https://github.com/filamentgroup/node-faux-pas/issues"}, "homepage" : "https://github.com/filamentgroup/node-faux-pas#readme", "dependencies" : {"chalk" : "^1.1.3", "chrome-remote-interface" : "^0.23.2", "command-line-args" : "^4.0.6", "command-line-usage" : "^4.0.0", "connect" : "^3.6.2", "fg-faux-pas" : "^1.0.6", "fs-extra" : "^3.0.1", "join-path" : "^1.1.1", "lighthouse" : "2.0.0", "serve-static" : "^1.12.3", "valid-url" : "^1.0.9"}, "devDependencies" : {"mocha" : "^3.4.2"}, "NFP_VARS" : {"port" : 8114, "testStartupMessage" : "fauxpas Mocha test server running."}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "demo": {"type": "string"}, "demo-fg": {"type": "string"}}, "required": ["test", "demo", "demo-fg"]}, "bin": {"type": "object", "properties": {"fauxpas": {"type": "string"}}, "required": ["fauxpas"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"chalk": {"type": "string"}, "chrome-remote-interface": {"type": "string"}, "command-line-args": {"type": "string"}, "command-line-usage": {"type": "string"}, "connect": {"type": "string"}, "fg-faux-pas": {"type": "string"}, "fs-extra": {"type": "string"}, "join-path": {"type": "string"}, "lighthouse": {"type": "string"}, "serve-static": {"type": "string"}, "valid-url": {"type": "string"}}, "required": ["chalk", "chrome-remote-interface", "command-line-args", "command-line-usage", "connect", "fg-faux-pas", "fs-extra", "join-path", "lighthouse", "serve-static", "valid-url"]}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}}, "required": ["mocha"]}, "NFP_VARS": {"type": "object", "properties": {"port": {"type": "integer"}, "testStartupMessage": {"type": "string"}}, "required": ["port", "testStartupMessage"]}}, "required": ["name", "version", "description", "main", "scripts", "bin", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies", "NFP_VARS"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"font-awesome": {"type": "string"}, "clipboard": {"type": "string"}, "jquery-qrcode": {"type": "string"}, "jquery": {"type": "string"}, "remodal": {"type": "string"}, "toastr": {"type": "string"}, "async": {"type": "string"}, "iota.lib.js": {"type": "string"}, "i18next": {"type": "string"}, "i18next-xhr-backend": {"type": "string"}, "jquery-i18next": {"type": "string"}}, "required": ["font-awesome", "clipboard", "jquery-qrcode", "jquery", "remodal", "toastr", "async", "iota.lib.js", "i18next", "i18next-xhr-backend", "jquery-i18next"]}}, "required": ["name", "authors", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "iota-ui", "authors" : ["IOTA Foundation <contact@iota.org>"], "homepage" : "https://www.iota.org/", "dependencies" : {"font-awesome" : "^4.6.3", "clipboard" : "^1.5.10", "jquery-qrcode" : "lrsjng/jquery-qrcode#^0.12.0", "jquery" : "^2.2.4", "remodal" : "^1.0.7", "toastr" : "^2.1.2", "async" : "^2.1.4", "iota.lib.js" : "^0.4.0", "i18next" : "^8.3.0", "i18next-xhr-backend" : "^1.4.1", "jquery-i18next" : "^1.2.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"font-awesome": {"type": "string"}, "clipboard": {"type": "string"}, "jquery-qrcode": {"type": "string"}, "jquery": {"type": "string"}, "remodal": {"type": "string"}, "toastr": {"type": "string"}, "async": {"type": "string"}, "iota.lib.js": {"type": "string"}, "i18next": {"type": "string"}, "i18next-xhr-backend": {"type": "string"}, "jquery-i18next": {"type": "string"}}, "required": ["font-awesome", "clipboard", "jquery-qrcode", "jquery", "remodal", "toastr", "async", "iota.lib.js", "i18next", "i18next-xhr-backend", "jquery-i18next"]}}, "required": ["name", "authors", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"npmScope": {"type": "string"}, "implicitDependencies": {"type": "object", "properties": {"angular.json": {"type": "string"}, "package.json": {"type": "string"}, "tsconfig.json": {"type": "string"}, "tslint.json": {"type": "string"}, "nx.json": {"type": "string"}}, "required": ["angular.json", "package.json", "tsconfig.json", "tslint.json", "nx.json"]}, "projects": {"type": "object", "properties": {"neosintez-client-e2e": {"type": "object", "properties": {"tags": {"type": "array", "items": {}}}, "required": ["tags"]}, "neosintez-client": {"type": "object", "properties": {"tags": {"type": "array", "items": {}}}, "required": ["tags"]}, "ui": {"type": "object", "properties": {"tags": {"type": "array", "items": {}}}, "required": ["tags"]}}, "required": ["neosintez-client-e2e", "neosintez-client", "ui"]}}, "required": ["npmScope", "implicitDependencies", "projects"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"npmScope" : "my-app", "implicitDependencies" : {"angular.json" : "*", "package.json" : "*", "tsconfig.json" : "*", "tslint.json" : "*", "nx.json" : "*"}, "projects" : {"neosintez-client-e2e" : {"tags" : []}, "neosintez-client" : {"tags" : []}, "ui" : {"tags" : []}}}
json_instruct
{"type": "object", "properties": {"npmScope": {"type": "string"}, "implicitDependencies": {"type": "object", "properties": {"angular.json": {"type": "string"}, "package.json": {"type": "string"}, "tsconfig.json": {"type": "string"}, "tslint.json": {"type": "string"}, "nx.json": {"type": "string"}}, "required": ["angular.json", "package.json", "tsconfig.json", "tslint.json", "nx.json"]}, "projects": {"type": "object", "properties": {"neosintez-client-e2e": {"type": "object", "properties": {"tags": {"type": "array", "items": {}}}, "required": ["tags"]}, "neosintez-client": {"type": "object", "properties": {"tags": {"type": "array", "items": {}}}, "required": ["tags"]}, "ui": {"type": "object", "properties": {"tags": {"type": "array", "items": {}}}, "required": ["tags"]}}, "required": ["neosintez-client-e2e", "neosintez-client", "ui"]}}, "required": ["npmScope", "implicitDependencies", "projects"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "7571020019", "district_id" : "7571020", "name" : "LIMBA U SATU"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "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", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"namaKab" : "MANGGARAI TIMUR", "originalFilename" : "Pas Foto 4x6 Kanis L. Bana.jpg", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 177807, "noUrut" : 1, "nama" : "KANISIUS LINA BANA, S.Ag", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "MANGGARAI TIMUR", "originalFilename" : "pas foto 4x6.JPG", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 179974, "noUrut" : 2, "nama" : "YOSEVITA RIMA", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "MANGGARAI TIMUR", "originalFilename" : "Pas Foto 4x6 Ferdinandus Mazmur.jpg", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 179549, "noUrut" : 3, "nama" : "FERDINANDUS MAZMUR, S.Pi", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "MANGGARAI TIMUR", "originalFilename" : "Foto 4x6.jpg", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 53863, "noUrut" : 4, "nama" : "LUDGARDIS SAKTI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "MANGGARAI TIMUR", "originalFilename" : "pas foto 4x6.JPG", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 53272, "noUrut" : 5, "nama" : "AGUSTINUS URSULANUS SARNIS, SE", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "MANGGARAI TIMUR", "originalFilename" : "Pas Foto 4x6 Fabianus Sopi.JPG", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 168162, "noUrut" : 6, "nama" : "FABIANUS SOPI, S.Pd", "stringJenisKelamin" : "Laki-Laki"}]
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", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "null"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-6frx-2r5w-c524", "modified" : "2022-04-22T00:24:15Z", "published" : "2022-04-22T00:24:15Z", "aliases" : ["CVE-2011-1028"], "details" : "The $smarty.template variable in Smarty3 allows attackers to possibly execute arbitrary PHP code via the sysplugins/smarty_internal_compile_private_special_variable.php file.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2011-1028"}, {"type" : "WEB", "url" : "https://access.redhat.com/security/cve/cve-2011-1028"}, {"type" : "WEB", "url" : "https://seclists.org/oss-sec/2011/q1/313"}, {"type" : "WEB", "url" : "https://security-tracker.debian.org/tracker/CVE-2011-1028"}], "database_specific" : {"cwe_ids" : [], "severity" : null, "github_reviewed" : false}}
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": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "null"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"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"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"t" : "sapipadamaanaw", "h" : [{"d" : [{"f" : "\u60f3\u5168\u529b\u5e6b\u52a9\u3001\u5354\u52a9\u3002", "e" : ["\ufff9`Sapipadamaan~`aw~ `niyam~ `tamowanan~.\ufffa\ufffb\u6211\u5011\u60f3\u5168\u529b\u5e6b\u52a9\u4f60\u5011\u3002"]}]}], "stem" : "maan"}
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"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"artist_id" : "ARWSKTB1241B9CA649", "artist_latitude" : null, "artist_location" : "", "artist_longitude" : null, "artist_name" : "Escuela De La Calle", "duration" : 229.56363, "num_songs" : 1, "song_id" : "SOXZZUV12A58A7CAA9", "title" : "Sal De Mi Vida", "year" : 0}
json_instruct
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCode": {"type": "string"}, "dict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "webdict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "basic": {"type": "object", "properties": {"us-phonetic": {"type": "string"}, "phonetic": {"type": "string"}, "uk-phonetic": {"type": "string"}, "explains": {"type": "array", "items": {"type": "string"}}}, "required": ["us-phonetic", "phonetic", "uk-phonetic", "explains"]}, "l": {"type": "string"}}, "required": ["web", "query", "translation", "errorCode", "dict", "webdict", "basic", "l"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"web" : [{"value" : ["\u8fdd\u5baa", "\u8fdd\u53cd\u5baa\u6cd5\u7684", "\u4e0d\u7b26\u5408\u5baa\u6cd5\u7684"], "key" : "unconstitutional"}, {"value" : ["\u8fdd\u5baa\u884c\u4e3a", "\u8fdd\u5baa", "\u8fdd\u5baa\u7684\u6cd5\u4ee4"], "key" : "unconstitutional act"}, {"value" : ["\u8fdd\u5baa\u7684\u6cd5\u5f8b", "\u8fdd\u5baa\u6cd5\u5f8b"], "key" : "unconstitutional law"}], "query" : "unconstitutional", "translation" : ["\u8fdd\u53cd\u5baa\u6cd5\u7684"], "errorCode" : "0", "dict" : {"url" : "yddict://m.youdao.com/dict?le=eng&q=unconstitutional"}, "webdict" : {"url" : "http://m.youdao.com/dict?le=eng&q=unconstitutional"}, "basic" : {"us-phonetic" : ",\u028cnk\u0251nst\u0259'tu\u0283\u0259nl", "phonetic" : ",\u028cnk\u0252nst\u026a'tju\u02d0\u0283(\u0259)n(\u0259)l", "uk-phonetic" : ",\u028cnk\u0252nst\u026a'tju\u02d0\u0283(\u0259)n(\u0259)l", "explains" : ["adj. \u8fdd\u53cd\u5baa\u6cd5\u7684", "\u8fdd\u53cd\u5baa\u6cd5\u5730"]}, "l" : "EN2zh-CHS"}
json_instruct
{"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCode": {"type": "string"}, "dict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "webdict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "basic": {"type": "object", "properties": {"us-phonetic": {"type": "string"}, "phonetic": {"type": "string"}, "uk-phonetic": {"type": "string"}, "explains": {"type": "array", "items": {"type": "string"}}}, "required": ["us-phonetic", "phonetic", "uk-phonetic", "explains"]}, "l": {"type": "string"}}, "required": ["web", "query", "translation", "errorCode", "dict", "webdict", "basic", "l"], "$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": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 127945, "info" : {"name" : "Gatinhos super fofos \u2022 tema amor doce \u2022 |", "description" : "| espero que gostem ,demoro um pouco pra eu fazer |", "additionalInfo" : "pra quem gosta de ,gatinhos \u2665", "format" : "uso", "category" : "amordoce", "createdAt" : "2016-05-15T20:39:49.000Z", "updatedAt" : "2016-05-15T20:39:49.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 319386, "name" : "Laryssa_2016"}}, "stats" : {"installs" : {"total" : 59, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "127945_after.jpeg", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document domain(\"amordoce.com\") {\r\n#container{\r\nbackground-image : url(http://i63.tinypic.com/2jacd2o.jpg) !important ;\r\n}\r\n#container.connected #header { background-image : url(http://i68.tinypic.com/14ifzmv.png) !important ;\r\n}\r\n.idcard-member { background : url(http://i63.tinypic.com/10h9bm8.png) no-repeat !important ;\r\n}\r\n}\r\n\r\n@-moz-document regexp(\"http://www.amordoce.com/accueil.kiss\") {\r\n.idcard-member { background : url(Carteirinha personalizada) no-repeat !important ;\r\n}\r\n}"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"clear": {"type": "string"}, "headerItem": {"type": "string"}, "headerItem:": {"type": "string"}, "includes:": {"type": "string"}, "indices": {"type": "string"}, "initialize": {"type": "string"}, "itemAt:": {"type": "string"}, "itemBefore:": {"type": "string"}, "itemIndexFor:": {"type": "string"}, "items": {"type": "string"}, "optimalSize": {"type": "string"}, "pixelSize": {"type": "string"}, "resize:": {"type": "string"}, "resizeMode": {"type": "string"}, "resizeMode:": {"type": "string"}, "updateItemSize": {"type": "string"}, "updateSize": {"type": "string"}, "visible": {"type": "string"}, "visible:": {"type": "string"}}, "required": ["clear", "headerItem", "headerItem:", "includes:", "indices", "initialize", "itemAt:", "itemBefore:", "itemIndexFor:", "items", "optimalSize", "pixelSize", "resize:", "resizeMode", "resizeMode:", "updateItemSize", "updateSize", "visible", "visible:"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"class" : {}, "instance" : {"clear" : "mt 10/11/2010 17:51:31.693", "headerItem" : "mt 10/10/2010 12:46:28.423", "headerItem:" : "mt 3/23/2012 10:48:52.86", "includes:" : "mt 10/9/2010 19:57:43.188", "indices" : "mt 4/26/2012 13:26:19.981", "initialize" : "mt 6/29/2012 10:30:05", "itemAt:" : "mt 10/13/2010 15:42:39.671", "itemBefore:" : "mt 10/9/2010 18:19:16.151", "itemIndexFor:" : "mt 10/9/2010 19:58:04.261", "items" : "mt 10/9/2010 18:13:57.129", "optimalSize" : "mt 10/9/2010 18:16:09.336", "pixelSize" : "mt 9/18/2013 20:41:40.302", "resize:" : "mt 7/6/2012 11:19:35.224", "resizeMode" : "mt 10/9/2010 18:09:54.303", "resizeMode:" : "mt 11/13/2019 14:49", "updateItemSize" : "mt 7/6/2012 11:14:43.445", "updateSize" : "mt 7/6/2012 11:19:52.032", "visible" : "mt 6/26/2012 16:26:55.266", "visible:" : "mt 8/31/2012 14:37:35.851"}}
json_instruct
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"clear": {"type": "string"}, "headerItem": {"type": "string"}, "headerItem:": {"type": "string"}, "includes:": {"type": "string"}, "indices": {"type": "string"}, "initialize": {"type": "string"}, "itemAt:": {"type": "string"}, "itemBefore:": {"type": "string"}, "itemIndexFor:": {"type": "string"}, "items": {"type": "string"}, "optimalSize": {"type": "string"}, "pixelSize": {"type": "string"}, "resize:": {"type": "string"}, "resizeMode": {"type": "string"}, "resizeMode:": {"type": "string"}, "updateItemSize": {"type": "string"}, "updateSize": {"type": "string"}, "visible": {"type": "string"}, "visible:": {"type": "string"}}, "required": ["clear", "headerItem", "headerItem:", "includes:", "indices", "initialize", "itemAt:", "itemBefore:", "itemIndexFor:", "items", "optimalSize", "pixelSize", "resize:", "resizeMode", "resizeMode:", "updateItemSize", "updateSize", "visible", "visible:"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"success": {"type": "boolean"}, "data": {"type": "array", "items": {"type": "object", "properties": {"IdJednostkaSprawozdawcza": {"type": "integer"}, "Skrot": {"type": "string"}, "NazwaNadawcy": {"type": "string"}, "Id": {"type": "integer"}}, "required": ["IdJednostkaSprawozdawcza", "Skrot", "NazwaNadawcy", "Id"]}}}, "required": ["success", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"success" : true, "data" : [{"IdJednostkaSprawozdawcza" : 6, "Skrot" : "Fake123456", "NazwaNadawcy" : "Kowalski Jan", "Id" : 1}]}
json_instruct
{"type": "object", "properties": {"success": {"type": "boolean"}, "data": {"type": "array", "items": {"type": "object", "properties": {"IdJednostkaSprawozdawcza": {"type": "integer"}, "Skrot": {"type": "string"}, "NazwaNadawcy": {"type": "string"}, "Id": {"type": "integer"}}, "required": ["IdJednostkaSprawozdawcza", "Skrot", "NazwaNadawcy", "Id"]}}}, "required": ["success", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"user": {"type": "string"}, "value": {"type": "string"}, "type": {"type": "string"}, "time": {"type": "integer"}, "data": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "list": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["type", "list"]}}}, "required": ["user", "value", "type", "time", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"user" : "Edouard DUPIN", "value" : "r", "type" : "hand", "time" : 1470051886611362816, "data" : [{"type" : "type::finger", "list" : [[337.687317, 440.344604], [342.522858, 447.558472], [347.697418, 456.390808], [353.03833, 468.34314], [359.117828, 482.596924], [364.227325, 500.170715], [366.920654, 518.039307], [367.613708, 532.421753], [366.484528, 542.657776], [363.763214, 546.115479], [361.309753, 546.922729], [354.89386, 545.828613], [349.518402, 538.446472], [347.173889, 526.112], [349.549622, 510.032471], [356.346802, 498.29425], [365.86087, 491.554932], [378.386475, 489.50531], [392.251587, 491.300049], [405.306732, 494.040955], [418.490662, 499.992371], [429.679169, 507.671936], [437.191071, 513.035278], [440.971283, 513.878906], [443.283112, 512.872559], [444.069214, 506.439087], [443.023865, 491.409668], [442.190277, 471.646118], [442.01355, 452.743347], [444.962891, 439.185669], [450.801025, 427.291809], [458.691895, 420.323975]]}]}
json_instruct
{"type": "object", "properties": {"user": {"type": "string"}, "value": {"type": "string"}, "type": {"type": "string"}, "time": {"type": "integer"}, "data": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "list": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["type", "list"]}}}, "required": ["user", "value", "type", "time", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"1.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.4": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["1.0", "1.1", "1.2", "1.4"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"latest_version" : ["1.4"], "meta" : {"description" : "[Obsolete] use teamcity-messages package", "homepage" : "http://pypi.python.org/pypi/teamcity-nose", "license" : "Apache 2.0"}, "versions" : {"1.0" : {"sha256" : "d401368c7ea159f8c3ce42e0f02897f50d8b6e9ecda7c3ddd087e47417e262d1", "url" : "https://files.pythonhosted.org/packages/9a/f0/19649fa9e490409b11f5d706f1cb1fc51457384070463810d6410754a8d0/teamcity-nose-1.0.tar.gz"}, "1.1" : {"sha256" : "e810af056e57b32834636cc340ebe949ae4daca20efbb1347cc767559670f96d", "url" : "https://files.pythonhosted.org/packages/84/84/ee74d8c05ea2f0f31e461e04d49f72408883f7805dea6afa4d3bcc4d6acf/teamcity-nose-1.1.tar.gz"}, "1.2" : {"sha256" : "aeb9476894da37a1b59803d8be3d8b3cbc769376658c0c682861a4d636470491", "url" : "https://files.pythonhosted.org/packages/e6/d4/a56e80118b7dfeb4f67fa35386c4971f0197859ed89c664526281c072511/teamcity-nose-1.2.tar.gz"}, "1.4" : {"sha256" : "994af26517561d6a25d4bcc5f1ad02035e615f2c809e5a7090214768b0fad8ea", "url" : "https://files.pythonhosted.org/packages/36/c8/38e142d1207e922138796478f68e908a2f7b610048498c292e233f0926bc/teamcity-nose-1.4.zip"}}}
json_instruct
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"1.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.4": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["1.0", "1.1", "1.2", "1.4"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-117.69741, 33.491058], [-117.693313, 33.496127], [-117.691961, 33.502655], [-117.687629, 33.505597], [-117.690283, 33.506275], [-117.692928, 33.508889], [-117.692738, 33.511152], [-117.691498, 33.513219], [-117.690164, 33.513464], [-117.683756, 33.518378], [-117.68194, 33.516056], [-117.679549, 33.516121], [-117.679675, 33.510581], [-117.680919, 33.50893], [-117.677039, 33.508929], [-117.678783, 33.507226], [-117.677542, 33.506139], [-117.683879, 33.500545], [-117.686071, 33.493717], [-117.684179, 33.493138], [-117.686695, 33.487096], [-117.69741, 33.491058]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 6042}}]}
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": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "MultiPolygon", "coordinates" : [[[[-86.63771285999988, 36.04617654200006], [-86.63770376299992, 36.04610073800006], [-86.63771302899991, 36.046061880000074], [-86.63775574399993, 36.04599996400008], [-86.6378132219999, 36.04596401200006], [-86.63786031299989, 36.04594971700003], [-86.63795715899992, 36.04594432100002], [-86.6384714939999, 36.04601391800007], [-86.63857570399992, 36.04603940100008], [-86.6387790189999, 36.04610378200004], [-86.63901898599993, 36.046124168000055], [-86.63929338899992, 36.04612411800007], [-86.63945726499989, 36.04611024300004], [-86.63972696999988, 36.04606660800004], [-86.63966274599993, 36.04627283900003], [-86.63953325699991, 36.046576071000054], [-86.63942861399993, 36.04675943600005], [-86.63929403199987, 36.04692680800007], [-86.63880521799987, 36.046796726000075], [-86.63869623999993, 36.046750996000064], [-86.63851941799992, 36.04664583000003], [-86.63832798399993, 36.04646431400004], [-86.63824951399992, 36.04642876800005], [-86.63808716899989, 36.046376193000064], [-86.63798550299991, 36.04632465400004], [-86.63783325299993, 36.046281419000074], [-86.63775897499991, 36.04624321000004], [-86.6377309359999, 36.04621172700006], [-86.63771285999988, 36.04617654200006]]]], "properties" : {"id" : "usa-tn-nashville-timber-trace-townhomes-neighborhood", "type" : "neighborhood", "name" : "Timber Trace Townhomes", "code" : "416251"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"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"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 58907, "cartId" : "b40a853f-dbba-41a1-b1dd-f2bcad637fd2", "preferredProducts" : [2520, 1471, 2779, 1611, 763, 4823], "productReviews" : [{"productId" : 1751, "reviewText" : "heard about this on alternative dance radio, decided to give it a try.", "reviewDate" : "2017-10-11T05:49:40.1786507+03:00"}, {"productId" : 3111, "reviewText" : "this Streets is awesome.", "reviewDate" : "2016-10-23T03:33:26.1033411+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "style": {"type": "string"}}, "required": ["name", "version", "description", "repository", "keywords", "author", "license", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "prism-funky-theme", "version" : "0.0.1", "description" : "A CSS theme for PrismJS", "repository" : {"type" : "git", "url" : "https://github.com/PrismJS/prism.git"}, "keywords" : ["prism", "highlight", "theme"], "author" : "Lea Verou", "license" : "MIT", "style" : "prism-funky.css"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "style": {"type": "string"}}, "required": ["name", "version", "description", "repository", "keywords", "author", "license", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"cors": {"type": "string"}, "express": {"type": "string"}, "firebase": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["cors", "express", "firebase", "socket.io"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"dependencies" : {"cors" : "^2.8.5", "express" : "^4.17.1", "firebase" : "^9.2.0", "socket.io" : "^4.3.1"}}
json_instruct
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"cors": {"type": "string"}, "express": {"type": "string"}, "firebase": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["cors", "express", "firebase", "socket.io"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"http://registry.gpii.org/common/fontSize": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "integer"}}, "required": ["value"]}}, "http://registry.gpii.org/common/highContrastEnabled": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "boolean"}}, "required": ["value"]}}}, "required": ["http://registry.gpii.org/common/fontSize", "http://registry.gpii.org/common/highContrastEnabled"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"http://registry.gpii.org/common/fontSize" : [{"value" : 12}], "http://registry.gpii.org/common/highContrastEnabled" : [{"value" : false}]}
json_instruct
{"type": "object", "properties": {"http://registry.gpii.org/common/fontSize": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "integer"}}, "required": ["value"]}}, "http://registry.gpii.org/common/highContrastEnabled": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "boolean"}}, "required": ["value"]}}}, "required": ["http://registry.gpii.org/common/fontSize", "http://registry.gpii.org/common/highContrastEnabled"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "s": {"type": "array", "items": {"type": "string"}}, "r": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "s", "r"]}}}, "required": ["d"]}}}, "required": ["t", "h"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"t" : "hawar", "h" : [{"d" : [{"f" : "\u8de8\uff0c\u8de8\u8d8a\u3002", "s" : ["`hawang~"], "r" : ["`mihawar~"]}]}]}
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"}, "s": {"type": "array", "items": {"type": "string"}}, "r": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "s", "r"]}}}, "required": ["d"]}}}, "required": ["t", "h"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "architecture": {"type": "object", "properties": {"64bit": {"type": "object", "properties": {"url": {"type": "string"}, "hash": {"type": "string"}}, "required": ["url", "hash"]}}, "required": ["64bit"]}, "shortcuts": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "checkver": {"type": "object", "properties": {"github": {"type": "string"}}, "required": ["github"]}, "autoupdate": {"type": "object", "properties": {"architecture": {"type": "object", "properties": {"64bit": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["64bit"]}}, "required": ["architecture"]}}, "required": ["version", "description", "homepage", "license", "architecture", "shortcuts", "checkver", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "0.7", "description" : "A menu bar application using mpv as DLNA Media Renderer", "homepage" : "https://xfangfang.github.io/Macast", "license" : "GPL-3.0-only", "architecture" : {"64bit" : {"url" : "https://github.com/xfangfang/Macast/releases/download/v0.7/Macast-Windows-v0.7.exe#/Macast.exe", "hash" : "d014ec60e152e7cfa1f5fdf1ffa1a9b88525c4b0650c59a90081c73838e78932"}}, "shortcuts" : [["Macast.exe", "Macast"]], "checkver" : {"github" : "https://github.com/xfangfang/Macast"}, "autoupdate" : {"architecture" : {"64bit" : {"url" : "https://github.com/xfangfang/Macast/releases/download/v$version/Macast-Windows-v$version.exe#/Macast.exe"}}}}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "architecture": {"type": "object", "properties": {"64bit": {"type": "object", "properties": {"url": {"type": "string"}, "hash": {"type": "string"}}, "required": ["url", "hash"]}}, "required": ["64bit"]}, "shortcuts": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "checkver": {"type": "object", "properties": {"github": {"type": "string"}}, "required": ["github"]}, "autoupdate": {"type": "object", "properties": {"architecture": {"type": "object", "properties": {"64bit": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["64bit"]}}, "required": ["architecture"]}}, "required": ["version", "description", "homepage", "license", "architecture", "shortcuts", "checkver", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"p1": {"type": "object", "properties": {"sansekerta": {"type": "string"}, "bahasa": {"type": "array", "items": {"type": "string"}}}, "required": ["sansekerta", "bahasa"]}, "p2": {"type": "object", "properties": {"sansekerta": {"type": "string"}, "bahasa": {"type": "array", "items": {"type": "string"}}}, "required": ["sansekerta", "bahasa"]}, "p3": {"type": "object", "properties": {"sansekerta": {"type": "string"}, "bahasa": {"type": "array", "items": {"type": "string"}}}, "required": ["sansekerta", "bahasa"]}}, "required": ["p1", "p2", "p3"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"p1" : {"sansekerta" : "prambayun", "bahasa" : ["sulung", "pertama"]}, "p2" : {"sansekerta" : "pramila", "bahasa" : ["maka", "oleh karena itu"]}, "p3" : {"sansekerta" : "pramodya", "bahasa" : ["pemuda", "taruna"]}}
json_instruct
{"type": "object", "properties": {"p1": {"type": "object", "properties": {"sansekerta": {"type": "string"}, "bahasa": {"type": "array", "items": {"type": "string"}}}, "required": ["sansekerta", "bahasa"]}, "p2": {"type": "object", "properties": {"sansekerta": {"type": "string"}, "bahasa": {"type": "array", "items": {"type": "string"}}}, "required": ["sansekerta", "bahasa"]}, "p3": {"type": "object", "properties": {"sansekerta": {"type": "string"}, "bahasa": {"type": "array", "items": {"type": "string"}}}, "required": ["sansekerta", "bahasa"]}}, "required": ["p1", "p2", "p3"], "$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"}, "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": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 101817923, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "acc8ce56f00fc0f907954d99c1b39703", "wof:id" : 101817923, "wof:repo" : "whosonfirst-data-admin-lt"}, "bbox" : [24.03333, 54.61667, 24.03333, 54.61667], "geometry" : {"coordinates" : [24.03333, 54.61667], "type" : "Point"}}
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": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type": "integer"}}, "required": ["play", "subPlay"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "6ef2e2a9-c079-40db-bfe3-fbf71c268c4b", "playerTags" : [], "teamTags" : ["d9f89a8a-c563-493e-9d64-78e4f9a55d4a", "878c1bf6-0d21-4659-bfee-916c8314d69c"], "gameTags" : ["232f0083-bc94-454e-96a2-da367c5b7a06"], "metadata" : {"play" : 31, "subPlay" : -1}, "created" : "2021-03-19T14:02:36.307Z", "season" : 13, "tournament" : -1, "type" : 62, "day" : 93, "phase" : 6, "category" : 2, "description" : "A surge of Immateria rushes up from Under!\nBaserunners are swept from play!", "nuts" : 1}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type": "integer"}}, "required": ["play", "subPlay"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}