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": {"name": {"type": "string"}, "number": {"type": "string"}, "is_illegal": {"type": "boolean"}, "text": {"type": "string"}, "type": {"type": "string"}, "is_monster": {"type": "boolean"}, "is_spell": {"type": "boolean"}, "is_trap": {"type": "boolean"}, "species": {"type": "string"}, "attack": {"type": "string"}, "defense": {"type": "string"}, "attribute": {"type": "string"}, "is_pendulum": {"type": "boolean"}, "is_xyz": {"type": "boolean"}, "is_synchro": {"type": "boolean"}, "is_fusion": {"type": "boolean"}, "is_link": {"type": "boolean"}, "is_extra_deck": {"type": "boolean"}, "monster_types": {"type": "array", "items": {"type": "string"}}, "stars": {"type": "string"}}, "required": ["name", "number", "is_illegal", "text", "type", "is_monster", "is_spell", "is_trap", "species", "attack", "defense", "attribute", "is_pendulum", "is_xyz", "is_synchro", "is_fusion", "is_link", "is_extra_deck", "monster_types", "stars"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Overlay Sentinel", "number" : "39229392", "is_illegal" : false, "text" : "Cannot be Special Summoned. When this card is Normal Summoned: Change this card to Defense Position. If you control a face-up Xyz Monster that has Xyz Material: You can banish this card from your Graveyard, then target 1 monster your opponent controls; it loses 500 ATK for each Xyz Material attached to a monster you control.", "type" : "Monster", "is_monster" : true, "is_spell" : false, "is_trap" : false, "species" : "Warrior", "attack" : "2000", "defense" : "0", "attribute" : "LIGHT", "is_pendulum" : false, "is_xyz" : false, "is_synchro" : false, "is_fusion" : false, "is_link" : false, "is_extra_deck" : false, "monster_types" : ["Effect"], "stars" : "4"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "number": {"type": "string"}, "is_illegal": {"type": "boolean"}, "text": {"type": "string"}, "type": {"type": "string"}, "is_monster": {"type": "boolean"}, "is_spell": {"type": "boolean"}, "is_trap": {"type": "boolean"}, "species": {"type": "string"}, "attack": {"type": "string"}, "defense": {"type": "string"}, "attribute": {"type": "string"}, "is_pendulum": {"type": "boolean"}, "is_xyz": {"type": "boolean"}, "is_synchro": {"type": "boolean"}, "is_fusion": {"type": "boolean"}, "is_link": {"type": "boolean"}, "is_extra_deck": {"type": "boolean"}, "monster_types": {"type": "array", "items": {"type": "string"}}, "stars": {"type": "string"}}, "required": ["name", "number", "is_illegal", "text", "type", "is_monster", "is_spell", "is_trap", "species", "attack", "defense", "attribute", "is_pendulum", "is_xyz", "is_synchro", "is_fusion", "is_link", "is_extra_deck", "monster_types", "stars"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"output": {"type": "string"}, "input": {"type": "string"}, "level": {"type": "integer"}, "name": {"type": "string"}, "has_images": {"type": "boolean"}, "description": {"type": "string"}, "id": {"type": "string"}, "category": {"type": "string"}, "statistics": {"type": "object", "properties": {"level": {"type": "string"}, "submissions": {"type": "integer"}, "solved": {"type": "integer"}, "ratio": {"type": "string"}}, "required": ["level", "submissions", "solved", "ratio"]}}, "required": ["output", "input", "level", "name", "has_images", "description", "id", "category", "statistics"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"output" : "undefined", "input" : "undefined", "level" : 2, "name" : "Colorindo", "has_images" : false, "description" : "undefined", "id" : "2405", "category" : "Ad-Hoc", "statistics" : {"level" : "2 / 10", "submissions" : 251, "solved" : 153, "ratio" : "60.96%"}} | json_instruct | {"type": "object", "properties": {"output": {"type": "string"}, "input": {"type": "string"}, "level": {"type": "integer"}, "name": {"type": "string"}, "has_images": {"type": "boolean"}, "description": {"type": "string"}, "id": {"type": "string"}, "category": {"type": "string"}, "statistics": {"type": "object", "properties": {"level": {"type": "string"}, "submissions": {"type": "integer"}, "solved": {"type": "integer"}, "ratio": {"type": "string"}}, "required": ["level", "submissions", "solved", "ratio"]}}, "required": ["output", "input", "level", "name", "has_images", "description", "id", "category", "statistics"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "private": {"type": "boolean"}, "keywords": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"build:schematics": {"type": "string"}, "test:schematics": {"type": "string"}}, "required": ["build:schematics", "test:schematics"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "peerDependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/core": {"type": "string"}}, "required": ["@angular/common", "@angular/core"]}, "dependencies": {"type": "object", "properties": {"@angular/cdk": {"type": "string"}}, "required": ["@angular/cdk"]}, "devDependencies": {"type": "object", "properties": {"@angular-devkit/core": {"type": "string"}, "@angular-devkit/schematics": {"type": "string"}, "@angular/cdk": {"type": "string"}, "@types/jasmine": {"type": "string"}, "@types/node": {"type": "string"}, "jasmine": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@angular-devkit/core", "@angular-devkit/schematics", "@angular/cdk", "@types/jasmine", "@types/node", "jasmine", "typescript"]}, "schematics": {"type": "string"}}, "required": ["name", "version", "description", "license", "author", "private", "keywords", "scripts", "repository", "peerDependencies", "dependencies", "devDependencies", "schematics"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@kamiazya/ngx-speech-recognition", "version" : "0.4.1", "description" : "Angular 5+ speech recognition service (based on browser implementation such as Chrome).", "license" : "MIT", "author" : "kamiazya <yuki@kamiazya.tech>", "private" : false, "keywords" : ["angular", "webspeechapi", "speech-recognition"], "scripts" : {"build:schematics" : "tsc -p tsconfig.schematics.json", "test:schematics" : "npm run build:schematics && jasmine schematics/**/*.spec.js"}, "repository" : {"type" : "git", "url" : "https://github.com/kamiazya/ngx-speech-recognition.git"}, "peerDependencies" : {"@angular/common" : "^7.2.0", "@angular/core" : "^7.2.0"}, "dependencies" : {"@angular/cdk" : "^7.2.0"}, "devDependencies" : {"@angular-devkit/core" : "^7.3.9", "@angular-devkit/schematics" : "^7.3.9", "@angular/cdk" : "^7.2.0", "@types/jasmine" : "^3.3.12", "@types/node" : "^12.0.0", "jasmine" : "^3.4.0", "typescript" : "^3.4.5"}, "schematics" : "./schematics/collection.json"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "private": {"type": "boolean"}, "keywords": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"build:schematics": {"type": "string"}, "test:schematics": {"type": "string"}}, "required": ["build:schematics", "test:schematics"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "peerDependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/core": {"type": "string"}}, "required": ["@angular/common", "@angular/core"]}, "dependencies": {"type": "object", "properties": {"@angular/cdk": {"type": "string"}}, "required": ["@angular/cdk"]}, "devDependencies": {"type": "object", "properties": {"@angular-devkit/core": {"type": "string"}, "@angular-devkit/schematics": {"type": "string"}, "@angular/cdk": {"type": "string"}, "@types/jasmine": {"type": "string"}, "@types/node": {"type": "string"}, "jasmine": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@angular-devkit/core", "@angular-devkit/schematics", "@angular/cdk", "@types/jasmine", "@types/node", "jasmine", "typescript"]}, "schematics": {"type": "string"}}, "required": ["name", "version", "description", "license", "author", "private", "keywords", "scripts", "repository", "peerDependencies", "dependencies", "devDependencies", "schematics"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "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"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "dependencies": {"type": "object", "properties": {"shelljs": {"type": "string"}}, "required": ["shelljs"]}}, "required": ["name", "version", "description", "main", "repository", "keywords", "author", "license", "bugs", "homepage", "publishConfig", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "vue-cli-plugin-movefiles", "version" : "1.1.2", "description" : "vue-cli 3 plugin to move files", "main" : "index.js", "repository" : {"type" : "git", "url" : "git+ssh://git@github.com:ybg555/vue-cli-plugin-movefiles.git"}, "keywords" : ["moveFiles", "copyFiles", "vue", "vue-cli", "plugin", "cli"], "author" : "bigang.ybg", "license" : "MIT", "bugs" : {"url" : "https://github.com/ybg555/vue-cli-plugin-movefiles/issues"}, "homepage" : "https://github.com/ybg555/vue-cli-plugin-movefiles", "publishConfig" : {"access" : "public"}, "dependencies" : {"shelljs" : "^0.8.3"}} | 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"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "dependencies": {"type": "object", "properties": {"shelljs": {"type": "string"}}, "required": ["shelljs"]}}, "required": ["name", "version", "description", "main", "repository", "keywords", "author", "license", "bugs", "homepage", "publishConfig", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "hexColor": {"type": "string"}}, "required": ["type", "hexColor"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"type" : "AmbientLight", "hexColor" : "#444444"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "hexColor": {"type": "string"}}, "required": ["type", "hexColor"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "string"}, "image_type": {"type": "string"}, "features": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}, "md5": {"type": "string"}, "md5_file": {"type": "string"}, "sha1": {"type": "string"}, "sha1_file": {"type": "string"}, "sha256": {"type": "string"}, "sha256_file": {"type": "string"}, "sha512": {"type": "string"}, "sha512_file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["vendor", "filename", "release_type", "version", "java_version", "jvm_impl", "os", "architecture", "file_type", "image_type", "features", "url", "md5", "md5_file", "sha1", "sha1_file", "sha256", "sha256_file", "sha512", "sha512_file", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vendor" : "liberica", "filename" : "bellsoft-jre8u322+6-linux-aarch64-musl.apk", "release_type" : "ga", "version" : "8u322+6", "java_version" : "8u322+6", "jvm_impl" : "hotspot", "os" : "linux", "architecture" : "aarch64", "file_type" : "apk", "image_type" : "jre", "features" : ["musl"], "url" : "https://github.com/bell-sw/Liberica/releases/download/8u322+6/bellsoft-jre8u322+6-linux-aarch64-musl.apk", "md5" : "65e44b361910140f3ddee5aa66b09970", "md5_file" : "bellsoft-jre8u322+6-linux-aarch64-musl.apk.md5", "sha1" : "0e66e4944ff8e8b8c417190109627e0f481af86c", "sha1_file" : "bellsoft-jre8u322+6-linux-aarch64-musl.apk.sha1", "sha256" : "ac6236ef70a0f6cc6a8674d21649776cdc72be5054f68233d711f595fb9decd1", "sha256_file" : "bellsoft-jre8u322+6-linux-aarch64-musl.apk.sha256", "sha512" : "9c9b8eb0f9979050fcc29c35805f347dfc044fb1051d23a977d208e20afa09c2748bf3c44f63d90c34e6989aaff4d0388816c4857511f26e4280c5b1fc04d75a", "sha512_file" : "bellsoft-jre8u322+6-linux-aarch64-musl.apk.sha512", "size" : 41381420} | json_instruct | {"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "string"}, "image_type": {"type": "string"}, "features": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}, "md5": {"type": "string"}, "md5_file": {"type": "string"}, "sha1": {"type": "string"}, "sha1_file": {"type": "string"}, "sha256": {"type": "string"}, "sha256_file": {"type": "string"}, "sha512": {"type": "string"}, "sha512_file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["vendor", "filename", "release_type", "version", "java_version", "jvm_impl", "os", "architecture", "file_type", "image_type", "features", "url", "md5", "md5_file", "sha1", "sha1_file", "sha256", "sha256_file", "sha512", "sha512_file", "size"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"an6.105:0.1": {"type": "string"}, "an6.105:0.2": {"type": "string"}, "an6.105:0.3": {"type": "string"}, "an6.105:1.1": {"type": "string"}, "an6.105:1.2": {"type": "string"}, "an6.105:1.3": {"type": "string"}, "an6.105:1.4": {"type": "string"}, "an6.105:1.5": {"type": "string"}, "an6.105:1.6": {"type": "string"}, "an6.105:1.7": {"type": "string"}, "an6.105:1.8": {"type": "string"}, "an6.105:1.9": {"type": "string"}}, "required": ["an6.105:0.1", "an6.105:0.2", "an6.105:0.3", "an6.105:1.1", "an6.105:1.2", "an6.105:1.3", "an6.105:1.4", "an6.105:1.5", "an6.105:1.6", "an6.105:1.7", "an6.105:1.8", "an6.105:1.9"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"an6.105:0.1" : "Nummerierte Lehrreden 6 ", "an6.105:0.2" : "10. Vorteilhafte Folgen ", "an6.105:0.3" : "105. Daseinszust\u00e4nde ", "an6.105:1.1" : "\u201eM\u00f6nche und Nonnen, ihr solltet drei Daseinszust\u00e4nde aufgeben, und ihr solltet euch in drei Schulungen schulen. ", "an6.105:1.2" : "Welches sind die drei Daseinszust\u00e4nde, die ihr aufgeben solltet? ", "an6.105:1.3" : "Dasein im Bereich der Sinne, im Bereich der leuchtenden Form und im formlosen Bereich. ", "an6.105:1.4" : "Das sind die drei Daseinszust\u00e4nde, die ihr aufgeben solltet. ", "an6.105:1.5" : "Welches sind die drei Schulungen, in denen ihr euch schulen solltet? ", "an6.105:1.6" : "Die Schulung in hoher Sittlichkeit, in hohem Geist und in hoher Weisheit. ", "an6.105:1.7" : "Das sind die drei Schulungen, in denen ihr euch schulen solltet. ", "an6.105:1.8" : "Wenn eine Nonne diese drei Daseinszust\u00e4nde aufgegeben und sich in diesen drei Schulungen geschult hat, ", "an6.105:1.9" : "nennt man sie eine Nonne, die das Verlangen abgeschnitten, die Fesseln gel\u00f6st und die Einbildung richtig erfasst und dadurch dem Leiden ein Ende gemacht hat.\u201c "} | json_instruct | {"type": "object", "properties": {"an6.105:0.1": {"type": "string"}, "an6.105:0.2": {"type": "string"}, "an6.105:0.3": {"type": "string"}, "an6.105:1.1": {"type": "string"}, "an6.105:1.2": {"type": "string"}, "an6.105:1.3": {"type": "string"}, "an6.105:1.4": {"type": "string"}, "an6.105:1.5": {"type": "string"}, "an6.105:1.6": {"type": "string"}, "an6.105:1.7": {"type": "string"}, "an6.105:1.8": {"type": "string"}, "an6.105:1.9": {"type": "string"}}, "required": ["an6.105:0.1", "an6.105:0.2", "an6.105:0.3", "an6.105:1.1", "an6.105:1.2", "an6.105:1.3", "an6.105:1.4", "an6.105:1.5", "an6.105:1.6", "an6.105:1.7", "an6.105:1.8", "an6.105:1.9"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"Crossover": {"type": "array", "items": {"type": "string"}}}, "required": ["Crossover"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Crossover" : ["RedSkiesCrossover", "PoorlyDisguisedPilot", "CrossoverIndex", "BoringButPractical", "FanWorks", "ProfessionalWrestling", "OlderThanFeudalism", "Arcadia", "FamilyLife", "PanelGame", "ExactlyWhatItSaysOnTheTin", "ActorAllusion", "TheMultiverse", "WordOfGod", "Canon", "AnotherDimension", "OlderAndWiser", "WordOfGod", "WordOfGod", "AnotherDimension", "OlderAndWiser", "WordOfGod", "WordOfGod"]} | json_instruct | {"type": "object", "properties": {"Crossover": {"type": "array", "items": {"type": "string"}}}, "required": ["Crossover"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"executedFunctions": {"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "SourceURL": {"type": "string"}}, "required": ["line", "column", "SourceURL"]}}}, "required": ["executedFunctions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"executedFunctions" : [{"line" : 0, "column" : 25522, "SourceURL" : "main.js"}, {"line" : 0, "column" : 25877, "SourceURL" : "main.js"}, {"line" : 0, "column" : 139, "SourceURL" : "seg-1.js"}]} | json_instruct | {"type": "object", "properties": {"executedFunctions": {"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "SourceURL": {"type": "string"}}, "required": ["line", "column", "SourceURL"]}}}, "required": ["executedFunctions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "object", "properties": {"lastName": {"type": "string"}, "firstName": {"type": "string"}}, "required": ["lastName", "firstName"]}}, "required": ["title", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "My Other Big Book", "author" : {"lastName" : "Smith", "firstName" : "John"}} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "object", "properties": {"lastName": {"type": "string"}, "firstName": {"type": "string"}}, "required": ["lastName", "firstName"]}}, "required": ["title", "author"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-type", "title", "id", "content", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"published" : "2015-09-02T21:31:47Z", "media-type" : "Blog", "title" : "Baby Monitors Riddled With Security Holes", "id" : "ac6b6841-ec1c-4570-b83e-d1b4699dcebd", "content" : "Rapid7 has released a report on an assortment of new vulnerabilities found in baby monitors: predictable information leaks; backdoor credentials; reflective, stored XSS; direct browsing; authentication bypass; and privilege escalation. \u201cMany of the issues would allow video and audio from the device to be viewed by an attacker,\u201d said Mark Stanislav, senior security consultant at Rapid7. \nRay Allen Tracy Mcgrady Iker Casillas Dale Earnhardt, Jr. Kimi Raikkonen", "source" : "Foxy News"} | json_instruct | {"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-type", "title", "id", "content", "source"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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": {"minimum-net-dwellings": {"type": "string"}, "hectares": {"type": "string"}, "site-plan-url": {"type": "string"}, "point": {"type": "string"}, "site": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "planning-permission-type": {"type": "string"}, "planning-permission-history": {"type": "string"}, "planning-permission-status": {"type": "string"}, "start-date": {"type": "string"}, "notes": {"type": "string"}, "planning-permission-date": {"type": "string"}, "name": {"type": "string"}, "site-address": {"type": "string"}, "ownership-status": {"type": "string"}, "organisation": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}, "deliverable": {"type": "string"}}, "required": ["minimum-net-dwellings", "hectares", "site-plan-url", "point", "site", "maximum-net-dwellings", "planning-permission-type", "planning-permission-history", "planning-permission-status", "start-date", "notes", "planning-permission-date", "name", "site-address", "ownership-status", "organisation", "slug", "entity", "entry-date", "deliverable"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-1.321069, 51.709418]}, "properties" : {"minimum-net-dwellings" : "64", "hectares" : "2.01", "site-plan-url" : "http://www.whitehorsedc.gov.uk/sites/default/files/P16V0290RM.png", "point" : "POINT(-1.321069 51.709418)", "site" : "P16/V0290/RM", "maximum-net-dwellings" : "64", "planning-permission-type" : "reserved matters approval", "planning-permission-history" : "http://maps.whitehorsedc.gov.uk/gis/?cat=PA&ref=P16/V0290/RM", "planning-permission-status" : "permissioned", "start-date" : "2017-12-08", "notes" : "Reserved matters application for demolition of existing building and erection of 64 dwellings following grant of outline planning permission under reference P13/V0385/O. http://maps.whitehorsedc.gov.uk/gis/?cat=PA&ref=P16/V0290/RM", "planning-permission-date" : "2016-09-09", "name" : "P16/V0290/RM", "site-address" : "Land at Besselsleigh Road Wootton OX13 6DX", "ownership-status" : "not owned by a public authority", "organisation" : "local-authority-eng:VAL", "slug" : "/brownfield-land/local-authority-eng/VAL/P16-V0290-RM", "entity" : 497092, "entry-date" : "2017-12-08", "deliverable" : "yes"}} | 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": {"minimum-net-dwellings": {"type": "string"}, "hectares": {"type": "string"}, "site-plan-url": {"type": "string"}, "point": {"type": "string"}, "site": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "planning-permission-type": {"type": "string"}, "planning-permission-history": {"type": "string"}, "planning-permission-status": {"type": "string"}, "start-date": {"type": "string"}, "notes": {"type": "string"}, "planning-permission-date": {"type": "string"}, "name": {"type": "string"}, "site-address": {"type": "string"}, "ownership-status": {"type": "string"}, "organisation": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}, "deliverable": {"type": "string"}}, "required": ["minimum-net-dwellings", "hectares", "site-plan-url", "point", "site", "maximum-net-dwellings", "planning-permission-type", "planning-permission-history", "planning-permission-status", "start-date", "notes", "planning-permission-date", "name", "site-address", "ownership-status", "organisation", "slug", "entity", "entry-date", "deliverable"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"immutable.js": {"type": "string"}, "immutable.min.js": {"type": "string"}}, "required": ["immutable.js", "immutable.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"immutable.js" : "sha512-0jGdny97JNaX3TL5aL9xnlgcYjBpTyWeuWAk8jniFucrtXjHXCzYTDzlO0oEgig3ekUvd6gNXgBBxiUj9+0Aeg==", "immutable.min.js" : "sha512-MBLy6rFrQe+E16BeV7y89TdurD005z9op90LOTyt8lw9U/l1G/uZEI8cGQgYyXACvKg0Z4xKyTOi6t3umNbrAg=="} | json_instruct | {"type": "object", "properties": {"immutable.js": {"type": "string"}, "immutable.min.js": {"type": "string"}}, "required": ["immutable.js", "immutable.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}, "additional": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}}, "required": ["main", "additional"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 97367, "info" : {"name" : "multitran.ru responsive", "description" : "Attempt to create a responsive theme for multitran.ru.\r\nI hid some elements and add fluid width to the tables.", "additionalInfo" : null, "format" : "uso", "category" : "multitran", "createdAt" : "2014-01-19T20:52:58.000Z", "updatedAt" : "2014-01-24T21:20:40.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 254559, "name" : "Alex Milkovskyi"}}, "stats" : {"installs" : {"total" : 94, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "97367_after.png", "archived" : false}, "additional" : [{"name" : "97367_additional_9963.png", "archived" : false}]}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document url-prefix(\"http://www.multitran.ru\") {\r\ntable, td {\r\n width: auto !important;\r\n}\r\ninput[type=\"text\"], select {\r\n width: 98%;\r\n}\r\n/* disable footer */\r\n#yandex_ad_R-57304-1, \r\niframe,\r\ntr[bgcolor=\"#DBDBDB\"] {\r\n display: none;\r\n}\r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}, "additional": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}}, "required": ["main", "additional"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"kitchen": {"type": "object", "properties": {"roomId": {"type": "integer"}, "devices": {"type": "object", "properties": {"lights": {"type": "integer"}}, "required": ["lights"]}}, "required": ["roomId", "devices"]}}, "required": ["kitchen"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"kitchen" : {"roomId" : 4, "devices" : {"lights" : 1}}} | json_instruct | {"type": "object", "properties": {"kitchen": {"type": "object", "properties": {"roomId": {"type": "integer"}, "devices": {"type": "object", "properties": {"lights": {"type": "integer"}}, "required": ["lights"]}}, "required": ["roomId", "devices"]}}, "required": ["kitchen"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"cpcivm_vnc_title": {"type": "string"}, "cpcivm_vnc_tip": {"type": "string"}, "cpcivm_vnc_window": {"type": "string"}, "cpcivm_vnc_error": {"type": "string"}, "cpcivm_vnc_linuxinfo": {"type": "string"}}, "required": ["cpcivm_vnc_title", "cpcivm_vnc_tip", "cpcivm_vnc_window", "cpcivm_vnc_error", "cpcivm_vnc_linuxinfo"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cpcivm_vnc_title" : "Console VNC", "cpcivm_vnc_tip" : "Suggerimento: se l'inserimento da tastiera non funziona, clicca sulla barra blu sottostante", "cpcivm_vnc_window" : "Aprire in una nuova finestra", "cpcivm_vnc_error" : "Si \u00e8 verificato un errore nell'apertura della console VNC", "cpcivm_vnc_linuxinfo" : "Per utilizzare la console VNC su una macchina Linux, connettiti via SSH e imposta nome utente e password."} | json_instruct | {"type": "object", "properties": {"cpcivm_vnc_title": {"type": "string"}, "cpcivm_vnc_tip": {"type": "string"}, "cpcivm_vnc_window": {"type": "string"}, "cpcivm_vnc_error": {"type": "string"}, "cpcivm_vnc_linuxinfo": {"type": "string"}}, "required": ["cpcivm_vnc_title", "cpcivm_vnc_tip", "cpcivm_vnc_window", "cpcivm_vnc_error", "cpcivm_vnc_linuxinfo"], "$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"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "jquery": {"type": "string"}, "jsdom": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["chai", "jquery", "jsdom", "mocha"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "hippo-password-strength", "version" : "1.2.0", "description" : "Hippo password strength checker.", "main" : "jquery.hippo-password-strength.js", "directories" : {"test" : "test"}, "scripts" : {"test" : "mocha"}, "repository" : {"type" : "git", "url" : "git+https://github.com/kurotaky/hippo-password-strength.git"}, "author" : "Yuta Kurotaki", "license" : "ISC", "bugs" : {"url" : "https://github.com/kurotaky/hippo-password-strength/issues"}, "homepage" : "https://github.com/kurotaky/hippo-password-strength#readme", "devDependencies" : {"chai" : "^3.5.0", "jquery" : "^3.1.1", "jsdom" : "^9.5.0", "mocha" : "^3.0.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "jquery": {"type": "string"}, "jsdom": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["chai", "jquery", "jsdom", "mocha"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"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" : [[[-74.862793, 39.899919], [-74.862313, 39.931103], [-74.822584, 39.934041], [-74.827571, 39.92575], [-74.828153, 39.922205], [-74.825892, 39.917422], [-74.826224, 39.911922], [-74.824549, 39.905055], [-74.816206, 39.905158], [-74.806953, 39.90331], [-74.809224, 39.901191], [-74.809729, 39.899156], [-74.814761, 39.901033], [-74.815006, 39.899714], [-74.817904, 39.899048], [-74.818255, 39.897512], [-74.819434, 39.897671], [-74.821138, 39.895836], [-74.823568, 39.895479], [-74.823519, 39.892682], [-74.820257, 39.883482], [-74.832914, 39.885082], [-74.835656, 39.888536], [-74.838445, 39.888239], [-74.83866, 39.888978], [-74.839914, 39.88898], [-74.841354, 39.888396], [-74.844913, 39.890059], [-74.845911, 39.889375], [-74.849156, 39.89056], [-74.849719, 39.889921], [-74.851951, 39.890464], [-74.852863, 39.889898], [-74.856707, 39.890966], [-74.862533, 39.888698], [-74.862793, 39.899919]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 39159}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1967, 7], [1968, 7], [1970, 9], [1971, 8], [1972, 6], [1973, 9], [1974, 5], [1976, 6], [1979, 6], [1980, 6], [1981, 7], [1982, 7], [1993, 6]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"lastUpdated" : 1655019279666, "username" : "EatMyMcMuffin11", "scores" : [{"xp" : 10048, "rank" : 366, "cardId" : 222}, {"xp" : 7585, "rank" : 243, "cardId" : 245}, {"xp" : 17408, "rank" : 254, "cardId" : 116}, {"xp" : 6610, "rank" : 326, "cardId" : 229}, {"xp" : 7270, "rank" : 412, "cardId" : 277}, {"xp" : 10905, "rank" : 316, "cardId" : 528}]} | json_instruct | {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 404391651, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "a5ceb1118ffc05cac2c0aa7d61426a6f", "wof:id" : 404391651, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [0.11944, 46.0875, 0.11944, 46.0875], "geometry" : {"coordinates" : [0.11944, 46.0875], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 101874513, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "694b1611f8d00a6fa60351e74040f580", "wof:id" : 101874513, "wof:repo" : "whosonfirst-data-admin-pl"}, "bbox" : [17.07456, 52.93612, 17.07456, 52.93612], "geometry" : {"coordinates" : [17.07456, 52.93612], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"Material": {"type": "object", "properties": {"Directory Material": {"type": "string"}, "UUID Resource": {"type": "integer"}, "Name": {"type": "string"}, "Type": {"type": "integer"}, "Last Write": {"type": "integer"}}, "required": ["Directory Material", "UUID Resource", "Name", "Type", "Last Write"]}}, "required": ["Material"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Material" : {"Directory Material" : "Assets/torch.tga", "UUID Resource" : 1009349572, "Name" : "torch.tga", "Type" : 2, "Last Write" : 1522400466}} | json_instruct | {"type": "object", "properties": {"Material": {"type": "object", "properties": {"Directory Material": {"type": "string"}, "UUID Resource": {"type": "integer"}, "Name": {"type": "string"}, "Type": {"type": "integer"}, "Last Write": {"type": "integer"}}, "required": ["Directory Material", "UUID Resource", "Name", "Type", "Last Write"]}}, "required": ["Material"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x1cce39da85ff2d5ceae92a810447b52df13f9267", "tool" : "manticore", "start" : 1564148073.7984915, "end" : 1564149875.6785758, "duration" : 1801.8800842761993, "analysis" : [[], []]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"nom": {"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": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Lavars", "dpt" : "Is\u00e8re", "inscrits" : 133, "abs" : 31, "votants" : 102, "blancs" : 11, "nuls" : 7, "exp" : 84, "res" : [{"panneau" : "1", "voix" : 57}, {"panneau" : "2", "voix" : 27}]} | json_instruct | {"type": "object", "properties": {"nom": {"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": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "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": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "integer"}, "feedsPub": {"type": "integer"}}, "required": ["feedly", "inoreader", "feedsPub"]}, "failedSources": {"type": "object", "properties": {}, "required": []}}, "required": ["totalSubs", "subsInEachSource", "failedSources"]}, "lastModified": {"type": "integer"}}, "required": ["status", "data", "lastModified"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status" : 200, "data" : {"totalSubs" : 59, "subsInEachSource" : {"feedly" : 42, "inoreader" : 14, "feedsPub" : 3}, "failedSources" : {}}, "lastModified" : 1610327309932} | json_instruct | {"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "integer"}, "feedsPub": {"type": "integer"}}, "required": ["feedly", "inoreader", "feedsPub"]}, "failedSources": {"type": "object", "properties": {}, "required": []}}, "required": ["totalSubs", "subsInEachSource", "failedSources"]}, "lastModified": {"type": "integer"}}, "required": ["status", "data", "lastModified"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"facets": {"type": "object", "properties": {"Wikipedia:Citing sources": {"type": "integer"}, "chronology": {"type": "integer"}, "work": {"type": "integer"}, "version, edition, or translation": {"type": "integer"}, "name": {"type": "integer"}, "MediaWiki page": {"type": "integer"}, "location of an event": {"type": "integer"}}, "required": ["Wikipedia:Citing sources", "chronology", "work", "version, edition, or translation", "name", "MediaWiki page", "location of an event"]}, "total_accumulated_facets": {"type": "integer"}, "unique_facets": {"type": "integer"}, "properties_without_facets": {"type": "integer"}, "properties_without_facets_accumulated": {"type": "integer"}}, "required": ["facets", "total_accumulated_facets", "unique_facets", "properties_without_facets", "properties_without_facets_accumulated"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"facets" : {"Wikipedia:Citing sources" : 903, "chronology" : 59, "work" : 17, "version, edition, or translation" : 17, "name" : 15, "MediaWiki page" : 12, "location of an event" : 2}, "total_accumulated_facets" : 1025, "unique_facets" : 7, "properties_without_facets" : 0, "properties_without_facets_accumulated" : 0} | json_instruct | {"type": "object", "properties": {"facets": {"type": "object", "properties": {"Wikipedia:Citing sources": {"type": "integer"}, "chronology": {"type": "integer"}, "work": {"type": "integer"}, "version, edition, or translation": {"type": "integer"}, "name": {"type": "integer"}, "MediaWiki page": {"type": "integer"}, "location of an event": {"type": "integer"}}, "required": ["Wikipedia:Citing sources", "chronology", "work", "version, edition, or translation", "name", "MediaWiki page", "location of an event"]}, "total_accumulated_facets": {"type": "integer"}, "unique_facets": {"type": "integer"}, "properties_without_facets": {"type": "integer"}, "properties_without_facets_accumulated": {"type": "integer"}}, "required": ["facets", "total_accumulated_facets", "unique_facets", "properties_without_facets", "properties_without_facets_accumulated"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"calendarevents": {"type": "string"}, "defaultnotificationtime": {"type": "string"}, "errorloadevent": {"type": "string"}, "errorloadevents": {"type": "string"}, "noevents": {"type": "string"}, "notifications": {"type": "string"}}, "required": ["calendarevents", "defaultnotificationtime", "errorloadevent", "errorloadevents", "noevents", "notifications"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"calendarevents" : "Eventos del calendario", "defaultnotificationtime" : "Hora de notificaci\u00f3n por defecto", "errorloadevent" : "Error al cargar evento.", "errorloadevents" : "Error al cargar eventos.", "noevents" : "No hay actividades pr\u00f3ximas pendientes", "notifications" : "Notificaciones"} | json_instruct | {"type": "object", "properties": {"calendarevents": {"type": "string"}, "defaultnotificationtime": {"type": "string"}, "errorloadevent": {"type": "string"}, "errorloadevents": {"type": "string"}, "noevents": {"type": "string"}, "notifications": {"type": "string"}}, "required": ["calendarevents", "defaultnotificationtime", "errorloadevent", "errorloadevents", "noevents", "notifications"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "null"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : "WASNZ2", "lang" : "de", "description" : null, "name" : "Wassernutzung", "type" : "Merkmal"} | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "null"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d183-37", "text" : "In Aprils The Institute for Education by Radio<=1elevision and\nthe Television Programs Institute;\nIfl.Magyar The annual meeting of the American Council on Education,,\nIn connection with these meetings# the Executive Director has taken the\nopportunity to visit the following mmbor stations.?\nWFPL \u00ab\u00ab\u2022 Louisville\nWNAS New Albany\nWTJOA i\u2014 University of Alabama\nWABE \u00ab\u2022 Atlanta Public Schools\nWUCT \u00ab- University of Tennessee\nWBKT University of Kentucky\nmXC \u2014 New York Gity\nWDIX2 <=\u00bb* Duqueshe University\nWMUR \u2014 Miami (Ohio)\nWEP8 \u2014 Elgin Public Schools\nWBOE \u00ab\u2014 Cleveland Public Schools\nWEAR Michigan State College\nWKGR \u2014 Western Michigan State Collage\nKSLH \u2014 St0 Louis Public Schools\nWNAD \u00ab*\u00bb University of Oklahoma\nWO I \u2014 Iowa State College\nIn addition,, the Executive Director visited Associate Member Lehigh\nUniversity \u00a9id prospective member Antioch College* Past travelling has enabled the\nExecutive Director to visits\nWHA \u2014 University of Wisconsin\nKUOM \u00ab*\u00bb University of Minnesota,\nWUOM <\u2014 University of Michigan\nWSUI \u00ab\u25a0\u00bb State University of Iowa\nWFITJ \u2014 Indiana University\nWGRE \u00ab\u25a0\u00bb. DePauw University\nWILL \u2014 University of Illin6is\nWBM Purdue University\nThis personal knowledge of the personnel# facilities# and methods of\nops ration of twenty\u00abfour of our eightyour Active Members makes it a great deal\n\u00a9pier to rander real service to these menberso"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 1208, "surahNumber" : "008", "ayatNumber" : "048", "arabic" : "\u0648\u064e\u0625\u0650\u0630\u0652 \u0632\u064e\u064a\u0651\u064e\u0646\u064e \u0644\u064e\u0647\u064f\u0645\u064f \u0627\u0644\u0634\u0651\u064e\u064a\u0652\u0637\u064e\u0627\u0646\u064f \u0623\u064e\u0639\u0652\u0645\u064e\u0627\u0644\u064e\u0647\u064f\u0645\u0652 \u0648\u064e\u0642\u064e\u0627\u0644\u064e \u0644\u064e\u0627 \u063a\u064e\u0627\u0644\u0650\u0628\u064e \u0644\u064e\u0643\u064f\u0645\u064f \u0627\u0644\u0652\u064a\u064e\u0648\u0652\u0645\u064e \u0645\u0650\u0646\u064e \u0627\u0644\u0646\u0651\u064e\u0627\u0633\u0650 \u0648\u064e\u0625\u0650\u0646\u0651\u0650\u064a \u062c\u064e\u0627\u0631\u064c \u0644\u064e\u0643\u064f\u0645\u0652 \u06d6 \u0641\u064e\u0644\u064e\u0645\u0651\u064e\u0627 \u062a\u064e\u0631\u064e\u0627\u0621\u064e\u062a\u0650 \u0627\u0644\u0652\u0641\u0650\u0626\u064e\u062a\u064e\u0627\u0646\u0650 \u0646\u064e\u0643\u064e\u0635\u064e \u0639\u064e\u0644\u064e\u0649\u0670 \u0639\u064e\u0642\u0650\u0628\u064e\u064a\u0652\u0647\u0650 \u0648\u064e\u0642\u064e\u0627\u0644\u064e \u0625\u0650\u0646\u0651\u0650\u064a \u0628\u064e\u0631\u0650\u064a\u0621\u064c \u0645\u0650\u0646\u0652\u0643\u064f\u0645\u0652 \u0625\u0650\u0646\u0651\u0650\u064a \u0623\u064e\u0631\u064e\u0649\u0670 \u0645\u064e\u0627 \u0644\u064e\u0627 \u062a\u064e\u0631\u064e\u0648\u0652\u0646\u064e \u0625\u0650\u0646\u0651\u0650\u064a \u0623\u064e\u062e\u064e\u0627\u0641\u064f \u0627\u0644\u0644\u0651\u064e\u0647\u064e \u06da \u0648\u064e\u0627\u0644\u0644\u0651\u064e\u0647\u064f \u0634\u064e\u062f\u0650\u064a\u062f\u064f \u0627\u0644\u0652\u0639\u0650\u0642\u064e\u0627\u0628\u0650", "english" : "And (remember) when Shaitan (Satan) made their (evil) deeds seem fair to them and said, \"No one of mankind can overcome you this Day (of the battle of Badr) and verily, I am your neighbour (for each and every help).\" But when the two forces came in sight of each other, he ran away and said \"Verily, I have nothing to do with you. Verily! I see what you see not. Verily! I fear Allah for Allah is Severe in punishment.\"", "bengali" : "\u0986\u09b0 \u09af\u0996\u09a8 \u09b8\u09c1\u09a6\u09c3\u09b6\u09cd\u09af \u0995\u09b0\u09c7 \u09a6\u09bf\u09b2 \u09b6\u09df\u09a4\u09be\u09a8 \u09a4\u09be\u09a6\u09c7\u09b0 \u09a6\u09c3\u09b7\u09cd\u099f\u09bf\u09a4\u09c7 \u09a4\u09be\u09a6\u09c7\u09b0 \u0995\u09be\u09b0\u09cd\u09af\u0995\u09b2\u09be\u09aa\u0995\u09c7 \u098f\u09ac\u0982 \u09ac\u09b2\u09b2 \u09af\u09c7, \u0986\u099c\u0995\u09c7\u09b0 \u09a6\u09bf\u09a8\u09c7 \u0995\u09c7\u09be\u09a8 \u09ae\u09be\u09a8\u09c1\u09b7\u0987 \u09a4\u09c7\u09be\u09ae\u09be\u09a6\u09c7\u09b0 \u0989\u09aa\u09b0 \u09ac\u09bf\u099c\u09df\u09c0 \u09b9\u09a4\u09c7 \u09aa\u09be\u09b0\u09ac\u09c7 \u09a8\u09be \u0986\u09b0 \u0986\u09ae\u09bf \u09b9\u09b2\u09be\u09ae \u09a4\u09c7\u09be\u09ae\u09be\u09a6\u09c7\u09b0 \u09b8\u09ae\u09b0\u09cd\u09a5\u0995, \u0985\u09a4\u0983\u09aa\u09b0 \u09af\u0996\u09a8 \u09b8\u09be\u09ae\u09a8\u09be\u09b8\u09be\u09ae\u09a8\u09c0 \u09b9\u09b2 \u0989\u09ad\u09df \u09ac\u09be\u09b9\u09bf\u09a8\u09c0 \u09a4\u0996\u09a8 \u09b8\u09c7 \u0985\u09a4\u09bf \u09a6\u09cd\u09b0\u09c1\u09a4 \u09aa\u09be\u09df\u09c7 \u09aa\u09c7\u099b\u09a8\u09c7 \u09a6\u09bf\u0995\u09c7 \u09aa\u09be\u09b2\u09bf\u09df\u09c7 \u0997\u09c7\u09b2 \u098f\u09ac\u0982 \u09ac\u09b2\u09b2, \u0986\u09ae\u09bf \u09a4\u09c7\u09be\u09ae\u09be\u09a6\u09c7\u09b0 \u09b8\u09be\u09a5\u09c7 \u09a8\u09be-\u0986\u09ae\u09bf \u09a6\u09c7\u0996\u099b\u09bf, \u09af\u09be \u09a4\u09c7\u09be\u09ae\u09b0\u09be \u09a6\u09c7\u0996\u099b \u09a8\u09be; \u0986\u09ae\u09bf \u09ad\u09df \u0995\u09b0\u09bf \u0986\u09b2\u09cd\u09b2\u09be\u09b9\u0995\u09c7\u0964 \u0986\u09b0 \u0986\u09b2\u09cd\u09b2\u09be\u09b9\u09b0 \u0986\u09af\u09be\u09ac \u0985\u09a4\u09cd\u09af\u09a8\u09cd\u09a4 \u0995\u09a0\u09bf\u09a8\u0964"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"authors" : [{"author" : "Varun V Varadarajan"}, {"author" : "Elizabeth K Pace"}, {"author" : "Vatsal Patel"}, {"author" : "Raja Sawhney"}, {"author" : "Robert J Amdur"}, {"author" : "Peter T Dziegielewski"}], "doi" : "10.1186/s12885-017-3199-3", "publication_date" : "2017-03-30", "id" : "EN114141", "url" : "https://pubmed.ncbi.nlm.nih.gov/28351395", "source" : "BMC cancer", "source_url" : "", "licence" : "CC BY", "language" : "en", "type" : "pubmed", "description" : "", "text" : "A 73-year-old female presented with metastatic FTC to the mandible and underwent total thyroidectomy, segmental mandibulectomy, bone impacted fibular free flap reconstruction, and adjuvant radioactive iodine treatment. The PubMed database was searched for literature describing thyroid cancer with facial skeleton metastasis using the key words \"thyroid,\" \"cancer,\" \"carcinoma,\" \"metastasis,\" and \"malignancy\" with \"oral cavity,\" \"maxilla,\" \"mandible,\" \"sinus,\" \"paranasal,\" and \"orbit.\" Reports that only involved the soft tissues were excluded. Systematic review revealed 59 cases of well-differentiated thyroid cancer with facial skeleton metastasis: 35 mandibular metastases (21\u00a0=\u00a0FTC), 6 maxilla metastases (2\u00a0=\u00a0FTC), 9 orbital metastases (4\u00a0=\u00a0FTC), and 11 paranasal sinus metastases (7\u00a0=\u00a0FTC). Treatment included surgery, RAI, external beam radiotherapy (XRT), or a combination of these modalities. The one, two, and five-year survival rates were 100%, 79%, and 16%, respectively."} | json_instruct | {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "twigs:block/weeping_polished_blackstone_brick_wall_inventory"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "debug": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "debug", "build"]}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "dependencies": {"type": "object", "properties": {"@webcomponents/webcomponentsjs": {"type": "string"}, "body-parser": {"type": "string"}, "cookie-parser": {"type": "string"}, "debug": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "morgan": {"type": "string"}, "nedb": {"type": "string"}, "pug": {"type": "string"}, "serve-favicon": {"type": "string"}, "web-push": {"type": "string"}}, "required": ["@webcomponents/webcomponentsjs", "body-parser", "cookie-parser", "debug", "dotenv", "express", "morgan", "nedb", "pug", "serve-favicon", "web-push"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "private", "scripts", "description", "author", "dependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "pwa-push", "version" : "0.0.0", "private" : true, "scripts" : {"start" : "node app", "debug" : "node --inspect app", "build" : "xcopy node_modules\\@webcomponents\\webcomponentsjs\\webcomponents-bundle.js public /Y"}, "description" : "PWA-push", "author" : {"name" : ""}, "dependencies" : {"@webcomponents/webcomponentsjs" : "^2.2.10", "body-parser" : "^1.15.0", "cookie-parser" : "^1.4.0", "debug" : "^2.2.0", "dotenv" : "^7.0.0", "express" : "^4.14.0", "morgan" : "^1.7.0", "nedb" : "^1.8.0", "pug" : "^2.0.0-beta6", "serve-favicon" : "^2.3.0", "web-push" : "^3.3.3"}, "engines" : {"node" : "~6.10.x"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "debug": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "debug", "build"]}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "dependencies": {"type": "object", "properties": {"@webcomponents/webcomponentsjs": {"type": "string"}, "body-parser": {"type": "string"}, "cookie-parser": {"type": "string"}, "debug": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "morgan": {"type": "string"}, "nedb": {"type": "string"}, "pug": {"type": "string"}, "serve-favicon": {"type": "string"}, "web-push": {"type": "string"}}, "required": ["@webcomponents/webcomponentsjs", "body-parser", "cookie-parser", "debug", "dotenv", "express", "morgan", "nedb", "pug", "serve-favicon", "web-push"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "private", "scripts", "description", "author", "dependencies", "engines"], "$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"}, "main": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@types/jsdom": {"type": "string"}, "@types/node": {"type": "string"}, "@types/node-fetch": {"type": "string"}, "jsdom": {"type": "string"}, "node-fetch": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jsdom", "@types/node", "@types/node-fetch", "jsdom", "node-fetch", "typescript"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "watch": {"type": "string"}, "run": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["start", "build", "watch", "run", "postinstall"]}, "description": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}}, "required": ["name", "version", "main", "license", "private", "dependencies", "scripts", "description", "repository", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "kupi", "version" : "1.0.1", "main" : "build/index.js", "license" : "MIT", "private" : false, "dependencies" : {"@types/jsdom" : "^16.2.11", "@types/node" : "^15.12.2", "@types/node-fetch" : "^2.5.10", "jsdom" : "^16.6.0", "node-fetch" : "^2.6.1", "typescript" : "^4.3.2"}, "scripts" : {"start" : "node .", "build" : "tsc", "watch" : "tsc --watch", "run" : "tsc && node .", "postinstall" : "tsc"}, "description" : "A wrapper for scraping Kupi.cz prices", "repository" : "https://github.com/HonbraDev/kupi.git", "author" : "Honbra <54026315+HonbraDev@users.noreply.github.com>"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@types/jsdom": {"type": "string"}, "@types/node": {"type": "string"}, "@types/node-fetch": {"type": "string"}, "jsdom": {"type": "string"}, "node-fetch": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jsdom", "@types/node", "@types/node-fetch", "jsdom", "node-fetch", "typescript"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "watch": {"type": "string"}, "run": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["start", "build", "watch", "run", "postinstall"]}, "description": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}}, "required": ["name", "version", "main", "license", "private", "dependencies", "scripts", "description", "repository", "author"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "chipped:block/orange_wool_10"} | 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": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"W01000371": {"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": ["W01000371"]}, "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" : {"W01000371" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "W00001987", "LAD11CD" : "W06000006"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "W00001988", "LAD11CD" : "W06000006"}, "arcs" : [[4, 5, -3, 6]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "W00001991", "LAD11CD" : "W06000006"}, "arcs" : [[-4, -6, 7]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "W00001992", "LAD11CD" : "W06000006"}, "arcs" : [[-7, -2, 8]]}]}}, "arcs" : [[[2047, 8904], [-36, 128], [-77, 515], [828, 452], [5179, -1029]], [[7941, 8970], [-62, -795], [-911, -729]], [[6968, 7446], [-77, 58]], [[6891, 7504], [-824, 1156], [-2516, -1936], [-1504, 2180]], [[7696, 2480], [-465, -324], [-338, 151], [-473, 212], [-538, -557]], [[5882, 1962], [-730, 525], [-387, 2969], [2126, 2048]], [[6968, 7446], [-168, -1934], [1481, -1422], [-441, -585], [-493, 451], [349, -1476]], [[5882, 1962], [-853, -883], [316, -1079], [-219, 201], [-1008, 924], [436, 427], [-467, 1990], [-2136, -1845], [-1951, 332], [132, 780], [148, 3202], [1015, -554], [171, 741], [445, -518], [746, 970], [-557, 993], [-1170, 358], [86, 1117], [1031, -214]], [[7941, 8970], [2058, 658], [-40, -3405], [-26, -3009], [-1166, -1529], [-743, 1024], [-328, -229]]], "transform" : {"scale" : [9.261633871118908e-07, 4.0644080847268753e-07], "translate" : [-3.000910292808059, 53.05125182561406]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"W01000371": {"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": ["W01000371"]}, "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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"nom": {"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": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Saint-Laurent-la-Conche", "dpt" : "Loire", "inscrits" : 478, "abs" : 105, "votants" : 373, "blancs" : 36, "nuls" : 10, "exp" : 327, "res" : [{"panneau" : "1", "voix" : 167}, {"panneau" : "2", "voix" : 160}]} | json_instruct | {"type": "object", "properties": {"nom": {"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": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"handle": {"type": "string"}, "name": {"type": "string"}, "organization": {"type": "string"}, "street": {"type": "string"}, "street2": {"type": "string"}, "street3": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "country_code": {"type": "string"}, "local_name": {"type": "string"}, "local_organization": {"type": "string"}, "local_street": {"type": "string"}, "local_street2": {"type": "string"}, "local_street3": {"type": "string"}, "local_city": {"type": "string"}, "local_state": {"type": "string"}, "local_postal_code": {"type": "string"}, "local_country_code": {"type": "string"}, "voice": {"type": "string"}, "voice_ext": {"type": "string"}, "fax": {"type": "string"}, "fax_ext": {"type": "string"}, "email": {"type": "string"}}, "required": ["handle", "name", "organization", "street", "street2", "street3", "city", "state", "postal_code", "country_code", "local_name", "local_organization", "local_street", "local_street2", "local_street3", "local_city", "local_state", "local_postal_code", "local_country_code", "voice", "voice_ext", "fax", "fax_ext", "email"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"handle" : "contact", "name" : "new_name", "organization" : "new_organization", "street" : "new_street", "street2" : "new_street2", "street3" : "new_street3", "city" : "new_city", "state" : "new_state", "postal_code" : "new_postal_code", "country_code" : "new_country", "local_name" : "New local name", "local_organization" : "New local organization", "local_street" : "New local street", "local_street2" : "New local street 2", "local_street3" : "New local street 3", "local_city" : "New local city", "local_state" : "New local state", "local_postal_code" : "New local postal code", "local_country_code" : "New local country code", "voice" : "new_phone", "voice_ext" : "1234", "fax" : "new_fax", "fax_ext" : "1234", "email" : "new_email@contact.ph"} | json_instruct | {"type": "object", "properties": {"handle": {"type": "string"}, "name": {"type": "string"}, "organization": {"type": "string"}, "street": {"type": "string"}, "street2": {"type": "string"}, "street3": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "country_code": {"type": "string"}, "local_name": {"type": "string"}, "local_organization": {"type": "string"}, "local_street": {"type": "string"}, "local_street2": {"type": "string"}, "local_street3": {"type": "string"}, "local_city": {"type": "string"}, "local_state": {"type": "string"}, "local_postal_code": {"type": "string"}, "local_country_code": {"type": "string"}, "voice": {"type": "string"}, "voice_ext": {"type": "string"}, "fax": {"type": "string"}, "fax_ext": {"type": "string"}, "email": {"type": "string"}}, "required": ["handle", "name", "organization", "street", "street2", "street3", "city", "state", "postal_code", "country_code", "local_name", "local_organization", "local_street", "local_street2", "local_street3", "local_city", "local_state", "local_postal_code", "local_country_code", "voice", "voice_ext", "fax", "fax_ext", "email"], "$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"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}, "features": {"type": "array", "items": {"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": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "names", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "title" : "Lagania/Anastasioupolis", "id" : "609447", "bbox" : [31.910364, 39.999525, 32.014139, 40.044418], "description" : "An ancient place, cited: BAtlas 62 H2 Lagania/Anastasioupolis", "names" : ["Lagania", "Anastasioupolis", "Lagantine"], "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [31.9622515, 40.0219715]}, "properties" : {"description" : "representative point"}}, {"geometry" : {"type" : "Point", "coordinates" : [32.014139, 39.999525]}, "id" : "darmc-location-4291", "type" : "Feature", "properties" : {"description" : "500K scale point location", "location_precision" : "precise", "title" : "DARMC location 4291", "link" : "http://pleiades.stoa.org/places/609447/darmc-location-4291"}}, {"geometry" : {"type" : "Point", "coordinates" : [31.910364, 40.044418]}, "id" : "darmc-location-14290", "type" : "Feature", "properties" : {"description" : "1M scale point location", "location_precision" : "precise", "title" : "DARMC location 14290", "link" : "http://pleiades.stoa.org/places/609447/darmc-location-14290"}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}, "features": {"type": "array", "items": {"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": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "names", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"edges" : [[15, 8], [16, 10], [4, 11], [12, 7], [6, 5], [3, 10], [2, 15], [5, 9], [0, 17], [1, 14], [14, 13]], "features" : {"0" : "1", "1" : "1", "2" : "1", "3" : "1", "4" : "1", "5" : "2", "6" : "1", "7" : "1", "8" : "1", "9" : "1", "10" : "2", "11" : "1", "12" : "1", "13" : "1", "14" : "2", "15" : "2", "16" : "1", "17" : "1"}} | json_instruct | {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"parent": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}, "props": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}}, "required": ["type", "name", "flags"]}}}, "required": ["parent", "name", "flags", "props"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "questICharacterConditionSubType", "name" : "questCharacterState_PlayerSubType", "flags" : 2, "props" : [{"type" : "questEComparisonTypeEquality", "name" : "locomotionComparisonType", "flags" : 6694125569}, {"type" : "gamePSMLocomotionStates", "name" : "locomotionState", "flags" : 6694125569}, {"type" : "questEComparisonTypeEquality", "name" : "upperBodyComparisonType", "flags" : 6694125569}, {"type" : "gamePSMUpperBodyStates", "name" : "upperBodyState", "flags" : 6694125569}, {"type" : "questEComparisonTypeEquality", "name" : "weaponComparisonType", "flags" : 6694125569}, {"type" : "gamePSMWeaponStates", "name" : "weaponState", "flags" : 6694125569}, {"type" : "questEComparisonTypeEquality", "name" : "timeDilationComparisonType", "flags" : 6694125569}, {"type" : "gamePSMTimeDilation", "name" : "timeDilationState", "flags" : 6694125569}, {"type" : "questEComparisonTypeEquality", "name" : "vehicleComparisonType", "flags" : 6694125569}, {"type" : "gamePSMVehicle", "name" : "vehicleState", "flags" : 6694125569}, {"type" : "questEComparisonTypeEquality", "name" : "takedownStateComparisonType", "flags" : 6694125569}, {"type" : "gamePSMTakedown", "name" : "takedownState", "flags" : 6694125569}, {"type" : "questEComparisonTypeEquality", "name" : "swimmingStateComparisonType", "flags" : 6694125569}, {"type" : "gamePSMSwimming", "name" : "swimmingState", "flags" : 6694125569}]} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}, "props": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}}, "required": ["type", "name", "flags"]}}}, "required": ["parent", "name", "flags", "props"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"spark": {"type": "string"}}, "required": ["spark"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "42skype", "version" : "1.0.0", "description" : "status skype alert", "main" : "index.js", "scripts" : {"test" : "test_skype"}, "repository" : {"type" : "git", "url" : "https://github.com/rscimia/42skype.git"}, "keywords" : ["skype", "spark"], "author" : "rscimia", "license" : "ISC", "bugs" : {"url" : "https://github.com/rscimia/42skype/issues"}, "homepage" : "https://github.com/rscimia/42skype", "dependencies" : {"spark" : "^0.4.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"spark": {"type": "string"}}, "required": ["spark"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "image": {"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", "image", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Preheat oven to 350 degrees F (175 degrees C). Grease and flour a 9x9-inch baking pan.", "Mix 1 1/4 cups flour, 1/2 cup white sugar, baking powder, baking soda, and salt together in a bowl using a fork. Stir 1/2 cup butter, milk, egg, and vanilla extract into flour mixture until evenly combined. Pour batter into prepared pan.", "Combine 1/2 cup flour, 1/4 cup white sugar, and 3 tablespoons butter in a bowl using a fork until mixture resembles crumbs; sprinkle half the crumb mixture over the batter.", "Stir blueberry pie filling and lemon extract together in a bowl; spread over crumb topping. Sprinkle blueberries over pie filling; top with remaining crumb topping.", "Bake in the preheated oven until cake is golden brown, about 1 hour."], "image" : "https://imagesvc.meredithcorp.io/v3/mm/image?q=85&c=sc&poi=face&w=3264&h=1709&url=https%3A%2F%2Fimages.media-allrecipes.com%2Fuserphotos%2F1091743.jpg", "ingredients" : ["1\u2009\u00bc cups all-purpose flour", "\u00bd cup white sugar", "1 teaspoon baking powder", "\u00bc teaspoon baking soda", "\u00bc teaspoon salt", "\u00bd cup butter, melted", "\u00bd cup milk", "1 egg", "1 teaspoon vanilla extract", "\u00bd cup all-purpose flour", "\u00bc cup white sugar", "3 tablespoons butter, melted", "1 (21 ounce) can blueberry pie filling", "\u00bc teaspoon lemon extract", "\u00bc cup fresh blueberries"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Yummy Blueberry Breakfast Cake", "url" : "http://allrecipes.com/recipe/232234/yummy-blueberry-breakfast-cake/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "image": {"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", "image", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints": {"type": "array", "items": {"type": "number"}}, "face_keypoints": {"type": "array", "items": {}}, "hand_left_keypoints": {"type": "array", "items": {}}, "hand_right_keypoints": {"type": "array", "items": {}}}, "required": ["pose_keypoints", "face_keypoints", "hand_left_keypoints", "hand_right_keypoints"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : 1.0, "people" : [{"pose_keypoints" : [319.592, 87.4325, 0.913714, 315.645, 156.506, 0.803295, 262.194, 152.598, 0.761133, 234.81, 245.233, 0.801065, 233.468, 323.483, 0.810141, 367.838, 159.132, 0.758218, 382.217, 245.208, 0.711578, 378.277, 319.591, 0.773811, 275.237, 318.246, 0.567174, 273.902, 439.565, 0.595752, 0, 0, 0, 337.849, 319.568, 0.562439, 328.708, 443.477, 0.580635, 0, 0, 0, 309.108, 78.2034, 0.923597, 330.029, 77.0125, 0.944045, 294.757, 86.0453, 0.8429, 341.722, 86.1021, 0.74925], "face_keypoints" : [], "hand_left_keypoints" : [], "hand_right_keypoints" : []}]} | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints": {"type": "array", "items": {"type": "number"}}, "face_keypoints": {"type": "array", "items": {}}, "hand_left_keypoints": {"type": "array", "items": {}}, "hand_right_keypoints": {"type": "array", "items": {}}}, "required": ["pose_keypoints", "face_keypoints", "hand_left_keypoints", "hand_right_keypoints"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"host": {"type": "string"}}, "required": ["host"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"host" : "http://upload.gyazo.com/"} | json_instruct | {"type": "object", "properties": {"host": {"type": "string"}}, "required": ["host"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["generator-jbooter"] | json_instruct | {"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"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 101881919, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "c08d8deea6dbd93301535fad71066745", "wof:id" : 101881919, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [2.2537849432544, 48.45235478051029, 2.26185725400455, 48.45908403933066], "geometry" : {"coordinates" : [[[2.25982016451053, 48.45908403933066], [2.25995851557269, 48.45819006392907], [2.26130400656507, 48.45828431031185], [2.26185725400455, 48.45470839508266], [2.25782107794168, 48.45442563019083], [2.25795944497048, 48.45353165571487], [2.25526873109368, 48.45334306806853], [2.25540713905627, 48.45244909687403], [2.25406181260428, 48.45235478051029], [2.2537849432544, 48.4541427184397], [2.2551303168849, 48.45423703867419], [2.25457659758194, 48.45781291520683], [2.25861302917747, 48.45809580122705], [2.25847465451926, 48.45898977469403], [2.25982016451053, 48.45908403933066]]], "type" : "Polygon"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"900536885": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900536886": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900536887": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900536888": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900536889": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900536890": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900536885", "900536886", "900536887", "900536888", "900536889", "900536890"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"900536885" : {"nama" : "TPS 1", "dapil" : [3509, 13512, 2352204]}, "900536886" : {"nama" : "TPS 2", "dapil" : [3509, 13512, 2352204]}, "900536887" : {"nama" : "TPS 3", "dapil" : [3509, 13512, 2352204]}, "900536888" : {"nama" : "TPS 4", "dapil" : [3509, 13512, 2352204]}, "900536889" : {"nama" : "TPS 5", "dapil" : [3509, 13512, 2352204]}, "900536890" : {"nama" : "TPS 6", "dapil" : [3509, 13512, 2352204]}} | json_instruct | {"type": "object", "properties": {"900536885": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900536886": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900536887": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900536888": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900536889": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900536890": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900536885", "900536886", "900536887", "900536888", "900536889", "900536890"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "word": {"type": "string"}, "wordOptions": {"type": "array", "items": {"type": "string"}}, "audioPaths": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "word", "wordOptions", "audioPaths"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 4, "word" : "sick", "wordOptions" : ["sick", "thick"], "audioPaths" : ["assets/audio/02-sick-0.m4a"]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "word": {"type": "string"}, "wordOptions": {"type": "array", "items": {"type": "string"}}, "audioPaths": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "word", "wordOptions", "audioPaths"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0xb22be3c9fef880ee58155cd402b67ce6d7b45504", "tool" : "mythril", "start" : 1563486494.9379814, "end" : 1563486499.606453, "duration" : 4.668471574783325, "analysis" : {"error" : null, "issues" : [], "success" : true}} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "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": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"feedstocks" : ["hepmc3"]} | json_instruct | {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"kind": {"type": "string"}, "etag": {"type": "string"}, "datasets": {"type": "array", "items": {"type": "object", "properties": {"kind": {"type": "string"}, "id": {"type": "string"}, "datasetReference": {"type": "object", "properties": {"datasetId": {"type": "string"}, "projectId": {"type": "string"}}, "required": ["datasetId", "projectId"]}}, "required": ["kind", "id", "datasetReference"]}}}, "required": ["kind", "etag", "datasets"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"kind" : "bigquery#datasetList", "etag" : "\"smpMas70-D1-zV2oEH0ud6qY21c/tQtKt9rhlWYbS5zNrAtTO7dzbcc\"", "datasets" : [{"kind" : "bigquery#dataset", "id" : "project-id:1_Payment", "datasetReference" : {"datasetId" : "1_Payment", "projectId" : "project-id"}}]} | json_instruct | {"type": "object", "properties": {"kind": {"type": "string"}, "etag": {"type": "string"}, "datasets": {"type": "array", "items": {"type": "object", "properties": {"kind": {"type": "string"}, "id": {"type": "string"}, "datasetReference": {"type": "object", "properties": {"datasetId": {"type": "string"}, "projectId": {"type": "string"}}, "required": ["datasetId", "projectId"]}}, "required": ["kind", "id", "datasetReference"]}}}, "required": ["kind", "etag", "datasets"], "$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"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : " How to solve an equation with the variable as the exponent, 3^(x/2) = 315\n\n[imath]3^{\\frac{x}{2}}=315[/imath]\n\n\n", "url" : "https://www.youtube.com/watch?v=Nl04VyXDNGI"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "prolongable", "definition" : "Capable of being prolonged; as, life is prolongable by care. Each syllable being a prolongable quantity. Rush."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"gameId": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "thumbnail": {"type": "string"}, "minPlayers": {"type": "integer"}, "maxPlayers": {"type": "integer"}, "playingTime": {"type": "integer"}, "mechanics": {"type": "array", "items": {"type": "string"}}, "isExpansion": {"type": "boolean"}, "yearPublished": {"type": "integer"}, "bggRating": {"type": "integer"}, "averageRating": {"type": "number"}, "rank": {"type": "integer"}, "designers": {"type": "array", "items": {"type": "string"}}, "publishers": {"type": "array", "items": {"type": "string"}}, "artists": {"type": "array", "items": {"type": "string"}}, "playerPollResults": {"type": "array", "items": {"type": "object", "properties": {"numPlayers": {"type": "integer"}, "best": {"type": "integer"}, "recommended": {"type": "integer"}, "notRecommended": {"type": "integer"}, "numPlayersIsAndHigher": {"type": "boolean"}}, "required": ["numPlayers", "best", "recommended", "notRecommended", "numPlayersIsAndHigher"]}}}, "required": ["gameId", "name", "description", "image", "thumbnail", "minPlayers", "maxPlayers", "playingTime", "mechanics", "isExpansion", "yearPublished", "bggRating", "averageRating", "rank", "designers", "publishers", "artists", "playerPollResults"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"gameId" : 347137, "name" : "Chronicles of Avel", "description" : "Chronicles of Avel is a cooperative board game for the whole family. Take the role of brave heroes and heroines with a mission to save your magical land. Create your character and give them a unique name. Get your equipment, upgrade it and prepare for battle. But remember to wisely choose what you carry as your backpack has limited space. Armed and ready, explore the land in search of adventure and fortune. Answer the Queen’s call and fight together against the servants of the Black Moon. Defend the castle, banish the Beast, and save Avel! In Chronicles of Avel players will be exploring the world of Avel, moving on a modular board created from hexagonal tiles (different every time). On their journey they will encounter dangerous monsters to fight and roll dice to determine success. Each victory leads to a prize - new weapon, armor, potions and gold - which will make heroes more powerful and unstoppable. But to earn equipment players will have to search through magical bag and choose using only their sense of touch. Victory awaits for those who will cooperate, prepare themselves and defeat the Beast and all his servants. ", "image" : "https://cf.geekdo-images.com/UV-yke9IKBGEYu3ykOFDSw__original/img/kaM8doYJ2DvczkiGpi4O1fQ5jvY=/0x0/filters:format(png)/pic6394494.png", "thumbnail" : "https://cf.geekdo-images.com/UV-yke9IKBGEYu3ykOFDSw__thumb/img/XjMg0P4KlmxU9mBGk64tLbYGh4A=/fit-in/200x150/filters:strip_icc()/pic6394494.png", "minPlayers" : 1, "maxPlayers" : 4, "playingTime" : 90, "mechanics" : ["Cooperative Game", "Dice Rolling", "Die Icon Resolution", "Hexagon Grid", "Modular Board"], "isExpansion" : false, "yearPublished" : 2021, "bggRating" : 0, "averageRating" : 8.5, "rank" : -1, "designers" : ["Przemek Wojtkowiak"], "publishers" : ["Rebel Sp. z o.o.", "Rebel Studio"], "artists" : ["Bart\u0142omiej Kordowski"], "playerPollResults" : [{"numPlayers" : 4, "best" : 0, "recommended" : 0, "notRecommended" : 0, "numPlayersIsAndHigher" : true}]} | json_instruct | {"type": "object", "properties": {"gameId": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "thumbnail": {"type": "string"}, "minPlayers": {"type": "integer"}, "maxPlayers": {"type": "integer"}, "playingTime": {"type": "integer"}, "mechanics": {"type": "array", "items": {"type": "string"}}, "isExpansion": {"type": "boolean"}, "yearPublished": {"type": "integer"}, "bggRating": {"type": "integer"}, "averageRating": {"type": "number"}, "rank": {"type": "integer"}, "designers": {"type": "array", "items": {"type": "string"}}, "publishers": {"type": "array", "items": {"type": "string"}}, "artists": {"type": "array", "items": {"type": "string"}}, "playerPollResults": {"type": "array", "items": {"type": "object", "properties": {"numPlayers": {"type": "integer"}, "best": {"type": "integer"}, "recommended": {"type": "integer"}, "notRecommended": {"type": "integer"}, "numPlayersIsAndHigher": {"type": "boolean"}}, "required": ["numPlayers", "best", "recommended", "notRecommended", "numPlayersIsAndHigher"]}}}, "required": ["gameId", "name", "description", "image", "thumbnail", "minPlayers", "maxPlayers", "playingTime", "mechanics", "isExpansion", "yearPublished", "bggRating", "averageRating", "rank", "designers", "publishers", "artists", "playerPollResults"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "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" : "module.exports = Stream;\n\nvar Parser = require(\"./Parser.js\");\n\nvar WritableStream = require(\"readable-stream\").Writable;\n\nvar StringDecoder = require(\"string_decoder\").StringDecoder;\n\nvar Buffer = require(\"buffer\").Buffer;\n\nfunction Stream(cbs, options) {\n var parser = this._parser = new Parser(cbs, options);\n var decoder = this._decoder = new StringDecoder();\n WritableStream.call(this, {\n decodeStrings: false\n });\n this.once(\"finish\", function () {\n parser.end(decoder.end());\n });\n}\n\nrequire(\"inherits\")(Stream, WritableStream);\n\nStream.prototype._write = function (chunk, encoding, cb) {\n if (chunk instanceof Buffer) chunk = this._decoder.write(chunk);\n\n this._parser.write(chunk);\n\n cb();\n};", "map" : null, "metadata" : {}, "sourceType" : "script"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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" : 63022, "cartId" : "c5df63b7-8d8d-43ae-b9b9-9147179a046f", "preferredProducts" : [2391, 3130, 122, 1439, 2674], "productReviews" : [{"productId" : 3664, "reviewText" : "My tiger loves to play with it.", "reviewDate" : "2019-09-08T21:26:05.0819856+03:00"}, {"productId" : 3611, "reviewText" : "My tiger loves to play with it.", "reviewDate" : "2019-01-25T22:54:47.7439339+02:00"}, {"productId" : 1411, "reviewText" : "The box this comes in is 3 kilometer by 5 inch and weights 13 ton.", "reviewDate" : "2019-04-05T22:18:32.5450168+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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"tests": {"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "comment": {"type": "string"}, "query": {"type": "object", "properties": {"collPath": {"type": "string"}, "clauses": {"type": "array", "items": {"type": "object", "properties": {"where": {"type": "object", "properties": {"path": {"type": "object", "properties": {"field": {"type": "array", "items": {"type": "string"}}}, "required": ["field"]}, "op": {"type": "string"}, "jsonValue": {"type": "string"}}, "required": ["path", "op", "jsonValue"]}}, "required": ["where"]}}, "isError": {"type": "boolean"}}, "required": ["collPath", "clauses", "isError"]}}, "required": ["description", "comment", "query"]}}}, "required": ["tests"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"tests" : [{"description" : "query: where clause with non-== comparison with NaN", "comment" : "You can only compare NaN for equality.", "query" : {"collPath" : "projects/projectID/databases/(default)/documents/C", "clauses" : [{"where" : {"path" : {"field" : ["a"]}, "op" : "<", "jsonValue" : "\"NaN\""}}], "isError" : true}}]} | json_instruct | {"type": "object", "properties": {"tests": {"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "comment": {"type": "string"}, "query": {"type": "object", "properties": {"collPath": {"type": "string"}, "clauses": {"type": "array", "items": {"type": "object", "properties": {"where": {"type": "object", "properties": {"path": {"type": "object", "properties": {"field": {"type": "array", "items": {"type": "string"}}}, "required": ["field"]}, "op": {"type": "string"}, "jsonValue": {"type": "string"}}, "required": ["path", "op", "jsonValue"]}}, "required": ["where"]}}, "isError": {"type": "boolean"}}, "required": ["collPath", "clauses", "isError"]}}, "required": ["description", "comment", "query"]}}}, "required": ["tests"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "http://data.doremus.org/performance/ca8ff381-2f27-30f3-b4db-de5f188034f4", "expression" : [{"id" : "http://data.doremus.org/expression/8939ed70-37a1-3e7e-835c-4800aa33e40c"}, {"id" : "http://data.doremus.org/expression/cb48a50c-112d-3489-b3b9-ae8876349ec9"}, {"id" : "http://data.doremus.org/expression/951bfc94-8eb6-3bbb-a362-7c68a6193eb5"}, {"id" : "http://data.doremus.org/expression/d4e94b3a-fbde-3288-8737-1b396be8560e"}, {"id" : "http://data.doremus.org/expression/cc04b6ec-6e39-322e-a900-72b2327ae71e"}, {"id" : "http://data.doremus.org/expression/cfe8da59-fa3f-3dc8-a423-a4e2165a0338"}, {"id" : "http://data.doremus.org/expression/c9a93466-83db-3f38-8d7e-1c67ba2eccb2"}, {"id" : "http://data.doremus.org/expression/1d142116-f55a-3f0c-a782-1fd4e8dfd70d"}, {"id" : "http://data.doremus.org/expression/739b64f2-6c72-3e80-8746-c9b16e0fcd9e"}, {"id" : "http://data.doremus.org/expression/f513a198-1e7b-3244-861e-b90676aae4ec"}, {"id" : "http://data.doremus.org/expression/1372cfcc-3620-370f-af79-ee6d6d973db9"}, {"id" : "http://data.doremus.org/expression/840e74f8-2517-33ae-8a6a-0f3404600351"}, {"id" : "http://data.doremus.org/expression/ed4a7e6e-6c17-303d-a1d9-c3b97de4bad1"}, {"id" : "http://data.doremus.org/expression/8b897693-7ca0-30a8-9cb1-c4e7b701c5f2"}, {"id" : "http://data.doremus.org/expression/c524c59d-6123-3ed2-a786-8ff55a008beb"}, {"id" : "http://data.doremus.org/expression/f1ab1384-021c-3133-8173-5a8b47b6b826"}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"ErrorCode": {"type": "string"}, "ErrorMessage": {"type": "string"}}, "required": ["ErrorCode", "ErrorMessage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ErrorCode" : "MalformedRecord", "ErrorMessage" : "The record is not well-formed."} | json_instruct | {"type": "object", "properties": {"ErrorCode": {"type": "string"}, "ErrorMessage": {"type": "string"}}, "required": ["ErrorCode", "ErrorMessage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["take tablet", "use tablet", "doorway", "north", "north", "bridge", "continue", "down", "east", "take empty lantern", "west", "west", "passage", "ladder", "west", "south", "north", "take can", "west", "ladder", "use can", "use lantern", "cavern", "passage", "darkness", "continue", "west", "west", "west", "west", "north", "take red coin", "north", "east", "take concave coin", "down", "take corroded coin", "up", "west", "west", "take blue coin", "up", "take shiny coin", "down", "east", "hack coins", "north", "take teleporter", "hack teleporter", "north", "north", "north", "north", "north", "north", "north", "north", "north", "hack orb", "take mirror", "use mirror", "exit"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"src": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "aspectRatio": {"type": "integer"}, "originalName": {"type": "string"}}, "required": ["src", "width", "height", "aspectRatio", "originalName"]}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"expireTime" : 9007200858569120000, "key" : "69b41826426b377fb909866ecbf5d010{\"background\":\"rgba(0,0,0,1)\",\"duotone\":false,\"grayscale\":false,\"rotate\":0,\"trim\":false,\"toFormat\":\"jpg\",\"toFormatBase64\":\"\",\"cropFocus\":17,\"fit\":\"cover\",\"width\":20,\"height\":20}", "val" : {"src" : "data:image/jpeg;base64,/9j/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wgARCAAUABQDASIAAhEBAxEB/8QAFwABAQEBAAAAAAAAAAAAAAAAAAIEA//EABYBAQEBAAAAAAAAAAAAAAAAAAACA//aAAwDAQACEAMQAAAB0jOuiBogi7B//8QAGRAAAwEBAQAAAAAAAAAAAAAAAAIRARAi/9oACAEBAAEFAlo2Cqkxdkc9kM5//8QAFxEAAwEAAAAAAAAAAAAAAAAAAAESEP/aAAgBAwEBPwGCFv8A/8QAFxEAAwEAAAAAAAAAAAAAAAAAAAESEP/aAAgBAgEBPwGy3v8A/8QAGBAAAgMAAAAAAAAAAAAAAAAAABAgIeH/2gAIAQEABj8CLWy//8QAHhABAAIBBAMAAAAAAAAAAAAAAQARIRBhgZGhscH/2gAIAQEAAT8hqKCoBmVF+wgR4igydTaeJQno6f/aAAwDAQACAAMAAAAQuzd+/8QAFhEBAQEAAAAAAAAAAAAAAAAAASBB/9oACAEDAQE/EAaxf//EABcRAQADAAAAAAAAAAAAAAAAAAERICH/2gAIAQIBAT8QVGFD/8QAGxABAQEAAwEBAAAAAAAAAAAAAREAIVFxQWH/2gAIAQEAAT8QSh193KDOl1ELfG4YR0TKCC2chuBBSeNBwTzASpWg/urv/9k=", "width" : 20, "height" : 20, "aspectRatio" : 1, "originalName" : "pyramid.jpg"}} | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"src": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "aspectRatio": {"type": "integer"}, "originalName": {"type": "string"}}, "required": ["src", "width", "height", "aspectRatio", "originalName"]}}, "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": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 404434723, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "555f3254b335cf05f78be8234263c90c", "wof:id" : 404434723, "wof:repo" : "whosonfirst-data-admin-gb"}, "bbox" : [-0.24936, 51.8984, -0.24936, 51.8984], "geometry" : {"coordinates" : [-0.24936, 51.8984], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"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"}}, "required": ["php"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"wpf\\": {"type": "string"}}, "required": ["wpf\\"]}}, "required": ["psr-4"]}}, "required": ["name", "type", "description", "keywords", "homepage", "license", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "nikonorovsv/wpf", "type" : "library", "description" : "WPF is a WordPress Framework to make your creating of theme easy.", "keywords" : ["wordpress", "framework"], "homepage" : "https://github.com/nikonorovsv/wpf", "license" : "MIT", "authors" : [{"name" : "Sergey Nikonorov", "email" : "nikonorovsv@gmail.com", "homepage" : "http://nikonorovsv.com", "role" : "Developer"}], "require" : {"php" : ">=7.0"}, "autoload" : {"psr-4" : {"wpf\\" : "vendor/nikonorovsv/wpf/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"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"}}, "required": ["php"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"wpf\\": {"type": "string"}}, "required": ["wpf\\"]}}, "required": ["psr-4"]}}, "required": ["name", "type", "description", "keywords", "homepage", "license", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"status_code": {"type": "string"}, "status_msg": {"type": "string"}, "meta": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"timestamp": {"type": "number"}, "model": {"type": "string"}, "config": {"type": "string"}}, "required": ["timestamp", "model", "config"]}}, "required": ["tag"]}, "results": {"type": "array", "items": {"type": "object", "properties": {"docid": {"type": "integer"}, "status_code": {"type": "string"}, "status_msg": {"type": "string"}, "local_id": {"type": "string"}, "result": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"classes": {"type": "array", "items": {"type": "string"}}, "probs": {"type": "array", "items": {"type": "number"}}}, "required": ["classes", "probs"]}}, "required": ["tag"]}, "docid_str": {"type": "string"}}, "required": ["docid", "status_code", "status_msg", "local_id", "result", "docid_str"]}}}, "required": ["status_code", "status_msg", "meta", "results"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status_code" : "OK", "status_msg" : "All images in request have completed successfully. ", "meta" : {"tag" : {"timestamp" : 1442731303.763849, "model" : "default", "config" : "0b2b7436987dd912e077ff576731f8b7"}}, "results" : [{"docid" : 135988673580298454245091378238396603741, "status_code" : "OK", "status_msg" : "OK", "local_id" : "", "result" : {"tag" : {"classes" : ["ancient", "stone", "travel", "landmark", "monument", "historic", "religion", "sky", "old", "prehistoric", "rock", "heritage", "grass", "tourism", "archaeology", "destination", "architecture", "culture", "outdoors", "religious"], "probs" : [0.993465781211853, 0.9933927059173584, 0.992870569229126, 0.992210865020752, 0.9910029172897339, 0.9881218075752258, 0.9873473644256592, 0.9862015247344971, 0.9860562682151794, 0.9831982851028442, 0.9820656776428223, 0.9745992422103882, 0.97431480884552, 0.9724407196044922, 0.9714769124984741, 0.9700260162353516, 0.9697163105010986, 0.9500603675842285, 0.9495095014572144, 0.9467111229896545]}}, "docid_str" : "664e77423ee901a8f09c72535c489d5d"}]} | json_instruct | {"type": "object", "properties": {"status_code": {"type": "string"}, "status_msg": {"type": "string"}, "meta": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"timestamp": {"type": "number"}, "model": {"type": "string"}, "config": {"type": "string"}}, "required": ["timestamp", "model", "config"]}}, "required": ["tag"]}, "results": {"type": "array", "items": {"type": "object", "properties": {"docid": {"type": "integer"}, "status_code": {"type": "string"}, "status_msg": {"type": "string"}, "local_id": {"type": "string"}, "result": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"classes": {"type": "array", "items": {"type": "string"}}, "probs": {"type": "array", "items": {"type": "number"}}}, "required": ["classes", "probs"]}}, "required": ["tag"]}, "docid_str": {"type": "string"}}, "required": ["docid", "status_code", "status_msg", "local_id", "result", "docid_str"]}}}, "required": ["status_code", "status_msg", "meta", "results"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"label": {"type": "string"}, "position": {"type": "integer"}}, "required": ["label", "position"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"label" : "Installation", "position" : 1} | json_instruct | {"type": "object", "properties": {"label": {"type": "string"}, "position": {"type": "integer"}}, "required": ["label", "position"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "gendocs": {"type": "string"}}, "required": ["test", "gendocs"]}, "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": {"brfs": {"type": "string"}, "defaultcss": {"type": "string"}, "global": {"type": "string"}, "gravatar": {"type": "string"}, "observ-conference": {"type": "string"}, "virtual-hyperscript": {"type": "string"}}, "required": ["brfs", "defaultcss", "global", "gravatar", "observ-conference", "virtual-hyperscript"]}, "devDependencies": {"type": "object", "properties": {"attachmediastream": {"type": "string"}, "getusermedia": {"type": "string"}, "mercury": {"type": "string"}, "rtc-quickconnect": {"type": "string"}}, "required": ["attachmediastream", "getusermedia", "mercury", "rtc-quickconnect"]}, "browserify": {"type": "object", "properties": {"transform": {"type": "array", "items": {"type": "string"}}}, "required": ["transform"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies", "browserify"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "facelist", "version" : "1.0.0", "description" : "A list of faces of people currently active in an application", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "gendocs" : "gendocs > README.md"}, "repository" : {"type" : "git", "url" : "https://github.com/DamonOehlman/facelist.git"}, "keywords" : ["webrtc", "ui"], "author" : "Damon Oehlman <damon.oehlman@gmail.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/DamonOehlman/facelist/issues"}, "homepage" : "https://github.com/DamonOehlman/facelist", "dependencies" : {"brfs" : "^1.2.0", "defaultcss" : "^1.1.1", "global" : "^4.3.0", "gravatar" : "^1.1.0", "observ-conference" : "^1.2.0", "virtual-hyperscript" : "^4.6.0"}, "devDependencies" : {"attachmediastream" : "^1.0.1", "getusermedia" : "^1.1.0", "mercury" : "^14.0.0", "rtc-quickconnect" : "^4.0.0"}, "browserify" : {"transform" : ["brfs"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "gendocs": {"type": "string"}}, "required": ["test", "gendocs"]}, "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": {"brfs": {"type": "string"}, "defaultcss": {"type": "string"}, "global": {"type": "string"}, "gravatar": {"type": "string"}, "observ-conference": {"type": "string"}, "virtual-hyperscript": {"type": "string"}}, "required": ["brfs", "defaultcss", "global", "gravatar", "observ-conference", "virtual-hyperscript"]}, "devDependencies": {"type": "object", "properties": {"attachmediastream": {"type": "string"}, "getusermedia": {"type": "string"}, "mercury": {"type": "string"}, "rtc-quickconnect": {"type": "string"}}, "required": ["attachmediastream", "getusermedia", "mercury", "rtc-quickconnect"]}, "browserify": {"type": "object", "properties": {"transform": {"type": "array", "items": {"type": "string"}}}, "required": ["transform"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies", "browserify"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0xac43300f2d0c345b716f36853eceb497576e0f67", "tool" : "osiris", "start" : 1564585428.3473704, "end" : 1564585431.9856997, "duration" : 3.638329267501831, "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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"symbol" : "YKZ", "name" : "Yakuza DAO", "decimals" : 18, "address" : "0xcd453276f4db9c38855056a036c4a99a8cac7b8d"} | json_instruct | {"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"number of samples": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"number of samples": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"number of samples": {"type": "string"}, "percent": {"type": "number"}, "name": {"type": "string"}}, "required": ["number of samples", "percent", "name"]}}, "percent": {"type": "number"}, "name": {"type": "string"}}, "required": ["number of samples", "children", "percent", "name"]}}, "percent": {"type": "number"}, "name": {"type": "string"}}, "required": ["number of samples", "children", "percent", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"number of samples" : "19996", "children" : [{"number of samples" : "3801", "children" : [{"number of samples" : "2311", "percent" : 11.56, "name" : "2311 points"}, {"number of samples" : "1490", "percent" : 7.45, "name" : "1490 points"}], "percent" : 19.01, "name" : "Potential > 0.2579"}, {"number of samples" : "16195", "children" : [{"number of samples" : "15719", "percent" : 78.61, "name" : "15719 points"}, {"number of samples" : "476", "percent" : 2.38, "name" : "476 points"}], "percent" : 80.99, "name" : "Potential > 0.1257"}], "percent" : 100.0, "name" : "Potential > 0.2433"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"number of samples": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"number of samples": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"number of samples": {"type": "string"}, "percent": {"type": "number"}, "name": {"type": "string"}}, "required": ["number of samples", "percent", "name"]}}, "percent": {"type": "number"}, "name": {"type": "string"}}, "required": ["number of samples", "children", "percent", "name"]}}, "percent": {"type": "number"}, "name": {"type": "string"}}, "required": ["number of samples", "children", "percent", "name"]}, "$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"}, "code": {"type": "string"}, "encryption": {"type": "array", "items": {"type": "object", "properties": {"wep": {"type": "string"}, "count": {"type": "integer"}}, "required": ["wep", "count"]}}}, "required": ["name", "code", "encryption"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Libya", "code" : "LY", "encryption" : [{"wep" : "2", "count" : 4311}, {"wep" : "W", "count" : 825}, {"wep" : "?", "count" : 764}, {"wep" : "N", "count" : 349}, {"wep" : "Y", "count" : 158}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "code": {"type": "string"}, "encryption": {"type": "array", "items": {"type": "object", "properties": {"wep": {"type": "string"}, "count": {"type": "integer"}}, "required": ["wep", "count"]}}}, "required": ["name", "code", "encryption"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "3518150004", "district_id" : "3518150", "name" : "SEKAR PUTIH"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x93436e80d723e0dd8be9c1b35dc9fd74f346f193", "tool" : "honeybadger", "start" : 1565856446.6115081, "end" : 1565856560.3812268, "duration" : 113.76971864700317, "analysis" : [{"errors" : [], "file" : "/unique_chucks/28/0x93436e80d723e0dd8be9c1b35dc9fd74f346f193.sol", "name" : "Ballot"}, {"errors" : [], "file" : "/unique_chucks/28/0x93436e80d723e0dd8be9c1b35dc9fd74f346f193.sol", "name" : "Owned"}, {"errors" : [], "file" : "/unique_chucks/28/0x93436e80d723e0dd8be9c1b35dc9fd74f346f193.sol", "name" : "SafeMath"}, {"errors" : [], "file" : "/unique_chucks/28/0x93436e80d723e0dd8be9c1b35dc9fd74f346f193.sol", "name" : "Spartan"}]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "Commissions"}, {"name" : "Career opportunities"}, {"name" : "Consulting offers"}, {"name" : "New ventures"}, {"name" : "Feedback"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"USA": {"type": "array", "items": {"type": "string"}}, "GBR": {"type": "array", "items": {"type": "string"}}, "AUS": {"type": "array", "items": {"type": "string"}}, "DEU": {"type": "array", "items": {"type": "string"}}, "FRA": {"type": "array", "items": {"type": "string"}}, "PAK": {"type": "array", "items": {"type": "string"}}, "GRC": {"type": "array", "items": {"type": "string"}}, "PHL": {"type": "array", "items": {"type": "string"}}, "NLD": {"type": "array", "items": {"type": "string"}}, "CHE": {"type": "array", "items": {"type": "string"}}}, "required": ["USA", "GBR", "AUS", "DEU", "FRA", "PAK", "GRC", "PHL", "NLD", "CHE"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"USA" : ["M 245 131 Q 276.8 161.0 280 205", "United States of America", "945084"], "GBR" : ["M 245 131 Q 416.6 63.4 588 134", "United Kingdom", "72766"], "AUS" : ["M 245 131 Q 730.6 129.2 1084 464", "Australia", "27289"], "DEU" : ["M 245 131 Q 443.0 63.2 634 151", "Germany", "27177"], "FRA" : ["M 245 131 Q 433.8 77.6 607 170", "France", "20231"], "PAK" : ["M 245 131 Q 558.0 63.8 831 231", "Pakistan", "15951"], "GRC" : ["M 245 131 Q 471.4 78.6 672 198", "Greece", "12484"], "PHL" : ["M 245 131 Q 658.6 63.0 1005 299", "Philippines", "9190"], "NLD" : ["M 245 131 Q 434.2 64.6 617 147", "Netherlands", "8427"], "CHE" : ["M 245 131 Q 443.2 72.6 627 167", "Switzerland", "8106"]} | json_instruct | {"type": "object", "properties": {"USA": {"type": "array", "items": {"type": "string"}}, "GBR": {"type": "array", "items": {"type": "string"}}, "AUS": {"type": "array", "items": {"type": "string"}}, "DEU": {"type": "array", "items": {"type": "string"}}, "FRA": {"type": "array", "items": {"type": "string"}}, "PAK": {"type": "array", "items": {"type": "string"}}, "GRC": {"type": "array", "items": {"type": "string"}}, "PHL": {"type": "array", "items": {"type": "string"}}, "NLD": {"type": "array", "items": {"type": "string"}}, "CHE": {"type": "array", "items": {"type": "string"}}}, "required": ["USA", "GBR", "AUS", "DEU", "FRA", "PAK", "GRC", "PHL", "NLD", "CHE"], "$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": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 10071, "cartId" : "23b134a6-4bb1-4db0-a88c-a272c4b2e72f", "preferredProducts" : [3885, 840], "productReviews" : []} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"end": {"type": "string"}, "side": {"type": "string"}}, "required": ["end", "side"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "block/cube_column", "textures" : {"end" : "cc:block/starwood_log_top", "side" : "cc:block/starwood_log"}} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"end": {"type": "string"}, "side": {"type": "string"}}, "required": ["end", "side"]}}, "required": ["parent", "textures"], "$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"}, "objects": {"type": "object", "properties": {"E01027201": {"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": ["E01027201"]}, "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" : {"E01027201" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00138383", "LAD11CD" : "E07000154"}, "arcs" : [[0, 1, 2, 3, 4]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00138386", "LAD11CD" : "E07000154"}, "arcs" : [[5, -3, 6, 7]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00138387", "LAD11CD" : "E07000154"}, "arcs" : [[-4, -6, 8]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00138390", "LAD11CD" : "E07000154"}, "arcs" : [[9, 10, 11]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00169269", "LAD11CD" : "E07000154"}, "arcs" : [[-7, -2, 12, -12, 13]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00169270", "LAD11CD" : "E07000154"}, "arcs" : [[-10, -13, -1, 14]]}]}}, "arcs" : [[[7733, 3889], [-998, 219]], [[6735, 4108], [-1461, 347], [-1066, 665]], [[4208, 5120], [405, 286], [-993, 665], [124, 187], [1864, -1113], [-194, 1587], [385, 102]], [[5799, 6834], [945, -315], [-35, -457], [611, -245], [-9, -484], [723, -538], [-34, -230]], [[8000, 4565], [-315, -254], [48, -422]], [[5073, 7642], [321, -436], [451, -88], [-46, -284]], [[4208, 5120], [-2154, 1309], [-117, 855], [722, 726], [-1048, -141], [-659, 653]], [[952, 8522], [1344, 997], [1916, 480], [226, -2198], [635, -159]], [[5073, 7642], [152, 446], [-228, 369], [775, 64], [840, -994], [1142, 172], [-32, 227], [601, 242], [459, -984], [563, -15], [654, -424], [-63, -806], [-1021, -106], [-588, -527], [-6, -710], [-321, -31]], [[6070, 2597], [706, -359]], [[6776, 2238], [-199, -873], [-235, -1204], [-289, 111], [-173, 142], [-210, -414], [-614, 396], [-392, -389], [-504, 2], [-393, 404], [150, 233], [600, -74], [-86, 363], [-151, 337], [-628, 221], [202, 223], [-543, 234], [1030, 1311]], [[4341, 3261], [1729, -664]], [[6735, 4108], [-665, -1511]], [[4341, 3261], [-626, 153], [-1704, -2062], [-1910, 3731], [-101, 1308], [550, 1582], [402, 549]], [[7733, 3889], [478, 16], [183, -859], [383, -128], [416, 287], [522, -514], [68, -461], [-897, -176], [-843, -127], [-1267, 311]]], "transform" : {"scale" : [1.5853263110879173e-06, 1.1017787015818101e-06], "translate" : [-0.895090948180921, 52.20580660106555]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01027201": {"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": ["E01027201"]}, "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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site-plan-url": {"type": "string"}, "planning-permission-status": {"type": "string"}, "site-address": {"type": "string"}, "site": {"type": "string"}, "name": {"type": "string"}, "point": {"type": "string"}, "planning-permission-type": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "organisation": {"type": "string"}, "start-date": {"type": "string"}, "notes": {"type": "string"}, "ownership-status": {"type": "string"}, "hectares": {"type": "string"}, "planning-permission-date": {"type": "string"}, "deliverable": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site-plan-url", "planning-permission-status", "site-address", "site", "name", "point", "planning-permission-type", "maximum-net-dwellings", "organisation", "start-date", "notes", "ownership-status", "hectares", "planning-permission-date", "deliverable", "minimum-net-dwellings", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-2.349332, 53.514109]}, "properties" : {"site-plan-url" : "https://map.salford.gov.uk/?lyrs=v_brownfield_land_register_2019#18/53.514109/-2.349332", "planning-permission-status" : "permissioned", "site-address" : "Site D -The Poet's Estate, Swinton, Salford, M27 0PU", "site" : "S/SNO/045b", "name" : "S/SNO/045b", "point" : "POINT(-2.349332 53.514109)", "planning-permission-type" : "full planning permission", "maximum-net-dwellings" : "2", "organisation" : "local-authority-eng:SLF", "start-date" : "2017-12-01", "notes" : "Full planning permission - 17/69805/REM - Construction not started as of 31 March 2019. Planning permission details as of 31 March 2019.", "ownership-status" : "not owned by a public authority", "hectares" : "1.16", "planning-permission-date" : "2017-03-15", "deliverable" : "yes", "minimum-net-dwellings" : "2", "slug" : "/brownfield-land/local-authority-eng/SLF/S-SNO-045b", "entity" : 493901, "entry-date" : "2019-12-11"}} | 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": {"site-plan-url": {"type": "string"}, "planning-permission-status": {"type": "string"}, "site-address": {"type": "string"}, "site": {"type": "string"}, "name": {"type": "string"}, "point": {"type": "string"}, "planning-permission-type": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "organisation": {"type": "string"}, "start-date": {"type": "string"}, "notes": {"type": "string"}, "ownership-status": {"type": "string"}, "hectares": {"type": "string"}, "planning-permission-date": {"type": "string"}, "deliverable": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site-plan-url", "planning-permission-status", "site-address", "site", "name", "point", "planning-permission-type", "maximum-net-dwellings", "organisation", "start-date", "notes", "ownership-status", "hectares", "planning-permission-date", "deliverable", "minimum-net-dwellings", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"country_code": {"type": "string"}, "parents": {"type": "array", "items": {"type": "string"}}, "locale": {"type": "string"}, "subdivisions": {"type": "object", "properties": {"Gong'an Xian": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}, "Honghu Shi": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}, "Jianli Xian": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}, "Jiangling Xian": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}, "Jingzhou Qu": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}, "Shashi Qu": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}, "Shishou Shi": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}, "Songzi Shi": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}}, "required": ["Gong'an Xian", "Honghu Shi", "Jianli Xian", "Jiangling Xian", "Jingzhou Qu", "Shashi Qu", "Shishou Shi", "Songzi Shi"]}}, "required": ["country_code", "parents", "locale", "subdivisions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"country_code" : "CN", "parents" : ["CN", "Hubei Sheng", "Jingzhou Shi"], "locale" : "zh-Hans", "subdivisions" : {"Gong'an Xian" : {"local_code" : "\u516c\u5b89\u53bf"}, "Honghu Shi" : {"local_code" : "\u6d2a\u6e56\u5e02"}, "Jianli Xian" : {"local_code" : "\u76d1\u5229\u53bf"}, "Jiangling Xian" : {"local_code" : "\u6c5f\u9675\u53bf"}, "Jingzhou Qu" : {"local_code" : "\u8346\u5dde\u533a"}, "Shashi Qu" : {"local_code" : "\u6c99\u5e02\u533a"}, "Shishou Shi" : {"local_code" : "\u77f3\u9996\u5e02"}, "Songzi Shi" : {"local_code" : "\u677e\u6ecb\u5e02"}}} | json_instruct | {"type": "object", "properties": {"country_code": {"type": "string"}, "parents": {"type": "array", "items": {"type": "string"}}, "locale": {"type": "string"}, "subdivisions": {"type": "object", "properties": {"Gong'an Xian": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}, "Honghu Shi": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}, "Jianli Xian": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}, "Jiangling Xian": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}, "Jingzhou Qu": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}, "Shashi Qu": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}, "Shishou Shi": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}, "Songzi Shi": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}}, "required": ["Gong'an Xian", "Honghu Shi", "Jianli Xian", "Jiangling Xian", "Jingzhou Qu", "Shashi Qu", "Shishou Shi", "Songzi Shi"]}}, "required": ["country_code", "parents", "locale", "subdivisions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "Echelon", "definitions" : ["Arrange in an echelon formation."], "parts-of-speech" : "Verb"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d1012-101", "text" : "TREATSSBOT FOR KIT m. 1\n\"POTBHTIAL FOR ISARNIKG (A Searching Look at Television)\nPage 1\nVIDEO ADDIO . . \u25a0\nFade up on black* Suddenly (HOSZCs STAB AS PICTEIRE APPEARS)\nfilling the screen comes a\npicture of a teacher face\nto face with a television\nset (head and shoulders shot).\nTeacher caught in Btoment of\novert emotion*\u2022.hand flying\nto mouth in an expression\ntoo full of possibilities to\nbe immediately identified*\nCSSARRATOR) (VO) Suppose I tell you\nthat this teacher has just met tele\u00ac\nvision in her school system?\nWhat\u00ab in your opinion^ does her face\nreveal?\nCBIDSICs PDiaCTlIATB THE FOLLOWING***\nCONVEYING MOOD OF BACH ED\u00abOTION)\nSuprise?\nPleasure?\nAnxiety?\nHostility?\nOutrage?\nShock?\nTingling anticipation?\nOr shattering despair?"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$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"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"unist-util-visit": {"type": "string"}}, "required": ["unist-util-visit"]}, "devDependencies": {"type": "object", "properties": {"jest": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["jest", "prettier"]}, "peerDependencies": {"type": "object", "properties": {"gatsby": {"type": "string"}}, "required": ["gatsby"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "author", "license", "dependencies", "devDependencies", "peerDependencies", "repository", "scripts", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "gatsby-remark-google-analytics-track-links", "version" : "1.0.2", "description" : "Track internal and external clicks from links embedded in your markdown", "main" : "index.js", "author" : "James Simone", "license" : "MIT", "dependencies" : {"unist-util-visit" : "2.0.3"}, "devDependencies" : {"jest" : "26.4.2", "prettier" : "2.1.2"}, "peerDependencies" : {"gatsby" : "^2.32.0 || ^3.0.0"}, "repository" : {"type" : "git", "url" : "git+https://github.com/jamessimone/gatsby-remark-google-analytics-track-links"}, "scripts" : {"test" : "jest"}, "keywords" : ["gatsby", "gatsby-plugin", "google analytics", "gatsby-transformer-remark", "remark", "markdown", "link", "tracking", "click", "analytics"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"unist-util-visit": {"type": "string"}}, "required": ["unist-util-visit"]}, "devDependencies": {"type": "object", "properties": {"jest": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["jest", "prettier"]}, "peerDependencies": {"type": "object", "properties": {"gatsby": {"type": "string"}}, "required": ["gatsby"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "author", "license", "dependencies", "devDependencies", "peerDependencies", "repository", "scripts", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "tags": {"type": "string"}, "foo": {"type": "string"}}, "required": ["id", "version", "description", "author", "license", "tags", "foo"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "com.foo", "version" : "1.0.1", "description" : "description", "author" : "author", "license" : "license", "tags" : "foo, bar", "foo" : "bar"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "tags": {"type": "string"}, "foo": {"type": "string"}}, "required": ["id", "version", "description", "author", "license", "tags", "foo"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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 v Z\u00e1vad\u011b p\u0159ed kapl\u00ed svat\u00e9ho Urbana", "P31" : "http://www.wikidata.org/entity/Q2309609", "P31^label:cs" : "Pam\u011btn\u00ed k\u0159\u00ed\u017e", "P131^label:cs" : "Z\u00e1vada", "P6736" : "29313"}, "geometry" : {"type" : "Point", "coordinates" : [18.16375, 49.95411]}}, {"type" : "Feature", "properties" : {"label:cs" : "Kaple svat\u00e9ho Urbana v Z\u00e1vad\u011b", "P31" : "http://www.wikidata.org/entity/Q108325", "P31^label:cs" : "Kaple", "P131^label:cs" : "Z\u00e1vada", "P6736" : "29312"}, "geometry" : {"type" : "Point", "coordinates" : [18.1637, 49.95415]}}]} | 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#"} |
Please provide a valid JSON object following this schema:
{"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 React from 'react';\nimport { Line } from 'react-chartjs-2';\nimport { useState, useEffect } from 'react';\n\nconst LineGraph = () => {};\n\n_c = LineGraph;\nexport default LineGraph;\n\nvar _c;\n\n$RefreshReg$(_c, \"LineGraph\");", "map" : {"version" : 3, "sources" : ["C:/Users/ASUS/Desktop/koding/coursera/reacties/corona-app/src/components/LineGraph.js"], "names" : ["React", "Line", "useState", "useEffect", "LineGraph"], "mappings" : "AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,SAAQC,IAAR,QAAmB,iBAAnB;AACA,SAASC,QAAT,EAAmBC,SAAnB,QAAoC,OAApC;;AAEA,MAAMC,SAAS,GAAG,MAAM,CAGvB,CAHD;;KAAMA,S;AAKN,eAAeA,SAAf", "sourcesContent" : ["import React from 'react';\r\nimport {Line} from 'react-chartjs-2';\r\nimport { useState, useEffect } from 'react';\r\n\r\nconst LineGraph = () => {\r\n\r\n\r\n}\r\n\r\nexport default LineGraph;"]}, "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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 421202751, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "d2e2f75d5b15b68c9a497fd59569e70b", "wof:id" : 421202751, "wof:repo" : "whosonfirst-data-admin-al"}, "bbox" : [20.08333, 41.58333, 20.08333, 41.58333], "geometry" : {"coordinates" : [20.08333, 41.58333], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"manufacturer": {"type": "string"}, "devices": {"type": "array", "items": {"type": "object", "properties": {"market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["market_name", "codename", "model"]}}}, "required": ["manufacturer", "devices"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"manufacturer" : "SAKAISIO", "devices" : [{"market_name" : "SAKAISIO FP-U320-711-WIFI", "codename" : "U320-WF", "model" : "FP-U320-711-WIFI"}, {"market_name" : "SAKAISIO FP-U320-711-WWAN", "codename" : "U320-3G", "model" : "FP-U320-711-WWAN"}]} | json_instruct | {"type": "object", "properties": {"manufacturer": {"type": "string"}, "devices": {"type": "array", "items": {"type": "object", "properties": {"market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["market_name", "codename", "model"]}}}, "required": ["manufacturer", "devices"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "lonelypages-comment-add-disambig-template": {"type": "string"}, "lonelypages-comment-add-template": {"type": "string"}}, "required": ["@metadata", "lonelypages-comment-add-disambig-template", "lonelypages-comment-add-template"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"@metadata" : {"authors" : ["Cedric31"]}, "lonelypages-comment-add-disambig-template" : "Rob\u00f2t : Apondon d'una pagina d'omonimia", "lonelypages-comment-add-template" : "Rob\u00f2t : Pagina orfan\u00e8la, apondon de mod\u00e8l"} | json_instruct | {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "lonelypages-comment-add-disambig-template": {"type": "string"}, "lonelypages-comment-add-template": {"type": "string"}}, "required": ["@metadata", "lonelypages-comment-add-disambig-template", "lonelypages-comment-add-template"], "$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"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "JavaScript Weather Application", "version" : "1.0.0", "description" : "A JavaScript app to display weather information from Yahoo's weather API", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/mlaroy/weather-widget.git"}, "author" : "Michael LaRoy", "license" : "MIT", "bugs" : {"url" : "https://github.com/mlaroy/weather-widget/issues"}, "homepage" : "https://github.com/mlaroy/weather-widget#readme"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : {"id" : "t2_8iv28", "name" : "bibishop"}, "date" : {"day" : 1606867200, "full" : 1606916588, "month" : 1606780800, "week" : 1606608000}, "id" : "t3_k59fmi", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 83483, "fullUrl" : "https://preview.redd.it/a245tzds1s261.jpg?auto=webp&s=b9d39ffc0dd5917068d8b527b9bfc2816752e6c6", "hash" : "c6fd875d02", "height" : 469, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAMABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAID/8QAIxAAAgIBAwUAAwAAAAAAAAAAAQIDEQQAIXEFExQxMxJBUf/EABUBAQEAAAAAAAAAAAAAAAAAAAIG/8QAGREBAAIDAAAAAAAAAAAAAAAAAQAhAhFB/9oADAMBAAIRAxEAPwBs7YWK5+cigqhLD8iSTVtsbNg1wf5rWPK6diJOiq0czyCNJWVmUSbgAewP3ZA9af0rFgnn70kSl2Vr4siuN9X5VdefC8fH7IYN897q7521NuYVce3s/9k=", "thumbnailUrl" : "https://b.thumbs.redditmedia.com/IfADV8XBQEIiqSciQEBX0HtGE3RK-PkL_cleMVrXpJM.jpg", "url" : "https://preview.redd.it/a245tzds1s261.jpg?width=640&crop=smart&auto=webp&s=da7d77484a7ce88049ab521ee15bc98c911e5def", "width" : 640}, "score" : {"comments" : 1, "downs" : 0, "isCurated" : false, "ratio" : 1, "ups" : 11, "value" : 11}, "subreddit" : {"id" : "t5_3isai", "name" : "dndmaps"}, "tags" : ["Encounter"], "title" : "Village festival - 2-Minute Tabletop assets", "url" : "https://www.reddit.com/r/dndmaps/comments/k59fmi/village_festival_2minute_tabletop_assets_45x33/"} | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "refinedstorage2:block/fluid_grid/magenta"} | 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": {"test_id": {"type": "integer"}, "description": {"type": "string"}, "areas": {"type": "object", "properties": {"default": {"type": "array", "items": {"type": "object", "properties": {"from_id": {"type": "integer"}, "from_type": {"type": "string"}, "wkt": {"type": "string"}, "tags": {"type": "object", "properties": {"landuse": {"type": "string"}, "test:section": {"type": "string"}, "test:id": {"type": "string"}}, "required": ["landuse", "test:section", "test:id"]}}, "required": ["from_id", "from_type", "wkt", "tags"]}}}, "required": ["default"]}}, "required": ["test_id", "description", "areas"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"test_id" : 774, "description" : "Multipolygon with two outer rings touching in two nodes.", "areas" : {"default" : [{"from_id" : 774900, "from_type" : "relation", "wkt" : "MULTIPOLYGON(((7.42 1.73,7.42 1.75,7.44 1.75,7.44 1.73,7.42 1.73)),((7.44 1.75,7.44 1.76,7.47 1.76,7.47 1.72,7.44 1.72,7.44 1.73,7.45 1.73,7.45 1.75,7.44 1.75)))", "tags" : {"landuse" : "forest", "test:section" : "mp-geom", "test:id" : "774"}}]}} | json_instruct | {"type": "object", "properties": {"test_id": {"type": "integer"}, "description": {"type": "string"}, "areas": {"type": "object", "properties": {"default": {"type": "array", "items": {"type": "object", "properties": {"from_id": {"type": "integer"}, "from_type": {"type": "string"}, "wkt": {"type": "string"}, "tags": {"type": "object", "properties": {"landuse": {"type": "string"}, "test:section": {"type": "string"}, "test:id": {"type": "string"}}, "required": ["landuse", "test:section", "test:id"]}}, "required": ["from_id", "from_type", "wkt", "tags"]}}}, "required": ["default"]}}, "required": ["test_id", "description", "areas"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"zoom": {"type": "array", "items": {"type": "integer"}}, "zoomdirection": {"type": "array", "items": {"type": "integer"}}, "zoomeventargs": {"type": "array", "items": {"type": "integer"}}, "zero": {"type": "array", "items": {"type": "integer"}}}, "required": ["zoom", "zoomdirection", "zoomeventargs", "zero"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"zoom" : [2, 458753, 851969, 2621449, 3866636, 4915201, 9830401, 99811329, 105906177, 112918529, 122093570, 122421249, 122552321, 130220033, 136118273, 144900099, 145620993, 146538498, 147193857, 148963330, 149028868], "zoomdirection" : [1, 9830409, 105906185, 122093577, 122421249, 136118283, 149028873], "zoomeventargs" : [5, 2621455, 3866643, 4915202, 9830402, 97124355, 105906185, 122552321, 130220035, 136118274, 144900109], "zero" : [5308420, 6225921, 39321609, 61669385, 61931529, 86310921, 92012545, 111280129, 111345665, 111411201, 111476737, 111542273, 111673345, 111935489, 112001025, 112066561, 112197633, 145883140, 146538497, 148176897]} | json_instruct | {"type": "object", "properties": {"zoom": {"type": "array", "items": {"type": "integer"}}, "zoomdirection": {"type": "array", "items": {"type": "integer"}}, "zoomeventargs": {"type": "array", "items": {"type": "integer"}}, "zero": {"type": "array", "items": {"type": "integer"}}}, "required": ["zoom", "zoomdirection", "zoomeventargs", "zero"], "$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": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}}, "required": ["province", "city", "area", "name", "code", "address", "phone"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"province" : "\u7518\u8083\u7701", "city" : "\u767d\u94f6\u5e02", "area" : "\u767d\u94f6\u533a", "name" : "\u4eba\u6c11\u8def\u90ae\u653f\u652f\u5c40", "code" : "730999", "address" : "\u767d\u94f6\u5e02\u4eba\u6c11\u8def99\u53f7", "phone" : "0943-8222061"}, {"province" : "\u7518\u8083\u7701", "city" : "\u767d\u94f6\u5e02", "area" : "\u767d\u94f6\u533a", "name" : "\u706b\u8f66\u7ad9\u90ae\u653f\u652f\u5c40", "code" : "730999", "address" : "\u767d\u94f6\u5e02\u706b\u8f66\u7ad9", "phone" : "0943-8231185"}, {"province" : "\u7518\u8083\u7701", "city" : "\u767d\u94f6\u5e02", "area" : "\u767d\u94f6\u533a", "name" : "\u5170\u5dde\u8def\u90ae\u653f\u6240", "code" : "730999", "address" : "\u767d\u94f6\u5e02\u5170\u5dde\u8def67\u53f7", "phone" : "0943-8663836"}, {"province" : "\u7518\u8083\u7701", "city" : "\u767d\u94f6\u5e02", "area" : "\u767d\u94f6\u533a", "name" : "\u4e1c\u5c71\u8def\u90ae\u653f\u652f\u5c40", "code" : "730999", "address" : "\u767d\u94f6\u5e02\u4e1c\u5c71\u8def155\u53f7", "phone" : "0943-8611134"}, {"province" : "\u7518\u8083\u7701", "city" : "\u767d\u94f6\u5e02", "area" : "\u767d\u94f6\u533a", "name" : "\u80dc\u5229\u8def\u90ae\u653f\u652f\u5c40", "code" : "730999", "address" : "\u767d\u94f6\u5e02\u80dc\u5229\u885776\u53f7", "phone" : "0943-5932598"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}}, "required": ["province", "city", "area", "name", "code", "address", "phone"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"backgrounds": {"type": "array", "items": {"type": "object", "properties": {"tile": {"type": "string"}, "ranges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["tile", "ranges"]}}}, "required": ["backgrounds"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"backgrounds" : [{"tile" : "sky", "ranges" : [[0, 25, 0, 14]]}, {"tile" : "ground", "ranges" : [[0, 25, 12, 14], [5, 8, 9, 10], [12, 18, 11, 12], [2, 3, 11, 12], [10, 12, 10, 11], [9, 10, 0, 7]]}]} | json_instruct | {"type": "object", "properties": {"backgrounds": {"type": "array", "items": {"type": "object", "properties": {"tile": {"type": "string"}, "ranges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["tile", "ranges"]}}}, "required": ["backgrounds"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Yayan D Wicaksono": {"type": "string"}}, "required": ["Yayan D Wicaksono"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"http": {"type": "string"}}, "required": ["http"]}, "ios": {"type": "object", "properties": {"vendored_frameworks": {"type": "string"}}, "required": ["vendored_frameworks"]}, "pod_target_xcconfig": {"type": "object", "properties": {"EXCLUDED_ARCHS[sdk=iphonesimulator*]": {"type": "string"}, "ENABLE_BITCODE": {"type": "string"}}, "required": ["EXCLUDED_ARCHS[sdk=iphonesimulator*]", "ENABLE_BITCODE"]}, "user_target_xcconfig": {"type": "object", "properties": {"EXCLUDED_ARCHS[sdk=iphonesimulator*]": {"type": "string"}, "ENABLE_BITCODE": {"type": "string"}}, "required": ["EXCLUDED_ARCHS[sdk=iphonesimulator*]", "ENABLE_BITCODE"]}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "platforms", "source", "ios", "pod_target_xcconfig", "user_target_xcconfig"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "QmeraSDWebImageWebPCoder", "version" : "0.0.1", "summary" : "WebP decoder/encoder for SDWebImage coder plugin.", "homepage" : "https://github.com/yayandw/QmeraSDWebImageWebPCoder", "license" : "MIT", "authors" : {"Yayan D Wicaksono" : "ya2n.wicaksono@gmail.com"}, "platforms" : {"ios" : "12.4"}, "source" : {"http" : "https://github.com/yayandw/QmeraSDWebImageWebPCoder/releases/download/v1.0.0/QmeraSDWebImageWebPCoder.zip"}, "ios" : {"vendored_frameworks" : "SDWebImageWebPCoder.framework"}, "pod_target_xcconfig" : {"EXCLUDED_ARCHS[sdk=iphonesimulator*]" : "arm64", "ENABLE_BITCODE" : "NO"}, "user_target_xcconfig" : {"EXCLUDED_ARCHS[sdk=iphonesimulator*]" : "arm64", "ENABLE_BITCODE" : "NO"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Yayan D Wicaksono": {"type": "string"}}, "required": ["Yayan D Wicaksono"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"http": {"type": "string"}}, "required": ["http"]}, "ios": {"type": "object", "properties": {"vendored_frameworks": {"type": "string"}}, "required": ["vendored_frameworks"]}, "pod_target_xcconfig": {"type": "object", "properties": {"EXCLUDED_ARCHS[sdk=iphonesimulator*]": {"type": "string"}, "ENABLE_BITCODE": {"type": "string"}}, "required": ["EXCLUDED_ARCHS[sdk=iphonesimulator*]", "ENABLE_BITCODE"]}, "user_target_xcconfig": {"type": "object", "properties": {"EXCLUDED_ARCHS[sdk=iphonesimulator*]": {"type": "string"}, "ENABLE_BITCODE": {"type": "string"}}, "required": ["EXCLUDED_ARCHS[sdk=iphonesimulator*]", "ENABLE_BITCODE"]}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "platforms", "source", "ios", "pod_target_xcconfig", "user_target_xcconfig"], "$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"}, "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" : [[[-82.316757, 35.022604], [-82.314267, 35.026805], [-82.315579, 35.027425], [-82.308943, 35.031663], [-82.301571, 35.034032], [-82.302431, 35.036402], [-82.297949, 35.039229], [-82.292235, 35.041319], [-82.276095, 35.040099], [-82.271292, 35.04093], [-82.2675, 35.042686], [-82.259609, 35.041586], [-82.252586, 35.043288], [-82.247824, 35.034242], [-82.244193, 35.030788], [-82.233213, 35.032501], [-82.219775, 35.037562], [-82.219913, 34.999027], [-82.220848, 34.973148], [-82.222949, 34.973029], [-82.224282, 34.97158], [-82.227382, 34.9715], [-82.228079, 34.973822], [-82.232514, 34.973985], [-82.232831, 34.97619], [-82.24069, 34.979899], [-82.242269, 34.982037], [-82.243168, 34.980517], [-82.242616, 34.979216], [-82.243792, 34.978378], [-82.247771, 34.977824], [-82.248736, 34.978916], [-82.25265, 34.977155], [-82.257335, 34.977453], [-82.259132, 34.978271], [-82.261139, 34.981506], [-82.26334, 34.982921], [-82.269177, 34.982741], [-82.271142, 34.983731], [-82.279941, 34.9852], [-82.281684, 34.985189], [-82.282007, 34.983831], [-82.282902, 34.983424], [-82.286594, 34.986365], [-82.290815, 34.987234], [-82.293916, 34.994243], [-82.296737, 34.995029], [-82.296738, 34.996497], [-82.300924, 34.997907], [-82.303642, 35.000421], [-82.304572, 35.003187], [-82.307485, 35.006339], [-82.311341, 35.014243], [-82.315725, 35.019907], [-82.316757, 35.022604]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 57401}}]} | 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#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["522301005001", "\u576a\u4e1c\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["522301005002", "\u5e78\u798f\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["522301005003", "\u65b0\u8054\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["522301005202", "\u9505\u5e95\u6cb3\u6751\u59d4\u4f1a", "111", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.