input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "3329040004", "district_id" : "3329040", "name" : "PAGUYANGAN"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"side": {"type": "string"}, "material": {"type": "string"}}, "required": ["side", "material"]}}, "required": ["parent", "textures"], "$schema": "htt...
{"parent" : "botania:block/shapes/spreader", "textures" : {"side" : "botania:block/elven_spreader_side", "material" : "botania:block/dreamwood"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"side": {"type": "string"}, "material": {"type": "string"}}, "required": ["side", "material"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schem...
{"Time" : "2021-09-12T01:00:00Z", "Temp" : 20.5, "RelHum" : 74, "WindSpeed" : 1.2, "WindDir" : 124}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"max_upload_limit": {"type": "integer"}, "max_upload_size": {"type": "integer"}}, "required": ["max_upload_limit", "max_upload_size"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"max_upload_limit" : 15, "max_upload_size" : 200}
json_instruct
{"type": "object", "properties": {"max_upload_limit": {"type": "integer"}, "max_upload_size": {"type": "integer"}}, "required": ["max_upload_limit", "max_upload_size"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"filepond.css": {"type": "string"}, "filepond.esm.js": {"type": "string"}, "filepond.esm.min.js": {"type": "string"}, "filepond.js": {"type": "string"}, "filepond.min.css": {"type": "string"}, "filepond.min.js": {"ty...
{"filepond.css" : "sha512-JIcV7uqhvfLhi+pydAyxX98Mm00SXNo787vOtLnrofg9IXC/qFLkyZcbN/M3QtP/NSrooNUGE+d7eZviODo+VQ==", "filepond.esm.js" : "sha512-VN+8AOlc/9/x7I5mg2HiEmrQ4d8UUVfSwbmvsFU6fx8SCcCep/B3AikgEQEJxoAhQeOERbVZyQbJjD3eJrT7/Q==", "filepond.esm.min.js" : "sha512-OkMmeDZyXBnxNJvdNLkPR/PzP8GyMZkPa9HzHqKnh7pQ0oDINzUG...
json_instruct
{"type": "object", "properties": {"filepond.css": {"type": "string"}, "filepond.esm.js": {"type": "string"}, "filepond.esm.min.js": {"type": "string"}, "filepond.js": {"type": "string"}, "filepond.min.css": {"type": "string"}, "filepond.min.js": {"type": "string"}}, "required": ["filepond.css", "filepond.esm.js", "file...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"user": {"type": "string"}, "value": {"type": "string"}, "type": {"type": "string"}, "time": {"type": "integer"}, "data": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "list": {"type": "...
{"user" : "Edouard DUPIN", "value" : "^", "type" : "hand", "time" : 1470152226967817216, "data" : [{"type" : "type::finger", "list" : [[348.344116, 569.610657], [348.34436, 565.390503], [352.627838, 565.196533], [356.221436, 566.788513], [361.923157, 571.434937], [370.741913, 581.164551], [381.549011, 594.485229], [394...
json_instruct
{"type": "object", "properties": {"user": {"type": "string"}, "value": {"type": "string"}, "type": {"type": "string"}, "time": {"type": "integer"}, "data": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "list": {"type": "array", "items": {"type": "array", "items": {"type": "num...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "systeminformation": {"type...
{"name" : "test", "version" : "0.0.1", "main" : "test.js", "private" : true, "dependencies" : {"express" : "^4.16.2", "systeminformation" : "^4.22.5"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "systeminformation": {"type": "string"}}, "required": ["express", "systeminformation"]...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "Armband (red)", "ShortName" : "Armband ", "Description" : "Red identification armband"}
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_da...
{"id" : 14844, "citation_title" : "Early Admissions at Selective Colleges", "citation_author" : ["Christopher Avery", "Jonathan D. Levin"], "citation_publication_date" : "2009-04-03", "issue_date" : "2009-04-03", "revision_date" : "None", "topics" : ["Microeconomics", "Game Theory", "Economics of Information", "Health,...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "0233de6c8e04a5667340aa811169a21f5cfccd7f"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"chest": {"type": "string"}, "chest_opened": {"type": "string"}}, "required": ["chest", "chest_opened"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"chest" : "$(respath)/main/graphics/images/chest.png", "chest_opened" : "$(respath)/main/graphics/images/chest_opened.png"}
json_instruct
{"type": "object", "properties": {"chest": {"type": "string"}, "chest_opened": {"type": "string"}}, "required": ["chest", "chest_opened"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"updater": {"type": "string"}, "validator": {"t...
{"name" : "ehn-dcc-schema-json-validator", "type" : "module", "version" : "1.2.2", "private" : true, "scripts" : {"updater" : "cd src/js && node updater.js", "validator" : "cd src/js && node validator.js", "sctester" : "cd src/js && node schemacompatibilitytester.js", "cleaner" : "cd src/js && node cleaner.js"}, "depen...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"updater": {"type": "string"}, "validator": {"type": "string"}, "sctester": {"type": "string"}, "cleaner": {"type": "strin...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"facets": {"type": "object", "properties": {"Wikipedia:Citing sources": {"type": "integer"}, "chronology": {"type": "integer"}, "unique identifier": {"type": "integer"}, "work": {"type": "integer"}, "version, ...
{"facets" : {"Wikipedia:Citing sources" : 3609, "chronology" : 274, "unique identifier" : 31, "work" : 13, "version, edition, or translation" : 13, "name" : 5}, "total_accumulated_facet" : 3945, "unique_facets" : 6, "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"}, "unique identifier": {"type": "integer"}, "work": {"type": "integer"}, "version, edition, or translation": {"type": "integer"}, "name": {"type": "integer"}}, ...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "1306060", "regency_id" : "1306", "name" : "VII KOTO SUNGAI SARIAK"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$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": {"key": {"type": "integer"}, "imageURL": {"type": "string"}, "linkURL": {"type": "string"}, "Alt": {"type": "string"}}, "required": ["key", "imageURL", "linkURL", "Alt"]}, "$schema": "http://...
[{"key" : 1, "imageURL" : "./admin/banner/1.png", "linkURL" : "#", "Alt" : ""}, {"key" : 2, "imageURL" : "./admin/banner/1.png", "linkURL" : "#", "Alt" : ""}, {"key" : 3, "imageURL" : "./admin/banner/1.png", "linkURL" : "./admin/banner/1.png", "Alt" : ""}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"key": {"type": "integer"}, "imageURL": {"type": "string"}, "linkURL": {"type": "string"}, "Alt": {"type": "string"}}, "required": ["key", "imageURL", "linkURL", "Alt"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "component": {"type": "object", "properties": {"scripts": {"typ...
{"name" : "component-event", "description" : "Event binding component", "version" : "0.1.4", "keywords" : ["browser", "event", "events"], "component" : {"scripts" : {"event/index.js" : "index.js"}}, "repository" : {"type" : "git", "url" : "https://github.com/component/event.git"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "component": {"type": "object", "properties": {"scripts": {"type": "object", "properties": {"event/index.js": {"type": "string"}}, "...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}, "originalId": {"type": "integer"}, "rarity": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "load": {"type": "integer"}, "energy": {"type": "integer"}, "category": ...
{"id" : "blue_frog", "originalId" : 369141, "rarity" : 3, "name" : "Blue Frog", "description" : "A small frog that often appears in wetlands.\\nThis animal is very common in wetland areas, and its body secretes a mysterious sticky substance that has much medicinal utility. Blue Frogs are known to frequent cleaner, clea...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "originalId": {"type": "integer"}, "rarity": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "load": {"type": "integer"}, "energy": {"type": "integer"}, "category": {"type": "array", "items": {"type": "object", "properties":...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"class": {"type": "object", "properties": {"key:removedSlot:": {"type": "string"}}, "required": ["key:removedSlot:"]}, "instance": {"type": "object", "properties": {"applyTo:": {"type": "string"}, "applyTo:with:": {"t...
{"class" : {"key:removedSlot:" : "jr 7/17/2017 00:01"}, "instance" : {"applyTo:" : "jr 9/23/2019 23:19", "applyTo:with:" : "jr 7/29/2017 21:29", "asReferenceDiffWithDefaultOwners:reflectedIn:" : "jr 7/18/2021 20:24", "hierarchicalDiffTitle" : "jr 6/25/2017 21:51", "printDescriptionOn:" : "jr 6/18/2017 11:51", "slotShad...
json_instruct
{"type": "object", "properties": {"class": {"type": "object", "properties": {"key:removedSlot:": {"type": "string"}}, "required": ["key:removedSlot:"]}, "instance": {"type": "object", "properties": {"applyTo:": {"type": "string"}, "applyTo:with:": {"type": "string"}, "asReferenceDiffWithDefaultOwners:reflectedIn:": {"t...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$s...
[{"name" : "LYDIE", "frequency" : 89312, "males" : "0.1713095664636331 %", "females" : "99.82869043353637 %"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"appService.zipIgnorePattern": {"type": "array", "items": {"type": "string"}}, "editor.formatOnSave": {"type": "boolean"}, "editor.defaultFormatter": {"type": "string"}}, "required": ["appService.zipIgnorePatter...
{"appService.zipIgnorePattern" : ["node_modules{,/**}", ".vscode{,/**}"], "editor.formatOnSave" : true, "editor.defaultFormatter" : "esbenp.prettier-vscode"}
json_instruct
{"type": "object", "properties": {"appService.zipIgnorePattern": {"type": "array", "items": {"type": "string"}}, "editor.formatOnSave": {"type": "boolean"}, "editor.defaultFormatter": {"type": "string"}}, "required": ["appService.zipIgnorePattern", "editor.formatOnSave", "editor.defaultFormatter"], "$schema": "http://j...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "f4d878c949b2526ce21ea27e02f94f5405946aa0"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"allow": {"type": "object", "properties": {"all": {"type": "boolean"}, "self": {"type": "boolean"}, "owned": {"type": "boolean"}, "resources": {"type": "array", "items": {"type": "string"}}, "conditions": {"ty...
{"allow" : {"all" : true, "self" : false, "owned" : false, "resources" : ["1", "2"], "conditions" : [{"class" : "worker", "division" : "kitchen"}]}, "deny" : {"all" : false, "self" : false, "owned" : false, "resources" : [], "conditions" : []}, "__comments" : ["SELECT ARN FROM ATTRIBUTES GROUP BY ARN", "HAVING", "(SUM(...
json_instruct
{"type": "object", "properties": {"allow": {"type": "object", "properties": {"all": {"type": "boolean"}, "self": {"type": "boolean"}, "owned": {"type": "boolean"}, "resources": {"type": "array", "items": {"type": "string"}}, "conditions": {"type": "array", "items": {"type": "object", "properties": {"class": {"type": "s...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {"type": "string"}}, "SERIES_NAME": {"type": "array", "items": {"type": "string"}}, "X_CALENDAR_YEAR": {"type": "array"...
{"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : ["60-69", "60-69", "50-59", "50-59", "50-59", "50-59", "50-59", "50-59"], "SERIES_NAME" : ["MALE", "FEMALE", "MALE", "FEMALE", "MALE", "FEMALE", "MALE", "FEMALE"], "X_CALENDAR_YEAR" : [2014, 2014, 2017, 2017, 2018, 2018, 2019, 2019], "Y_PREVALENCE_1000PP" : [0.03976,...
json_instruct
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {"type": "string"}}, "SERIES_NAME": {"type": "array", "items": {"type": "string"}}, "X_CALENDAR_YEAR": {"type": "array", "items": {"type": "integer"}}, "Y_PREVALENCE_1000PP": {...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"project_info": {"type": "object", "properties": {"project_number": {"type": "string"}, "project_id": {"type": "string"}, "storage_bucket": {"type": "string"}}, "required": ["project_number", "project_id", "stor...
{"project_info" : {"project_number" : "957715618865", "project_id" : "flutfire-e08a4", "storage_bucket" : "flutfire-e08a4.appspot.com"}, "client" : [{"client_info" : {"mobilesdk_app_id" : "1:957715618865:android:a2da2ac048e35a9237c910", "android_client_info" : {"package_name" : "com.paulononaka.flutfire"}}, "oauth_clie...
json_instruct
{"type": "object", "properties": {"project_info": {"type": "object", "properties": {"project_number": {"type": "string"}, "project_id": {"type": "string"}, "storage_bucket": {"type": "string"}}, "required": ["project_number", "project_id", "storage_bucket"]}, "client": {"type": "array", "items": {"type": "object", "pro...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "strin...
{"schema_version" : "1.2.0", "id" : "GHSA-8qc2-4mg6-649v", "modified" : "2022-05-13T01:27:55Z", "published" : "2022-05-13T01:27:55Z", "aliases" : ["CVE-2017-11698"], "details" : "Heap-based buffer overflow in the __get_page function in lib/dbm/src/h_page.c in Mozilla Network Security Services (NSS) allows context-depen...
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {"type": "object", "properti...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"bark": {"type": "string"}, "rings": {"type": "string"}}, "required": ["bark", "rings"]}}, "required": ["parent", "textures"], "$schema": "ht...
{"parent" : "dynamictrees:item/branch", "textures" : {"bark" : "plants2:blocks/cosmetic/tree/black_kauri_log", "rings" : "plants2:blocks/cosmetic/tree/black_kauri_log_end"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"bark": {"type": "string"}, "rings": {"type": "string"}}, "required": ["bark", "rings"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"derivation": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "outline": {"type": "string"}}, "required": ["derivation", "k...
{"derivation" : "from G1909 (\u1f10\u03c0\u03bf\u03b9\u03ba\u03bf\u03b4\u03bf\u03bc\u03ad\u03c9) and G3618 (\u1f10\u03c0\u03bf\u03b9\u03ba\u03bf\u03b4\u03bf\u03bc\u03ad\u03c9);", "kjv_def" : "build thereon (thereupon, on, upon)", "lemma" : "\u1f10\u03c0\u03bf\u03b9\u03ba\u03bf\u03b4\u03bf\u03bc\u03ad\u03c9", "frequency...
json_instruct
{"type": "object", "properties": {"derivation": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "outline": {"type": "string"}}, "required": ["derivation", "kjv_def", "lemma", "frequency", "strongs_def", "outline"], "$sc...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"new_version" : "2.5_6"}
json_instruct
{"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$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": [...
{"name" : "capstone", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "truffle test"}, "keywords" : [], "author" : "Sepid M.", "license" : "MIT", "devDependencies" : {"openzeppelin-solidity" : "^2.4.0", "solc" : "^0.6.1", "solc-js" : "^1.0.1", "truffle" : "^5.1.7", "truffle-hdwallet-...
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"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "str...
Construct a JSON document that adheres to this schema specification: {"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...
{"published" : "2015-09-09T11:44:24Z", "media-type" : "Blog", "title" : "JP Morgan gives October deadline to remove Nigeria from Government Bond Index", "id" : "efb88549-eefd-46a4-b618-757130950b15", "content" : "JP Morgan, yesterday, announced that it will remove Nigeria from its Government Bond Index (GBI-EM) by the ...
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-s...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "statio...
{"station" : [{"pref_cd" : 24, "line_cd" : 11510, "line_name" : "JR\u7d00\u52e2\u672c\u7dda", "station_cd" : 1151025, "station_g_cd" : 1151025, "station_name" : "\u5c3e\u9df2", "lon" : 136.190168, "lat" : 34.074304}]}
json_instruct
{"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "line-1": {"type": "string"}, "line-2": {"type": "string"}, "attribution": {"type": "string"}, "url": {"type": "string"}}, "required": ["id", "line-1", "line-2", "attribution", "url"], "$schema": "htt...
{"id" : 6258, "line-1" : "Africa", "line-2" : "Libya", "attribution" : "\u00a92015 DigitalGlobe", "url" : "https://www.google.com/maps/@31.952189,19.944515,17z/data=!3m1!1e3"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "line-1": {"type": "string"}, "line-2": {"type": "string"}, "attribution": {"type": "string"}, "url": {"type": "string"}}, "required": ["id", "line-1", "line-2", "attribution", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"value" : ["-921412433322434627", "-25212727778", "-5824896", "-542", "4", "83236", "467843725", "956576325264523532"]}
json_instruct
{"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}}, "required": ["value"], "$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": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "int...
[{"results" : [{"tech" : 1, "pts" : 930, "connections" : 127522, "capacity" : 8684491, "investments" : 110665294}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pt...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"...
{"type" : "Feature", "properties" : {"name" : "Rosebud County", "name_long" : "Rosebud County, MT", "fips" : "30087", "state_code_int" : 30, "state_code_postal" : "MT", "state_code_iso" : "US-MT", "county_code" : 87, "population" : 8937, "countrylevel_id" : "fips:30087", "census_data" : {"COUNTYNS" : "01716795", "AFFGE...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "co...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"index.css": {"type": "string"}, "index.js": {"type": "string"}, "index.min.css": {"type": "string"}, "index.min.js": {"type": "string"}}, "required": ["index.css", "index.js", "index.min.css", "index.min.js"], "$schema": "http...
{"index.css" : "sha512-cq6QEJUsRk3rjuQVbs1Dzqbn2oR58GrlAzg58QRJ0k/5OZ+o6BpazXGwbpoRTnANF7ypjFGgivYQST5B6+3EDA==", "index.js" : "sha512-POtgfSMxHSZOxvru6JWBHwhUwPGXEPBRZhdTzqMb7/BgOaO1u/pZyB4dPMKCwtZBHNblNN53vlkH8Nmhla57uA==", "index.min.css" : "sha512-HX+X7SlAVKdyTPDwS7ir+RFMcgtafaKoYsptU7x/8YHYr3rPtCukgLwjti3/U0iEL+UP...
json_instruct
{"type": "object", "properties": {"index.css": {"type": "string"}, "index.js": {"type": "string"}, "index.min.css": {"type": "string"}, "index.min.js": {"type": "string"}}, "required": ["index.css", "index.js", "index.min.css", "index.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"SolverName": {"type": "string"}, "ObjBound": {"type": "number"}, "SolveTime": {"type": "number"}, "PrimalStatus": {"type": "string"}, "InstanceName": {"type": "string"}, "SolveTimeRaw": {"type": "number"}, "Complet...
{"SolverName" : "EAGO", "ObjBound" : -0.3402135304014903, "SolveTime" : 0.33899998664855957, "PrimalStatus" : "FEASIBLE_POINT", "InstanceName" : "96_gelu_3_1_2", "SolveTimeRaw" : 0.33899998664855957, "CompletedSolveTime" : 0.33899998664855957, "ObjValue" : -0.3400799729152293, "Error" : false, "TerminationStatus" : "OP...
json_instruct
{"type": "object", "properties": {"SolverName": {"type": "string"}, "ObjBound": {"type": "number"}, "SolveTime": {"type": "number"}, "PrimalStatus": {"type": "string"}, "InstanceName": {"type": "string"}, "SolveTimeRaw": {"type": "number"}, "CompletedSolveTime": {"type": "number"}, "ObjValue": {"type": "number"}, "Erro...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"ja304:1.1": {"type": "string"}, "ja304:2.1": {"type": "string"}, "ja304:3.1": {"type": "string"}, "ja304:4.1": {"type": "string"}, "ja304:5.1": {"type": "string"}}, "required": ["ja304:1.1", "ja304:2.1", "ja304:3.1...
{"ja304:1.1" : "csp1ed22.95, csp2ed22.95, dr27.131, ms22J_898, msdiv13, ndp22.88, pts-vp-pli3.16, sc1, sya27.131", "ja304:2.1" : "bj30.166, ms22J_899, msdiv14, pts-vp-pli3.17, sc2", "ja304:3.1" : "ms22J_900, msdiv15, sc3", "ja304:4.1" : "ms22J_901, msdiv16, sc4", "ja304:5.1" : "ms22J_902, sc5"}
json_instruct
{"type": "object", "properties": {"ja304:1.1": {"type": "string"}, "ja304:2.1": {"type": "string"}, "ja304:3.1": {"type": "string"}, "ja304:4.1": {"type": "string"}, "ja304:5.1": {"type": "string"}}, "required": ["ja304:1.1", "ja304:2.1", "ja304:3.1", "ja304:4.1", "ja304:5.1"], "$schema": "http://json-schema.org/draft-...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"description": {"type": "string"}, "favorite": {"type": "string"}, "length": {"type": "string"}, "likes": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}...
{"description" : "This presentation was recorded at GOTO Amsterdam 2016\nhttp://gotoams.nl\n\nClemens Vasters - Lead Architect, Microsoft Azure Service Bus\n\nABSTRACT\n\"Internet of Things\" is a metaphor for how the infrastructure of our daily lives is being rapidly equipped with digital smarts. These arise from coll...
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "favorite": {"type": "string"}, "length": {"type": "string"}, "likes": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {}}, "thumbnail_url": {"type": "s...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["532624104001", "\u8239\u5934\u793e\u533a", "121", "0"], ["532624104002", "\u5357\u6e29\u6cb3\u8857\u9053\u793e\u533a", "220", "0"], ["532624104201", "\u5929\u4fdd\u6751\u59d4\u4f1a", "220", "0"], ["532624104202", "\u5357\u6e29\u6cb3\u6751\u59d4\u4f1a", "220", "0"], ["532624104203", "\u516b\u5b8b\u6751\u59d4\u4f1a", ...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"domain": {"type": "string"}, "name": {"type": "string"}, "documentation": {"type": "string"}, "iot_class": {"type": "string"}, "issue_tracker": {"type": "string"}, "version": {"type": "string"}, "config_flow": {"ty...
{"domain" : "integration_blueprint", "name" : "Xiaomi Mi Scale", "documentation" : "https://github.com/cpyarger/Mi-Scale", "iot_class" : "local_polling", "issue_tracker" : "https://github.com/cpyarger/Mi-Scale/issues", "version" : "0.0.0", "config_flow" : true, "codeowners" : ["@cpyarger"]}
json_instruct
{"type": "object", "properties": {"domain": {"type": "string"}, "name": {"type": "string"}, "documentation": {"type": "string"}, "iot_class": {"type": "string"}, "issue_tracker": {"type": "string"}, "version": {"type": "string"}, "config_flow": {"type": "boolean"}, "codeowners": {"type": "array", "items": {"type": "str...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "requir...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[132.75, 26.333333333333332], [132.75, 26.416666666666668], [132.875, 26.416666666666668], [132.875, 26.333333333333332], [132.75, 26.333333333333332]]]}, "properties" : {"code" : 393246, "url" : "http://madefor.github.io/0410/api/v1/393246.geojso...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"env": {"type": "object", "properties": {"jest/globals": {"type": "boolean"}}, "required": ["jest/globals"]}, "extends": {"type": "array", "items": {"type": "string"}}, "plugins": {"type": "array", "items": {"type": "string"}},...
{"env" : {"jest/globals" : true}, "extends" : ["plugin:flowtype/recommended", "prettier"], "plugins" : ["flowtype", "jest", "prettier"], "rules" : {"jest/no-disabled-tests" : "warn", "jest/no-focused-tests" : "error", "jest/no-identical-title" : "error", "jest/prefer-to-have-length" : "warn", "jest/valid-expect" : "err...
json_instruct
{"type": "object", "properties": {"env": {"type": "object", "properties": {"jest/globals": {"type": "boolean"}}, "required": ["jest/globals"]}, "extends": {"type": "array", "items": {"type": "string"}}, "plugins": {"type": "array", "items": {"type": "string"}}, "rules": {"type": "object", "properties": {"jest/no-disabl...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"locale": {"type": "string"}, "scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["locale", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"locale" : "rkt", "scripts" : ["Beng"]}
json_instruct
{"type": "object", "properties": {"locale": {"type": "string"}, "scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["locale", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"port": {"type": "integer"}, "endpoints": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "method": {"type": "string"}, "redirect": {"type": "object", "properties": {"method": {"type": "st...
{"port" : 30514, "endpoints" : [{"path" : "/v1/convert/fs2SQL", "method" : "GET", "redirect" : {"method" : "GET", "path" : "/api/v1/convert/fs2SQL"}}, {"path" : "/v1/convert/fs2SQL", "method" : "POST", "redirect" : {"method" : "POST", "path" : "/api/v1/convert/fs2SQL"}}, {"path" : "/v1/convert/sql2FS", "method" : "GET"...
json_instruct
{"type": "object", "properties": {"port": {"type": "integer"}, "endpoints": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "method": {"type": "string"}, "redirect": {"type": "object", "properties": {"method": {"type": "string"}, "path": {"type": "string"}}, "required": ["method...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "xlit...
{"derivation" : "masculine of H7651 (\u05e9\u05c1\u05b6\u05d1\u05b7\u05e2); seven(-th);", "pron" : "shib-aw'", "outline" : "<span class=\"literal-meaning\">Shebah = &quot;an oath&quot;</span><ol><li> the well named by Isaac and near Beersheba</li></ol>", "kjv_def" : "Shebah.", "lemma" : "\u05e9\u05c1\u05b4\u05d1\u05b0\...
json_instruct
{"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "xlit": {"type": "string"}}, "required": ["derivation", "pron", ...
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": "object", "properties": {"er...
{"contract" : "0xea134f45e30a4cf39644a3b5bcc1cead13966e89", "tool" : "honeybadger", "start" : 1565885319.855196, "end" : 1565885354.9372823, "duration" : 35.08208632469177, "analysis" : [{"errors" : [], "file" : "/unique_chucks/11/0xea134f45e30a4cf39644a3b5bcc1cead13966e89.sol", "name" : "AT"}, {"errors" : [], "file" :...
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": "strin...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "st...
{"name" : "start-server-webpack-plugin-2", "version" : "2.0.0", "description" : "Automatically start your server once Webpack's build completes.", "main" : "StartServerPlugin.js", "repository" : {"type" : "git", "url" : "git+https://github.com/ericclemmons/start-server-webpack-plugin.git"}, "keywords" : ["webpack", "se...
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", ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"feedstocks" : ["ansi2html"]}
json_instruct
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severit...
{"schema_version" : "1.2.0", "id" : "GHSA-crj9-mr7m-c86x", "modified" : "2022-05-01T18:41:11Z", "published" : "2022-05-01T18:41:11Z", "aliases" : ["CVE-2007-6262"], "details" : "A certain ActiveX control in axvlc.dll in VideoLAN VLC 0.8.6 before 0.8.6d allows remote attackers to execute arbitrary code via crafted argum...
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "a...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "in...
{"lastUpdated" : 1655019279666, "username" : "Constant_Lio", "scores" : [{"xp" : 21711, "rank" : 256, "cardId" : 175}, {"xp" : 19788, "rank" : 394, "cardId" : 225}, {"xp" : 24043, "rank" : 322, "cardId" : 3}, {"xp" : 5842, "rank" : 293, "cardId" : 629}, {"xp" : 24413, "rank" : 200, "cardId" : 235}, {"xp" : 7037, "rank"...
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": ["last...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"deu": {"type": "object", "properties": {"common": {"type": "string"}, "official": {"type": "string"}}, "required": ["common", "official"]}, "fin": {"type": "object", "properties": {"common": {"type": "string"}, "offi...
{"deu" : {"common" : "Turkmenistan", "official" : "Turkmenistan"}, "fin" : {"common" : "Turkmenistan", "official" : "Turkmenistan"}, "fra" : {"common" : "Turkm\u00e9nistan", "official" : "Turkm\u00e9nistan"}, "hrv" : {"common" : "Turkmenistan", "official" : "Turkmenistan"}, "ita" : {"common" : "Turkmenistan", "official...
json_instruct
{"type": "object", "properties": {"deu": {"type": "object", "properties": {"common": {"type": "string"}, "official": {"type": "string"}}, "required": ["common", "official"]}, "fin": {"type": "object", "properties": {"common": {"type": "string"}, "official": {"type": "string"}}, "required": ["common", "official"]}, "fra...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "loca...
{"id" : 9750, "title" : ["[Maaghara Tower, Landing]"], "description" : ["Great arching branches come together in the center of the tree, forming a huge cathedral-like hall. The walls stretching upwards from the landing are a deep, black hue so dark they appear liquid. Great branch-like structures form a majestic colo...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"9746":...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "engines": {"type": "object", "properties...
{"name" : "exchange-rates-graphql", "version" : "1.0.0", "repository" : "https://github.com/techeverri/exchange-rates-graphql.git", "author" : "Tomas Echeverri Valencia <tomechval@gmail.com>", "license" : "MIT", "private" : true, "engines" : {"node" : "14.x", "yarn" : "^1.22.10"}, "main" : "src/index.js", "scripts" : {...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "yarn": {"type": "string"}}...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"images": {"type": "array", "items": {"type": "object", "properties": {"size": {"type": "string"}, "idiom": {"type": "string"}, "filename": {"type": "string"}, "scale": {"type": "string"}}, "required": ["size"...
{"images" : [{"size" : "29x29", "idiom" : "iphone", "filename" : "Icon 9iPhoneSpootlight5_29pt@2x.png", "scale" : "2x"}, {"size" : "29x29", "idiom" : "iphone", "filename" : "Icon 9iPhoneSpootlight5_29pt@3x.png", "scale" : "3x"}, {"size" : "40x40", "idiom" : "iphone", "filename" : "Icon 9iPhoneSpootlight7_40pt@2x.png", ...
json_instruct
{"type": "object", "properties": {"images": {"type": "array", "items": {"type": "object", "properties": {"size": {"type": "string"}, "idiom": {"type": "string"}, "filename": {"type": "string"}, "scale": {"type": "string"}}, "required": ["size", "idiom", "filename", "scale"]}}, "info": {"type": "object", "properties": {...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items"...
{"name" : "Chrome Network Dev", "version" : "1.0", "manifest_version" : 2, "content_scripts" : [{"matches" : ["<all_urls>"], "js" : ["src/content.js"]}], "background" : {"scripts" : ["src/background.js"]}, "web_accessible_resources" : ["src/networktab/networktab.html", "src/networktab/networktab.js"], "permissions" : [...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "stri...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K05901": {"type": "string"}}, "required": ["K05901"]}, "name": {"type": "str...
[{"comment" : "", "definition" : "Reduced riboflavin + NADP+ <=> Riboflavin + NADPH + H+", "orthologs" : {"K05901" : "biliverdin reductase / flavin reductase [EC:1.3.1.24 1.5.1.30]"}, "name" : "reduced-riboflavin:NADP+ oxidoreductase", "product_stoichiometries" : ["1", "1", "1"], "enzymes" : ["1.5.1.30", "1.5.1.41"], "...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K05901": {"type": "string"}}, "required": ["K05901"]}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft...
{"id" : "07", "provinceId" : "61", "regencyId" : "09", "name" : "Belitang"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location"...
{"id" : 12235, "title" : ["[The Rift, Scatter]"], "description" : ["Thick, perfectly clear glass forms the ceiling, walls, and floor of this small room. Beyond the transparent enclosure is a sea of water that has been completely frozen. A school of colorful fish has been immobilized in the midst of fleeing from an eq...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"12151"...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"uniforms": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}, "attributes": {"type": "array", "items": {"type...
{"uniforms" : [{"name" : "blah", "type" : "mat2x3"}, {"name" : "blah2", "type" : "mat3"}, {"name" : "iChannel0", "type" : "sampler2D"}, {"name" : "iChannel1", "type" : "usampler2D"}, {"name" : "model", "type" : "mat4"}, {"name" : "projection", "type" : "mat4"}, {"name" : "view", "type" : "mat4"}], "attributes" : [{"nam...
json_instruct
{"type": "object", "properties": {"uniforms": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "str...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "mintable": {"type": "boolean"}, "ethereum_address": {"type": "string"}}, "required": [...
{"symbol" : "FLP", "name" : "FLIP Token (PoS)", "decimals" : 18, "address" : "0x22593803b4c628d8ee2537ac0ffb996ca104ad25", "mintable" : false, "ethereum_address" : "0x3a1bda28adb5b0a812a7cf10a1950c920f79bcd3"}
json_instruct
{"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "mintable": {"type": "boolean"}, "ethereum_address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address", "mintable", "ethereum_address"], "$s...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"instance": {"type": "object", "properties": {"initialize": {"type": "string"}, "dbxResult": {"type": "string"}, "tablePrimaryKey": {"type": "string"}}, "required": ["initialize", "dbxResult", "tablePrimaryKey"]}, "class": {"ty...
{"instance" : {"initialize" : "RichardPillar 4/8/2018 19:00", "dbxResult" : "RichardPillar 3/11/2020 08:11", "tablePrimaryKey" : "RichardPillar 4/8/2018 19:00"}, "class" : {}}
json_instruct
{"type": "object", "properties": {"instance": {"type": "object", "properties": {"initialize": {"type": "string"}, "dbxResult": {"type": "string"}, "tablePrimaryKey": {"type": "string"}}, "required": ["initialize", "dbxResult", "tablePrimaryKey"]}, "class": {"type": "object", "properties": {}, "required": []}}, "require...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "phases": {"type": "array", "items": {"type": "string"}}, "dhead": {"type": "array", "items": {"type": "array", "it...
{"data" : [[["311.1", "3"]]], "phases" : ["Crystal", "Liquid"], "dhead" : [["Normal melting temperature, K"]], "components" : [{"idout" : "ABFSjn", "sample" : [["Source:", "commercial source"], ["Initial purification:", "stated by supplier"], ["Initial purity:", "97 mass %"], ["Final purification:", "Karl Fischer titra...
json_instruct
{"type": "object", "properties": {"data": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "phases": {"type": "array", "items": {"type": "string"}}, "dhead": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "components": {"type": "array",...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"description": {"type": "string"}, "instructors": {"type": "string"}, "url": {"type": "string"}, "title": {"type": "string"}, "language": {"type": "string"}, "source": {"type": "string"}}, "required": ["description", ...
{"description" : "Master UVW Unwrapping for your game props as we guide you step-by-step through\nthe most important tools in 3ds Max!", "instructors" : "3dmotive LLC", "url" : "https://www.coursetalk.com/providers/udemy/courses/intro-to-uvw-unwrapping-in-3ds-max-for-games", "title" : "Intro to UVW Unwrapping in 3ds Ma...
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "instructors": {"type": "string"}, "url": {"type": "string"}, "title": {"type": "string"}, "language": {"type": "string"}, "source": {"type": "string"}}, "required": ["description", "instructors", "url", "title", "language", "source"], "$schema": "htt...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"an4.95:0.1": {"type": "string"}, "an4.95:0.2": {"type": "string"}, "an4.95:0.3": {"type": "string"}, "an4.95:1.1": {"type": "string"}, "an4.95:1.2": {"type": "string"}, "an4.95:1.3": {"type": "string"}, "an4....
{"an4.95:0.1" : "Numbered Discourses 4 ", "an4.95:0.2" : "10. Demons ", "an4.95:0.3" : "95. A Firebrand ", "an4.95:1.1" : "\u201cMendicants, these four people are found in the world. ", "an4.95:1.2" : "What four? ", "an4.95:1.3" : "One who practices to benefit neither themselves nor others; ", "an4.95:1.4" : "one who p...
json_instruct
{"type": "object", "properties": {"an4.95:0.1": {"type": "string"}, "an4.95:0.2": {"type": "string"}, "an4.95:0.3": {"type": "string"}, "an4.95:1.1": {"type": "string"}, "an4.95:1.2": {"type": "string"}, "an4.95:1.3": {"type": "string"}, "an4.95:1.4": {"type": "string"}, "an4.95:1.5": {"type": "string"}, "an4.95:1.6": ...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"distance": {"type": "integer"}, "reduction": {"type": "number"}}, "required": ["distance", "reduction"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"distance" : 20, "reduction" : 0.0}, {"distance" : 15, "reduction" : 0.02}, {"distance" : 10, "reduction" : 0.04}, {"distance" : 5, "reduction" : 0.06}, {"distance" : 0, "reduction" : 0.08}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"distance": {"type": "integer"}, "reduction": {"type": "number"}}, "required": ["distance", "reduction"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "ob...
{"hash" : "0x52d8a63268eb20fafbd2d244d87bfb3268ffbef89ddf6783d1ee94cd1133ceff", "parentHash" : "0xf073a287087f0f8f1db36eb1fd596174f570acc4a857de68fb7ec0d560571f33", "number" : 23561, "timestamp" : 1438546748, "nonce" : "0x9b9c81c3b12024d8", "difficulty" : 1061453766695, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_...
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type"...
{"name" : "selenium-appium", "version" : "0.0.15", "description" : "A selenium-webdriver extension to support native app testing by Mobile JSON Wire Protocol which appium supports, also provides easy wait for element for pages or navigation among pages, and supports PageObject pattern", "main" : "dist/index.js", "types...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "...
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"merged" : "C:\\Users\\RodoggX\\AndroidStudioProjects\\NetworkConnect\\Application\\build\\intermediates\\res\\merged\\debug\\xml\\network_security_config.xml", "source" : "C:\\Users\\RodoggX\\AndroidStudioProjects\\NetworkConnect\\Application\\src\\main\\res\\xml\\network_security_config.xml"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "lint:fix": {"type"...
{"name" : "serverless-test", "version" : "1.0.0", "description" : "Serverless Framework hello world test.", "main" : "handler.js", "scripts" : {"lint" : "eslint .", "lint:fix" : "npm run lint -- --fix", "test" : "jest"}, "keywords" : ["aws", "example", "hello-world", "nodejs", "serverless", "serverless-framework"], "au...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "lint:fix": {"type": "string"}, "test": {"type": "string"}}, "required": ["lint", "lint:fix...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "...
{"index" : 10587, "hash" : 4175702455, "artDyeHash" : 4175702455, "redacted" : false, "dyeManifestHash" : 485485495, "blacklisted" : false}
json_instruct
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blackl...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "numb...
{"locationData" : {"relativeBoundingBox" : {"xmin" : 0.5834089, "width" : 0.053720176, "ymin" : 0.6670011, "height" : 0.06715022}, "relativeKeypoints" : [{"y" : 0.67422926, "x" : 0.602637}, {"y" : 0.7204534, "x" : 0.62335}, {"y" : 0.7237199, "x" : 0.60827345}, {"y" : 0.7238993, "x" : 0.5951867}, {"y" : 0.72194767, "x" ...
json_instruct
{"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "number"}}, "required": ["xmin", "width", "ymin", "height"]}, "relativeKeyp...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["star...
{"name" : "Kashima-Bot", "version" : "1.4.0", "description" : "This-is-a-bot-based-from-this-URL-https://glitch.com/edit/#!/build-a-discord-bot-and-https://github.com/An-Idiots-Guide/guidebot/", "main" : "corekashima.js", "scripts" : {"start" : "node corekashima.js"}, "engines" : {"node" : "8.4.0"}, "repository" : {"ty...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "engines": {"type": "object", "properties": {"node": {"type": "st...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "au...
{"title" : "Goal-Driven Autonomy in a Navy Strategy Simulation.", "fields" : ["conceptualization", "unexpected events", "autonomous agent", "training simulation", "hierarchical task network"], "abstract" : "Modern complex games and simulations pose many challenges for an intelligent agent, including partial observabili...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"typ...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"hay_(small_grain)_acres_production_state": {"type": "object", "properties": {}, "required": []}}, "required": ["hay_(small_grain)_acres_production_state"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hay_(small_grain)_acres_production_state" : {}}
json_instruct
{"type": "object", "properties": {"hay_(small_grain)_acres_production_state": {"type": "object", "properties": {}, "required": []}}, "required": ["hay_(small_grain)_acres_production_state"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords":...
{"name" : "angular-error-stack", "version" : "0.0.2", "homepage" : "https://github.com/matmar10/angular-error-stack", "authors" : ["Matthew J. Martin <matthew.mar10@gmail.com>"], "description" : "Handle Angular events using an error middleware stack similar to express", "main" : "dist/angular-error-stack.js", "keywords...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_ema...
{"id" : 60569, "name" : "t&p clean", "description" : "//08.02.12 \u0412\u044b\u0440\u0435\u0437\u0430\u043d\u044b \u0432\u0441\u0435 \u0440\u0435\u043a\u043b\u0430\u043c\u043d\u044b\u0435 \u0431\u043b\u043e\u043a\u0438 \u0441 \u043f\u0440\u0430\u0432\u0430 \u0438 \u0444\u0443\u0442\u0435\u0440", "user" : {"id" : 67398,...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "underbid", "definition" : "To bid less than, as when a contract or service is offered to the lowest bidder; to offer to contract, sell, or do for a less price than."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"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": "strin...
{"edges" : [[1, 16], [15, 22], [9, 22], [22, 32], [22, 6], [22, 5], [19, 22], [22, 20], [0, 22], [22, 31], [22, 29], [19, 3], [10, 22], [22, 20], [24, 22], [17, 13], [26, 7], [18, 4], [22, 11], [21, 4], [6, 22], [19, 22], [22, 29], [9, 22], [5, 2], [22, 10], [12, 22], [20, 22], [22, 12], [4, 33], [5, 22], [19, 22], [30...
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":...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties":...
{"localities" : ["Llano Quemado, NM", "Rancho Taos, NM", "Talpa, NM", "Ranchos De Taos, NM", "Ranchos Taos, NM", "Ranches Of Taos, NM", "Ranch Taos, NM", "Rnch De Taos, NM"], "state" : "NM", "postal_code" : "87557", "locality" : "Ranchos De Taos, NM", "lat" : 36.294337, "region" : {"fips" : "35", "abbr" : "NM", "name" ...
json_instruct
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language":...
{"citations" : [{"textCitation" : "[See pjthlem1 on Metamath](http://us.metamath.org/mpegif/pjthlem1.html)"}], "names" : ["pjthlem1"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cV", "#T_wceq", "#T_cbs", "#T_cfv", "#T_cW", "#T_cN", "#T_wceq", "#T_cnm", "#T_cfv", "#T_cW", "#T_c.pl", "#T_wceq", "#T_cplusg", "#T...
json_instruct
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "st...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"<page title>": {"type": "string"}, "brand": {"type": "string"}, "date added": {"type": "string"}, "manuf no": {"type": "string"}, "our price": {"type": "string"}, "part no": {"type": "string"}, "rating": {"type": "s...
{"<page title>" : "Canon 600DB EOS 600D Digital SLR Camera - 18.0MP Black | Camerafarm Australia", "brand" : "Canon Web Site", "date added" : "15/3/2011", "manuf no" : "600DB", "our price" : "546", "part no" : "166397", "rating" : "Not Rated", "rrp" : "$599.01", "ship weight" : "2.5 KG\nDetails", "usually ships" : "Ord...
json_instruct
{"type": "object", "properties": {"<page title>": {"type": "string"}, "brand": {"type": "string"}, "date added": {"type": "string"}, "manuf no": {"type": "string"}, "our price": {"type": "string"}, "part no": {"type": "string"}, "rating": {"type": "string"}, "rrp": {"type": "string"}, "ship weight": {"type": "string"},...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["statsd-grapher"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "l...
{"place_name" : "Six Lakes", "state_name" : "Michigan", "state_abbrv" : "MI", "lat" : "43.4337", "long" : "-85.1416"}
json_instruct
{"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"$schema": {"type": "string"}, "location": {"type": "string"}, "nameShort": {"type": "string"}, "nameLong": {"type": "string"}, "buildCommand": {"type": "string"}, "buildCommandParameters": {"type": "string"}, "executeComman...
{"$schema" : "../test_schema.json", "location" : "/src/C", "nameShort" : "C", "nameLong" : "C", "buildCommand" : "wsl", "buildCommandParameters" : "./linux_build.sh", "executeCommand" : "wsl", "executeCommandParameters" : "./bin/linux/fizzbuzz", "preBuild" : ""}
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "location": {"type": "string"}, "nameShort": {"type": "string"}, "nameLong": {"type": "string"}, "buildCommand": {"type": "string"}, "buildCommandParameters": {"type": "string"}, "executeCommand": {"type": "string"}, "executeCommandParameters": {"type": "...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "120111003400", "text" : "\u4f73\u548c\u96c5\u5ead\u793e\u533a\u5c45\u59d4\u4f1a\u7b79\u5907\u7ec4\u53ca\u793e\u533a\u5de5\u4f5c\u7ad9"}, {"id" : "120111003401", "text" : "\u4f73\u548c\u8363\u5ead\u793e\u533a\u5c45\u59d4\u4f1a\u7b79\u5907\u7ec4\u53ca\u793e\u533a\u5de5\u4f5c\u7ad9"}, {"id" : "120111003402", "te...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "breathable", "definition" : "Such as can be breathed."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$sc...
{"id" : "2004", "provinceId" : "91", "regencyId" : "12", "districtId" : "29", "name" : "Muara Asbi"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot":...
{"id" : "QmP6sbzEtXFpiqyfyvacaVKWukarSgRd4FK8m7tBpfuKpA", "title" : "dsa", "body" : "dsadsa", "choices" : ["adsa", "daaa"], "start" : 1634368020, "end" : 1635491220, "snapshot" : "9474015", "state" : "closed", "author" : "0x0a30BB2c8e381979362a0B62CBcb8280912AC3b1", "space" : {"id" : "fabien.eth", "name" : "Fabien!"}, ...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "strin...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", ...
{"h" : [{"d" : [{"s" : ["`mihitangal~"], "f" : "\ufff9\ufffato wash one's hair\ufffb\u6d17\u9aee"}]}], "t" : "kalolo"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "...
Construct a JSON document that adheres to this schema specification: {"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-schem...
{"word" : "Relativity", "definitions" : ["The absence of standards of absolute and universal application.", "The dependence of various physical phenomena on relative motion of the observer and the observed objects, especially regarding the nature and behaviour of light, space, time, and gravity."], "parts-of-speech" : ...
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#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K13260": {"type": "string"}}, "required": ["K13260"]}, "name": {"type...
[{"comment" : "", "definition" : "Isoflavone + NADPH + H+ + Oxygen <=> 2'-Hydroxyisoflavone + NADP+ + H2O", "orthologs" : {"K13260" : "isoflavone 2'-hydroxylase [EC:1.14.13.89]"}, "name" : "isoflavone,NADPH:oxygen oxidoreductase (2'-hydroxylating)", "product_stoichiometries" : ["1", "1", "1"], "enzymes" : ["1.14.13.89"...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K13260": {"type": "string"}}, "required": ["K13260"]}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"URLs": {"type": "array", "items": {"type": "string"}}}, "required": ["URLs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"URLs" : ["https://api.github.com/repos/apache/calcite-avatica-go", "https://api.github.com/repos/viant/bgc", "https://api.github.com/repos/nakagami/firebirdsql", "https://api.github.com/repos/mattn/go-adodb", "https://api.github.com/repos/denisenkom/go-mssqldb", "https://api.github.com/repos/mattn/go-oci8", "https://...
json_instruct
{"type": "object", "properties": {"URLs": {"type": "array", "items": {"type": "string"}}}, "required": ["URLs"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"date_image": {"type": "string"}, "date_generated": {"type": "string"}, "sha": {"type": "string"}}, "required": ["date_image", "date_generated", "sha"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"date_image" : "2019-03-21 11:54:38", "date_generated" : "2019-03-21 11:59:47", "sha" : "9fb775d"}
json_instruct
{"type": "object", "properties": {"date_image": {"type": "string"}, "date_generated": {"type": "string"}, "sha": {"type": "string"}}, "required": ["date_image", "date_generated", "sha"], "$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": {"start": {"type": "string"}, "dev": {"type": "string"}}, ...
{"name" : "milk", "version" : "1.0.0", "description" : "milk tea shop", "main" : "server.js", "scripts" : {"start" : "node server.js", "dev" : "nodemon server.js -- "}, "repository" : {"type" : "git", "url" : "git+https://github.com/huanz/milk.git"}, "keywords" : ["shop", "tea", "milk"], "author" : "bukas", "license" :...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}}, "required": ["start", "dev"]}, "repository": {"type": "object"...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"\u4e09\u6d25": {"type": "array", "items": {"type": "number"}}, "\u7530\u624b": {"type": "array", "items": {"type": "number"}}, "\u5927\u66f2": {"type": "array", "items": {"type": "number"}}, "\u5409\u7530": {"type"...
{"\u4e09\u6d25" : [33.348804, 130.392141], "\u7530\u624b" : [33.303506, 130.397991], "\u5927\u66f2" : [33.342174, 130.40108], "\u5409\u7530" : [33.334779, 130.413265], "\u7bb1\u5ddd" : [33.300863, 130.401817], "\u8c46\u7530" : [33.310426, 130.405944], "\u677e\u9688" : [33.376278, 130.402486], "\u77f3\u52d5" : [33.35529...
json_instruct
{"type": "object", "properties": {"\u4e09\u6d25": {"type": "array", "items": {"type": "number"}}, "\u7530\u624b": {"type": "array", "items": {"type": "number"}}, "\u5927\u66f2": {"type": "array", "items": {"type": "number"}}, "\u5409\u7530": {"type": "array", "items": {"type": "number"}}, "\u7bb1\u5ddd": {"type": "arra...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
[0.07648121196387409, 0.06717117032965636, 0.05282955128848845, 0.034079023085002616, 0.03259965160457107, 0.03191473501084951, 0.03001642580334405, 0.026978641842226887, 0.026757795108141552, 0.023589254599611753, 0.023507020464357403, 0.023015017549006044, 0.022535194918242848, 0.022433531384152515, 0.020889301577031...
json_instruct
{"type": "array", "items": {"type": "number"}, "$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": {"divisionCode": {"type": "integer"}, "post": {"type": "string"}, "divisionName": {"type": "string"}, "isLeaf": {"type": "integer"}}, "required": ["divisionCode", "post", "divisionName", "...
[{"divisionCode" : 210711001, "post" : "121011", "divisionName" : "\u592a\u548c\u8857\u9053", "isLeaf" : 1}, {"divisionCode" : 210711002, "post" : "121011", "divisionName" : "\u5174\u9686\u8857\u9053", "isLeaf" : 1}, {"divisionCode" : 210711003, "post" : "121011", "divisionName" : "\u6c64\u6cb3\u5b50\u8857\u9053", "isL...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"divisionCode": {"type": "integer"}, "post": {"type": "string"}, "divisionName": {"type": "string"}, "isLeaf": {"type": "integer"}}, "required": ["divisionCode", "post", "divisionName", "isLeaf"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id_10645": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "read...
{"id_10645" : {"title" : "Undying One and Other Poems", "language" : "English", "totaltime" : "05:46:44", "url_librivox" : "http://librivox.org/the-undying-one-and-other-poems-by-caroline-elizabeth-sarah-norton/", "url_iarchive" : "http://archive.org/details/undyingone_1604_librivox", "readers" : ["6965"], "authors" : ...
json_instruct
{"type": "object", "properties": {"id_10645": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"ty...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"statusDTORequest": {"type": "string"}, "listBind": {"type": "array", "items": {"type": "object", "properties": {"idCandidate": {"type": "string"}, "idPosition": {"type": "string"}}, "required": ["idCandidate", "id...
{"statusDTORequest" : "APPLY", "listBind" : [{"idCandidate" : "22bf3cdb-d49e-4534-af52-9ce28064e7f30", "idPosition" : "1"}, {"idCandidate" : "22bf3cdb-d49e-4534-af52-9ce28064e7f31", "idPosition" : "1"}]}
json_instruct
{"type": "object", "properties": {"statusDTORequest": {"type": "string"}, "listBind": {"type": "array", "items": {"type": "object", "properties": {"idCandidate": {"type": "string"}, "idPosition": {"type": "string"}}, "required": ["idCandidate", "idPosition"]}}}, "required": ["statusDTORequest", "listBind"], "$schema": ...