input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"URL": {"type": "string"}, "heading": {"type": "string"}, "subheading": {"type": "string"}, "author": {"type": "string"}, "category": {"type": "string"}, "type": {"type": "string"}, "timestamp": {"type": "string"}, "text": {"type": "string"}}, "required": ["URL", "heading", "subheading", "author", "category", "type", "timestamp", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"URL" : "https://www.wired.com/1999/02/analyzer-indicted-in-israel", "heading" : "analyzer indicted in israel", "subheading" : "an israeli youth implicated in a series of organized attacks on us government computer systems last year is not off the hook yet.", "author" : "wired news report", "category" : "security", "type" : "article", "timestamp" : "02.09.1999 04:50 PM", "text" : "jerusalem -- a 20-year-old israeli cracker behind last year's organized attacks against us military and government computer systems was indicted tuesday on charges of conspiracy and harming computer systems. four other israelis, considered his pupils, were indicted along with ehud tenebaum, who was arrested in israel in march 1998 after an intensive investigation by multiple us agencies.tenebaum, who calls himself analyzer, and a teenage collaborator in northern california, known as makaveli, claimed credit in march for a string of hacker assaults on us military computers.the israeli indictment said that in 1997 and early 1998 tenebaum and his four proteges breached computers in israel and in the united states using a trojan-horse program to obtain access and a sniffer program to obtain passwords. tenebaum claimed to have access to more than 400 military computer systems.all five were charged with using the internet to infiltrate computers at harvard, yale, mit, nasa, and the us navy, as well as sites of israeli isps, where they obtained the names and passwords of subscribers.three of the five were charged with destroying evidence.the justice department said last spring that while intrusions into us military computers were treated as serious incidents, no classified information was ever compromised.no trial date was set.reuters contributed to this report."}
json_instruct
{"type": "object", "properties": {"URL": {"type": "string"}, "heading": {"type": "string"}, "subheading": {"type": "string"}, "author": {"type": "string"}, "category": {"type": "string"}, "type": {"type": "string"}, "timestamp": {"type": "string"}, "text": {"type": "string"}}, "required": ["URL", "heading", "subheading", "author", "category", "type", "timestamp", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Ch\u00e2telaillon-Plage", "circ" : "2\u00e8me circonscription", "dpt" : "Charente-Maritime", "inscrits" : 5240, "abs" : 2599, "votants" : 2641, "blancs" : 144, "nuls" : 61, "exp" : 2436, "res" : [{"nuance" : "REM", "nom" : "Mme Fr\u00e9derique TUFFNELL", "voix" : 1274}, {"nuance" : "LR", "nom" : "Mme Sylvie MARCILLY", "voix" : 1162}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$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": {"start": {"type": "string"}, "start:prod": {"type": "string"}, "start:dev": {"type": "string"}, "client": {"type": "string"}, "install": {"type": "string"}, "build": {"type": "string"}, "heroku-postbuild": {"type": "string"}}, "required": ["start", "start:prod", "start:dev", "client", "install", "build", "heroku-postbuild"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bcryptjs": {"type": "string"}, "body-parser": {"type": "string"}, "crypto": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "express-session": {"type": "string"}, "if-env": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "jwt-decode": {"type": "string"}, "mongoose": {"type": "string"}, "nodemailer": {"type": "string"}, "passport": {"type": "string"}, "passport-jwt": {"type": "string"}, "passport-local": {"type": "string"}, "sanitize-html": {"type": "string"}, "validator": {"type": "string"}}, "required": ["bcryptjs", "body-parser", "crypto", "dotenv", "express", "express-session", "if-env", "jsonwebtoken", "jwt-decode", "mongoose", "nodemailer", "passport", "passport-jwt", "passport-local", "sanitize-html", "validator"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Discussy", "version" : "1.0.0", "description" : "Discussy a website for posting question", "main" : "server.js", "scripts" : {"start" : "if-env NODE_ENV=production && npm run start:prod || npm run start:dev", "start:prod" : "node server.js", "start:dev" : "node server.js", "client" : "cd client && npm run start", "install" : "cd client && npm install ", "build" : "cd client && npm run build ", "heroku-postbuild" : "npm run build "}, "author" : "K.boopathi", "license" : "MIT", "dependencies" : {"bcryptjs" : "^2.4.3", "body-parser" : "^1.19.0", "crypto" : "^1.0.1", "dotenv" : "^8.2.0", "express" : "^4.17.1", "express-session" : "^1.17.1", "if-env" : "^1.0.4", "jsonwebtoken" : "^8.5.1", "jwt-decode" : "^3.1.2", "mongoose" : "^5.12.13", "nodemailer" : "^6.7.1", "passport" : "^0.4.1", "passport-jwt" : "^4.0.0", "passport-local" : "^1.0.0", "sanitize-html" : "^2.4.0", "validator" : "^13.6.0"}}
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:prod": {"type": "string"}, "start:dev": {"type": "string"}, "client": {"type": "string"}, "install": {"type": "string"}, "build": {"type": "string"}, "heroku-postbuild": {"type": "string"}}, "required": ["start", "start:prod", "start:dev", "client", "install", "build", "heroku-postbuild"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bcryptjs": {"type": "string"}, "body-parser": {"type": "string"}, "crypto": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "express-session": {"type": "string"}, "if-env": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "jwt-decode": {"type": "string"}, "mongoose": {"type": "string"}, "nodemailer": {"type": "string"}, "passport": {"type": "string"}, "passport-jwt": {"type": "string"}, "passport-local": {"type": "string"}, "sanitize-html": {"type": "string"}, "validator": {"type": "string"}}, "required": ["bcryptjs", "body-parser", "crypto", "dotenv", "express", "express-session", "if-env", "jsonwebtoken", "jwt-decode", "mongoose", "nodemailer", "passport", "passport-jwt", "passport-local", "sanitize-html", "validator"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$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"}, "ascMain": {"type": "string"}, "main": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"build:untouched": {"type": "string"}, "build:optimized": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "test:ci": {"type": "string"}}, "required": ["build:untouched", "build:optimized", "build", "test", "test:ci"]}, "dependencies": {"type": "object", "properties": {"@assemblyscript/loader": {"type": "string"}}, "required": ["@assemblyscript/loader"]}, "devDependencies": {"type": "object", "properties": {"@as-pect/cli": {"type": "string"}, "assemblyscript": {"type": "string"}}, "required": ["@as-pect/cli", "assemblyscript"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "ascMain", "main", "description", "keywords", "scripts", "dependencies", "devDependencies", "files"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "as-variant", "version" : "0.2.1", "ascMain" : "assembly/index.ts", "main" : "assembly/index.ts", "description" : "Variant data type for AssemblyScript.", "keywords" : ["any", "type", "wasm", "variant", "dynamic", "webassembly", "assemblyscript"], "scripts" : {"build:untouched" : "asc assembly/index.ts --target debug", "build:optimized" : "asc assembly/index.ts --target release", "build" : "npm run build:untouched && npm run build:optimized", "test" : "asp --verbose", "test:ci" : "asp --summary --nologo"}, "dependencies" : {"@assemblyscript/loader" : "^0.19.5"}, "devDependencies" : {"@as-pect/cli" : "^6.2.4", "assemblyscript" : "^0.19.5"}, "files" : ["assembly/", "README.md", "LICENSE", "package.json", "yarn.lock"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "ascMain": {"type": "string"}, "main": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"build:untouched": {"type": "string"}, "build:optimized": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "test:ci": {"type": "string"}}, "required": ["build:untouched", "build:optimized", "build", "test", "test:ci"]}, "dependencies": {"type": "object", "properties": {"@assemblyscript/loader": {"type": "string"}}, "required": ["@assemblyscript/loader"]}, "devDependencies": {"type": "object", "properties": {"@as-pect/cli": {"type": "string"}, "assemblyscript": {"type": "string"}}, "required": ["@as-pect/cli", "assemblyscript"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "ascMain", "main", "description", "keywords", "scripts", "dependencies", "devDependencies", "files"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "your", "definition" : "The form of the possessive case of the personal pronoun you. Note: The possessive takes the form yours when the noun to which it refers is not expressed, but implied; as, this book is yours. \"An old fellow of yours.\" Chaucer."}
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": "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" : "ARGCVZG1187B9B916F", "artist_latitude" : null, "artist_location" : "", "artist_longitude" : null, "artist_name" : "Hayseed Dixie", "duration" : 250.67057, "num_songs" : 1, "song_id" : "SOIOQNE12A58A7CBB7", "title" : "Sabbath Bloody Sabbath", "year" : 2010}
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"generic-vnf": {"type": "array", "items": {"type": "object", "properties": {"vnf-id": {"type": "string"}, "vnf-name": {"type": "string"}, "relationship-list": {"type": "object", "properties": {"relationship": {"type": "array", "items": {"type": "object", "properties": {"related-to": {"type": "string"}, "related-link": {"type": "string"}, "relationship-data": {"type": "array", "items": {"type": "object", "properties": {"relationship-key": {"type": "string"}, "relationship-value": {"type": "string"}}, "required": ["relationship-key", "relationship-value"]}}}, "required": ["related-to", "related-link", "relationship-data"]}}}, "required": ["relationship"]}}, "required": ["vnf-id", "vnf-name", "relationship-list"]}}, "allotted-resource": {"type": "array", "items": {"type": "object", "properties": {"role": {"type": "string"}}, "required": ["role"]}}}, "required": ["generic-vnf", "allotted-resource"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"generic-vnf" : [{"vnf-id" : "vnf-id", "vnf-name" : "vnf-name", "relationship-list" : {"relationship" : [{"related-to" : "service-instance", "related-link" : "/aai/v10/service-instance-link", "relationship-data" : [{"relationship-key" : "customer.global-customer-id", "relationship-value" : "global-customer-id"}]}]}}], "allotted-resource" : [{"role" : "test-role"}]}
json_instruct
{"type": "object", "properties": {"generic-vnf": {"type": "array", "items": {"type": "object", "properties": {"vnf-id": {"type": "string"}, "vnf-name": {"type": "string"}, "relationship-list": {"type": "object", "properties": {"relationship": {"type": "array", "items": {"type": "object", "properties": {"related-to": {"type": "string"}, "related-link": {"type": "string"}, "relationship-data": {"type": "array", "items": {"type": "object", "properties": {"relationship-key": {"type": "string"}, "relationship-value": {"type": "string"}}, "required": ["relationship-key", "relationship-value"]}}}, "required": ["related-to", "related-link", "relationship-data"]}}}, "required": ["relationship"]}}, "required": ["vnf-id", "vnf-name", "relationship-list"]}}, "allotted-resource": {"type": "array", "items": {"type": "object", "properties": {"role": {"type": "string"}}, "required": ["role"]}}}, "required": ["generic-vnf", "allotted-resource"], "$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" : 51696, "cartId" : "fdbfcafb-2e8b-4f9c-9c7b-a3b4a5ff4a9f", "preferredProducts" : [2058, 1099, 1448, 2236, 3174, 2095, 1152, 4085], "productReviews" : [{"productId" : 2419, "reviewText" : "one of my hobbies is drawing. and when i'm drawing this works great.", "reviewDate" : "2019-03-19T01:45:36.8899156+02:00"}, {"productId" : 3527, "reviewText" : "My Shih-Tzu loves to play with it.", "reviewDate" : "2018-01-24T22:20:47.4160125+02:00"}, {"productId" : 217, "reviewText" : "It only works when I'm Azerbaijan.", "reviewDate" : "2019-01-06T13:23:48.9658137+02: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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"planning-permission-status": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "site": {"type": "string"}, "site-address": {"type": "string"}, "organisation": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "start-date": {"type": "string"}, "hectares": {"type": "string"}, "point": {"type": "string"}, "name": {"type": "string"}, "site-plan-url": {"type": "string"}, "notes": {"type": "string"}, "ownership-status": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["planning-permission-status", "minimum-net-dwellings", "site", "site-address", "organisation", "maximum-net-dwellings", "start-date", "hectares", "point", "name", "site-plan-url", "notes", "ownership-status", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-1.11315, 52.432244]}, "properties" : {"planning-permission-status" : "not permissioned", "minimum-net-dwellings" : "10", "site" : "1019", "site-address" : "Abattoir Site, South Kilworth", "organisation" : "local-authority-eng:HAO", "maximum-net-dwellings" : "10", "start-date" : "2020-07-31", "hectares" : "0.3", "point" : "POINT(-1.11315 52.432244)", "name" : "1019", "site-plan-url" : "https://www.harborough.gov.uk/downloads/file/6597/1019_abattoir_site_south_kilworth_2020", "notes" : "Allocated for housing in South Kilworth NP as part of larger site. Whole site capacity shown.", "ownership-status" : "not owned by a public authority", "slug" : "/brownfield-land/local-authority-eng/HAO/1019", "entity" : 505250, "entry-date" : "2020-07-31"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"planning-permission-status": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "site": {"type": "string"}, "site-address": {"type": "string"}, "organisation": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "start-date": {"type": "string"}, "hectares": {"type": "string"}, "point": {"type": "string"}, "name": {"type": "string"}, "site-plan-url": {"type": "string"}, "notes": {"type": "string"}, "ownership-status": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["planning-permission-status", "minimum-net-dwellings", "site", "site-address", "organisation", "maximum-net-dwellings", "start-date", "hectares", "point", "name", "site-plan-url", "notes", "ownership-status", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"compression": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "express-cache-response-directive": {"type": "string"}, "iota.lib.js": {"type": "string"}, "mongodb": {"type": "string"}, "redis": {"type": "string"}, "ws": {"type": "string"}, "zeromq": {"type": "string"}}, "required": ["compression", "dotenv", "express", "express-cache-response-directive", "iota.lib.js", "mongodb", "redis", "ws", "zeromq"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "pixiota-server", "version" : "1.0.0", "description" : "Server for PixIOTA", "main" : "index.js", "dependencies" : {"compression" : "^1.7.2", "dotenv" : "^6.0.0", "express" : "^4.16.3", "express-cache-response-directive" : "^1.1.0", "iota.lib.js" : "^0.4.7", "mongodb" : "^3.0.10", "redis" : "^2.8.0", "ws" : "^5.2.0", "zeromq" : "^4.6.0"}, "devDependencies" : {}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "", "license" : "ISC"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"compression": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "express-cache-response-directive": {"type": "string"}, "iota.lib.js": {"type": "string"}, "mongodb": {"type": "string"}, "redis": {"type": "string"}, "ws": {"type": "string"}, "zeromq": {"type": "string"}}, "required": ["compression", "dotenv", "express", "express-cache-response-directive", "iota.lib.js", "mongodb", "redis", "ws", "zeromq"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01020783": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01020783"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Topology", "objects" : {"E01020783" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00105453", "LAD11CD" : "E06000047"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00105455", "LAD11CD" : "E06000047"}, "arcs" : [[4, 5, 6]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00105461", "LAD11CD" : "E06000047"}, "arcs" : [[7, 8, -5, 9, -2]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00105463", "LAD11CD" : "E06000047"}, "arcs" : [[-1, 10, -8]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00105467", "LAD11CD" : "E06000047"}, "arcs" : [[-7, 11, -3, -10]]}]}}, "arcs" : [[[4315, 4212], [285, -128]], [[4600, 4084], [-78, -537], [2205, -992]], [[6727, 2555], [237, -2065]], [[6964, 490], [-3707, -131], [-2896, -350], [-75, -9], [87, 2147], [-373, 1763], [1383, -131], [169, 511], [230, -554], [2358, -1009], [-47, 1580], [222, -95]], [[6792, 3073], [-873, 398], [282, 1726], [570, -233], [703, 3520]], [[7474, 8484], [761, -1663]], [[8235, 6821], [-336, -625], [288, -133], [-276, -1631], [-523, 252], [-596, -1611]], [[4600, 4084], [855, -404], [845, 4484]], [[6300, 8164], [333, 1835], [335, -407], [506, -1108]], [[6792, 3073], [-65, -518]], [[4315, 4212], [298, 1722], [255, -22], [-53, 1264], [466, 401], [-232, 642], [377, 771], [637, 374], [237, -1200]], [[8235, 6821], [1345, -2942], [419, 282], [-712, -1419], [-786, 608], [-460, -265], [-211, -1260], [747, -1495], [-1613, 160]]], "transform" : {"scale" : [1.4032797129554933e-06, 4.892622129929718e-07], "translate" : [-1.361615114607128, 54.83859734719651]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01020783": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01020783"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"auth0_domain": {"type": "string"}, "auth0_clientId": {"type": "string"}, "contentful_space": {"type": "string"}, "contentful_accessToken": {"type": "string"}, "lambda_updateParkRatingsUrl": {"type": "string"}}, "required": ["auth0_domain", "auth0_clientId", "contentful_space", "contentful_accessToken", "lambda_updateParkRatingsUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"auth0_domain" : "aztekcoder.auth0.com", "auth0_clientId" : "JyliQSpEsDiinZo6aJKhnsYIlfH5gRSh", "contentful_space" : "ybdzwdfm9wam", "contentful_accessToken" : "xUK7DNhIkRFNcaOZDzkJGZdmOmQOjG3s9Fi7TSH8CYQ", "lambda_updateParkRatingsUrl" : "https://ch2xtsnf45.execute-api.us-east-2.amazonaws.com/Dev/"}
json_instruct
{"type": "object", "properties": {"auth0_domain": {"type": "string"}, "auth0_clientId": {"type": "string"}, "contentful_space": {"type": "string"}, "contentful_accessToken": {"type": "string"}, "lambda_updateParkRatingsUrl": {"type": "string"}}, "required": ["auth0_domain", "auth0_clientId", "contentful_space", "contentful_accessToken", "lambda_updateParkRatingsUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"private": {"type": "boolean"}, "sideEffects": {"type": "boolean"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}}, "required": ["private", "sideEffects", "main", "module", "types"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"private" : true, "sideEffects" : false, "main" : "./HeadphonesOutline.js", "module" : "./HeadphonesOutline.esm.js", "types" : "./HeadphonesOutline.d.ts"}
json_instruct
{"type": "object", "properties": {"private": {"type": "boolean"}, "sideEffects": {"type": "boolean"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}}, "required": ["private", "sideEffects", "main", "module", "types"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"filamentgroup": {"type": "string"}, "wilto": {"type": "string"}, "paulrobertlloyd": {"type": "string"}, "unabridgedsoft": {"type": "string"}, "v8js": {"type": "string"}, "eduardoboucas": {"type": "string"}, "joe_dyer1": {"type": "string"}}, "required": ["filamentgroup", "wilto", "paulrobertlloyd", "unabridgedsoft", "v8js", "eduardoboucas", "joe_dyer1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"filamentgroup" : "filamentgroup.png", "wilto" : "wilto.png", "paulrobertlloyd" : "paulrobertlloyd.png", "unabridgedsoft" : "unabridgedsoft.png", "v8js" : "v8js.png", "eduardoboucas" : "eduardoboucas.png", "joe_dyer1" : "joe_dyer1.png"}
json_instruct
{"type": "object", "properties": {"filamentgroup": {"type": "string"}, "wilto": {"type": "string"}, "paulrobertlloyd": {"type": "string"}, "unabridgedsoft": {"type": "string"}, "v8js": {"type": "string"}, "eduardoboucas": {"type": "string"}, "joe_dyer1": {"type": "string"}}, "required": ["filamentgroup", "wilto", "paulrobertlloyd", "unabridgedsoft", "v8js", "eduardoboucas", "joe_dyer1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "email", "homepage", "role"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "cakephp/cakephp": {"type": "string"}}, "required": ["php", "cakephp/cakephp"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"JSONRPCServer\\": {"type": "string"}}, "required": ["JSONRPCServer\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "keywords", "homepage", "license", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "hecsedli/cakephpjsonrpcserver", "description" : "CakePHP 3.x JSON-RPC server", "type" : "cakephp-plugin", "keywords" : ["cakephp", "json", "plugin"], "homepage" : "https://github.com/hecsedli/cakephpjsonrpcserver", "license" : "MIT", "authors" : [{"name" : "Csipke Ferenc", "email" : "csipke.ferenc@gmail.com", "homepage" : "", "role" : "Author"}, {"name" : "James Watts", "email" : "james.watts@cakephp.org", "homepage" : "http://my.cakephp.org/user/jameswatts", "role" : "Author"}], "require" : {"php" : ">=5.6.0", "cakephp/cakephp" : "~3.6"}, "require-dev" : {"phpunit/phpunit" : "~4.1"}, "autoload" : {"psr-4" : {"JSONRPCServer\\" : "src"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "email", "homepage", "role"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "cakephp/cakephp": {"type": "string"}}, "required": ["php", "cakephp/cakephp"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"JSONRPCServer\\": {"type": "string"}}, "required": ["JSONRPCServer\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "keywords", "homepage", "license", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"population": {"type": "string"}, "official_name": {"type": "string"}}, "required": ["population", "official_name"]}}, "required": ["localname", "official_name", "alltags"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}, "population": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}}, "required": ["name", "iso2", "admin_level", "osm_id", "countrylevel_id", "osm_data", "center_lat", "center_lon", "area_m2", "timezone", "population", "wikidata_id", "wikipedia_id"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[12.449, 43.966], [12.507, 43.992], [12.507, 43.965], [12.465, 43.958], [12.449, 43.966]]]}, "properties" : {"name" : "Serravalle", "iso2" : "SM-09", "admin_level" : 8, "osm_id" : 3012946, "countrylevel_id" : "iso2:SM-09", "osm_data" : {"localname" : "Serravalle", "official_name" : "Castello di Serravalle", "alltags" : {"population" : "10601", "official_name" : "Castello di Serravalle"}}, "center_lat" : 43.97, "center_lon" : 12.49, "area_m2" : 10139995, "timezone" : "Europe/San_Marino", "population" : 10591, "wikidata_id" : "Q185412", "wikipedia_id" : "it:Serravalle (San Marino)"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"population": {"type": "string"}, "official_name": {"type": "string"}}, "required": ["population", "official_name"]}}, "required": ["localname", "official_name", "alltags"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}, "population": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}}, "required": ["name", "iso2", "admin_level", "osm_id", "countrylevel_id", "osm_data", "center_lat", "center_lon", "area_m2", "timezone", "population", "wikidata_id", "wikipedia_id"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "673ef767b5a2c0f91c9ff1ec56cb451478afdef1"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"webpackCompilationHash": {"type": "string"}}, "required": ["webpackCompilationHash"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"webpackCompilationHash" : "57d902637cd03f6d6914"}
json_instruct
{"type": "object", "properties": {"webpackCompilationHash": {"type": "string"}}, "required": ["webpackCompilationHash"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["130402101001", "\u738b\u5bb6\u6e7e\u793e\u533a\u5c45\u59d4\u4f1a", "220", "0"], ["130402101002", "\u6cb3\u8fb9\u5f20\u5e84\u793e\u533a\u5c45\u59d4\u4f1a", "112", "0"], ["130402101003", "\u90ed\u5bb6\u5e84\u793e\u533a\u5c45\u59d4\u4f1a", "220", "0"], ["130402101004", "\u5de6\u897f\u793e\u533a\u5c45\u59d4\u4f1a", "112", "0"], ["130402101201", "\u5317\u5f20\u5e84\u6751\u59d4\u4f1a", "111", "0"], ["130402101204", "\u5c0f\u5f20\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130402101205", "\u4e1c\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130402101208", "\u897f\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130402101209", "\u4e8c\u5341\u91cc\u94fa\u6751\u59d4\u4f1a", "220", "0"], ["130402101210", "\u5927\u9690\u8c79\u6751\u59d4\u4f1a", "220", "0"], ["130402101211", "\u5c0f\u9690\u8c79\u6751\u59d4\u4f1a", "220", "0"], ["130402101212", "\u8463\u4e8c\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130402101213", "\u5317\u7f8a\u4e95\u6751\u59d4\u4f1a", "220", "0"], ["130402101214", "\u5357\u7f8a\u4e95\u6751\u59d4\u4f1a", "220", "0"], ["130402101215", "\u897f\u5b59\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130402101216", "\u90d1\u5c97\u6751\u59d4\u4f1a", "220", "0"], ["130402101217", "\u9648\u5c97\u6751\u59d4\u4f1a", "220", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "qualified_name": {"type": "string"}, "examine": {"type": "string"}, "members": {"type": "boolean"}, "release_date": {"type": "string"}, "quest": {"type": "boolean"}, "weight": {"type": "number"}, "value": {"type": "integer"}, "alchemy": {"type": "object", "properties": {"high": {"type": "integer"}, "low": {"type": "integer"}}, "required": ["high", "low"]}, "tradeable": {"type": "boolean"}, "stackable": {"type": "boolean"}, "noteable": {"type": "boolean"}, "equipable": {"type": "boolean"}, "tradeable_ge": {"type": "boolean"}, "buy_limit": {"type": "integer"}, "icon": {"type": "string"}, "wiki_url": {"type": "string"}}, "required": ["id", "name", "qualified_name", "examine", "members", "release_date", "quest", "weight", "value", "alchemy", "tradeable", "stackable", "noteable", "equipable", "tradeable_ge", "buy_limit", "icon", "wiki_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 21257, "name" : "Slayer's enchantment", "qualified_name" : "Slayer's enchantment", "examine" : "The parchment contains a spell invented by Slayer Masters in ancient times.", "members" : true, "release_date" : "2017-04-13", "quest" : false, "weight" : 0.0, "value" : 1200, "alchemy" : {"high" : 720, "low" : 480}, "tradeable" : true, "stackable" : true, "noteable" : false, "equipable" : false, "tradeable_ge" : true, "buy_limit" : 500, "icon" : "iVBORw0KGgoAAAANSUhEUgAAACQAAAAgCAYAAAB6kdqOAAAB2klEQVR4Xu3V30oCQRQGcH0TH6EnClSyUAsiqdQKbVO3NukPmwQV3gXVdc837bfbN86c1kJ2TC/2wIe0EvPrnDNboZBXXnmtdRWVnZVVAggHDSsrQCWQe6+eGny3USotGzUbyW1/W0di3qZT9XAduOyS3Ick/W5Deae7atjbU+NezUIhgCCvz08xyNHoiiroVZV/VlGDbll57U3Va+/EGBOET6AIwydBL2EYgxyhonFcRAec1zQMKGLSQEhwUrW6I0EZ92mGQnS3BAgBhCBgzO5IlDxlwUpQslvAmCB0Dhi/U/kB4pI7ehVEV3pUj2N2CzCiPj/e9ZiIQQBk53gLAZqMmm5RCBCEsEMIOoTng+NyHPyMSJiTfQovGxpFYOAd6NGZY0OIIgzfme+sjF1CFdUkaMZ5HCejQm78Qw0jKg3GLpnvroyopEuICbu7OlLjYSvGmZ0iiiB8j2f8QwhzhjJh6JLf37duHl8DJsgM0Rn3yQYxHBsO4u3jDWTkTpkLn7lLXGpg9AiisQGFTvEZb56JkSHMGQqR4+D4AML/QImYlwwoG8SgS+wU9wmgTmvr+7Dfg13KtE98UUoUQWmH/RV5yoKVjpqHkL+9pJrf+n9E2CU7sTJIXutQX3Zfm2g8NdRbAAAAAElFTkSuQmCC", "wiki_url" : "https://oldschool.runescape.wiki/w/Slayer's_enchantment"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "qualified_name": {"type": "string"}, "examine": {"type": "string"}, "members": {"type": "boolean"}, "release_date": {"type": "string"}, "quest": {"type": "boolean"}, "weight": {"type": "number"}, "value": {"type": "integer"}, "alchemy": {"type": "object", "properties": {"high": {"type": "integer"}, "low": {"type": "integer"}}, "required": ["high", "low"]}, "tradeable": {"type": "boolean"}, "stackable": {"type": "boolean"}, "noteable": {"type": "boolean"}, "equipable": {"type": "boolean"}, "tradeable_ge": {"type": "boolean"}, "buy_limit": {"type": "integer"}, "icon": {"type": "string"}, "wiki_url": {"type": "string"}}, "required": ["id", "name", "qualified_name", "examine", "members", "release_date", "quest", "weight", "value", "alchemy", "tradeable", "stackable", "noteable", "equipable", "tradeable_ge", "buy_limit", "icon", "wiki_url"], "$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": "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" : "2001", "provinceId" : "33", "regencyId" : "02", "districtId" : "16", "name" : "Cikembulan"}, {"id" : "2002", "provinceId" : "33", "regencyId" : "02", "districtId" : "16", "name" : "Candinegara"}, {"id" : "2003", "provinceId" : "33", "regencyId" : "02", "districtId" : "16", "name" : "Karangklesem"}, {"id" : "2004", "provinceId" : "33", "regencyId" : "02", "districtId" : "16", "name" : "Cikawung"}, {"id" : "2005", "provinceId" : "33", "regencyId" : "02", "districtId" : "16", "name" : "Cibangkong"}, {"id" : "2006", "provinceId" : "33", "regencyId" : "02", "districtId" : "16", "name" : "Petahunan"}, {"id" : "2007", "provinceId" : "33", "regencyId" : "02", "districtId" : "16", "name" : "Semedo"}, {"id" : "2008", "provinceId" : "33", "regencyId" : "02", "districtId" : "16", "name" : "Banjaranyar"}, {"id" : "2009", "provinceId" : "33", "regencyId" : "02", "districtId" : "16", "name" : "Pasiraman Lor"}, {"id" : "2010", "provinceId" : "33", "regencyId" : "02", "districtId" : "16", "name" : "Pasiraman Kidul"}, {"id" : "2011", "provinceId" : "33", "regencyId" : "02", "districtId" : "16", "name" : "Tumiyang"}, {"id" : "2012", "provinceId" : "33", "regencyId" : "02", "districtId" : "16", "name" : "Glempang"}, {"id" : "2013", "provinceId" : "33", "regencyId" : "02", "districtId" : "16", "name" : "Pekuncen"}, {"id" : "2014", "provinceId" : "33", "regencyId" : "02", "districtId" : "16", "name" : "Karangkemiri"}, {"id" : "2015", "provinceId" : "33", "regencyId" : "02", "districtId" : "16", "name" : "Kranggan"}, {"id" : "2016", "provinceId" : "33", "regencyId" : "02", "districtId" : "16", "name" : "Krajan"}]
json_instruct
{"type": "array", "items": {"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 an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "title_en": {"type": "null"}, "title_jp": {"type": "string"}, "picture": {"type": "string"}, "synopsis": {"type": "string"}, "type": {"type": "string"}, "episodes": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "released": {"type": "string"}, "characters": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "title_en", "title_jp", "picture", "synopsis", "type", "episodes", "tags", "released", "characters"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 2313, "title" : "Muumindani no Suisei", "title_en" : null, "title_jp" : "\u30e0\u30fc\u30df\u30f3\u8c37\u306e\u5f57\u661f", "picture" : "http://cdn.myanimelist.net/images/anime/12/3984.jpg", "synopsis" : "Unusual things have been happening in Moominvalley. Moomin, Sniff and Mee leave for the Observatory on the Lonely Mountains to confirm the Muskrat's words: a comet is about to hit Moominvalley and destroy everything. On the way they meet Snufkin, the Hemulen and the Snorks and experience many adventures. ", "type" : "Movie", "episodes" : 1, "tags" : ["adventure", "comedy", "fantasy", "kids"], "released" : "1992-08-08T03:00:00.000Z", "characters" : [16940, 16939, 12905, 16937, 12904, 16938, 9076, 127553, 71769, 51503, 51151, 28616, 51511, 49339]}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "title_en": {"type": "null"}, "title_jp": {"type": "string"}, "picture": {"type": "string"}, "synopsis": {"type": "string"}, "type": {"type": "string"}, "episodes": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "released": {"type": "string"}, "characters": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "title_en", "title_jp", "picture", "synopsis", "type", "episodes", "tags", "released", "characters"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"title": {"type": "string"}, "genre": {"type": "string"}, "creators": {"type": "array", "items": {"type": "string"}}, "cast": {"type": "array", "items": {"type": "string"}}, "country_of_origin": {"type": "string"}, "seasons": {"type": "integer"}, "episodes": {"type": "integer"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}}, "required": ["title", "genre", "creators", "cast", "country_of_origin", "seasons", "episodes", "start_date", "end_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Young Blades", "genre" : "Adventure", "creators" : ["Dan Angel", "Billy Brown"], "cast" : ["Tobias Mehler", "Mark Hildreth", "Zak Santiago", "Robert Sheehan", "Bruce Boxleitner"], "country_of_origin" : "Canada", "seasons" : 1, "episodes" : 13, "start_date" : "Thu Jun 02 00:00:00 EDT 2005", "end_date" : ""}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "genre": {"type": "string"}, "creators": {"type": "array", "items": {"type": "string"}}, "cast": {"type": "array", "items": {"type": "string"}}, "country_of_origin": {"type": "string"}, "seasons": {"type": "integer"}, "episodes": {"type": "integer"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}}, "required": ["title", "genre", "creators", "cast", "country_of_origin", "seasons", "episodes", "start_date", "end_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"address": {"type": "string"}, "country_code": {"type": "string"}, "iata": {"type": "string"}, "icao": {"type": "string"}, "name": {"type": "string"}}, "required": ["address", "country_code", "iata", "icao", "name"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[-85.438095, 10.617249], [-85.440842, 10.617249], [-85.454147, 10.617333], [-85.466423, 10.615224], [-85.471397, 10.613874], [-85.48038856666, 10.6155857904031], [-85.482216, 10.615224], [-85.512428, 10.602907], [-85.511742, 10.611344], [-85.495262, 10.621129], [-85.492859, 10.678995], [-85.462646, 10.698731], [-85.427628, 10.714418], [-85.409088, 10.717791], [-85.385742, 10.749161], [-85.377159, 10.756666], [-85.38282, 10.745367], [-85.386772, 10.737356], [-85.388489, 10.695695], [-85.396385, 10.654112], [-85.388489, 10.595483], [-85.415955, 10.582996], [-85.438095, 10.617249]]]]}, "properties" : {"address" : "Tomas Guardia International Airport, Liberia, Guanacaste, Costa Rica (LIR)", "country_code" : "CR", "iata" : "LIR", "icao" : "MRLB", "name" : "Liberia Airport"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"address": {"type": "string"}, "country_code": {"type": "string"}, "iata": {"type": "string"}, "icao": {"type": "string"}, "name": {"type": "string"}}, "required": ["address", "country_code", "iata", "icao", "name"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["500117120002", "\u91d1\u5b50\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["500117120003", "\u56ed\u51fc\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["500117120004", "\u4f1a\u9f99\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "123", "0"], ["500117120217", "\u7389\u73e0\u6751\u59d4\u4f1a", "220", "0"], ["500117120218", "\u732b\u5ca9\u6751\u59d4\u4f1a", "220", "0"], ["500117120219", "\u51e4\u5bfa\u6751\u59d4\u4f1a", "220", "0"], ["500117120220", "\u957f\u5b89\u6751\u59d4\u4f1a", "220", "0"], ["500117120221", "\u6797\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["500117120224", "\u5c0f\u6ce5\u6751\u59d4\u4f1a", "220", "0"], ["500117120228", "\u5927\u6cb9\u6751\u59d4\u4f1a", "122", "0"], ["500117120229", "\u9676\u6e7e\u6751\u59d4\u4f1a", "220", "0"], ["500117120230", "\u5927\u67f1\u6751\u59d4\u4f1a", "122", "0"], ["500117120232", "\u897f\u6e38\u6751\u59d4\u4f1a", "220", "0"], ["500117120233", "\u6e56\u5858\u6751\u59d4\u4f1a", "220", "0"], ["500117120234", "\u706b\u77e2\u6751\u59d4\u4f1a", "220", "0"], ["500117120235", "\u7c73\u53e3\u6751\u59d4\u4f1a", "220", "0"], ["500117120236", "\u5b66\u5802\u6751\u59d4\u4f1a", "122", "0"], ["500117120237", "\u7a7a\u9876\u6751\u59d4\u4f1a", "122", "0"], ["500117120238", "\u77f3\u7905\u6751\u59d4\u4f1a", "220", "0"], ["500117120239", "\u5e7f\u8d24\u6751\u59d4\u4f1a", "220", "0"], ["500117120240", "\u90ed\u5830\u6751\u59d4\u4f1a", "220", "0"], ["500117120241", "\u67a3\u5cf0\u6751\u59d4\u4f1a", "220", "0"], ["500117120242", "\u68a8\u5b50\u6751\u59d4\u4f1a", "220", "0"], ["500117120243", "\u9ad8\u77f3\u6751\u59d4\u4f1a", "122", "0"], ["500117120244", "\u7070\u575d\u6751\u59d4\u4f1a", "122", "0"], ["500117120245", "\u4e09\u5143\u6751\u59d4\u4f1a", "220", "0"], ["500117120246", "\u9f99\u6bbf\u6751\u59d4\u4f1a", "220", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"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" : 57325, "cartId" : "5f8b28ff-6616-47b8-9b9e-3dd17de6d36c", "preferredProducts" : [4218, 4389, 4820, 2852, 2228], "productReviews" : [{"productId" : 4186, "reviewText" : "My co-worker Nile has one of these. He says it looks crooked.", "reviewDate" : "2017-09-07T22:18:40.4282469+03:00"}, {"productId" : 3975, "reviewText" : "heard about this on smooth jazz radio, decided to give it a try.", "reviewDate" : "2017-08-20T02:36:59.4949909+03:00"}, {"productId" : 4477, "reviewText" : "I saw one of these in Libya and I bought one.", "reviewDate" : "2020-04-23T13:05:04.9781517+03:00"}, {"productId" : 1100, "reviewText" : "i use it daily when i'm in my outhouse.", "reviewDate" : "2019-06-23T02:09:32.6225775+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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "source": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"messages": {"type": "object", "properties": {"": {"type": "object", "properties": {"domain": {"type": "string"}, "lang": {"type": "string"}, "plural-forms": {"type": "string"}}, "required": ["domain", "lang", "plural-forms"]}, "Attachment Page": {"type": "array", "items": {"type": "string"}}, "Media File": {"type": "array", "items": {"type": "string"}}, "None": {"type": "array", "items": {"type": "string"}}, "Gallery Settings": {"type": "array", "items": {"type": "string"}}, "Columns": {"type": "array", "items": {"type": "string"}}, "Crop Images": {"type": "array", "items": {"type": "string"}}, "Caption": {"type": "array", "items": {"type": "string"}}, "Link To": {"type": "array", "items": {"type": "string"}}}, "required": ["", "Attachment Page", "Media File", "None", "Gallery Settings", "Columns", "Crop Images", "Caption", "Link To"]}}, "required": ["messages"]}}, "required": ["translation-revision-date", "generator", "source", "domain", "locale_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"translation-revision-date" : "2021-11-03 14:01+0000", "generator" : "WP-CLI/2.4.0", "source" : "rml_gutenberg.pro.js", "domain" : "messages", "locale_data" : {"messages" : {"" : {"domain" : "messages", "lang" : "pl_PL", "plural-forms" : "nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"}, "Attachment Page" : ["Strona za\u0142\u0105cznika"], "Media File" : ["Plik multimedialny"], "None" : ["Brak"], "Gallery Settings" : ["Ustawienia galerii"], "Columns" : ["Kolumny"], "Crop Images" : ["Kadrowanie Obraz\u00f3w"], "Caption" : ["Nag\u0142owek"], "Link To" : ["Odno\u015bnik do"]}}}
json_instruct
{"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "source": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"messages": {"type": "object", "properties": {"": {"type": "object", "properties": {"domain": {"type": "string"}, "lang": {"type": "string"}, "plural-forms": {"type": "string"}}, "required": ["domain", "lang", "plural-forms"]}, "Attachment Page": {"type": "array", "items": {"type": "string"}}, "Media File": {"type": "array", "items": {"type": "string"}}, "None": {"type": "array", "items": {"type": "string"}}, "Gallery Settings": {"type": "array", "items": {"type": "string"}}, "Columns": {"type": "array", "items": {"type": "string"}}, "Crop Images": {"type": "array", "items": {"type": "string"}}, "Caption": {"type": "array", "items": {"type": "string"}}, "Link To": {"type": "array", "items": {"type": "string"}}}, "required": ["", "Attachment Page", "Media File", "None", "Gallery Settings", "Columns", "Crop Images", "Caption", "Link To"]}}, "required": ["messages"]}}, "required": ["translation-revision-date", "generator", "source", "domain", "locale_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "8659606", "name" : "Brownswood Drive", "nodes" : [{"type" : "node", "id" : 10395959, "lat" : 52.0814678, "lon" : -0.8925058}, {"type" : "node", "id" : 61799570, "lat" : 52.0799546, "lon" : -0.8937268}, {"type" : "node", "id" : 61799588, "lat" : 52.0809357, "lon" : -0.8927934}, {"type" : "node", "id" : 62162855, "lat" : 52.0807252, "lon" : -0.8929709}, {"type" : "node", "id" : 62162862, "lat" : 52.0806112, "lon" : -0.8930748}, {"type" : "node", "id" : 64743312, "lat" : 52.0808085, "lon" : -0.8928974}, {"type" : "node", "id" : 2015479852, "lat" : 52.080353, "lon" : -0.893301}], "volunteer_postcode" : "MK19 6GN", "closest_distance" : 3066}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$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": {"start": {"type": "string"}, "test": {"type": "string"}, "dev": {"type": "string"}}, "required": ["start", "test", "dev"]}, "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": {"args": {"type": "string"}, "chalk": {"type": "string"}, "convert-csv-to-json": {"type": "string"}, "csvtojson": {"type": "string"}, "electron": {"type": "string"}, "electron-log": {"type": "string"}, "express": {"type": "string"}, "express-fileupload": {"type": "string"}, "morgan": {"type": "string"}, "pug": {"type": "string"}}, "required": ["args", "chalk", "convert-csv-to-json", "csvtojson", "electron", "electron-log", "express", "express-fileupload", "morgan", "pug"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "dispatcher-simulator", "version" : "1.0.0", "description" : "A dispatcher for the", "main" : "main.js", "scripts" : {"start" : "nodemon ./src/server.js", "test" : "echo \"Error: no test specified\" && exit 1", "dev" : "nodemon ./index.js --config nodemon.json"}, "repository" : {"type" : "git", "url" : "git+https://github.com/gdaguilarc/Dispatcher-Simulator.git"}, "author" : "David Aguilar", "license" : "Apache-2.0", "bugs" : {"url" : "https://github.com/gdaguilarc/Dispatcher-Simulator/issues"}, "homepage" : "https://github.com/gdaguilarc/Dispatcher-Simulator#readme", "dependencies" : {"args" : "^5.0.1", "chalk" : "^2.4.2", "convert-csv-to-json" : "0.0.14", "csvtojson" : "^2.0.8", "electron" : "^7.2.4", "electron-log" : "^3.0.1", "express" : "^4.16.4", "express-fileupload" : "^1.1.3-alpha.1", "morgan" : "^1.9.1", "pug" : "^2.0.3"}, "devDependencies" : {"nodemon" : "^1.18.10"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "dev": {"type": "string"}}, "required": ["start", "test", "dev"]}, "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": {"args": {"type": "string"}, "chalk": {"type": "string"}, "convert-csv-to-json": {"type": "string"}, "csvtojson": {"type": "string"}, "electron": {"type": "string"}, "electron-log": {"type": "string"}, "express": {"type": "string"}, "express-fileupload": {"type": "string"}, "morgan": {"type": "string"}, "pug": {"type": "string"}}, "required": ["args", "chalk", "convert-csv-to-json", "csvtojson", "electron", "electron-log", "express", "express-fileupload", "morgan", "pug"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"themes/default.css": {"type": "string"}, "themes/default.min.css": {"type": "string"}, "instantsearch.js": {"type": "string"}, "instantsearch.min.css": {"type": "string"}, "instantsearch.css": {"type": "string"}, "instantsearch.module.js": {"type": "string"}, "instantsearch.min.js": {"type": "string"}}, "required": ["themes/default.css", "themes/default.min.css", "instantsearch.js", "instantsearch.min.css", "instantsearch.css", "instantsearch.module.js", "instantsearch.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"themes/default.css" : "sha256-aNoMZKS+07SnAoaotBFQO96nvY25CReP+/Z/mbxMbmg=", "themes/default.min.css" : "sha256-ci7aH8Adlw5+zAR2vfagTfeWOKrZUjUKhgt0HPvnfvI=", "instantsearch.js" : "sha256-igiHBvWZeMbzF4q7nbjfE2HyguOVpdtJZzlkP/EFbqU=", "instantsearch.min.css" : "sha256-qr9nfpEeyxLC+cuWIytz4pn4ldywmEKZ78BWIfmzmKc=", "instantsearch.css" : "sha256-ylzSHE9EdTams0KW6IRw26a5wU9naOIaga/+W4vq+LE=", "instantsearch.module.js" : "sha256-xJ9kq23E5JDCYcDmkYXVbgAgKB3NRFJYqA2CbIR/qPk=", "instantsearch.min.js" : "sha256-n/x3v/KmwlNQcCOKS3L1nJbINBFmlFgn5lR6ANiQ/3U="}
json_instruct
{"type": "object", "properties": {"themes/default.css": {"type": "string"}, "themes/default.min.css": {"type": "string"}, "instantsearch.js": {"type": "string"}, "instantsearch.min.css": {"type": "string"}, "instantsearch.css": {"type": "string"}, "instantsearch.module.js": {"type": "string"}, "instantsearch.min.js": {"type": "string"}}, "required": ["themes/default.css", "themes/default.min.css", "instantsearch.js", "instantsearch.min.css", "instantsearch.css", "instantsearch.module.js", "instantsearch.min.js"], "$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": "integer"}, "firstname": {"type": "string"}, "lastname": {"type": "string"}}, "required": ["id", "firstname", "lastname"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : 123, "firstname" : "John", "lastname" : "Doe"}, {"id" : 23, "firstname" : "Mary", "lastname" : "Peters"}, {"id" : 255, "firstname" : "Francis", "lastname" : "Michaels"}, {"id" : 12, "firstname" : "Alex", "lastname" : "Jones"}, {"id" : 99, "firstname" : "Stacy", "lastname" : "Smith"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "firstname": {"type": "string"}, "lastname": {"type": "string"}}, "required": ["id", "firstname", "lastname"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "atbyw:block/statues/puffer_fish_statue_1"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["In medium bowl, whisk together soy sauce, sugar, rice wine, and five-spice powder.", "Transfer fish to 2 rimmed plates. Drizzle each piece with 1 tablespoon soy sauce mixture and scatter with julienned ginger. (Set remaining sauce aside for finishing dish.) Cover and refrigerate 15 minutes.", "Fit large saucepan with flat steamer basket, fill with 1 inch water, and bring to boil over high heat. Reduce heat to low and transfer 1 plate to steamer basket. Cover and steam 4 minutes. Without lifting lid, turn off flame and allow residual heat to finish cooking until fish is just cooked through, about 1 minute more. Carefully remove plate (keep warm in oven). Return water in steamer to boil, transfer second plate to steamer, and steam remaining fish in same manner.", "While fish is steaming, in small saucepan over moderate heat, heat vegetable oil. Keep warm.", "Divide fish among 4 plates and top with julienned scallions. Pour splash of hot oil over each dish. Serve immediately with bok choy."], "ingredients" : ["1/2 cup light soy sauce", "2 tablespoons sugar", "1/2 cup Shaohsing rice wine", "1/2 teaspoon five-spice powder", "2 pounds sole fillet, cut into 8 pieces", "1 (1-inch) piece fresh ginger, finely julienned", "6 tablespoons vegetable oil", "8 scallions (white and green parts), cut crosswise into 2-inch lengths, then thinly julienned lengthwise", "Stir-Fried Baby Bok Choy"], "language" : "en-US", "source" : "www.epicurious.com", "tags" : ["Wine", "Fish", "Ginger", "Onion", "Marinate", "Steam", "Spice", "Healthy", "Soy Sauce"], "title" : "Steamed Scallion Ginger Fish Fillets with Bok Choy", "url" : "http://www.epicurious.com/recipes/food/views/steamed-scallion-ginger-fish-fillets-with-bok-choy-243067"}
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"version": {"type": "integer"}, "tail": {"type": "string"}, "testing": {"type": "boolean"}, "id": {"type": "string"}, "characters": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["version", "tail", "testing", "id", "characters"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 0, "tail" : "N6870V", "testing" : true, "id" : "a3784c1b-51ac-4f11-964d-3374a50a4a10", "characters" : [[800, 489], [813, 483], [844, 477], [869, 461], [881, 471], [908, 474]]}
json_instruct
{"type": "object", "properties": {"version": {"type": "integer"}, "tail": {"type": "string"}, "testing": {"type": "boolean"}, "id": {"type": "string"}, "characters": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["version", "tail", "testing", "id", "characters"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "yearf": {"type": "number"}, "rscore": {"type": "number"}}, "required": ["title", "yearf", "rscore"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"title" : "Best Of Intentions", "yearf" : 2000.7187214612, "rscore" : 0.4069641987}, {"title" : "Love Of A Woman", "yearf" : 2001.7910958904, "rscore" : 0.3241156541}, {"title" : "It's A Great Day To Be Alive", "yearf" : 2001.2582191781, "rscore" : 0.8943482124}, {"title" : "Modern Day Bonnie And Clyde", "yearf" : 2002.3321917808, "rscore" : 0.5438090129}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "yearf": {"type": "number"}, "rscore": {"type": "number"}}, "required": ["title", "yearf", "rscore"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Fouch\u00e8res", "circ" : "3\u00e8me circonscription", "dpt" : "Yonne", "inscrits" : 347, "abs" : 165, "votants" : 182, "blancs" : 7, "nuls" : 1, "exp" : 174, "res" : [{"nuance" : "REM", "nom" : "Mme Mich\u00e8le CROUZET", "voix" : 115}, {"nuance" : "FN", "nom" : "M. Julien ODOUL", "voix" : 59}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "watch": {"type": "string"}}, "required": ["build", "watch"]}, "devDependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "babel-preset-minify": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "@babel/preset-env", "babel-preset-minify"]}}, "required": ["name", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@andrzejkupczyk/mantis-todolists", "scripts" : {"build" : "babel files/todolists.js -d files --out-file-extension .min.js", "watch" : "npm run build -- --watch"}, "devDependencies" : {"@babel/cli" : "^7.14.8", "@babel/core" : "^7.14.8", "@babel/preset-env" : "^7.14.8", "babel-preset-minify" : "^0.5.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "watch": {"type": "string"}}, "required": ["build", "watch"]}, "devDependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "babel-preset-minify": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "@babel/preset-env", "babel-preset-minify"]}}, "required": ["name", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"version": {"type": "string"}, "summary": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "source-directories": {"type": "array", "items": {"type": "string"}}, "exposed-modules": {"type": "array", "items": {}}, "native-modules": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"deadfoxygrandpa/elm-test": {"type": "string"}, "elm-lang/core": {"type": "string"}, "evancz/elm-effects": {"type": "string"}, "evancz/elm-html": {"type": "string"}, "evancz/elm-http": {"type": "string"}, "evancz/start-app": {"type": "string"}, "evancz/virtual-dom": {"type": "string"}, "laszlopandy/elm-console": {"type": "string"}, "lukewestby/elm-http-extra": {"type": "string"}, "truqu/elm-base64": {"type": "string"}}, "required": ["deadfoxygrandpa/elm-test", "elm-lang/core", "evancz/elm-effects", "evancz/elm-html", "evancz/elm-http", "evancz/start-app", "evancz/virtual-dom", "laszlopandy/elm-console", "lukewestby/elm-http-extra", "truqu/elm-base64"]}, "elm-version": {"type": "string"}}, "required": ["version", "summary", "repository", "license", "source-directories", "exposed-modules", "native-modules", "dependencies", "elm-version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "1.0.0", "summary" : "helpful summary of your project, less than 80 characters", "repository" : "https://github.com/user/project.git", "license" : "BSD3", "source-directories" : ["backend", "lib", "common", "frontend", "lib/from-github/elm-codemirror/src", "lib/from-github/elm-web-api/src"], "exposed-modules" : [], "native-modules" : true, "dependencies" : {"deadfoxygrandpa/elm-test" : "3.1.1 <= v < 4.0.0", "elm-lang/core" : "3.0.0 <= v < 4.0.0", "evancz/elm-effects" : "2.0.1 <= v < 3.0.0", "evancz/elm-html" : "4.0.2 <= v < 5.0.0", "evancz/elm-http" : "3.0.0 <= v < 4.0.0", "evancz/start-app" : "2.0.2 <= v < 3.0.0", "evancz/virtual-dom" : "2.1.0 <= v < 3.0.0", "laszlopandy/elm-console" : "1.1.1 <= v < 2.0.0", "lukewestby/elm-http-extra" : "5.2.0 <= v < 6.0.0", "truqu/elm-base64" : "1.0.3 <= v < 2.0.0"}, "elm-version" : "0.16.0 <= v < 0.17.0"}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "summary": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "source-directories": {"type": "array", "items": {"type": "string"}}, "exposed-modules": {"type": "array", "items": {}}, "native-modules": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"deadfoxygrandpa/elm-test": {"type": "string"}, "elm-lang/core": {"type": "string"}, "evancz/elm-effects": {"type": "string"}, "evancz/elm-html": {"type": "string"}, "evancz/elm-http": {"type": "string"}, "evancz/start-app": {"type": "string"}, "evancz/virtual-dom": {"type": "string"}, "laszlopandy/elm-console": {"type": "string"}, "lukewestby/elm-http-extra": {"type": "string"}, "truqu/elm-base64": {"type": "string"}}, "required": ["deadfoxygrandpa/elm-test", "elm-lang/core", "evancz/elm-effects", "evancz/elm-html", "evancz/elm-http", "evancz/start-app", "evancz/virtual-dom", "laszlopandy/elm-console", "lukewestby/elm-http-extra", "truqu/elm-base64"]}, "elm-version": {"type": "string"}}, "required": ["version", "summary", "repository", "license", "source-directories", "exposed-modules", "native-modules", "dependencies", "elm-version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"location": {"type": "object", "properties": {"name": {"type": "string"}, "region": {"type": "string"}, "country": {"type": "string"}, "lat": {"type": "number"}, "lon": {"type": "number"}, "tz_id": {"type": "string"}, "localtime_epoch": {"type": "integer"}, "localtime": {"type": "string"}}, "required": ["name", "region", "country", "lat", "lon", "tz_id", "localtime_epoch", "localtime"]}, "current": {"type": "object", "properties": {"last_updated_epoch": {"type": "integer"}, "last_updated": {"type": "string"}, "temp_c": {"type": "number"}, "temp_f": {"type": "number"}, "is_day": {"type": "integer"}, "condition": {"type": "object", "properties": {"text": {"type": "string"}, "icon": {"type": "string"}, "code": {"type": "integer"}}, "required": ["text", "icon", "code"]}, "wind_mph": {"type": "number"}, "wind_kph": {"type": "number"}, "wind_degree": {"type": "integer"}, "wind_dir": {"type": "string"}, "pressure_mb": {"type": "number"}, "pressure_in": {"type": "number"}, "precip_mm": {"type": "number"}, "precip_in": {"type": "number"}, "humidity": {"type": "integer"}, "cloud": {"type": "integer"}, "feelslike_c": {"type": "number"}, "feelslike_f": {"type": "number"}, "vis_km": {"type": "number"}, "vis_miles": {"type": "number"}}, "required": ["last_updated_epoch", "last_updated", "temp_c", "temp_f", "is_day", "condition", "wind_mph", "wind_kph", "wind_degree", "wind_dir", "pressure_mb", "pressure_in", "precip_mm", "precip_in", "humidity", "cloud", "feelslike_c", "feelslike_f", "vis_km", "vis_miles"]}}, "required": ["location", "current"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"location" : {"name" : "Moscow", "region" : "Moscow City", "country" : "Russia", "lat" : 55.75, "lon" : 37.62, "tz_id" : "Europe/Moscow", "localtime_epoch" : 1536530453, "localtime" : "2018-09-10 1:00"}, "current" : {"last_updated_epoch" : 1536529520, "last_updated" : "2018-09-10 00:45", "temp_c" : 14.0, "temp_f" : 57.2, "is_day" : 0, "condition" : {"text" : "Clear", "icon" : "//cdn.apixu.com/weather/64x64/night/113.png", "code" : 1000}, "wind_mph" : 6.9, "wind_kph" : 11.2, "wind_degree" : 360, "wind_dir" : "N", "pressure_mb" : 1021.0, "pressure_in" : 30.6, "precip_mm" : 0.0, "precip_in" : 0.0, "humidity" : 88, "cloud" : 0, "feelslike_c" : 13.3, "feelslike_f" : 55.9, "vis_km" : 10.0, "vis_miles" : 6.0}}
json_instruct
{"type": "object", "properties": {"location": {"type": "object", "properties": {"name": {"type": "string"}, "region": {"type": "string"}, "country": {"type": "string"}, "lat": {"type": "number"}, "lon": {"type": "number"}, "tz_id": {"type": "string"}, "localtime_epoch": {"type": "integer"}, "localtime": {"type": "string"}}, "required": ["name", "region", "country", "lat", "lon", "tz_id", "localtime_epoch", "localtime"]}, "current": {"type": "object", "properties": {"last_updated_epoch": {"type": "integer"}, "last_updated": {"type": "string"}, "temp_c": {"type": "number"}, "temp_f": {"type": "number"}, "is_day": {"type": "integer"}, "condition": {"type": "object", "properties": {"text": {"type": "string"}, "icon": {"type": "string"}, "code": {"type": "integer"}}, "required": ["text", "icon", "code"]}, "wind_mph": {"type": "number"}, "wind_kph": {"type": "number"}, "wind_degree": {"type": "integer"}, "wind_dir": {"type": "string"}, "pressure_mb": {"type": "number"}, "pressure_in": {"type": "number"}, "precip_mm": {"type": "number"}, "precip_in": {"type": "number"}, "humidity": {"type": "integer"}, "cloud": {"type": "integer"}, "feelslike_c": {"type": "number"}, "feelslike_f": {"type": "number"}, "vis_km": {"type": "number"}, "vis_miles": {"type": "number"}}, "required": ["last_updated_epoch", "last_updated", "temp_c", "temp_f", "is_day", "condition", "wind_mph", "wind_kph", "wind_degree", "wind_dir", "pressure_mb", "pressure_in", "precip_mm", "precip_in", "humidity", "cloud", "feelslike_c", "feelslike_f", "vis_km", "vis_miles"]}}, "required": ["location", "current"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"forks": {"type": "integer"}, "name": {"type": "string"}, "stars": {"type": "integer"}, "watchers": {"type": "integer"}, "repo_name": {"type": "string"}, "ecosystem_slug": {"type": "string"}, "parent_slug": {"type": "null"}, "path": {"type": "string"}, "slug": {"type": "string"}, "title": {"type": "string"}}, "required": ["forks", "name", "stars", "watchers", "repo_name", "ecosystem_slug", "parent_slug", "path", "slug", "title"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"forks" : 1, "name" : "medicalchain/medicalchain-api-docs", "stars" : 12, "watchers" : 0, "repo_name" : "medicalchain/medicalchain-api-docs", "ecosystem_slug" : "medicalchain", "parent_slug" : null, "path" : "medicalchain", "slug" : "medicalchain", "title" : "MedicalChain"}, {"forks" : 1, "name" : "medicalchain/fhir", "stars" : 0, "watchers" : 0, "repo_name" : "medicalchain/fhir", "ecosystem_slug" : "medicalchain", "parent_slug" : null, "path" : "medicalchain", "slug" : "medicalchain", "title" : "MedicalChain"}, {"forks" : 0, "name" : "medicalchain/AspNetCore.Identity.Mongo", "stars" : 0, "watchers" : 0, "repo_name" : "medicalchain/AspNetCore.Identity.Mongo", "ecosystem_slug" : "medicalchain", "parent_slug" : null, "path" : "medicalchain", "slug" : "medicalchain", "title" : "MedicalChain"}, {"forks" : 0, "name" : "medicalchain/simple-peer", "stars" : 0, "watchers" : 0, "repo_name" : "medicalchain/simple-peer", "ecosystem_slug" : "medicalchain", "parent_slug" : null, "path" : "medicalchain", "slug" : "medicalchain", "title" : "MedicalChain"}, {"forks" : 0, "name" : "medicalchain/Rooms-Prod-Regression", "stars" : 0, "watchers" : 0, "repo_name" : "medicalchain/Rooms-Prod-Regression", "ecosystem_slug" : "medicalchain", "parent_slug" : null, "path" : "medicalchain", "slug" : "medicalchain", "title" : "MedicalChain"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"forks": {"type": "integer"}, "name": {"type": "string"}, "stars": {"type": "integer"}, "watchers": {"type": "integer"}, "repo_name": {"type": "string"}, "ecosystem_slug": {"type": "string"}, "parent_slug": {"type": "null"}, "path": {"type": "string"}, "slug": {"type": "string"}, "title": {"type": "string"}}, "required": ["forks", "name", "stars", "watchers", "repo_name", "ecosystem_slug", "parent_slug", "path", "slug", "title"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"description": {"type": "string"}, "cc": {"type": "array", "items": {"type": "string"}}, "reviewers": {"type": "array", "items": {}}, "messages": {"type": "array", "items": {"type": "object", "properties": {"sender": {"type": "string"}, "recipients": {"type": "array", "items": {"type": "string"}}, "text": {"type": "string"}, "disapproval": {"type": "boolean"}, "date": {"type": "string"}, "approval": {"type": "boolean"}}, "required": ["sender", "recipients", "text", "disapproval", "date", "approval"]}}, "owner_email": {"type": "string"}, "private": {"type": "boolean"}, "base_url": {"type": "string"}, "owner": {"type": "string"}, "subject": {"type": "string"}, "created": {"type": "string"}, "patchsets": {"type": "array", "items": {"type": "integer"}}, "modified": {"type": "string"}, "closed": {"type": "boolean"}, "issue": {"type": "integer"}}, "required": ["description", "cc", "reviewers", "messages", "owner_email", "private", "base_url", "owner", "subject", "created", "patchsets", "modified", "closed", "issue"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "net/http/httptest: fix incorrectly-named ResponseRecorder example", "cc" : ["golang-dev@googlegroups.com", "minux.ma@gmail.com", "r@golang.org"], "reviewers" : [], "messages" : [{"sender" : "adg@golang.org", "recipients" : ["adg@golang.org", "golang-dev@googlegroups.com", "reply@codereview-hr.appspotmail.com"], "text" : "Hello golang-dev@googlegroups.com,\n\nI'd like you to review this change to\nhttps://code.google.com/p/go", "disapproval" : false, "date" : "2013-04-29 09:41:39.119500", "approval" : false}, {"sender" : "minux.ma@gmail.com", "recipients" : ["adg@golang.org", "golang-dev@googlegroups.com", "minux.ma@gmail.com", "reply@codereview-hr.appspotmail.com"], "text" : "LGTM.", "disapproval" : false, "date" : "2013-04-29 10:50:45.156570", "approval" : true}, {"sender" : "r@golang.org", "recipients" : ["reply@codereview-hr.appspotmail.com"], "text" : "LGTM\r\n", "disapproval" : false, "date" : "2013-04-29 15:03:16.822770", "approval" : true}, {"sender" : "adg@golang.org", "recipients" : ["adg@golang.org", "golang-dev@googlegroups.com", "minux.ma@gmail.com", "r@golang.org", "reply@codereview-hr.appspotmail.com"], "text" : "*** Submitted as https://code.google.com/p/go/source/detail?r=e357a18564cd ***\n\nnet/http/httptest: fix incorrectly-named ResponseRecorder example\n\nR=golang-dev, minux.ma, r\nCC=golang-dev\nhttps://codereview.appspot.com/8545047", "disapproval" : false, "date" : "2013-04-29 15:35:09.927870", "approval" : false}], "owner_email" : "adg@golang.org", "private" : false, "base_url" : "", "owner" : "adg", "subject" : "code review 8545047: net/http/httptest: fix incorrectly-named ResponseRecord...", "created" : "2013-04-29 09:41:35.276130", "patchsets" : [1, 5001], "modified" : "2013-04-29 15:35:12.245030", "closed" : true, "issue" : 8545047}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "cc": {"type": "array", "items": {"type": "string"}}, "reviewers": {"type": "array", "items": {}}, "messages": {"type": "array", "items": {"type": "object", "properties": {"sender": {"type": "string"}, "recipients": {"type": "array", "items": {"type": "string"}}, "text": {"type": "string"}, "disapproval": {"type": "boolean"}, "date": {"type": "string"}, "approval": {"type": "boolean"}}, "required": ["sender", "recipients", "text", "disapproval", "date", "approval"]}}, "owner_email": {"type": "string"}, "private": {"type": "boolean"}, "base_url": {"type": "string"}, "owner": {"type": "string"}, "subject": {"type": "string"}, "created": {"type": "string"}, "patchsets": {"type": "array", "items": {"type": "integer"}}, "modified": {"type": "string"}, "closed": {"type": "boolean"}, "issue": {"type": "integer"}}, "required": ["description", "cc", "reviewers", "messages", "owner_email", "private", "base_url", "owner", "subject", "created", "patchsets", "modified", "closed", "issue"], "$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"}, "id": {"type": "string"}, "api": {"type": "string"}, "main": {"type": "string"}}, "required": ["name", "id", "api", "main"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Render Math", "id" : "762210076386791876", "api" : "1.0.0", "main" : "dist/code.js"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "api": {"type": "string"}, "main": {"type": "string"}}, "required": ["name", "id", "api", "main"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : 1608080005, "parent" : 1608080, "name" : "DANAU RATA", "latitude" : null, "longitude" : null, "postal" : [32279], "children" : []}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"batchcomplete": {"type": "string"}, "query": {"type": "object", "properties": {"normalized": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "required": ["from", "to"]}}, "pages": {"type": "object", "properties": {"21956671": {"type": "object", "properties": {"pageid": {"type": "integer"}, "ns": {"type": "integer"}, "title": {"type": "string"}, "pageprops": {"type": "object", "properties": {"defaultsort": {"type": "string"}, "page_image_free": {"type": "string"}, "wikibase-shortdesc": {"type": "string"}, "wikibase_item": {"type": "string"}}, "required": ["defaultsort", "page_image_free", "wikibase-shortdesc", "wikibase_item"]}}, "required": ["pageid", "ns", "title", "pageprops"]}}, "required": ["21956671"]}}, "required": ["normalized", "pages"]}}, "required": ["batchcomplete", "query"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"batchcomplete" : "", "query" : {"normalized" : [{"from" : "John_Peers", "to" : "John Peers"}], "pages" : {"21956671" : {"pageid" : 21956671, "ns" : 0, "title" : "John Peers", "pageprops" : {"defaultsort" : "Peers, John", "page_image_free" : "Peers_RG16_(5)_(27127131550).jpg", "wikibase-shortdesc" : "Australian tennis player", "wikibase_item" : "Q559692"}}}}}
json_instruct
{"type": "object", "properties": {"batchcomplete": {"type": "string"}, "query": {"type": "object", "properties": {"normalized": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "required": ["from", "to"]}}, "pages": {"type": "object", "properties": {"21956671": {"type": "object", "properties": {"pageid": {"type": "integer"}, "ns": {"type": "integer"}, "title": {"type": "string"}, "pageprops": {"type": "object", "properties": {"defaultsort": {"type": "string"}, "page_image_free": {"type": "string"}, "wikibase-shortdesc": {"type": "string"}, "wikibase_item": {"type": "string"}}, "required": ["defaultsort", "page_image_free", "wikibase-shortdesc", "wikibase_item"]}}, "required": ["pageid", "ns", "title", "pageprops"]}}, "required": ["21956671"]}}, "required": ["normalized", "pages"]}}, "required": ["batchcomplete", "query"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "user/angle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["cam/image_array", "user/throttle", "user/angle", "user/mode"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cam/image_array" : "5358_cam-image_array_.jpg", "user/throttle" : 0.0, "user/angle" : 0.3885337710380554, "user/mode" : "user"}
json_instruct
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "user/angle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["cam/image_array", "user/throttle", "user/angle", "user/mode"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "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" : [[[-73.987965, 40.607566], [-73.98266, 40.612693], [-73.982518, 40.612588], [-73.981624, 40.607866], [-73.988423, 40.607119], [-73.987965, 40.607566]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 43996}}]}
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#"}
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"}, "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": {"defaultable": {"type": "string"}, "dev-null": {"type": "string"}, "dnsd": {"type": "string"}, "ip6": {"type": "string"}, "random-case": {"type": "string"}, "randomstring": {"type": "string"}, "request": {"type": "string"}, "shuffle-array": {"type": "string"}, "spdy": {"type": "string"}, "url": {"type": "string"}}, "required": ["defaultable", "dev-null", "dnsd", "ip6", "random-case", "randomstring", "request", "shuffle-array", "spdy", "url"]}, "devDependencies": {"type": "object", "properties": {"benchmark": {"type": "string"}}, "required": ["benchmark"]}}, "required": ["name", "version", "description", "main", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "dns-over-http2", "version" : "1.0.0", "description" : "An UDP DNS Server over Google's HTTPS DNS API", "main" : "h2dns.js", "repository" : {"type" : "git", "url" : "git://github.com/Opensourcecommunitydevelopment/dns-over-http2.git"}, "keywords" : ["dns", "http2"], "author" : "Frank Xu <yyfrankyy@gmail.com>", "license" : "ISC", "bugs" : {"url" : "https://github.com/Opensourcecommunitydevelopment/dns-over-http2/issues"}, "homepage" : "https://github.com/Opensourcecommunitydevelopment/dns-over-http2#readme", "dependencies" : {"defaultable" : "^0.7.2", "dev-null" : "^0.1.1", "dnsd" : "^0.9.6", "ip6" : "^0.1.5", "random-case" : "^1.0.0", "randomstring" : "^1.1.5", "request" : "^2.81.0", "shuffle-array" : "^1.0.1", "spdy" : "^3.4.7", "url" : "^0.11.0"}, "devDependencies" : {"benchmark" : "^2.1.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"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"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"defaultable": {"type": "string"}, "dev-null": {"type": "string"}, "dnsd": {"type": "string"}, "ip6": {"type": "string"}, "random-case": {"type": "string"}, "randomstring": {"type": "string"}, "request": {"type": "string"}, "shuffle-array": {"type": "string"}, "spdy": {"type": "string"}, "url": {"type": "string"}}, "required": ["defaultable", "dev-null", "dnsd", "ip6", "random-case", "randomstring", "request", "shuffle-array", "spdy", "url"]}, "devDependencies": {"type": "object", "properties": {"benchmark": {"type": "string"}}, "required": ["benchmark"]}}, "required": ["name", "version", "description", "main", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["baboon", "carlover-react", "timers3000"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bin": {"type": "object", "properties": {"hextime": {"type": "string"}}, "required": ["hextime"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"yargs": {"type": "string"}}, "required": ["yargs"]}}, "required": ["name", "version", "main", "author", "repository", "bin", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "hextime-cli", "version" : "0.0.2", "main" : "index.js", "author" : {"name" : "0xflotus"}, "repository" : {"type" : "git", "url" : "https://github.com/0xflotus/hextime-cli"}, "bin" : {"hextime" : "./index.js"}, "license" : "MIT", "dependencies" : {"yargs" : "^17.3.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bin": {"type": "object", "properties": {"hextime": {"type": "string"}}, "required": ["hextime"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"yargs": {"type": "string"}}, "required": ["yargs"]}}, "required": ["name", "version", "main", "author", "repository", "bin", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"menu_id": {"type": "string"}, "module_id": {"type": "string"}, "menu_title": {"type": "string"}, "menu_parent": {"type": "string"}, "menu_sub_parent": {"type": "string"}, "menu_url": {"type": "string"}, "menu_alias": {"type": "string"}, "child_first": {"type": "array", "items": {"type": "object", "properties": {"menu_id": {"type": "string"}, "menu_title": {"type": "string"}, "menu_parent": {"type": "string"}, "menu_sub_parent": {"type": "string"}, "menu_url": {"type": "string"}, "menu_alias": {"type": "string"}, "child_second": {"type": "array", "items": {"type": "object", "properties": {"menu_id": {"type": "string"}, "menu_title": {"type": "string"}, "menu_parent": {"type": "string"}, "menu_sub_parent": {"type": "string"}, "menu_url": {"type": "string"}, "menu_alias": {"type": "string"}}, "required": ["menu_id", "menu_title", "menu_parent", "menu_sub_parent", "menu_url", "menu_alias"]}}}, "required": ["menu_id", "menu_title", "menu_parent", "menu_sub_parent", "menu_url", "menu_alias", "child_second"]}}}, "required": ["menu_id", "module_id", "menu_title", "menu_parent", "menu_sub_parent", "menu_url", "menu_alias", "child_first"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"menu_id" : "88", "module_id" : "0", "menu_title" : "dasdsadsadsa", "menu_parent" : "0", "menu_sub_parent" : "0", "menu_url" : "https://localhost/vania/dasdsadsadsa", "menu_alias" : "dasdsadsadsa", "child_first" : [{"menu_id" : "89", "menu_title" : "das dsadasdsadsa", "menu_parent" : "88", "menu_sub_parent" : "0", "menu_url" : "https://localhost/vania/dasdsadsadsa/dasdsadasdsadsa", "menu_alias" : "das-dsadasdsadsa", "child_second" : [{"menu_id" : "90", "menu_title" : "dasdsad dasdas", "menu_parent" : "88", "menu_sub_parent" : "89", "menu_url" : "https://localhost/vania/dasdsadsadsa/das dsadasdsadsa/dasdsaddasdas", "menu_alias" : "dasdsad-dasdas"}]}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"menu_id": {"type": "string"}, "module_id": {"type": "string"}, "menu_title": {"type": "string"}, "menu_parent": {"type": "string"}, "menu_sub_parent": {"type": "string"}, "menu_url": {"type": "string"}, "menu_alias": {"type": "string"}, "child_first": {"type": "array", "items": {"type": "object", "properties": {"menu_id": {"type": "string"}, "menu_title": {"type": "string"}, "menu_parent": {"type": "string"}, "menu_sub_parent": {"type": "string"}, "menu_url": {"type": "string"}, "menu_alias": {"type": "string"}, "child_second": {"type": "array", "items": {"type": "object", "properties": {"menu_id": {"type": "string"}, "menu_title": {"type": "string"}, "menu_parent": {"type": "string"}, "menu_sub_parent": {"type": "string"}, "menu_url": {"type": "string"}, "menu_alias": {"type": "string"}}, "required": ["menu_id", "menu_title", "menu_parent", "menu_sub_parent", "menu_url", "menu_alias"]}}}, "required": ["menu_id", "menu_title", "menu_parent", "menu_sub_parent", "menu_url", "menu_alias", "child_second"]}}}, "required": ["menu_id", "module_id", "menu_title", "menu_parent", "menu_sub_parent", "menu_url", "menu_alias", "child_first"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs": {"type": "string"}, "P6736": {"type": "string"}}, "required": ["label:cs", "P31", "P31^label:cs", "P131^label:cs", "P6736"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {"label:cs" : "K\u0159\u00ed\u017e z\u00e1padn\u011b od Dubn\u00e9ho u okraje lesa", "P31" : "http://www.wikidata.org/entity/Q2309609", "P31^label:cs" : "Pam\u011btn\u00ed k\u0159\u00ed\u017e", "P131^label:cs" : "Dubn\u00e9", "P6736" : "1649"}, "geometry" : {"type" : "Point", "coordinates" : [14.33377, 48.97996]}}, {"type" : "Feature", "properties" : {"label:cs" : "K\u0159\u00ed\u017e z\u00e1padn\u011b od Dubn\u00e9 rozcest\u00ed u okraje lesa", "P31" : "http://www.wikidata.org/entity/Q2309609", "P31^label:cs" : "Pam\u011btn\u00ed k\u0159\u00ed\u017e", "P131^label:cs" : "Dubn\u00e9", "P6736" : "1810"}, "geometry" : {"type" : "Point", "coordinates" : [14.34496, 48.97668]}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs": {"type": "string"}, "P6736": {"type": "string"}}, "required": ["label:cs", "P31", "P31^label:cs", "P131^label:cs", "P6736"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"css/jquery.dataTables_themeroller.css": {"type": "string"}, "css/jquery.dataTables.css": {"type": "string"}, "css/jquery.dataTables.min.css": {"type": "string"}, "js/jquery.dataTables.js": {"type": "string"}, "js/jquery.dataTables.min.js": {"type": "string"}, "js/jquery.js": {"type": "string"}}, "required": ["css/jquery.dataTables_themeroller.css", "css/jquery.dataTables.css", "css/jquery.dataTables.min.css", "js/jquery.dataTables.js", "js/jquery.dataTables.min.js", "js/jquery.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"css/jquery.dataTables_themeroller.css" : "sha256-/I46pnUiYUyilMyUMv08B9tEUgxxuWJJCqoyl6+Cz+I=", "css/jquery.dataTables.css" : "sha256-cxCWF1+kd/SEhDYdzfTnqSPUsf38LBSN45c1VK9nb20=", "css/jquery.dataTables.min.css" : "sha256-VENSMBYU1C0K+gtxOOnxPNKtisugcPLEGRwMTTPj46M=", "js/jquery.dataTables.js" : "sha256-6JxXSXqFQWGbzynquH3VgfGdaC8x9Usi9A/EgJyLC/k=", "js/jquery.dataTables.min.js" : "sha256-ehAboWaOBDId0VrLR4VG3oK+oFyIh3SchTJCdXfl33o=", "js/jquery.js" : "sha256-Mpq5K5J2704xSPab5rIIlpvr3y2zEhpYnKoXJFP9nxA="}
json_instruct
{"type": "object", "properties": {"css/jquery.dataTables_themeroller.css": {"type": "string"}, "css/jquery.dataTables.css": {"type": "string"}, "css/jquery.dataTables.min.css": {"type": "string"}, "js/jquery.dataTables.js": {"type": "string"}, "js/jquery.dataTables.min.js": {"type": "string"}, "js/jquery.js": {"type": "string"}}, "required": ["css/jquery.dataTables_themeroller.css", "css/jquery.dataTables.css", "css/jquery.dataTables.min.css", "js/jquery.dataTables.js", "js/jquery.dataTables.min.js", "js/jquery.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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" : "Zinarag, Aparri, Cagayan, Cagayan Valley (Region II), PH", "locale" : "ph.cagayan-valley-region-ii.cagayan.aparri.zinarag", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "3", "region_reference" : "2", "region_name" : "Cagayan Valley (Region II)", "province_id" : "18", "province_reference" : "18", "province_name" : "Cagayan", "city_id" : "65", "city_reference" : "308", "city_name" : "Aparri", "barangay_id" : "1476", "barangay_reference" : "7086", "barangay_name" : "Zinarag"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[121.586456, 18.36027], [121.586113, 18.359289], [121.586327, 18.34515], [121.583443, 18.332199], [121.581123, 18.321989], [121.584503, 18.316931], [121.578117, 18.31271], [121.586449, 18.299709], [121.589287, 18.295589], [121.590919, 18.292709], [121.569031, 18.292641], [121.569092, 18.292999], [121.569687, 18.293909], [121.570374, 18.29562], [121.570587, 18.296659], [121.570374, 18.298441], [121.569519, 18.30032], [121.568497, 18.302469], [121.564583, 18.305479], [121.56311, 18.30549], [121.561821, 18.30538], [121.560654, 18.305389], [121.559608, 18.305349], [121.558632, 18.30525], [121.557861, 18.305269], [121.55706, 18.30546], [121.556358, 18.30567], [121.555687, 18.305969], [121.555267, 18.30641], [121.555092, 18.30662], [121.554962, 18.3071], [121.554817, 18.30765], [121.574203, 18.337061], [121.578148, 18.367411], [121.578629, 18.367901], [121.579323, 18.367519], [121.580521, 18.366659], [121.581284, 18.365391], [121.5821, 18.36422], [121.582047, 18.362761], [121.582176, 18.361191], [121.581612, 18.359631], [121.582176, 18.358521], [121.583687, 18.358339], [121.585327, 18.35914], [121.586456, 18.36027]]]]}}
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 sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "manifest_version": {"type": "integer"}, "action": {"type": "object", "properties": {"default_icon": {"type": "object", "properties": {"16": {"type": "string"}, "32": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "32", "48", "128"]}}, "required": ["default_icon"]}}, "required": ["name", "description", "manifest_version", "action"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "NotAddons", "description" : "Addons that help your virtual life.", "manifest_version" : 3, "action" : {"default_icon" : {"16" : "./assets/img/notaddons16.png", "32" : "./assets/img/notaddons32.png", "48" : "./assets/img/notaddons48.png", "128" : "./assets/img/notaddons128.png"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "manifest_version": {"type": "integer"}, "action": {"type": "object", "properties": {"default_icon": {"type": "object", "properties": {"16": {"type": "string"}, "32": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "32", "48", "128"]}}, "required": ["default_icon"]}}, "required": ["name", "description", "manifest_version", "action"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : 1674041, "parent" : 1674, "name" : "LUBUK LINGGAU UTARA I", "latitude" : "-3.2066432210003", "longitude" : "102.84516512151", "postal" : [31646, 31647, 31648, 31649, 31618, 31619], "children" : [1674041001, 1674041002, 1674041003, 1674041004, 1674041005, 1674041006, 1674041007, 1674041008, 1674041009, 1674041010]}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"rows": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["rows"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"rows" : [["phonictractor", "1", "Description", "5", "z", "z.mp3", "z", "z.mp3"], ["writeletter", "1", "Description", "z", "-"], ["writecard", "1", "Description", "z", "zebra", "zebra.png", "zebra.m4a", "zipper", "zipper.png", "zipper.m4a", "zigzag", "zigzag.png", "zigzag.m4a"], ["quizliteracy", "1", "Description", "soundonly_word", "z", "z", "t", "o", "", "", "z_sound.m4a"], ["quizliteracy", "1", "Description", "word_word", "z", "k", "l", "z", "", "z"], ["quizliteracy", "1", "Description", "image_word", "z", "s", "z", "r", "zebra.png"]]}
json_instruct
{"type": "object", "properties": {"rows": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["rows"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"index" : 510, "hash" : 156633752, "artDyeHash" : 156633752, "redacted" : false, "dyeManifestHash" : 1388036248, "blacklisted" : false}
json_instruct
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["In a large saucepan over low heat, stir together the guava, tomato sauce, tomato paste, water, and brown sugar until well blended. Stir in liquid smoke, fresh lemon juice, Worcestershire sauce, habanero sauce, and molasses. Season with garlic powder, onion powder, salt, and black pepper. Cover, and cook 30 minutes, stirring occasionally, until thickened."], "ingredients" : ["1 guava - peeled, seeded, and chopped", "1 (15 ounce) can tomato sauce", "1 (6 ounce) can tomato paste", "1/2 cup water", "1/4 cup brown sugar", "2 tablespoons liquid smoke flavoring", "2 tablespoons fresh lemon juice", "1 tablespoon Worcestershire sauce", "1 tablespoon habanero hot sauce", "1 teaspoon molasses", "1 tablespoon garlic powder", "1 tablespoon onion powder", "1 teaspoon salt", "1/2 teaspoon black pepper"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "West Indies Guava Barbecue Sauce", "url" : "http://allrecipes.com/recipe/86923/west-indies-guava-barbecue-sauce/"}
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "scanUrl": {"type": "string"}}, "required": ["title", "text", "scanUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Treebeard, Oldest Living Thing (4C104)", "text" : "Set:\tThe Two Towers\nKind:\tFree People\nCulture:\tGandalf\nTwilight:\t4\nCard Type:\tAlly \u2022 Home 2T & 8T \u2022 Ent\nStrength:\t12\nVitality:\t4\nSite:\t2T, 8T\nGame Text:\tUnhasty. Fellowship: Exert Treebeard and discard an unbound companion from hand to heal an unbound companion.\nLore:\t\u201d'No, I am not tired. I do not easily get tired. And I do not sit down. I am not very, hm, bendable.'\u201d\nRarity:\tC", "scanUrl" : "https://lotrtcgwiki.com/wiki/_media/cards:lotr04104.jpg"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "scanUrl": {"type": "string"}}, "required": ["title", "text", "scanUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"advanced functions": {"type": "string"}, "advanced settings": {"type": "string"}, "basic settings": {"type": "string"}, "connection settings": {"type": "string"}, "description advanced functions": {"type": "string"}, "interval": {"type": "string"}, "port": {"type": "string"}, "reconnect attempts": {"type": "string"}, "reconnect delay ms": {"type": "string"}, "request timeout": {"type": "string"}, "schwoerer-ventcube adapter settings": {"type": "string"}, "server": {"type": "string"}}, "required": ["advanced functions", "advanced settings", "basic settings", "connection settings", "description advanced functions", "interval", "port", "reconnect attempts", "reconnect delay ms", "request timeout", "schwoerer-ventcube adapter settings", "server"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"advanced functions" : "Erweiterte Funktionen", "advanced settings" : "Erweiterte Einstellungen", "basic settings" : "Grundeinstellungen", "connection settings" : "Verbindungseinstellungen", "description advanced functions" : "Dadurch werden zus\u00e4tzlich zu den Basisfunktionen f\u00fcr Ventcube Informationen abgerufen, z. B. Informationen / Optionen zu Heizen, K\u00fchlen, L\u00fcfterlebensdauer und Programmeinstellungen. Vorsichtig verwenden!", "interval" : "Aktualisierungs-Intervall (s)", "port" : "Port", "reconnect attempts" : "Wiederverbindungsversuche", "reconnect delay ms" : "Verz\u00f6gerung zwischen Wiederverbindungsversuchen (ms)", "request timeout" : "Anforderungszeitlimit in Millisekunden", "schwoerer-ventcube adapter settings" : "Adaptereinstellungen f\u00fcr schwoerer-ventcube", "server" : "Server"}
json_instruct
{"type": "object", "properties": {"advanced functions": {"type": "string"}, "advanced settings": {"type": "string"}, "basic settings": {"type": "string"}, "connection settings": {"type": "string"}, "description advanced functions": {"type": "string"}, "interval": {"type": "string"}, "port": {"type": "string"}, "reconnect attempts": {"type": "string"}, "reconnect delay ms": {"type": "string"}, "request timeout": {"type": "string"}, "schwoerer-ventcube adapter settings": {"type": "string"}, "server": {"type": "string"}}, "required": ["advanced functions", "advanced settings", "basic settings", "connection settings", "description advanced functions", "interval", "port", "reconnect attempts", "reconnect delay ms", "request timeout", "schwoerer-ventcube adapter settings", "server"], "$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"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"kuqiqi": {"type": "string"}}, "required": ["kuqiqi"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "prefix_header_file": {"type": "string"}, "source_files": {"type": "string"}, "resource_bundles": {"type": "object", "properties": {"YSTMineVC": {"type": "array", "items": {"type": "string"}}}, "required": ["YSTMineVC"]}, "public_header_files": {"type": "array", "items": {"type": "string"}}, "frameworks": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"MJRefresh": {"type": "array", "items": {}}, "YSTShareKit": {"type": "array", "items": {}}, "YSTMSWorkKit": {"type": "array", "items": {}}, "AsyncDisplayKit": {"type": "array", "items": {"type": "string"}}}, "required": ["MJRefresh", "YSTShareKit", "YSTMSWorkKit", "AsyncDisplayKit"]}, "pushed_with_swift_version": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "prefix_header_file", "source_files", "resource_bundles", "public_header_files", "frameworks", "dependencies", "pushed_with_swift_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "YSTMineVC", "version" : "0.1.3", "summary" : "A short description of YSTMineVC.", "description" : "TODO: Add long description of the pod here.", "homepage" : "http://192.168.1.10:8181/ios-mobile/modules/YSTMineVC.git", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"kuqiqi" : "zhouzhenwei@ysten.com"}, "source" : {"git" : "http://192.168.1.10:8181/ios-mobile/modules/YSTMineVC.git", "tag" : "0.1.3"}, "platforms" : {"ios" : "8.0"}, "prefix_header_file" : "YSTMineVC/Classes/Common/YSTMine.pch", "source_files" : "YSTMineVC/Classes/**/*", "resource_bundles" : {"YSTMineVC" : ["YSTMineVC/Assets/*.{xib,plist,bundle,xcassets,imageset,png,cer}"]}, "public_header_files" : ["YSTMineVC/Classes/Public/*.h", "YSTMineVC/Classes/Common/YSTMineDefine.h"], "frameworks" : ["UIKit", "AVFoundation", "Foundation"], "dependencies" : {"MJRefresh" : [], "YSTShareKit" : [], "YSTMSWorkKit" : [], "AsyncDisplayKit" : ["~> 1.9.92"]}, "pushed_with_swift_version" : "3.0"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"kuqiqi": {"type": "string"}}, "required": ["kuqiqi"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "prefix_header_file": {"type": "string"}, "source_files": {"type": "string"}, "resource_bundles": {"type": "object", "properties": {"YSTMineVC": {"type": "array", "items": {"type": "string"}}}, "required": ["YSTMineVC"]}, "public_header_files": {"type": "array", "items": {"type": "string"}}, "frameworks": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"MJRefresh": {"type": "array", "items": {}}, "YSTShareKit": {"type": "array", "items": {}}, "YSTMSWorkKit": {"type": "array", "items": {}}, "AsyncDisplayKit": {"type": "array", "items": {"type": "string"}}}, "required": ["MJRefresh", "YSTShareKit", "YSTMSWorkKit", "AsyncDisplayKit"]}, "pushed_with_swift_version": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "prefix_header_file", "source_files", "resource_bundles", "public_header_files", "frameworks", "dependencies", "pushed_with_swift_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"Objective-C": {"type": "integer"}}, "required": ["Objective-C"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Objective-C" : 93302}
json_instruct
{"type": "object", "properties": {"Objective-C": {"type": "integer"}}, "required": ["Objective-C"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"display.es6.js": {"type": "string"}, "display.es6.min.js": {"type": "string"}, "display.js": {"type": "string"}, "display.min.js": {"type": "string"}}, "required": ["display.es6.js", "display.es6.min.js", "display.js", "display.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"display.es6.js" : "sha512-lF8mtIxvAfWwvEubcA35VXg4HAzWRwew+7XGiJv1fWVW49nS5wqAdIA8MfNScUEIwXyoWFXtS+AHnQWqkButAw==", "display.es6.min.js" : "sha512-0Yf2H5LF8wYGAvQJLERuzFhtEfGACngVShV8Kut9P5nZ7Rom8qFHZpKNDDBv0R9oH75t00mwj4WwvEKzSmfiuw==", "display.js" : "sha512-VWD6bmYPAW0uX4T/HJg6RclDYfQh2Ykhv5v8iB+PTyTG5hHGROz2huB2rUTZ6+vZ7s0nIZMZwze6ZII/nJ3a6g==", "display.min.js" : "sha512-QoOYovf0Ng/Dk5doN4arsQHxqtzwSNafUQOejRxi78hYA3DiAbiKK1m9VURuOR/+JQpKeHiN6DurU+MrccBnXA=="}
json_instruct
{"type": "object", "properties": {"display.es6.js": {"type": "string"}, "display.es6.min.js": {"type": "string"}, "display.js": {"type": "string"}, "display.min.js": {"type": "string"}}, "required": ["display.es6.js", "display.es6.min.js", "display.js", "display.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "rarity": {"type": "string"}, "foodtype": {"type": "string"}, "foodfilter": {"type": "string"}, "foodcategory": {"type": "string"}, "effect": {"type": "string"}, "description": {"type": "string"}, "suspicious": {"type": "object", "properties": {"effect": {"type": "string"}, "description": {"type": "string"}}, "required": ["effect", "description"]}, "normal": {"type": "object", "properties": {"effect": {"type": "string"}, "description": {"type": "string"}}, "required": ["effect", "description"]}, "delicious": {"type": "object", "properties": {"effect": {"type": "string"}, "description": {"type": "string"}}, "required": ["effect", "description"]}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "count": {"type": "integer"}}, "required": ["name", "count"]}}}, "required": ["name", "rarity", "foodtype", "foodfilter", "foodcategory", "effect", "description", "suspicious", "normal", "delicious", "ingredients"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Vegetarian Abalone", "rarity" : "2", "foodtype" : "NORMAL", "foodfilter" : "Makanan Pemulihan", "foodcategory" : "Recovery_Revive", "effect" : "Menghidupkan kembali Karakter yang dipilih.\nMemulihkan 250\u2013550 HP.", "description" : "Sebuah hidangan vegetarian dengan rasa yang kuat. Jamur Matsutake dipotong tipis dan digoreng hingga berwarna keemasan, kemudian tuangkan saus ke atasnya. Tekstur jamur Matsutake yang sangat empuk membuatmu seperti sedang memakan abalone segar... Daging tiruan ini benar-benar mirip dengan aslinya.", "suspicious" : {"effect" : "Menghidupkan kembali Karakter dan memulihkan 250 HP.", "description" : "Sebuah hidangan vegetarian dengan rasa yang kuat. Sausnya terlalu kental hingga menutupi kesegaran bahan-bahannya. Bumbu-bumbu yang terlalu banyak membuat mulutmu terasa haus terus."}, "normal" : {"effect" : "Menghidupkan kembali Karakter dan memulihkan 400 HP.", "description" : "Sebuah hidangan vegetarian yang kaya akan rasa. Jamur Matsutake dipotong tipis dan digoreng hingga berwarna keemasan, kemudian tuangkan saus ke atasnya. Tekstur jamur Matsutake yang sangat empuk membuatmu seperti sedang memakan abalon segar... Daging tiruan ini benar-benar mirip dengan aslinya."}, "delicious" : {"effect" : "Menghidupkan kembali Karakter dan memulihkan 550 HP.", "description" : "Sebuah hidangan vegetarian dengan rasa yang kuat. Dengan campuran saus yang gurih, jamur Matsutake menghadirkan cita rasa yang sempurna. Dengan tekstur selembut kerang, dan sesegar abalone, siapa pun yang memakannya pasti akan sulit membedakannya. Para tamu yang memakannya tanpa mengetahui bahwa ini adalah daging tiruan, pasti akan sangat terpukau saat kamu memberi tahunya."}, "ingredients" : [{"name" : "Matsutake", "count" : 2}, {"name" : "Snapdragon", "count" : 2}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "rarity": {"type": "string"}, "foodtype": {"type": "string"}, "foodfilter": {"type": "string"}, "foodcategory": {"type": "string"}, "effect": {"type": "string"}, "description": {"type": "string"}, "suspicious": {"type": "object", "properties": {"effect": {"type": "string"}, "description": {"type": "string"}}, "required": ["effect", "description"]}, "normal": {"type": "object", "properties": {"effect": {"type": "string"}, "description": {"type": "string"}}, "required": ["effect", "description"]}, "delicious": {"type": "object", "properties": {"effect": {"type": "string"}, "description": {"type": "string"}}, "required": ["effect", "description"]}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "count": {"type": "integer"}}, "required": ["name", "count"]}}}, "required": ["name", "rarity", "foodtype", "foodfilter", "foodcategory", "effect", "description", "suspicious", "normal", "delicious", "ingredients"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["babel-plugin-cycle-hmr"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"windows": {"type": "array", "items": {"type": "object", "properties": {"panes": {"type": "array", "items": {"type": "string"}}, "window_name": {"type": "string"}}, "required": ["panes", "window_name"]}}, "session_name": {"type": "string"}}, "required": ["windows", "session_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"windows" : [{"panes" : ["echo \"this window's index will be zero\""], "window_name" : "zero"}, {"panes" : ["echo \"this window's index will be five\""], "window_index" : 5, "window_name" : "five"}, {"panes" : ["echo \"this window's index will be one\""], "window_name" : "one"}], "session_name" : "Window index example"}
json_instruct
{"type": "object", "properties": {"windows": {"type": "array", "items": {"type": "object", "properties": {"panes": {"type": "array", "items": {"type": "string"}}, "window_name": {"type": "string"}}, "required": ["panes", "window_name"]}}, "session_name": {"type": "string"}}, "required": ["windows", "session_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ast" : null, "code" : "export var Config = {\n User: {\n SIGN_IN: \"/v1/api/login\",\n SIGN_OUT: \"/api/?app=logout\",\n Auth: \"/api/login\",\n Ping: \"/us/v1/api/secured/ping\"\n },\n Users: {\n FindBy: \"/us/v1/api/secured/user/findBy?data=\",\n FilterBy: \"/us/v1/api/secured/user/filterBy\"\n },\n Config: {\n Currency: \"/us/v1/api/secured/currencyList\",\n verifyStatusList: \"/us/v1/api/secured/verifyStatusList\"\n }\n};", "map" : {"version" : 3, "sources" : ["C:/Users/zura.ph/WebstormProjects/slotmaster-dashboard/src/core/config/index.js"], "names" : ["Config", "User", "SIGN_IN", "SIGN_OUT", "Auth", "Ping", "Users", "FindBy", "FilterBy", "Currency", "verifyStatusList"], "mappings" : "AAAA,OAAO,IAAMA,MAAM,GAAE;AAClBC,EAAAA,IAAI,EAAC;AACFC,IAAAA,OAAO,EAAC,eADN;AAEFC,IAAAA,QAAQ,EAAC,kBAFP;AAGFC,IAAAA,IAAI,EAAE,YAHJ;AAIFC,IAAAA,IAAI,EAAE;AAJJ,GADa;AAOlBC,EAAAA,KAAK,EAAC;AACFC,IAAAA,MAAM,EAAC,sCADL;AAEFC,IAAAA,QAAQ,EAAC;AAFP,GAPY;AAWlBR,EAAAA,MAAM,EAAC;AACHS,IAAAA,QAAQ,EAAC,iCADN;AAEHC,IAAAA,gBAAgB,EAAC;AAFd;AAXW,CAAd", "sourcesContent" : ["export const Config ={\r\n User:{\r\n SIGN_IN:\"/v1/api/login\",\r\n SIGN_OUT:\"/api/?app=logout\",\r\n Auth: \"/api/login\",\r\n Ping: \"/us/v1/api/secured/ping\"\r\n },\r\n Users:{\r\n FindBy:\"/us/v1/api/secured/user/findBy?data=\",\r\n FilterBy:\"/us/v1/api/secured/user/filterBy\"\r\n },\r\n Config:{\r\n Currency:\"/us/v1/api/secured/currencyList\",\r\n verifyStatusList:\"/us/v1/api/secured/verifyStatusList\"\r\n }\r\n\r\n\r\n}\r\n"]}, "metadata" : {}, "sourceType" : "module"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"feedstocks" : ["desert"]}
json_instruct
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"title": {"type": "string"}, "services": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}}, "required": ["title", "type"]}}, "includes": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "services", "includes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Google Cloud PHP", "services" : [{"title" : "ServiceBuilder", "type" : "servicebuilder"}], "includes" : ["cloud-asset", "cloud-automl", "cloud-bigquery", "cloud-bigquerydatatransfer", "cloud-bigtable", "cloud-billing", "cloud-container", "cloud-core", "cloud-dataproc", "cloud-datastore", "cloud-debugger", "cloud-dialogflow", "cloud-dlp", "cloud-error-reporting", "cloud-firestore", "cloud-iot", "cloud-kms", "cloud-language", "cloud-logging", "cloud-monitoring", "cloud-oslogin", "cloud-pubsub", "cloud-recommender", "cloud-redis", "cloud-scheduler", "cloud-secret-manager", "cloud-security-center", "cloud-spanner", "cloud-speech", "cloud-storage", "cloud-talent", "cloud-tasks", "cloud-text-to-speech", "cloud-trace", "cloud-translate", "cloud-videointelligence", "cloud-vision", "cloud-web-risk", "cloud-web-security-scanner"]}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "services": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}}, "required": ["title", "type"]}}, "includes": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "services", "includes"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"width" : 0.26784334, "rotation" : -0.82332456, "xCenter" : 0.7030938, "yCenter" : 0.35449523, "height" : 0.47616595}
json_instruct
{"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : 1220070083, "parent" : 1220070, "name" : "AEK SUHAT JAE", "latitude" : null, "longitude" : null, "postal" : [22756], "children" : []}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "test": {"type": "string"}}, "required": ["lint", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"ejs": {"type": "string"}, "jszip": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["ejs", "jszip", "uuid"]}, "devDependencies": {"type": "object", "properties": {"epubchecker": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-standard": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-node": {"type": "string"}, "eslint-plugin-promise": {"type": "string"}, "eslint-plugin-standard": {"type": "string"}}, "required": ["epubchecker", "eslint", "eslint-config-standard", "eslint-plugin-import", "eslint-plugin-node", "eslint-plugin-promise", "eslint-plugin-standard"]}}, "required": ["name", "version", "description", "repository", "main", "scripts", "author", "license", "keywords", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "omnia-ebook-generator", "version" : "0.1.2", "description" : "Node.js ebook generator using Embedded JavaScript templating.", "repository" : {"type" : "git", "url" : "https://github.com/torstendittmann/omnia-ebook-generator"}, "main" : "index.js", "scripts" : {"lint" : "eslint */**.js", "test" : "node tests/"}, "author" : "Torsten Dittmann", "license" : "MIT", "keywords" : ["ebook", "epub3", "generator"], "dependencies" : {"ejs" : "^3.1.3", "jszip" : "^3.5.0", "uuid" : "^8.3.0"}, "devDependencies" : {"epubchecker" : "^4.2.2", "eslint" : "^7.6.0", "eslint-config-standard" : "^14.1.1", "eslint-plugin-import" : "^2.22.0", "eslint-plugin-node" : "^11.1.0", "eslint-plugin-promise" : "^4.2.1", "eslint-plugin-standard" : "^4.0.1"}}
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"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "test": {"type": "string"}}, "required": ["lint", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"ejs": {"type": "string"}, "jszip": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["ejs", "jszip", "uuid"]}, "devDependencies": {"type": "object", "properties": {"epubchecker": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-standard": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-node": {"type": "string"}, "eslint-plugin-promise": {"type": "string"}, "eslint-plugin-standard": {"type": "string"}}, "required": ["epubchecker", "eslint", "eslint-config-standard", "eslint-plugin-import", "eslint-plugin-node", "eslint-plugin-promise", "eslint-plugin-standard"]}}, "required": ["name", "version", "description", "repository", "main", "scripts", "author", "license", "keywords", "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"}, "repo": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "repo", "main", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "thorax", "version" : "3.0.0-beta.5", "repo" : "components/thorax", "main" : "thorax.js", "scripts" : ["thorax.js", "thorax-mobile.js"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repo": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "repo", "main", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "number"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "number"}, "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" : "ARXRPXX1187B9B7251", "artist_latitude" : 34.03339, "artist_location" : "East Los Angeles, CA", "artist_longitude" : -118.1596, "artist_name" : "Los Lobos", "duration" : 156.83873, "num_songs" : 1, "song_id" : "SOZBXLH12AC468C0DF", "title" : "I Got To Let You Know", "year" : 1984}
json_instruct
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "number"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "number"}, "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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "devDependencies": {"type": "object", "properties": {"ansi": {"type": "string"}, "grunt": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-nodeunit": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "mkdirp": {"type": "string"}}, "required": ["ansi", "grunt", "grunt-contrib-jshint", "grunt-contrib-nodeunit", "grunt-contrib-watch", "mkdirp"]}, "keywords": {"type": "array", "items": {}}, "preferGlobal": {"type": "string"}, "bin": {"type": "object", "properties": {"mkvfx": {"type": "string"}}, "required": ["mkvfx"]}, "dependencies": {"type": "object", "properties": {"ansi": {"type": "string"}, "mkdirp": {"type": "string"}}, "required": ["ansi", "mkdirp"]}}, "required": ["name", "description", "version", "homepage", "author", "repository", "bugs", "licenses", "main", "engines", "scripts", "devDependencies", "keywords", "preferGlobal", "bin", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "mkvfx", "description" : "Make vfx libraries and programs", "version" : "0.1.0", "homepage" : "https://github.com/meshula/mkvfx", "author" : {"name" : "Nick Porcino", "email" : "meshula@hotmail.com", "url" : "http://nickporcino.com"}, "repository" : {"type" : "git", "url" : "git://github.com/meshula/mkvfx.git"}, "bugs" : {"url" : "https://github.com/meshula/mkvfx/issues"}, "licenses" : [{"type" : "MIT", "url" : "https://github.com/meshula/mkvfx/blob/master/LICENSE-MIT"}], "main" : "lib/mkvfx", "engines" : {"node" : ">= 0.8.0"}, "scripts" : {"test" : "grunt nodeunit"}, "devDependencies" : {"ansi" : "^0.3.0", "grunt" : "^0.4.5", "grunt-contrib-jshint" : "^0.6.5", "grunt-contrib-nodeunit" : "~0.2.0", "grunt-contrib-watch" : "~0.5.3", "mkdirp" : "^0.5.0"}, "keywords" : [], "preferGlobal" : "true", "bin" : {"mkvfx" : "lib/mkvfx.js"}, "dependencies" : {"ansi" : "^0.3.0", "mkdirp" : "^0.5.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "devDependencies": {"type": "object", "properties": {"ansi": {"type": "string"}, "grunt": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-nodeunit": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "mkdirp": {"type": "string"}}, "required": ["ansi", "grunt", "grunt-contrib-jshint", "grunt-contrib-nodeunit", "grunt-contrib-watch", "mkdirp"]}, "keywords": {"type": "array", "items": {}}, "preferGlobal": {"type": "string"}, "bin": {"type": "object", "properties": {"mkvfx": {"type": "string"}}, "required": ["mkvfx"]}, "dependencies": {"type": "object", "properties": {"ansi": {"type": "string"}, "mkdirp": {"type": "string"}}, "required": ["ansi", "mkdirp"]}}, "required": ["name", "description", "version", "homepage", "author", "repository", "bugs", "licenses", "main", "engines", "scripts", "devDependencies", "keywords", "preferGlobal", "bin", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"Status": {"type": "integer"}, "TimeLimitReached": {"type": "boolean"}, "RunningTime": {"type": "string"}, "StartTimes": {"type": "array", "items": {"type": "object", "properties": {"JobIndex": {"type": "integer"}, "OperationIndex": {"type": "integer"}, "StartTime": {"type": "number"}}, "required": ["JobIndex", "OperationIndex", "StartTime"]}}}, "required": ["Status", "TimeLimitReached", "RunningTime", "StartTimes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Status" : 3, "TimeLimitReached" : true, "RunningTime" : "00:05:00.2979819", "StartTimes" : [{"JobIndex" : 0, "OperationIndex" : 0, "StartTime" : 483.0}, {"JobIndex" : 1, "OperationIndex" : 0, "StartTime" : 300.0}, {"JobIndex" : 2, "OperationIndex" : 0, "StartTime" : 89.0}, {"JobIndex" : 3, "OperationIndex" : 0, "StartTime" : 162.0}, {"JobIndex" : 4, "OperationIndex" : 0, "StartTime" : 107.0}, {"JobIndex" : 5, "OperationIndex" : 0, "StartTime" : 252.0}, {"JobIndex" : 6, "OperationIndex" : 0, "StartTime" : 458.0}, {"JobIndex" : 7, "OperationIndex" : 0, "StartTime" : 0.0}, {"JobIndex" : 8, "OperationIndex" : 0, "StartTime" : 324.0}, {"JobIndex" : 9, "OperationIndex" : 0, "StartTime" : 373.0}, {"JobIndex" : 10, "OperationIndex" : 0, "StartTime" : 135.0}, {"JobIndex" : 11, "OperationIndex" : 0, "StartTime" : 210.0}, {"JobIndex" : 12, "OperationIndex" : 0, "StartTime" : 50.0}, {"JobIndex" : 13, "OperationIndex" : 0, "StartTime" : 354.0}, {"JobIndex" : 14, "OperationIndex" : 0, "StartTime" : 402.0}, {"JobIndex" : 15, "OperationIndex" : 0, "StartTime" : 549.0}, {"JobIndex" : 16, "OperationIndex" : 0, "StartTime" : 194.0}, {"JobIndex" : 17, "OperationIndex" : 0, "StartTime" : 448.0}, {"JobIndex" : 18, "OperationIndex" : 0, "StartTime" : 342.0}, {"JobIndex" : 19, "OperationIndex" : 0, "StartTime" : 546.0}]}
json_instruct
{"type": "object", "properties": {"Status": {"type": "integer"}, "TimeLimitReached": {"type": "boolean"}, "RunningTime": {"type": "string"}, "StartTimes": {"type": "array", "items": {"type": "object", "properties": {"JobIndex": {"type": "integer"}, "OperationIndex": {"type": "integer"}, "StartTime": {"type": "number"}}, "required": ["JobIndex", "OperationIndex", "StartTime"]}}}, "required": ["Status", "TimeLimitReached", "RunningTime", "StartTimes"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"geometry" : {"type" : "Point", "coordinates" : [-117.18, 34.95]}, "type" : "Feature", "id" : "92347", "properties" : {"other_cities" : "", "city" : "Hinkley", "state" : "CA", "county" : "San Bernardino County"}}
json_instruct
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Time" : "2021-08-07T22:00:00Z", "Temp" : 28.3, "RelHum" : 75, "WindSpeed" : 2.3, "WindDir" : 239}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"info": {"type": "object", "properties": {"lives": {"type": "object", "properties": {"address": {"type": "integer"}, "type": {"type": "string"}}, "required": ["address", "type"]}, "score": {"type": "object", "properties": {"address": {"type": "integer"}, "type": {"type": "string"}}, "required": ["address", "type"]}}, "required": ["lives", "score"]}}, "required": ["info"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"info" : {"lives" : {"address" : 8261736, "type" : "|u1"}, "score" : {"address" : 8262079, "type" : "<d3"}}}
json_instruct
{"type": "object", "properties": {"info": {"type": "object", "properties": {"lives": {"type": "object", "properties": {"address": {"type": "integer"}, "type": {"type": "string"}}, "required": ["address", "type"]}, "score": {"type": "object", "properties": {"address": {"type": "integer"}, "type": {"type": "string"}}, "required": ["address", "type"]}}, "required": ["lives", "score"]}}, "required": ["info"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {"type": "string"}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "Hi Spack team!\r\n\r\nI am looking at creating a bot to help get on top of the large number of pull requests and issues in this project. Are there any features that you may find helpful?\r\n\r\nFeatures I have in mind:\r\n1. maintainers communicate approvals of PRs and, when certain conditions have been met, the bot automatically performs a merge\r\n1. the bot could ensure that contributors have signed a license agreement or have signed-off on their commits\r\n1. the bot could collect information from people who create issues or PRs and update the labels to match some predefined states\r\n\r\nAre there other tasks that could be helped by a bot?", "user" : "gonsie", "url" : "https://api.github.com/repos/spack/spack/issues/4024", "updated_at" : "2020-02-23 01:55:09", "created_at" : "2017-04-27 20:13:58", "closed_at" : "None", "state" : "open", "title" : "bot", "number" : 4024, "milestone" : null, "labels" : ["question"], "id" : 224900005, "html_url" : "https://github.com/spack/spack/issues/4024", "assignees" : ["gonsie"], "comments" : 14}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {"type": "string"}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"expireTime" : 9007200867590255000, "key" : "/static/510ca1f8afa48e718b3c94a7d88a502c/25b50/sweetnesspower.jpg", "val" : "1363f95a5a10be13d451ad72dbaff6de"}
json_instruct
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"pages": {"type": "array", "items": {"type": "string"}}, "window": {"type": "object", "properties": {"backgroundTextStyle": {"type": "string"}, "navigationBarBackgroundColor": {"type": "string"}, "navigationBarTitleText": {"type": "string"}, "navigationBarTextStyle": {"type": "string"}}, "required": ["backgroundTextStyle", "navigationBarBackgroundColor", "navigationBarTitleText", "navigationBarTextStyle"]}, "tabBar": {"type": "object", "properties": {"color": {"type": "string"}, "selectedColor": {"type": "string"}, "backgroundColor": {"type": "string"}, "borderStyle": {"type": "string"}, "list": {"type": "array", "items": {"type": "object", "properties": {"pagePath": {"type": "string"}, "text": {"type": "string"}, "iconPath": {"type": "string"}, "selectedIconPath": {"type": "string"}}, "required": ["pagePath", "text", "iconPath", "selectedIconPath"]}}}, "required": ["color", "selectedColor", "backgroundColor", "borderStyle", "list"]}, "sitemapLocation": {"type": "string"}, "networkTimeout": {"type": "object", "properties": {"request": {"type": "integer"}}, "required": ["request"]}}, "required": ["pages", "window", "tabBar", "sitemapLocation", "networkTimeout"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"pages" : ["pages/index/index", "pages/uploadpic/uploadpic", "pages/searchResult/searchResult", "pages/logs/logs", "pages/discovery/discovery", "pages/more/more", "pages/Aiface/Aiface", "pages/Aiface_result/Aiface_result", "pages/otherzone/otherzone", "pages/maker_menu/maker_menu", "pages/meme_maker/meme_maker", "pages/choose_pic/choose_pic", "pages/remove_text/remove_text", "pages/text_edit/text_edit"], "window" : {"backgroundTextStyle" : "light", "navigationBarBackgroundColor" : "white", "navigationBarTitleText" : "\u6597\u56fe\u5927\u5e08", "navigationBarTextStyle" : "black"}, "tabBar" : {"color" : "#626567", "selectedColor" : "#eb8501", "backgroundColor" : "#FBFBFB", "borderStyle" : "white", "list" : [{"pagePath" : "pages/index/index", "text" : "\u641c\u7d22\u8868\u60c5", "iconPath" : "images/search.png", "selectedIconPath" : "images/search2.png"}, {"pagePath" : "pages/maker_menu/maker_menu", "text" : "\u9b54\u6cd5\u5236\u56fe", "iconPath" : "images/menu1.png", "selectedIconPath" : "images/menu2.png"}, {"pagePath" : "pages/more/more", "text" : "\u4e2a\u4eba\u4e91\u7a7a\u95f4", "iconPath" : "images/cloud.png", "selectedIconPath" : "images/cloud2.png"}]}, "sitemapLocation" : "sitemap.json", "networkTimeout" : {"request" : 60000}}
json_instruct
{"type": "object", "properties": {"pages": {"type": "array", "items": {"type": "string"}}, "window": {"type": "object", "properties": {"backgroundTextStyle": {"type": "string"}, "navigationBarBackgroundColor": {"type": "string"}, "navigationBarTitleText": {"type": "string"}, "navigationBarTextStyle": {"type": "string"}}, "required": ["backgroundTextStyle", "navigationBarBackgroundColor", "navigationBarTitleText", "navigationBarTextStyle"]}, "tabBar": {"type": "object", "properties": {"color": {"type": "string"}, "selectedColor": {"type": "string"}, "backgroundColor": {"type": "string"}, "borderStyle": {"type": "string"}, "list": {"type": "array", "items": {"type": "object", "properties": {"pagePath": {"type": "string"}, "text": {"type": "string"}, "iconPath": {"type": "string"}, "selectedIconPath": {"type": "string"}}, "required": ["pagePath", "text", "iconPath", "selectedIconPath"]}}}, "required": ["color", "selectedColor", "backgroundColor", "borderStyle", "list"]}, "sitemapLocation": {"type": "string"}, "networkTimeout": {"type": "object", "properties": {"request": {"type": "integer"}}, "required": ["request"]}}, "required": ["pages", "window", "tabBar", "sitemapLocation", "networkTimeout"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "patternId": {"type": "string"}, "severity": {"type": "integer"}, "line": {"type": "integer"}, "column": {"type": "integer"}, "content": {"type": "string"}}, "required": ["name", "patternId", "severity", "line", "column", "content"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0xbbbcb8834bdd5cf931ac6b12b68eae85faf2e580", "tool" : "smartcheck", "start" : 1563356521.239955, "end" : 1563356535.299466, "duration" : 14.059510946273804, "analysis" : [{"name" : "SOLIDITY_ADDRESS_HARDCODED", "patternId" : "a91b18", "severity" : 1, "line" : 94, "column" : 4, "content" : "owner=address(0)"}, {"name" : "SOLIDITY_ARRAY_LENGTH_MANIPULATION", "patternId" : "872bdd", "severity" : 1, "line" : 402, "column" : 4, "content" : "tokenTimeLocks[msg.sender].length--"}, {"name" : "SOLIDITY_OVERPOWERED_ROLE", "patternId" : "j83hf7", "severity" : 2, "line" : 225, "column" : 2, "content" : "functionsetCrowdsale(address_crowdsale)externalonlyOwner{require(_crowdsale!=address(0));crowdsale=_crowdsale;}"}, {"name" : "SOLIDITY_PRAGMAS_VERSION", "patternId" : "23fc32", "severity" : 1, "line" : 1, "column" : 16, "content" : "^"}, {"name" : "SOLIDITY_SAFEMATH", "patternId" : "837cac", "severity" : 1, "line" : 158, "column" : 2, "content" : "usingSafeMathforuint;"}, {"name" : "SOLIDITY_VISIBILITY", "patternId" : "b51ce0", "severity" : 1, "line" : 193, "column" : 2, "content" : "mapping(address=>TokenTimelock[])tokenTimeLocks;"}]}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "patternId": {"type": "string"}, "severity": {"type": "integer"}, "line": {"type": "integer"}, "column": {"type": "integer"}, "content": {"type": "string"}}, "required": ["name", "patternId", "severity", "line", "column", "content"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"ts": {"type": "string"}, "in": {"type": "array", "items": {"type": "object", "properties": {"coinbase": {"type": "string"}}, "required": ["coinbase"]}}, "block": {"type": "integer"}, "sent": {"type": "integer"}, "txid": {"type": "string"}, "fees": {"type": "integer"}, "out": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "integer"}}, "required": ["value"]}}}, "required": ["ts", "in", "block", "sent", "txid", "fees", "out"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"ts" : "1535806558", "in" : [{"coinbase" : "03d2c715045e8c8a5b087ffff4ec1700000000"}], "block" : 1427410, "sent" : 2500000000, "txid" : "eb7e6e536185431fe8bdb9493e2abcccb17bf2adc1dc3011699bc45b8925af4a", "fees" : -2500000000, "out" : [{"value" : 0}, {"addr" : "MAq5WASVwUuHq6B8oD8ib8PxAjJ87pdtUc", "spent" : "fab1d5656eec9aa25733213c99ecaef49f2bfd3a6cbb29a352d800b308c8fbde", "value" : 2500000000}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"ts": {"type": "string"}, "in": {"type": "array", "items": {"type": "object", "properties": {"coinbase": {"type": "string"}}, "required": ["coinbase"]}}, "block": {"type": "integer"}, "sent": {"type": "integer"}, "txid": {"type": "string"}, "fees": {"type": "integer"}, "out": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "integer"}}, "required": ["value"]}}}, "required": ["ts", "in", "block", "sent", "txid", "fees", "out"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"loss": {"type": "array", "items": {"type": "number"}}, "accuracy": {"type": "array", "items": {"type": "number"}}, "val_loss": {"type": "array", "items": {"type": "number"}}, "val_accuracy": {"type": "array", "items": {"type": "number"}}}, "required": ["loss", "accuracy", "val_loss", "val_accuracy"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"loss" : [1.0289983749389648, 0.837449312210083, 0.72026526927948, 0.6354885101318359, 0.5682386755943298, 0.5131692290306091, 0.46740999817848206, 0.42884084582328796, 0.395920068025589, 0.36758074164390564], "accuracy" : [0.3904103934764862, 0.33799612522125244, 0.40996038913726807, 0.8819414973258972, 0.9635122418403625, 0.9664615988731384, 0.966208815574646, 0.9667986631393433, 0.9666301608085632, 0.9664615988731384], "val_loss" : [0.9213945865631104, 0.7718684673309326, 0.670377790927887, 0.5922517776489258, 0.5289918184280396, 0.47702881693840027, 0.43417227268218994, 0.39782458543777466, 0.3671252429485321, 0.3401995003223419], "val_accuracy" : [0.35688868165016174, 0.30350789427757263, 0.7203864455223083, 0.9562786817550659, 0.960854172706604, 0.960854172706604, 0.9618709683418274, 0.9613625407218933, 0.9623793363571167, 0.960854172706604]}
json_instruct
{"type": "object", "properties": {"loss": {"type": "array", "items": {"type": "number"}}, "accuracy": {"type": "array", "items": {"type": "number"}}, "val_loss": {"type": "array", "items": {"type": "number"}}, "val_accuracy": {"type": "array", "items": {"type": "number"}}}, "required": ["loss", "accuracy", "val_loss", "val_accuracy"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "NASR-EDDINE", "frequency" : 5, "gender" : "male"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"number": {"type": "string"}, "name": {"type": "string"}, "generation": {"type": "integer"}, "description": {"type": "string"}, "species": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}, "abilities": {"type": "object", "properties": {"normal": {"type": "array", "items": {"type": "string"}}, "hidden": {"type": "array", "items": {"type": "string"}}}, "required": ["normal", "hidden"]}, "height": {"type": "string"}, "weight": {"type": "string"}, "eggGroups": {"type": "array", "items": {"type": "string"}}, "gender": {"type": "array", "items": {"type": "integer"}}, "family": {"type": "object", "properties": {"id": {"type": "integer"}, "evolutionStage": {"type": "integer"}, "evolutionLine": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "evolutionStage", "evolutionLine"]}, "sprites": {"type": "object", "properties": {"default": {"type": "string"}, "shiny": {"type": "string"}}, "required": ["default", "shiny"]}, "isStarter": {"type": "boolean"}, "isLegendary": {"type": "boolean"}, "isMythical": {"type": "boolean"}, "isUltraBeast": {"type": "boolean"}, "isMega": {"type": "boolean"}}, "required": ["number", "name", "generation", "description", "species", "types", "abilities", "height", "weight", "eggGroups", "gender", "family", "sprites", "isStarter", "isLegendary", "isMythical", "isUltraBeast", "isMega"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"number" : "297", "name" : "Hariyama", "generation" : 3, "description" : "HARIYAMA\u2019s thick body may appear fat, but it is actually a hunk of solid muscle. If this POK\u00e9MON bears down and tightens all its muscles, its body becomes as hard as a rock.", "species" : "Arm Thrust", "types" : ["Fighting"], "abilities" : {"normal" : ["Thick Fat", "Guts"], "hidden" : ["Sheer Force"]}, "height" : "7'07\"", "weight" : "559.5 lbs.", "eggGroups" : ["Human-Like"], "gender" : [75, 25], "family" : {"id" : 146, "evolutionStage" : 2, "evolutionLine" : ["Makuhita", "Hariyama"]}, "sprites" : {"default" : "https://pisaucer.github.io/staticmon/images/297.png", "shiny" : "https://pisaucer.github.io/staticmon/images/shiny/297.png"}, "isStarter" : false, "isLegendary" : false, "isMythical" : false, "isUltraBeast" : false, "isMega" : false}
json_instruct
{"type": "object", "properties": {"number": {"type": "string"}, "name": {"type": "string"}, "generation": {"type": "integer"}, "description": {"type": "string"}, "species": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}, "abilities": {"type": "object", "properties": {"normal": {"type": "array", "items": {"type": "string"}}, "hidden": {"type": "array", "items": {"type": "string"}}}, "required": ["normal", "hidden"]}, "height": {"type": "string"}, "weight": {"type": "string"}, "eggGroups": {"type": "array", "items": {"type": "string"}}, "gender": {"type": "array", "items": {"type": "integer"}}, "family": {"type": "object", "properties": {"id": {"type": "integer"}, "evolutionStage": {"type": "integer"}, "evolutionLine": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "evolutionStage", "evolutionLine"]}, "sprites": {"type": "object", "properties": {"default": {"type": "string"}, "shiny": {"type": "string"}}, "required": ["default", "shiny"]}, "isStarter": {"type": "boolean"}, "isLegendary": {"type": "boolean"}, "isMythical": {"type": "boolean"}, "isUltraBeast": {"type": "boolean"}, "isMega": {"type": "boolean"}}, "required": ["number", "name", "generation", "description", "species", "types", "abilities", "height", "weight", "eggGroups", "gender", "family", "sprites", "isStarter", "isLegendary", "isMythical", "isUltraBeast", "isMega"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"bindings": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "direction": {"type": "string"}}, "required": ["type", "name", "direction"]}}}, "required": ["bindings"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"bindings" : [{"type" : "eventGridTrigger", "name" : "eventGridEvent", "direction" : "in"}, {"tableName" : "Events", "connection" : "AzureWebJobsStorage", "name" : "tableBinding", "type" : "table", "direction" : "out"}]}
json_instruct
{"type": "object", "properties": {"bindings": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "direction": {"type": "string"}}, "required": ["type", "name", "direction"]}}}, "required": ["bindings"], "$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": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "150627101003", "text" : "\u672d\u8428\u514b\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "150627101200", "text" : "\u65b0\u8857\u6751\u6751\u59d4\u4f1a"}, {"id" : "150627101201", "text" : "\u5854\u5c14\u6cb3\u6751\u6751\u59d4\u4f1a"}, {"id" : "150627101202", "text" : "\u8425\u76d8\u6cb3\u6751\u6751\u59d4\u4f1a"}, {"id" : "150627101203", "text" : "\u4e4c\u5170\u9676\u52d2\u76d6\u6751\u6751\u59d4\u4f1a"}, {"id" : "150627101204", "text" : "\u54c8\u65e5\u6728\u4e4e\u5c14\u6751\u6751\u59d4\u4f1a"}, {"id" : "150627101205", "text" : "\u739b\u52d2\u5e86\u58d5\u8d56\u6751\u6751\u59d4\u4f1a"}, {"id" : "150627101206", "text" : "\u6811\u58d5\u6751\u6751\u59d4\u4f1a"}, {"id" : "150627101207", "text" : "\u9053\u52b3\u7a91\u5b50\u6751\u6751\u59d4\u4f1a"}, {"id" : "150627101208", "text" : "\u5df4\u97f3\u76d6\u6751\u6751\u59d4\u4f1a"}, {"id" : "150627101209", "text" : "\u9ec4\u9676\u52d2\u76d6\u6751\u6751\u59d4\u4f1a"}, {"id" : "150627101210", "text" : "\u963f\u6728\u56fe\u5e99\u6751\u6751\u59d4\u4f1a"}, {"id" : "150627101211", "text" : "\u672d\u8428\u514b\u53ec\u6751\u6751\u59d4\u4f1a"}, {"id" : "150627101212", "text" : "\u7ed9\u52d2\u767b\u5e99\u560e\u67e5"}, {"id" : "150627101213", "text" : "\u67e5\u5e72\u67f4\u8fbe\u6728\u6751\u6751\u59d4\u4f1a"}, {"id" : "150627101214", "text" : "\u90fd\u560e\u6556\u5305\u560e\u67e5"}, {"id" : "150627101215", "text" : "\u67e5\u5e72\u6dd6\u5c14\u560e\u67e5"}, {"id" : "150627101216", "text" : "\u95e8\u514b\u5e86\u560e\u67e5"}, {"id" : "150627101217", "text" : "\u5df4\u560e\u67f4\u8fbe\u6728\u6751\u6751\u59d4\u4f1a"}, {"id" : "150627101218", "text" : "\u58d5\u8d56\u67f4\u8fbe\u6728\u6751\u6751\u59d4\u4f1a"}, {"id" : "150627101219", "text" : "\u9ec4\u76d6\u5e0c\u91cc\u6751\u6751\u59d4\u4f1a"}, {"id" : "150627101220", "text" : "\u677e\u9053\u6c9f\u6751\u6751\u59d4\u4f1a"}, {"id" : "150627101221", "text" : "\u8d35\u52d2\u65af\u592a\u6751\u6751\u59d4\u4f1a"}, {"id" : "150627101222", "text" : "\u5854\u65e5\u96c5\u67f4\u8fbe\u6728\u6751\u6751\u59d4\u4f1a"}, {"id" : "150627101223", "text" : "\u4e4c\u78f4\u67f4\u8fbe\u6728\u6751\u6751\u59d4\u4f1a"}, {"id" : "150627101224", "text" : "\u6bdb\u76d6\u56fe\u6751\u6751\u59d4\u4f1a"}, {"id" : "150627101225", "text" : "\u9ad8\u52d2\u5e99\u6751\u6751\u59d4\u4f1a"}, {"id" : "150627101226", "text" : "\u53f0\u683c\u560e\u67e5"}]
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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x2bda5b625d3b50848e8563480ed50ec782dd42ee", "tool" : "solhint", "start" : 1563502245.724556, "end" : 1563502249.2911878, "duration" : 3.56663179397583, "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"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Node.js", "description" : "A Javascript application platform.", "url" : "https://nodejs.org/en/"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"authenticationType": {"type": "string"}, "forgotPasswordRouteId": {"type": "string"}, "isFilteredComponentsView": {"type": "boolean"}, "isProgressiveRenderingEnabled": {"type": "boolean"}, "mainAppPageId": {"type": "string"}, "preferredDomain": {"type": "string"}, "selfRegistrationRouteId": {"type": "null"}, "type": {"type": "string"}}, "required": ["authenticationType", "forgotPasswordRouteId", "isFilteredComponentsView", "isProgressiveRenderingEnabled", "mainAppPageId", "preferredDomain", "selfRegistrationRouteId", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"authenticationType" : "AUTHENTICATED", "forgotPasswordRouteId" : "4c888e51-01e0-4eed-9d02-4763e28ab204", "isFilteredComponentsView" : false, "isProgressiveRenderingEnabled" : false, "mainAppPageId" : "a33c9136-d66d-4d42-8731-3ea48cc00e8f", "preferredDomain" : "none", "selfRegistrationRouteId" : null, "type" : "site"}
json_instruct
{"type": "object", "properties": {"authenticationType": {"type": "string"}, "forgotPasswordRouteId": {"type": "string"}, "isFilteredComponentsView": {"type": "boolean"}, "isProgressiveRenderingEnabled": {"type": "boolean"}, "mainAppPageId": {"type": "string"}, "preferredDomain": {"type": "string"}, "selfRegistrationRouteId": {"type": "null"}, "type": {"type": "string"}}, "required": ["authenticationType", "forgotPasswordRouteId", "isFilteredComponentsView", "isProgressiveRenderingEnabled", "mainAppPageId", "preferredDomain", "selfRegistrationRouteId", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "name_pretty": {"type": "string"}, "product_documentation": {"type": "string"}, "client_documentation": {"type": "string"}, "issue_tracker": {"type": "string"}, "release_level": {"type": "string"}, "language": {"type": "string"}, "repo": {"type": "string"}, "distribution_name": {"type": "string"}, "api_id": {"type": "string"}, "requires_billing": {"type": "boolean"}}, "required": ["name", "name_pretty", "product_documentation", "client_documentation", "issue_tracker", "release_level", "language", "repo", "distribution_name", "api_id", "requires_billing"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "memcache", "name_pretty" : "Memorystore for Memcached", "product_documentation" : "https://cloud.google.com/memorystore/docs/memcached", "client_documentation" : "https://googleapis.dev/nodejs/memcache/latest/index.html", "issue_tracker" : "https://issuetracker.google.com/savedsearches/5169231", "release_level" : "beta", "language" : "nodejs", "repo" : "googleapis/nodejs-memcache", "distribution_name" : "@google-cloud/memcache", "api_id" : "memcache.googleapis.com", "requires_billing" : true}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "name_pretty": {"type": "string"}, "product_documentation": {"type": "string"}, "client_documentation": {"type": "string"}, "issue_tracker": {"type": "string"}, "release_level": {"type": "string"}, "language": {"type": "string"}, "repo": {"type": "string"}, "distribution_name": {"type": "string"}, "api_id": {"type": "string"}, "requires_billing": {"type": "boolean"}}, "required": ["name", "name_pretty", "product_documentation", "client_documentation", "issue_tracker", "release_level", "language", "repo", "distribution_name", "api_id", "requires_billing"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"query": {"type": "object", "properties": {"nested": {"type": "object", "properties": {"query": {"type": "object", "properties": {"constant_score": {"type": "object", "properties": {"filter": {"type": "object", "properties": {"term": {"type": "object", "properties": {"name": {"type": "object", "properties": {"value": {"type": "string"}, "boost": {"type": "number"}}, "required": ["value", "boost"]}}, "required": ["name"]}}, "required": ["term"]}, "boost": {"type": "number"}}, "required": ["filter", "boost"]}}, "required": ["constant_score"]}, "path": {"type": "string"}, "ignore_unmapped": {"type": "boolean"}, "score_mode": {"type": "string"}, "boost": {"type": "number"}, "_name": {"type": "string"}}, "required": ["query", "path", "ignore_unmapped", "score_mode", "boost", "_name"]}}, "required": ["nested"]}, "ext": {"type": "object", "properties": {}, "required": []}}, "required": ["query", "ext"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"query" : {"nested" : {"query" : {"constant_score" : {"filter" : {"term" : {"name" : {"value" : "sammy", "boost" : 1.0}}}, "boost" : 1.0}}, "path" : "obj1", "ignore_unmapped" : false, "score_mode" : "avg", "boost" : 14.5, "_name" : "namey"}}, "ext" : {}}
json_instruct
{"type": "object", "properties": {"query": {"type": "object", "properties": {"nested": {"type": "object", "properties": {"query": {"type": "object", "properties": {"constant_score": {"type": "object", "properties": {"filter": {"type": "object", "properties": {"term": {"type": "object", "properties": {"name": {"type": "object", "properties": {"value": {"type": "string"}, "boost": {"type": "number"}}, "required": ["value", "boost"]}}, "required": ["name"]}}, "required": ["term"]}, "boost": {"type": "number"}}, "required": ["filter", "boost"]}}, "required": ["constant_score"]}, "path": {"type": "string"}, "ignore_unmapped": {"type": "boolean"}, "score_mode": {"type": "string"}, "boost": {"type": "number"}, "_name": {"type": "string"}}, "required": ["query", "path", "ignore_unmapped", "score_mode", "boost", "_name"]}}, "required": ["nested"]}, "ext": {"type": "object", "properties": {}, "required": []}}, "required": ["query", "ext"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"firstName": {"type": "string"}, "lastName": {"type": "string"}, "userId": {"type": "string"}, "email": {"type": "string"}, "role": {"type": "string"}, "lastLoginTime": {"type": "integer"}, "status": {"type": "string"}, "fullName": {"type": "string"}}, "required": ["firstName", "lastName", "userId", "email", "role", "lastLoginTime", "status", "fullName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"firstName" : "Carlos", "lastName" : "Santana", "userId" : "m08740", "email" : "csantana@sdc.com", "role" : "DESIGNER", "lastLoginTime" : 1558297200989, "status" : "ACTIVE", "fullName" : "Carlos Santana"}
json_instruct
{"type": "object", "properties": {"firstName": {"type": "string"}, "lastName": {"type": "string"}, "userId": {"type": "string"}, "email": {"type": "string"}, "role": {"type": "string"}, "lastLoginTime": {"type": "integer"}, "status": {"type": "string"}, "fullName": {"type": "string"}}, "required": ["firstName", "lastName", "userId", "email", "role", "lastLoginTime", "status", "fullName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"text": {"type": "string"}, "user_id": {"type": "integer"}, "screen_name": {"type": "string"}, "id": {"type": "integer"}, "bid": {"type": "string"}, "article_url": {"type": "string"}, "pics": {"type": "string"}, "video_url": {"type": "string"}, "location": {"type": "string"}, "created_at": {"type": "string"}, "source": {"type": "string"}, "attitudes_count": {"type": "integer"}, "comments_count": {"type": "integer"}, "reposts_count": {"type": "integer"}, "topics": {"type": "string"}, "at_users": {"type": "string"}, "history_date": {"type": "string"}, "type": {"type": "integer"}}, "required": ["text", "user_id", "screen_name", "id", "bid", "article_url", "pics", "video_url", "location", "created_at", "source", "attitudes_count", "comments_count", "reposts_count", "topics", "at_users", "history_date", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : "#\u6297\u6218\u88c5\u5907#\u82f1\u5236\u7ef4\u514b\u65afM1930 E\u578b6\u5428\u5766\u514b\uff0c\u7ef4\u514b\u65af\u516c\u53f8\u5916\u9500\u578b\u53f7\uff0c\u5728\u5f53\u65f6\u706b\u529b\u5f3a\u52b2\uff0c\u5b89\u88c51\u95e847\u6beb\u7c73\u5766\u514b\u70ae\u548c1\u633a7.9\u6beb\u7c73\u673a\u67aa\uff0c\u673a\u52a8\u6027\u826f\u597d\uff0c\u4f46\u88c5\u7532\u8584\uff0c\u5c5e\u82f1\u5f0f\u5de1\u6d0b\u5766\u514b\u30021936\u5e74\u4e2d\u56fd\u8d2d\u8fdb16\u8f86\u8be5\u578b\u5766\u514b\u88c5\u5907\u6218\u8f66\u6559\u5bfc\u8425\u7b2c1\u8fde\uff08\u4ee3\u53f7\u201c\u864e\u201d\u8fde\uff09\u3002\u56e0\u6b64\uff0c\u8be5\u8fde\u961f\u6b64\u578b\u5766\u514b\u70ae\u5854\u5de6\u4fa7\u6807\u6709\u767d\u8272\u201c\u864e\u201d\u5b57\uff0c\u4f46\u6ca1\u6709\u9752\u5929\u767d\u65e5\u5fbd\u3002 ", "user_id" : 2896390104, "screen_name" : "\u6297\u6218\u76f4\u64ad", "id" : 3581458990097219, "bid" : "zyb7t0pi3", "article_url" : "", "pics" : "https://ww2.sinaimg.cn/large/aca367d8jw1e4z9zt62q7j20c10jw404.jpg", "video_url" : "", "location" : "", "created_at" : "2013-05-24", "source" : "\u76ae\u76ae\u65f6\u5149\u673a", "attitudes_count" : 2, "comments_count" : 7, "reposts_count" : 10, "topics" : "\u6297\u6218\u88c5\u5907", "at_users" : "", "history_date" : "1938\u5e7405\u670824\u65e5", "type" : 0}
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "user_id": {"type": "integer"}, "screen_name": {"type": "string"}, "id": {"type": "integer"}, "bid": {"type": "string"}, "article_url": {"type": "string"}, "pics": {"type": "string"}, "video_url": {"type": "string"}, "location": {"type": "string"}, "created_at": {"type": "string"}, "source": {"type": "string"}, "attitudes_count": {"type": "integer"}, "comments_count": {"type": "integer"}, "reposts_count": {"type": "integer"}, "topics": {"type": "string"}, "at_users": {"type": "string"}, "history_date": {"type": "string"}, "type": {"type": "integer"}}, "required": ["text", "user_id", "screen_name", "id", "bid", "article_url", "pics", "video_url", "location", "created_at", "source", "attitudes_count", "comments_count", "reposts_count", "topics", "at_users", "history_date", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ast" : null, "code" : "import createSvgIcon from './utils/createSvgIcon';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport default createSvgIcon([/*#__PURE__*/_jsx(\"path\", {\n d: \"M22 4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h9v-7c0-.55.45-1 1-1h6V4z\"\n}, \"0\"), /*#__PURE__*/_jsx(\"path\", {\n d: \"M21.69 16H20.3l1.4-3.3c.14-.33-.1-.7-.46-.7H17.5c-.28 0-.5.22-.5.5v5c0 .28.22.5.5.5H19v3.94c0 .26.36.35.47.11l2.66-5.33c.17-.33-.07-.72-.44-.72z\"\n}, \"1\")], 'QuickreplyRounded');", "map" : {"version" : 3, "sources" : ["/home/minjikim/min_workspace/tokyo-free-white-react-admin-dashboard/node_modules/@mui/icons-material/esm/QuickreplyRounded.js"], "names" : ["createSvgIcon", "jsx", "_jsx", "d"], "mappings" : "AAAA,OAAOA,aAAP,MAA0B,uBAA1B;AACA,SAASC,GAAG,IAAIC,IAAhB,QAA4B,mBAA5B;AACA,eAAeF,aAAa,CAAC,CAAC,aAAaE,IAAI,CAAC,MAAD,EAAS;AACtDC,EAAAA,CAAC,EAAE;AADmD,CAAT,EAE5C,GAF4C,CAAlB,EAEpB,aAAaD,IAAI,CAAC,MAAD,EAAS;AACjCC,EAAAA,CAAC,EAAE;AAD8B,CAAT,EAEvB,GAFuB,CAFG,CAAD,EAIlB,mBAJkB,CAA5B", "sourcesContent" : ["import createSvgIcon from './utils/createSvgIcon';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport default createSvgIcon([/*#__PURE__*/_jsx(\"path\", {\n d: \"M22 4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h9v-7c0-.55.45-1 1-1h6V4z\"\n}, \"0\"), /*#__PURE__*/_jsx(\"path\", {\n d: \"M21.69 16H20.3l1.4-3.3c.14-.33-.1-.7-.46-.7H17.5c-.28 0-.5.22-.5.5v5c0 .28.22.5.5.5H19v3.94c0 .26.36.35.47.11l2.66-5.33c.17-.33-.07-.72-.44-.72z\"\n}, \"1\")], 'QuickreplyRounded');"]}, "metadata" : {}, "sourceType" : "module"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"workbench.tree.indent": {"type": "integer"}}, "required": ["workbench.tree.indent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"workbench.tree.indent" : 15}
json_instruct
{"type": "object", "properties": {"workbench.tree.indent": {"type": "integer"}}, "required": ["workbench.tree.indent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"confirmed": {"type": "string"}, "deaths": {"type": "string"}, "recovered": {"type": "string"}}, "required": ["confirmed", "deaths", "recovered"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"confirmed" : "41756", "deaths" : "398", "recovered" : "30016"}
json_instruct
{"type": "object", "properties": {"confirmed": {"type": "string"}, "deaths": {"type": "string"}, "recovered": {"type": "string"}}, "required": ["confirmed", "deaths", "recovered"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"timeago.js": {"type": "string"}, "timeago.min.js": {"type": "string"}}, "required": ["timeago.js", "timeago.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"timeago.js" : "sha256-kC0GxvVarOthpSw+HTOV/TvsPRZJMJag3OSbd/F7wlg=", "timeago.min.js" : "sha256-bo7vY9szHaHFakiboALbHy4lUpq5Y9Ozv1lMEb8Ujas="}
json_instruct
{"type": "object", "properties": {"timeago.js": {"type": "string"}, "timeago.min.js": {"type": "string"}}, "required": ["timeago.js", "timeago.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}