input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"require": {"type": "object", "properties": {"cboden/ratchet": {"type": "string"}, "illuminate/database": {"type": "string"}, "illuminate/events": {"type": "string"}}, "required": ["cboden/ratchet", "illuminate/database", "illuminate/events"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"ChatApp\\": {"type": "string"}}, "required": ["ChatApp\\"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "files"]}}, "required": ["require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"require" : {"cboden/ratchet" : "^0.4.1", "illuminate/database" : "^5.5", "illuminate/events" : "^5.5"}, "autoload" : {"psr-4" : {"ChatApp\\" : "src"}, "files" : ["src/setup_eloquent.php"]}}
json_instruct
{"type": "object", "properties": {"require": {"type": "object", "properties": {"cboden/ratchet": {"type": "string"}, "illuminate/database": {"type": "string"}, "illuminate/events": {"type": "string"}}, "required": ["cboden/ratchet", "illuminate/database", "illuminate/events"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"ChatApp\\": {"type": "string"}}, "required": ["ChatApp\\"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "files"]}}, "required": ["require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"businessUnitManagementPlanExchangeActionTaskReference": {"type": "string"}, "businessUnitManagementPlanExchangeActionTaskRecord": {"type": "object", "properties": {}, "required": []}, "businessUnitManagementPlanExchangeActionResponse": {"type": "string"}}, "required": ["businessUnitManagementPlanExchangeActionTaskReference", "businessUnitManagementPlanExchangeActionTaskRecord", "businessUnitManagementPlanExchangeActionResponse"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"businessUnitManagementPlanExchangeActionTaskReference" : "BUMPEATR772412", "businessUnitManagementPlanExchangeActionTaskRecord" : {}, "businessUnitManagementPlanExchangeActionResponse" : "businessUnitManagementPlanExchangeActionResponse"}
json_instruct
{"type": "object", "properties": {"businessUnitManagementPlanExchangeActionTaskReference": {"type": "string"}, "businessUnitManagementPlanExchangeActionTaskRecord": {"type": "object", "properties": {}, "required": []}, "businessUnitManagementPlanExchangeActionResponse": {"type": "string"}}, "required": ["businessUnitManagementPlanExchangeActionTaskReference", "businessUnitManagementPlanExchangeActionTaskRecord", "businessUnitManagementPlanExchangeActionResponse"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Kira Yamato": {"type": "string"}}, "required": ["Kira Yamato"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "resources": {"type": "string"}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "platforms", "source", "source_files", "resources", "requires_arc"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "KYExpressionInputView", "version" : "0.1", "summary" : "an inputView for easily custom expression", "homepage" : "https://github.com/kirayamato1989/KYExpressionInputView", "license" : "MIT", "authors" : {"Kira Yamato" : "https://github.com/kirayamato1989"}, "platforms" : {"ios" : "7.0"}, "source" : {"git" : "https://github.com/kirayamato1989/KYExpressionInputView.git", "tag" : "0.1"}, "source_files" : "KYExpressionInputView/*.{h,m}", "resources" : "KYExpressionInputView/*.bundle", "requires_arc" : true}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Kira Yamato": {"type": "string"}}, "required": ["Kira Yamato"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "resources": {"type": "string"}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "platforms", "source", "source_files", "resources", "requires_arc"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"item.doorblade.hit_ground": {"type": "object", "properties": {"sounds": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "volume": {"type": "number"}}, "required": ["name", "volume"]}}, "subtitle": {"type": "string"}}, "required": ["sounds", "subtitle"]}, "item.doorlauncher.fire": {"type": "object", "properties": {"sounds": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "volume": {"type": "number"}}, "required": ["name", "volume"]}}, "subtitle": {"type": "string"}}, "required": ["sounds", "subtitle"]}, "item.doorflipper.flip": {"type": "object", "properties": {"sounds": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "volume": {"type": "number"}}, "required": ["name", "volume"]}}, "subtitle": {"type": "string"}}, "required": ["sounds", "subtitle"]}}, "required": ["item.doorblade.hit_ground", "item.doorlauncher.fire", "item.doorflipper.flip"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"item.doorblade.hit_ground" : {"sounds" : [{"name" : "item/trident/ground_impact1", "volume" : 0.9}, {"name" : "item/trident/ground_impact2", "volume" : 0.9}, {"name" : "item/trident/ground_impact3", "volume" : 0.9}, {"name" : "item/trident/ground_impact4", "volume" : 0.9}], "subtitle" : "subtitles.item.doorblade.hit_ground"}, "item.doorlauncher.fire" : {"sounds" : [{"name" : "item/armor/equip_netherite1", "volume" : 0.8}, {"name" : "item/armor/equip_netherite1", "pitch" : 0.9, "volume" : 0.8}, {"name" : "item/armor/equip_netherite2", "volume" : 0.8}, {"name" : "item/armor/equip_netherite2", "pitch" : 0.9, "volume" : 0.8}, {"name" : "item/armor/equip_netherite3", "volume" : 0.8}, {"name" : "item/armor/equip_netherite3", "pitch" : 0.9, "volume" : 0.8}, {"name" : "item/armor/equip_netherite4", "volume" : 0.8}, {"name" : "item/armor/equip_netherite4", "pitch" : 0.9, "volume" : 0.8}], "subtitle" : "subtitles.doorlauncher.fire"}, "item.doorflipper.flip" : {"sounds" : [{"name" : "halfdoors:doorflip", "volume" : 0.8}], "subtitle" : "subtitles.doorflipper.flip"}}
json_instruct
{"type": "object", "properties": {"item.doorblade.hit_ground": {"type": "object", "properties": {"sounds": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "volume": {"type": "number"}}, "required": ["name", "volume"]}}, "subtitle": {"type": "string"}}, "required": ["sounds", "subtitle"]}, "item.doorlauncher.fire": {"type": "object", "properties": {"sounds": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "volume": {"type": "number"}}, "required": ["name", "volume"]}}, "subtitle": {"type": "string"}}, "required": ["sounds", "subtitle"]}, "item.doorflipper.flip": {"type": "object", "properties": {"sounds": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "volume": {"type": "number"}}, "required": ["name", "volume"]}}, "subtitle": {"type": "string"}}, "required": ["sounds", "subtitle"]}}, "required": ["item.doorblade.hit_ground", "item.doorlauncher.fire", "item.doorflipper.flip"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"appid" : 310890, "name" : "Breach & Clear: Deadline Rebirth (2016)", "windows" : true, "mac" : true, "linux" : true, "early_access" : false, "lookup_time" : 1490977943}
json_instruct
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "request-headers": {"type": "object", "properties": {"Accept": {"type": "string"}, "Accept-Encoding": {"type": "string"}, "Connection": {"type": "string"}, "User-Agent": {"type": "string"}}, "required": ["Accept", "Accept-Encoding", "Connection", "User-Agent"]}, "response-headers": {"type": "object", "properties": {"CF-Cache-Status": {"type": "string"}, "CF-RAY": {"type": "string"}, "Cache-Control": {"type": "string"}, "Connection": {"type": "string"}, "Content-Encoding": {"type": "string"}, "Content-Type": {"type": "string"}, "Date": {"type": "string"}, "Expect-CT": {"type": "string"}, "Server": {"type": "string"}, "Set-Cookie": {"type": "string"}, "Transfer-Encoding": {"type": "string"}, "X-AspNet-Version": {"type": "string"}, "X-Powered-By": {"type": "string"}, "X-UA-Compatible": {"type": "string"}, "cf-request-id": {"type": "string"}}, "required": ["CF-Cache-Status", "CF-RAY", "Cache-Control", "Connection", "Content-Encoding", "Content-Type", "Date", "Expect-CT", "Server", "Set-Cookie", "Transfer-Encoding", "X-AspNet-Version", "X-Powered-By", "X-UA-Compatible", "cf-request-id"]}, "status": {"type": "string"}}, "required": ["elapsed", "endpoint-url", "entry-date", "request-headers", "response-headers", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"elapsed" : "0.73", "endpoint-url" : "https://www.carlisle.gov.uk/planning-policy/Evidence-Base/Brownfield-Register#", "entry-date" : "2020-07-25T00:30:52.369108", "request-headers" : {"Accept" : "*/*", "Accept-Encoding" : "gzip, deflate", "Connection" : "keep-alive", "User-Agent" : "Digital Land data collector"}, "response-headers" : {"CF-Cache-Status" : "DYNAMIC", "CF-RAY" : "5b81c79f2b5de116-IAD", "Cache-Control" : "private", "Connection" : "keep-alive", "Content-Encoding" : "gzip", "Content-Type" : "text/html; charset=utf-8", "Date" : "Sat, 25 Jul 2020 00:31:44 GMT", "Expect-CT" : "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"", "Server" : "cloudflare", "Set-Cookie" : "__cfduid=d8a9c786cf0581b8e489ac0b1c24ceb1f1595637104; expires=Mon, 24-Aug-20 00:31:44 GMT; path=/; domain=.carlisle.gov.uk; HttpOnly; SameSite=Lax, dnn_IsMobile=False; path=/; secure; HttpOnly; SameSite=lax, language=en-GB; path=/; secure; HttpOnly; SameSite=lax, .ASPXANONYMOUS=lxW3z6yY1gEkAAAAY2U1N2M3NWYtYzQ3NS00N2NmLTk3ZTYtMjIzMmUzZDYzZmI00; expires=Fri, 02-Oct-2020 11:11:44 GMT; path=/; HttpOnly; SameSite=lax, Analytics_VisitorId=c245d3f8-ac7f-4b83-a813-a184823ad19d; expires=Mon, 24-Aug-2020 00:31:44 GMT; path=/; secure; HttpOnly; SameSite=lax, Analytics=SessionId=&TabId=2083&ContentItemId=-1; expires=Sat, 25-Jul-2020 01:31:44 GMT; path=/; secure; HttpOnly; SameSite=lax, __RequestVerificationToken=zAcgn13ky0XUlZREvsnNQqKIEXkQsJ68PiH_gW3rKpeNvM3iEFO3BzeJQ5JaEIvItoiHDrtjysOe80dMaNDvC2r_ZffbS5cmji2Z5BmaYYc9yj6b8Y-94x70b_o1; path=/; secure; HttpOnly; SameSite=lax", "Transfer-Encoding" : "chunked", "X-AspNet-Version" : "4.0.30319", "X-Powered-By" : "ASP.NET", "X-UA-Compatible" : "IE=edge, IE=edge", "cf-request-id" : "0424fb17790000e1163018d200000001"}, "status" : "200"}
json_instruct
{"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "request-headers": {"type": "object", "properties": {"Accept": {"type": "string"}, "Accept-Encoding": {"type": "string"}, "Connection": {"type": "string"}, "User-Agent": {"type": "string"}}, "required": ["Accept", "Accept-Encoding", "Connection", "User-Agent"]}, "response-headers": {"type": "object", "properties": {"CF-Cache-Status": {"type": "string"}, "CF-RAY": {"type": "string"}, "Cache-Control": {"type": "string"}, "Connection": {"type": "string"}, "Content-Encoding": {"type": "string"}, "Content-Type": {"type": "string"}, "Date": {"type": "string"}, "Expect-CT": {"type": "string"}, "Server": {"type": "string"}, "Set-Cookie": {"type": "string"}, "Transfer-Encoding": {"type": "string"}, "X-AspNet-Version": {"type": "string"}, "X-Powered-By": {"type": "string"}, "X-UA-Compatible": {"type": "string"}, "cf-request-id": {"type": "string"}}, "required": ["CF-Cache-Status", "CF-RAY", "Cache-Control", "Connection", "Content-Encoding", "Content-Type", "Date", "Expect-CT", "Server", "Set-Cookie", "Transfer-Encoding", "X-AspNet-Version", "X-Powered-By", "X-UA-Compatible", "cf-request-id"]}, "status": {"type": "string"}}, "required": ["elapsed", "endpoint-url", "entry-date", "request-headers", "response-headers", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d144-16", "text" : "Mr. Marion Corwell\npage 2\nApril 16, 1963\nI realize that this does not entirely answer your questions,\nhowever, I think a questionnaire posing the question of Federal\naid to TV compiled from the various states through the members\nof NAEB would be a great asset in the furtherance of public\nrelations between the Federal government and the progress of\nETV. Of course, the other preliminaries used in a questionnaire\nof this nature with regard to a man\u2019s position in life, his civic\nactivities, etc. should be inserted.\nIf there are any additional questions you would like to\npose, please let me know. I might add that I have used in all\nof my talks to P.T.A. groups and clubs definite statements\napproving Federal aid in the field of ETV and thus far I have\nreceived no criticism. I am also certain it is acceptable by\nArkansas because we passed an appropriation for $250,000 Federal\nfunds, if and when available, by a vote of 86-0 in the House\nthis last Session.\nWith regard to the meeting at Columbus Institute this year,\nat this time I would say that it is possible for me to attend.\nHowever, should the meeting be set, I would like to know at\nlease 60 days prior to the meeting so that I can make the necessary\narrangements.\nBest regards.\nChairman\nEducational Television Commission\nTET/jm"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Anonang, Mulanay, Quezon, CALABARZON (Region IV-A), PH", "locale" : "ph.calabarzon-region-iv-a.quezon.mulanay.anonang", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "4", "region_reference" : "41", "region_name" : "CALABARZON (Region IV-A)", "province_id" : "62", "province_reference" : "62", "province_name" : "Quezon", "city_id" : "891", "city_reference" : "1307", "city_name" : "Mulanay", "barangay_id" : "25603", "barangay_reference" : "34066", "barangay_name" : "Anonang"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[122.435753, 13.63633], [122.434151, 13.62731], [122.432487, 13.61795], [122.456238, 13.60578], [122.455971, 13.60941], [122.456841, 13.61192], [122.458832, 13.61274], [122.461014, 13.61663], [122.464119, 13.61482], [122.464302, 13.61754], [122.465523, 13.62012], [122.467682, 13.61909], [122.467827, 13.61616], [122.470421, 13.61434], [122.469383, 13.61303], [122.471161, 13.61126], [122.47097, 13.60946], [122.47242, 13.60819], [122.471779, 13.60544], [122.469482, 13.60743], [122.468826, 13.60345], [122.47213, 13.60087], [122.475456, 13.59445], [122.474854, 13.59194], [122.463791, 13.58974], [122.460487, 13.58685], [122.45816, 13.58507], [122.45565, 13.58177], [122.452858, 13.57895], [122.453011, 13.57624], [122.452744, 13.57419], [122.451851, 13.57299], [122.450203, 13.5719], [122.448448, 13.57085], [122.443573, 13.5644], [122.439796, 13.56363], [122.440857, 13.56938], [122.442146, 13.57435], [122.442177, 13.57922], [122.440987, 13.58426], [122.439583, 13.58894], [122.436546, 13.5932], [122.429253, 13.59397], [122.423347, 13.59016], [122.419212, 13.58984], [122.416054, 13.592], [122.416344, 13.59403], [122.418221, 13.60055], [122.422783, 13.60786], [122.421791, 13.6105], [122.421783, 13.61161], [122.4217, 13.61585], [122.422707, 13.62224], [122.425789, 13.62773], [122.435753, 13.63633]]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "telegram": {"type": "string"}, "reddit": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "telegram", "reddit"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "thx", "symbol" : "thx", "name" : "Thx!", "platforms" : {"ethereum" : "0xa98ed1fd277ead2c00d143cbe1465f59e65a0066"}, "hashing_algorithm" : null, "categories" : [], "description" : {"en" : "thx! is a decentralized application that can exchange \u201cthank you\u201d token with a mobile device. The received thx! token (THX) will be easily transferred from one person to the other. The usage examples can range from service-oriented settings such as restaurants, parking lots, hotels, to formal settings such as workplaces, conferences. Transaction history of thx! is not only recorded on the timelines of both giver and recipient, but also on the blockchain network."}, "country_origin" : "", "genesis_date" : null, "contract_address" : "0xa98ed1fd277ead2c00d143cbe1465f59e65a0066", "url" : "https://thx3x.com/", "explorers" : ["https://etherscan.io/token/0xa98ed1fd277ead2c00d143cbe1465f59e65a0066", "https://ethplorer.io/address/0xa98ed1fd277ead2c00d143cbe1465f59e65a0066"], "telegram" : "thxofficial", "reddit" : "THXOfficial/"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "telegram": {"type": "string"}, "reddit": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "telegram", "reddit"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"pages/index": {"type": "boolean"}}, "required": ["pages/index"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "4d92cf95a45b64d7b2ba", "c" : {"pages/index" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"pages/index": {"type": "boolean"}}, "required": ["pages/index"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "string"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "string"}, "id": {"type": "string"}, "credit_line": {"type": "string"}, "date_acquired": {"type": "string"}, "department": {"type": "string"}, "physical_location": {"type": "string"}, "item_width": {"type": "number"}, "item_height": {"type": "number"}, "item_depth": {"type": "number"}, "item_diameter": {"type": "number"}, "web_url": {"type": "string"}, "provenance_text": {"type": "string"}, "classification": {"type": "string"}, "images": {"type": "array", "items": {}}, "creator": {"type": "array", "items": {"type": "object", "properties": {"artist_id": {"type": "string"}, "party_type": {"type": "string"}, "full_name": {"type": "string"}, "cited_name": {"type": "string"}, "role": {"type": "null"}, "nationality": {"type": "string"}, "birth_date": {"type": "string"}, "death_date": {"type": "string"}, "birth_place": {"type": "string"}, "death_place": {"type": "string"}}, "required": ["artist_id", "party_type", "full_name", "cited_name", "role", "nationality", "birth_date", "death_date", "birth_place", "death_place"]}}}, "required": ["title", "creation_date", "creation_date_earliest", "creation_date_latest", "medium", "accession_number", "id", "credit_line", "date_acquired", "department", "physical_location", "item_width", "item_height", "item_depth", "item_diameter", "web_url", "provenance_text", "classification", "images", "creator"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "A Sheet of studies of Six Fantastical Heads", "creation_date" : "c.1780", "creation_date_earliest" : "1770-01-01", "creation_date_latest" : "1790-01-01", "medium" : "pen and ink with traces of black crayon on buff colored paper mounted on card", "accession_number" : "2014.15", "id" : "cmoa:things/b305e4a9-e7b7-4cbb-b4b8-aad78f9be4b7", "credit_line" : "Lehman Fine Arts Acquisitions Fund and Charles J. Rosenbloom Fund", "date_acquired" : "2014-06-26", "department" : "Fine Arts", "physical_location" : "Not on View", "item_width" : 8.375, "item_height" : 8.5, "item_depth" : 2.0, "item_diameter" : 0.0, "web_url" : "http://collection.cmoa.org/CollectionDetail.aspx?item=104315", "provenance_text" : "Carl Mayer von Rothschild (Frankfurt 1788-1855 Naples), and thence by descent", "classification" : "drawings and watercolors", "images" : [], "creator" : [{"artist_id" : "cmoa:parties/c4b661fb-bc15-485e-a6c6-a648e89de181", "party_type" : "Person", "full_name" : "Gaetano Gandolfi", "cited_name" : "Gandolfi, Gaetano", "role" : null, "nationality" : "Italian", "birth_date" : "1734-01-01", "death_date" : "1802-01-01", "birth_place" : "San Matteo della Decima, near Bologna", "death_place" : "Bologna"}]}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "string"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "string"}, "id": {"type": "string"}, "credit_line": {"type": "string"}, "date_acquired": {"type": "string"}, "department": {"type": "string"}, "physical_location": {"type": "string"}, "item_width": {"type": "number"}, "item_height": {"type": "number"}, "item_depth": {"type": "number"}, "item_diameter": {"type": "number"}, "web_url": {"type": "string"}, "provenance_text": {"type": "string"}, "classification": {"type": "string"}, "images": {"type": "array", "items": {}}, "creator": {"type": "array", "items": {"type": "object", "properties": {"artist_id": {"type": "string"}, "party_type": {"type": "string"}, "full_name": {"type": "string"}, "cited_name": {"type": "string"}, "role": {"type": "null"}, "nationality": {"type": "string"}, "birth_date": {"type": "string"}, "death_date": {"type": "string"}, "birth_place": {"type": "string"}, "death_place": {"type": "string"}}, "required": ["artist_id", "party_type", "full_name", "cited_name", "role", "nationality", "birth_date", "death_date", "birth_place", "death_place"]}}}, "required": ["title", "creation_date", "creation_date_earliest", "creation_date_latest", "medium", "accession_number", "id", "credit_line", "date_acquired", "department", "physical_location", "item_width", "item_height", "item_depth", "item_diameter", "web_url", "provenance_text", "classification", "images", "creator"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@ridi/object-case-converter": {"type": "string"}, "benchmark": {"type": "string"}, "lodash": {"type": "string"}, "minimatch": {"type": "string"}, "ora": {"type": "string"}}, "required": ["@ridi/object-case-converter", "benchmark", "lodash", "minimatch", "ora"]}}, "required": ["name", "scripts", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@warungpintar/ninshu-benchmark", "scripts" : {"start" : "scripts/run.js"}, "license" : "MIT", "devDependencies" : {"@ridi/object-case-converter" : "^2.0.4", "benchmark" : "^2.1.4", "lodash" : "^4.17.20", "minimatch" : "^3.0.4", "ora" : "^5.3.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@ridi/object-case-converter": {"type": "string"}, "benchmark": {"type": "string"}, "lodash": {"type": "string"}, "minimatch": {"type": "string"}, "ora": {"type": "string"}}, "required": ["@ridi/object-case-converter", "benchmark", "lodash", "minimatch", "ora"]}}, "required": ["name", "scripts", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"c": {"type": "object", "properties": {"dzuunmod": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}, "s\ufffdmber": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}}, "required": ["dzuunmod", "s\ufffdmber"]}, "l": {"type": "array", "items": {}}}, "required": ["c", "l"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"c" : {"dzuunmod" : {"z" : {}, "l" : ["47.7000", "106.9500"]}, "s\ufffdmber" : {"z" : {}, "l" : ["48.7500", "106.0000"]}}, "l" : []}
json_instruct
{"type": "object", "properties": {"c": {"type": "object", "properties": {"dzuunmod": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}, "s\ufffdmber": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}}, "required": ["dzuunmod", "s\ufffdmber"]}, "l": {"type": "array", "items": {}}}, "required": ["c", "l"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "botania:block/apothecary_mountain"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"lastUpdated" : 1655019279666, "username" : "revian_bagas1", "scores" : [{"xp" : 23375, "rank" : 23, "cardId" : 620}, {"xp" : 24078, "rank" : 175, "cardId" : 145}, {"xp" : 1953, "rank" : 496, "cardId" : 658}, {"xp" : 12900, "rank" : 175, "cardId" : 514}, {"xp" : 12494, "rank" : 204, "cardId" : 740}, {"xp" : 33241, "rank" : 369, "cardId" : 11}, {"xp" : 29852, "rank" : 319, "cardId" : 15}, {"xp" : 21993, "rank" : 265, "cardId" : 471}, {"xp" : 2160, "rank" : 390, "cardId" : 640}]}
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": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "5206070015", "district_id" : "5206070", "name" : "TADEWA"}
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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"objectId": {"type": "string"}, "createDate": {"type": "string"}, "updateDate": {"type": "string"}, "key": {"type": "array", "items": {"type": "integer"}}}, "required": ["objectId", "createDate", "updateDate", "key"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"objectId" : "add_id", "createDate" : "2015-02-25T08:02:35.470Z", "updateDate" : "2015-02-25T08:02:35.471Z", "key" : [1, 2, 3, 4, 1, 2, 3, 4]}
json_instruct
{"type": "object", "properties": {"objectId": {"type": "string"}, "createDate": {"type": "string"}, "updateDate": {"type": "string"}, "key": {"type": "array", "items": {"type": "integer"}}}, "required": ["objectId", "createDate", "updateDate", "key"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "inoffensive", "definition" : "1. Giving no offense, or provocation; causing no uneasiness, annoyance, or disturbance; as, an inoffensive man, answer, appearance. 2. Harmless; doing no injury or mischief. Dryden. 3. Not obstructing; presenting no interruption bindrance. [R.] Milton. So have Iseen a river gintly glide In a smooth course, and inoffensive tide. Addison. -- In\"of*fen\"sive*ly, adv. -- In\"of*fen\"sive*ness, n."}
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": {"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" : 59486, "cartId" : "00b6d1fb-e0b3-4dd6-9673-f3fc94b5b2b9", "preferredProducts" : [924], "productReviews" : [{"productId" : 342, "reviewText" : "one of my hobbies is hiking. and when i'm hiking this works great.", "reviewDate" : "2017-03-05T05:11:24.3718609+02:00"}, {"productId" : 4705, "reviewText" : "I saw one of these in Saint Lucia and I bought one.", "reviewDate" : "2017-02-21T15:58:36.7466774+02:00"}, {"productId" : 2132, "reviewText" : "one of my hobbies is hiking. and when i'm hiking this works great.", "reviewDate" : "2019-12-12T00:54:06.3086942+02:00"}, {"productId" : 1567, "reviewText" : "one of my hobbies is web-browsing. and when i'm browsing the web this works great.", "reviewDate" : "2019-01-27T04:05:44.4206649+02:00"}, {"productId" : 1273, "reviewText" : "one of my hobbies is toy collecting. and when i'm collecting toys this works great.", "reviewDate" : "2017-01-21T05:12:08.2746354+02:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "exception": {"type": "string"}}, "required": ["elapsed", "endpoint-url", "entry-date", "exception"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"elapsed" : "0.375", "endpoint-url" : "https://www.n-kesteven.gov.uk/_resources/assets/attachment/full/0/78037.csv", "entry-date" : "2020-04-01T00:09:17.397178", "exception" : "SSLError"}
json_instruct
{"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "exception": {"type": "string"}}, "required": ["elapsed", "endpoint-url", "entry-date", "exception"], "$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" : "rump", "definition" : "1. The end of the backbone of an animal, with the parts adjacent; the buttock or buttoks. 2. Among butchers, the piece of beef betwen the sirloin and the aitchbone piece. See Illust. of Beef. 3. Fig.: The hind or tail end; a fag-end; a remnant. Rump Parliament, or The Rump (Eng. Hist.), the remnant of the Long Parliament after the expulsion by Cromwell in 1648 of those who opposed his purposes. It was dissolved by Cromwell in 1653, but twice revived for brief sessions, ending finally in 1659. The rump abolished the House of Lords, the army abolished the Rump, and by this army of saints Cromwell governed. Swift. -- Rump steak, a beefsteak from the rump. Goldsmith."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[138.625, 30.916666666666668], [138.625, 31.0], [138.75, 31.0], [138.75, 30.916666666666668], [138.625, 30.916666666666668]]]}, "properties" : {"code" : 463835, "url" : "http://madefor.github.io/0410/api/v1/463835.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/463835.geojson"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[145.625, 36.5], [145.625, 36.583333333333336], [145.75, 36.583333333333336], [145.75, 36.5], [145.625, 36.5]]]}, "properties" : {"code" : 544565, "url" : "http://madefor.github.io/0410/api/v1/544565.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/544565.geojson"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "rarity": {"type": "string"}, "foodtype": {"type": "string"}, "foodfilter": {"type": "string"}, "foodcategory": {"type": "string"}, "effect": {"type": "string"}, "description": {"type": "string"}, "basedish": {"type": "string"}, "character": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "count": {"type": "integer"}}, "required": ["name", "count"]}}}, "required": ["name", "rarity", "foodtype", "foodfilter", "foodcategory", "effect", "description", "basedish", "character", "ingredients"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "\"Once Upon a Time in Mondstadt\"", "rarity" : "3", "foodtype" : "SPECIALTY", "foodfilter" : "Makanan Penyerangan", "foodcategory" : "Atk_CritRate", "effect" : "Meningkatkan 20% CRIT Rate dan CRIT DMG seluruh anggota party selama 300 detik. Dalam Mode Co-Op, efek ini hanya berlaku untuk karaktermu sendiri.", "description" : "Masakan andalan Diluc. Manjakan mata dengan keindahan sajian di atas piring, dan manjakan mulut dengan setiap santapan daging iga yang gurih dan lembut. Siapa sangka Diluc begitu berbakat memasak?", "basedish" : "\"Pile 'Em Up\"", "character" : "Diluc", "ingredients" : [{"name" : "Raw Meat", "count" : 3}, {"name" : "Potato", "count" : 3}, {"name" : "Small Lamp Grass", "count" : 1}, {"name" : "Cheese", "count" : 1}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "rarity": {"type": "string"}, "foodtype": {"type": "string"}, "foodfilter": {"type": "string"}, "foodcategory": {"type": "string"}, "effect": {"type": "string"}, "description": {"type": "string"}, "basedish": {"type": "string"}, "character": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "count": {"type": "integer"}}, "required": ["name", "count"]}}}, "required": ["name", "rarity", "foodtype", "foodfilter", "foodcategory", "effect", "description", "basedish", "character", "ingredients"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"parameters": {"type": "object", "properties": {"subscriptionId": {"type": "string"}, "resourceGroupName": {"type": "string"}, "factoryName": {"type": "string"}, "triggerName": {"type": "string"}, "startTime": {"type": "string"}, "endTime": {"type": "string"}, "api-version": {"type": "string"}}, "required": ["subscriptionId", "resourceGroupName", "factoryName", "triggerName", "startTime", "endTime", "api-version"]}, "responses": {"type": "object", "properties": {"200": {"type": "object", "properties": {"headers": {"type": "object", "properties": {"Date": {"type": "string"}, "x-ms-request-id": {"type": "string"}, "X-Content-Type-Options": {"type": "string"}, "x-ms-ratelimit-remaining-subscription-reads": {"type": "string"}, "x-ms-correlation-request-id": {"type": "string"}}, "required": ["Date", "x-ms-request-id", "X-Content-Type-Options", "x-ms-ratelimit-remaining-subscription-reads", "x-ms-correlation-request-id"]}, "body": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "object", "properties": {"triggerName": {"type": "string"}, "triggerRunId": {"type": "string"}, "triggerType": {"type": "string"}, "triggerRunTimestamp": {"type": "string"}, "status": {"type": "string"}, "message": {"type": "string"}, "properties": {"type": "object", "properties": {"TriggerTime": {"type": "string"}, "ScheduleTime": {"type": "string"}}, "required": ["TriggerTime", "ScheduleTime"]}, "triggeredPipelines": {"type": "object", "properties": {"examplePipeline": {"type": "string"}}, "required": ["examplePipeline"]}}, "required": ["triggerName", "triggerRunId", "triggerType", "triggerRunTimestamp", "status", "message", "properties", "triggeredPipelines"]}}}, "required": ["value"]}}, "required": ["headers", "body"]}}, "required": ["200"]}}, "required": ["parameters", "responses"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parameters" : {"subscriptionId" : "12345678-1234-1234-12345678abc", "resourceGroupName" : "exampleResourceGroup", "factoryName" : "exampleFactoryName", "triggerName" : "exampleTrigger", "startTime" : "2017-09-13T17%3A54%3A24.0440889Z", "endTime" : "2017-09-13T18%3A14%3A24.0440889Z", "api-version" : "2017-09-01-preview"}, "responses" : {"200" : {"headers" : {"Date" : "Wed, 13 Sep 2017 18:04:24 GMT", "x-ms-request-id" : "c82b86e6-2e81-46e4-8e28-356dd4a15f84", "X-Content-Type-Options" : "nosniff", "x-ms-ratelimit-remaining-subscription-reads" : "14855", "x-ms-correlation-request-id" : "165d9588-bcba-49ac-a3d9-0dcc49be6c8a"}, "body" : {"value" : [{"triggerName" : "exampleTrigger", "triggerRunId" : "08586962812027443030287916742", "triggerType" : "ScheduleTrigger", "triggerRunTimestamp" : "2017-09-13T18:01:22.7219263Z", "status" : "Succeeded", "message" : "", "properties" : {"TriggerTime" : "09/13/2017 18:01:22", "ScheduleTime" : "09/13/2017 18:01:21"}, "triggeredPipelines" : {"examplePipeline" : "0bf632a4-98c4-4179-935b-0b220d14fb19"}}]}}}}
json_instruct
{"type": "object", "properties": {"parameters": {"type": "object", "properties": {"subscriptionId": {"type": "string"}, "resourceGroupName": {"type": "string"}, "factoryName": {"type": "string"}, "triggerName": {"type": "string"}, "startTime": {"type": "string"}, "endTime": {"type": "string"}, "api-version": {"type": "string"}}, "required": ["subscriptionId", "resourceGroupName", "factoryName", "triggerName", "startTime", "endTime", "api-version"]}, "responses": {"type": "object", "properties": {"200": {"type": "object", "properties": {"headers": {"type": "object", "properties": {"Date": {"type": "string"}, "x-ms-request-id": {"type": "string"}, "X-Content-Type-Options": {"type": "string"}, "x-ms-ratelimit-remaining-subscription-reads": {"type": "string"}, "x-ms-correlation-request-id": {"type": "string"}}, "required": ["Date", "x-ms-request-id", "X-Content-Type-Options", "x-ms-ratelimit-remaining-subscription-reads", "x-ms-correlation-request-id"]}, "body": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "object", "properties": {"triggerName": {"type": "string"}, "triggerRunId": {"type": "string"}, "triggerType": {"type": "string"}, "triggerRunTimestamp": {"type": "string"}, "status": {"type": "string"}, "message": {"type": "string"}, "properties": {"type": "object", "properties": {"TriggerTime": {"type": "string"}, "ScheduleTime": {"type": "string"}}, "required": ["TriggerTime", "ScheduleTime"]}, "triggeredPipelines": {"type": "object", "properties": {"examplePipeline": {"type": "string"}}, "required": ["examplePipeline"]}}, "required": ["triggerName", "triggerRunId", "triggerType", "triggerRunTimestamp", "status", "message", "properties", "triggeredPipelines"]}}}, "required": ["value"]}}, "required": ["headers", "body"]}}, "required": ["200"]}}, "required": ["parameters", "responses"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"json_schema_major_version": {"type": "string"}, "json_schema_minor_version": {"type": "string"}, "json_content_version": {"type": "string"}, "function_name": {"type": "string"}, "function_version": {"type": "string"}, "function_type": {"type": "string"}, "function_alias_name": {"type": "string"}, "function_r_name": {"type": "string"}, "short_description": {"type": "string"}, "long_description": {"type": "string"}, "input_tables": {"type": "array", "items": {"type": "object", "properties": {"requiredInputKind": {"type": "array", "items": {"type": "string"}}, "isOrdered": {"type": "boolean"}, "partitionByOne": {"type": "boolean"}, "name": {"type": "string"}, "alternateNames": {"type": "array", "items": {}}, "isRequired": {"type": "boolean"}, "rDescription": {"type": "string"}, "description": {"type": "string"}, "datatype": {"type": "string"}, "allowsLists": {"type": "boolean"}, "rName": {"type": "string"}, "useInR": {"type": "boolean"}, "rOrderNum": {"type": "integer"}}, "required": ["requiredInputKind", "isOrdered", "partitionByOne", "name", "alternateNames", "isRequired", "rDescription", "description", "datatype", "allowsLists", "rName", "useInR", "rOrderNum"]}}}, "required": ["json_schema_major_version", "json_schema_minor_version", "json_content_version", "function_name", "function_version", "function_type", "function_alias_name", "function_r_name", "short_description", "long_description", "input_tables"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"json_schema_major_version" : "1", "json_schema_minor_version" : "2", "json_content_version" : "1", "function_name" : "ApproxDCountReduce", "function_version" : "1.3", "function_type" : "non-driver", "function_alias_name" : "ApproxCardinalityReduce", "function_r_name" : "aa.approx.dcount", "short_description" : "computes approximate count on specified columns (or compound columns) by combining results from approx_dcount_partial", "long_description" : "Outputs approximate distinct counts of specified columns; must be used in conjuction with approx_dcount_partial; note: the outputted result may be exact (i.e. not approximate) in the regime with low cardinality", "input_tables" : [{"requiredInputKind" : ["PartitionByKey"], "isOrdered" : false, "partitionByOne" : false, "name" : "input", "alternateNames" : [], "isRequired" : true, "rDescription" : "Specifies the input table.", "description" : "Specifies the input table.", "datatype" : "TABLE_ALIAS", "allowsLists" : false, "rName" : "data", "useInR" : true, "rOrderNum" : 0}]}
json_instruct
{"type": "object", "properties": {"json_schema_major_version": {"type": "string"}, "json_schema_minor_version": {"type": "string"}, "json_content_version": {"type": "string"}, "function_name": {"type": "string"}, "function_version": {"type": "string"}, "function_type": {"type": "string"}, "function_alias_name": {"type": "string"}, "function_r_name": {"type": "string"}, "short_description": {"type": "string"}, "long_description": {"type": "string"}, "input_tables": {"type": "array", "items": {"type": "object", "properties": {"requiredInputKind": {"type": "array", "items": {"type": "string"}}, "isOrdered": {"type": "boolean"}, "partitionByOne": {"type": "boolean"}, "name": {"type": "string"}, "alternateNames": {"type": "array", "items": {}}, "isRequired": {"type": "boolean"}, "rDescription": {"type": "string"}, "description": {"type": "string"}, "datatype": {"type": "string"}, "allowsLists": {"type": "boolean"}, "rName": {"type": "string"}, "useInR": {"type": "boolean"}, "rOrderNum": {"type": "integer"}}, "required": ["requiredInputKind", "isOrdered", "partitionByOne", "name", "alternateNames", "isRequired", "rDescription", "description", "datatype", "allowsLists", "rName", "useInR", "rOrderNum"]}}}, "required": ["json_schema_major_version", "json_schema_minor_version", "json_content_version", "function_name", "function_version", "function_type", "function_alias_name", "function_r_name", "short_description", "long_description", "input_tables"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "generator": {"type": "string"}, "copyright": {"type": "string"}, "timestamp": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"@id": {"type": "string"}, "railway": {"type": "string"}}, "required": ["@id", "railway"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"]}}}, "required": ["type", "generator", "copyright", "timestamp", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "generator" : "overpass-turbo", "copyright" : "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL.", "timestamp" : "2016-02-18T02:24:02Z", "features" : [{"type" : "Feature", "id" : "way/130430726", "properties" : {"@id" : "way/130430726", "railway" : "funicular"}, "geometry" : {"type" : "LineString", "coordinates" : [[77.5386242, 11.0354654], [77.5385962, 11.0352924], [77.5385527, 11.0352097], [77.5384608, 11.0351245], [77.538397, 11.0350568], [77.5383433, 11.034919], [77.538282, 11.0347686], [77.5382259, 11.0346833], [77.538162, 11.0344678], [77.5380573, 11.0341845], [77.5380139, 11.0340818], [77.5378913, 11.0335905], [77.5379041, 11.0334275]]}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "generator": {"type": "string"}, "copyright": {"type": "string"}, "timestamp": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"@id": {"type": "string"}, "railway": {"type": "string"}}, "required": ["@id", "railway"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"]}}}, "required": ["type", "generator", "copyright", "timestamp", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "phone": {"type": "string"}, "full_time_school": {"type": "boolean"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "state": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "phone", "full_time_school", "programs", "state", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Grundschule Etzhorn", "id" : "NI-27236-0", "address" : "Butjadinger Str. 355, 26125\u00a0Oldenburg", "school_type" : "Grundschule", "phone" : "0441 3990198", "full_time_school" : false, "programs" : {"programs" : []}, "state" : "NI", "lon" : 8.242832, "lat" : 53.187736}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "phone": {"type": "string"}, "full_time_school": {"type": "boolean"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "state": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "phone", "full_time_school", "programs", "state", "lon", "lat"], "$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"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"GXL": {"type": "string"}}, "required": ["GXL"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "array", "items": {"type": "string"}}, "platforms": {"type": "object", "properties": {"osx": {"type": "null"}, "ios": {"type": "null"}, "tvos": {"type": "null"}, "watchos": {"type": "null"}}, "required": ["osx", "ios", "tvos", "watchos"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "source_files", "platforms"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "GXLMusic", "version" : "0.0.2", "summary" : "First commit git pesc.", "description" : "First commit git pesc peso peso", "homepage" : "https://github.com/CrazyBalls/GXLMusic.git", "license" : "MIT", "authors" : {"GXL" : "326676300@qq.com"}, "source" : {"git" : "https://github.com/CrazyBalls/GXLMusic.git", "tag" : "0.0.2"}, "source_files" : ["GXLMusic", "*.{h,m}"], "platforms" : {"osx" : null, "ios" : null, "tvos" : null, "watchos" : null}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"GXL": {"type": "string"}}, "required": ["GXL"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "array", "items": {"type": "string"}}, "platforms": {"type": "object", "properties": {"osx": {"type": "null"}, "ios": {"type": "null"}, "tvos": {"type": "null"}, "watchos": {"type": "null"}}, "required": ["osx", "ios", "tvos", "watchos"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "source_files", "platforms"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "sample1": {"type": "string"}, "sample2": {"type": "string"}, "sample3": {"type": "string"}}, "required": ["name", "sample1", "sample2", "sample3"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "coyote, prairie wolf, brush wolf, Canis latrans", "sample1" : "1aFLORgKJxqOli2USaLcHTxuvXsmDMxMa", "sample2" : "1H91sZJaG-mJrDnGtMnWDEtfWuKa-K7-Y", "sample3" : "1HHVM3z35pD3cCUJSRmwj7xZ-7GM8aFoJ"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "sample1": {"type": "string"}, "sample2": {"type": "string"}, "sample3": {"type": "string"}}, "required": ["name", "sample1", "sample2", "sample3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"count": {"type": "integer"}, "numbers": {"type": "array", "items": {"type": "object", "properties": {"country": {"type": "string"}, "msisdn": {"type": "string"}, "moHttpUrl": {"type": "string"}, "type": {"type": "string"}, "features": {"type": "array", "items": {"type": "string"}}, "voiceCallbackType": {"type": "string"}, "voiceCallbackValue": {"type": "string"}, "voiceStatusCallbackUrl": {"type": "string"}}, "required": ["country", "msisdn", "moHttpUrl", "type", "features", "voiceCallbackType", "voiceCallbackValue", "voiceStatusCallbackUrl"]}}}, "required": ["count", "numbers"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"count" : 1, "numbers" : [{"country" : "US", "msisdn" : "1415550100", "moHttpUrl" : "http://example.com/message", "type" : "mobile-lvn", "features" : ["VOICE", "SMS"], "voiceCallbackType" : "vxml", "voiceCallbackValue" : "http://example.com/voice", "voiceStatusCallbackUrl" : "http://example.com/status"}]}
json_instruct
{"type": "object", "properties": {"count": {"type": "integer"}, "numbers": {"type": "array", "items": {"type": "object", "properties": {"country": {"type": "string"}, "msisdn": {"type": "string"}, "moHttpUrl": {"type": "string"}, "type": {"type": "string"}, "features": {"type": "array", "items": {"type": "string"}}, "voiceCallbackType": {"type": "string"}, "voiceCallbackValue": {"type": "string"}, "voiceStatusCallbackUrl": {"type": "string"}}, "required": ["country", "msisdn", "moHttpUrl", "type", "features", "voiceCallbackType", "voiceCallbackValue", "voiceStatusCallbackUrl"]}}}, "required": ["count", "numbers"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"timestamps": {"type": "array", "items": {"type": "number"}}, "initial_reset_timestamp": {"type": "number"}, "episode_types": {"type": "array", "items": {"type": "string"}}, "episode_lengths": {"type": "array", "items": {"type": "integer"}}, "episode_rewards": {"type": "array", "items": {"type": "number"}}}, "required": ["timestamps", "initial_reset_timestamp", "episode_types", "episode_lengths", "episode_rewards"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"timestamps" : [1534793961.115368], "initial_reset_timestamp" : 1534793739.016484, "episode_types" : ["t"], "episode_lengths" : [10000], "episode_rewards" : [96651.37521018495]}
json_instruct
{"type": "object", "properties": {"timestamps": {"type": "array", "items": {"type": "number"}}, "initial_reset_timestamp": {"type": "number"}, "episode_types": {"type": "array", "items": {"type": "string"}}, "episode_lengths": {"type": "array", "items": {"type": "integer"}}, "episode_rewards": {"type": "array", "items": {"type": "number"}}}, "required": ["timestamps", "initial_reset_timestamp", "episode_types", "episode_lengths", "episode_rewards"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["350125205201", "\u6e56\u91cc\u6751\u59d4\u4f1a", "220", "0"], ["350125205202", "\u7893\u5934\u6751\u59d4\u4f1a", "220", "0"], ["350125205203", "\u594b\u6597\u6751\u59d4\u4f1a", "210", "0"], ["350125205204", "\u76d6\u6d0b\u6751\u59d4\u4f1a", "210", "0"], ["350125205205", "\u524d\u6e56\u6751\u59d4\u4f1a", "220", "0"], ["350125205206", "\u5c0f\u6d0b\u6751\u59d4\u4f1a", "220", "0"], ["350125205207", "\u6e56\u5934\u6751\u59d4\u4f1a", "220", "0"], ["350125205208", "\u77f3\u5858\u6751\u59d4\u4f1a", "220", "0"], ["350125205209", "\u8d64\u5cad\u6751\u59d4\u4f1a", "220", "0"], ["350125205210", "\u73e0\u5cf0\u6751\u59d4\u4f1a", "220", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"categories" : ["Designing", "Programming", "Web Development"], "desc" : "\n", "details" : {"authors" : "Kirsten Hunter", "format" : "pdf", "isbn-10" : "1617292559", "isbn-13" : "978-1617292552", "pages" : "232 pages", "publication date" : "September 30, 2016", "publisher" : "Manning Publications", "size" : "17.00Mb"}, "img" : "http://23.95.221.108/covers/de/de5cf4842b98e6aafb4021ef4ca86fad.jpg", "link" : "https://rapidhosting.info/files/7yf", "title" : "Irresistible APIs: Designing web APIs that developers will love"}
json_instruct
{"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"criteria": {"type": "object", "properties": {"place_hopper": {"type": "object", "properties": {"trigger": {"type": "string"}, "conditions": {"type": "object", "properties": {"block": {"type": "string"}}, "required": ["block"]}}, "required": ["trigger", "conditions"]}}, "required": ["place_hopper"]}, "rewards": {"type": "object", "properties": {"function": {"type": "string"}}, "required": ["function"]}}, "required": ["criteria", "rewards"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"criteria" : {"place_hopper" : {"trigger" : "minecraft:placed_block", "conditions" : {"block" : "minecraft:hopper"}}}, "rewards" : {"function" : "tcc:block/hopper_updating/advancement"}}
json_instruct
{"type": "object", "properties": {"criteria": {"type": "object", "properties": {"place_hopper": {"type": "object", "properties": {"trigger": {"type": "string"}, "conditions": {"type": "object", "properties": {"block": {"type": "string"}}, "required": ["block"]}}, "required": ["trigger", "conditions"]}}, "required": ["place_hopper"]}, "rewards": {"type": "object", "properties": {"function": {"type": "string"}}, "required": ["function"]}}, "required": ["criteria", "rewards"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"lzh-mu-bu-kam-name:1.lzh-mu-bu-kam": {"type": "string"}}, "required": ["lzh-mu-bu-kam-name:1.lzh-mu-bu-kam"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"lzh-mu-bu-kam-name:1.lzh-mu-bu-kam" : "[object Object] "}
json_instruct
{"type": "object", "properties": {"lzh-mu-bu-kam-name:1.lzh-mu-bu-kam": {"type": "string"}}, "required": ["lzh-mu-bu-kam-name:1.lzh-mu-bu-kam"], "$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"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "null"}, "accrediting_agency": {"type": "null"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Taisei Gakuin University", "alt_name" : "Taisei Gakuin Daigaku", "country" : "Japan", "state" : null, "address" : {"street" : "1060-1 Hirao", "city" : "Mihara-cho", "province" : "Minamikawachi-gun", "postal_code" : "587-8555"}, "contact" : {"telephone" : "+81(72) 362-3731", "website" : "http://www.tgu.ac.jp", "email" : "nyushi@tgu.ac.jp", "fax" : "+81(72) 362-0598"}, "funding" : "Private", "languages" : null, "academic_year" : null, "accrediting_agency" : null}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "null"}, "accrediting_agency": {"type": "null"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"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": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 78535, "name" : "twitter big font", "description" : "better tweet readability", "user" : {"id" : 166908, "name" : "Masry", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "updated" : "2012-11-17T03:21:05.000Z", "weekly_install_count" : 0, "total_install_count" : 545, "rating" : null, "after_screenshot_name" : "https://userstyles.org/style_screenshots/78535_after.png?r=1617869238", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : null, "created" : "2012-11-17T03:21:05.000Z", "category" : "site", "raw_subcategory" : "twitter", "subcategory" : "twitter", "additional_info" : null, "style_tags" : [], "css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n\r\n@-moz-document domain(\"twitter.com\") {\r\n\r\np.js-tweet-text{\r\n\r\n font-size: 16px !important;\r\n line-height: 20px !important;\r\n\r\n\r\n}\r\n\r\n.account, .interest-category, .list, .saved-search, .tweet, .app, .discover-item {\r\n border-bottom: 1px solid #E8E8E8;\r\n min-height: 51px;\r\n padding: 18px 22px;\r\n position: relative;\r\n}\r\n\r\n}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/78535/twitter-big-font.user.js", "style_settings" : []}
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": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"citations" : [{"textCitation" : "[See flimfcls on Metamath](http://us.metamath.org/mpegif/flimfcls.html)"}], "names" : ["flimfcls"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cJ", "#T_cflim", "#T_cF", "#T_wss", "#T_cJ", "#T_cfcls", "#T_cF"], "metaLanguage" : "METAMATH", "remarks" : " A limit point is a cluster point. (Contributed by Jeff Hankins, 12-Nov-2009.) (Revised by Stefan O'Rear, 8-Aug-2015.) ", "statement" : "flimfcls $p |- ( J fLim F ) C_ ( J fClus F ) $."}
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": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"globals": {"type": "object", "properties": {"JSX": {"type": "boolean"}}, "required": ["JSX"]}, "parser": {"type": "string"}}, "required": ["globals", "parser"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"globals" : {"JSX" : true}, "parser" : "babel-eslint"}
json_instruct
{"type": "object", "properties": {"globals": {"type": "object", "properties": {"JSX": {"type": "boolean"}}, "required": ["JSX"]}, "parser": {"type": "string"}}, "required": ["globals", "parser"], "$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": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "CHELANNE", "frequency" : 0, "gender" : "male"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["dev", "build"]}, "devDependencies": {"type": "object", "properties": {"css-loader": {"type": "string"}, "html-loader": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "vue-loader": {"type": "string"}, "vue-template-compiler": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["css-loader", "html-loader", "html-webpack-plugin", "vue-loader", "vue-template-compiler", "webpack", "webpack-cli", "webpack-dev-server"]}, "dependencies": {"type": "object", "properties": {"numeral": {"type": "string"}, "papaparse": {"type": "string"}, "vue": {"type": "string"}}, "required": ["numeral", "papaparse", "vue"]}}, "required": ["name", "version", "description", "private", "repository", "author", "license", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "covid-19-sir", "version" : "1.0.0", "description" : "SIR models for COVID-19 spread for different location worldwide", "private" : true, "repository" : "https://github.com/dgrechka/covid-19-sir.git", "author" : "Dmitry Grechka <dmitry@grechka.family>", "license" : "MIT", "scripts" : {"dev" : "webpack-dev-server --hot --open", "build" : "webpack"}, "devDependencies" : {"css-loader" : "^3.4.2", "html-loader" : "^1.1.0", "html-webpack-plugin" : "^4.0.4", "vue-loader" : "^15.9.1", "vue-template-compiler" : "^2.6.11", "webpack" : "^4.42.1", "webpack-cli" : "^3.3.11", "webpack-dev-server" : "^3.10.3"}, "dependencies" : {"numeral" : "^2.0.6", "papaparse" : "^5.2.0", "vue" : "^2.6.11"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["dev", "build"]}, "devDependencies": {"type": "object", "properties": {"css-loader": {"type": "string"}, "html-loader": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "vue-loader": {"type": "string"}, "vue-template-compiler": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["css-loader", "html-loader", "html-webpack-plugin", "vue-loader", "vue-template-compiler", "webpack", "webpack-cli", "webpack-dev-server"]}, "dependencies": {"type": "object", "properties": {"numeral": {"type": "string"}, "papaparse": {"type": "string"}, "vue": {"type": "string"}}, "required": ["numeral", "papaparse", "vue"]}}, "required": ["name", "version", "description", "private", "repository", "author", "license", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"index" : 5352, "redacted" : false, "hash" : 1747052442, "blacklisted" : false}
json_instruct
{"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"answers": {"type": "array", "items": {"type": "string"}}, "centerLetter": {"type": "string"}, "letterString": {"type": "string"}, "outerLetters": {"type": "array", "items": {"type": "string"}}, "pangrams": {"type": "array", "items": {"type": "string"}}, "validLetters": {"type": "array", "items": {"type": "string"}}}, "required": ["answers", "centerLetter", "letterString", "outerLetters", "pangrams", "validLetters"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"answers" : ["bibb", "bidi", "bind", "bindi", "bird", "birr", "brin", "brrr", "bruin", "bubu", "budi", "buibui", "bund", "bundu", "bunn", "burb", "burd", "burin", "burr", "drib", "drub", "dubbin", "indirubin", "nubbin", "rubin", "unbid", "unbind", "urubu", "windburn"], "centerLetter" : "b", "letterString" : "bdinruw", "outerLetters" : ["d", "i", "n", "r", "u", "w"], "pangrams" : ["windburn"], "validLetters" : ["b", "d", "i", "n", "r", "u", "w"]}
json_instruct
{"type": "object", "properties": {"answers": {"type": "array", "items": {"type": "string"}}, "centerLetter": {"type": "string"}, "letterString": {"type": "string"}, "outerLetters": {"type": "array", "items": {"type": "string"}}, "pangrams": {"type": "array", "items": {"type": "string"}}, "validLetters": {"type": "array", "items": {"type": "string"}}}, "required": ["answers", "centerLetter", "letterString", "outerLetters", "pangrams", "validLetters"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_requester", "auto_approve"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"track" : "csharp", "exercise" : "hello-world", "id" : "c588f2fd515c4930abc1c4c5e5e8a811", "url" : "https://exercism.io/my/solutions/c588f2fd515c4930abc1c4c5e5e8a811", "handle" : "SylvesterH13", "is_requester" : true, "auto_approve" : true}
json_instruct
{"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_requester", "auto_approve"], "$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" : 85765979, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "f3656e266f6a896998b2d39b36b0d578", "wof:id" : 85765979, "wof:repo" : "whosonfirst-data-admin-br"}, "bbox" : [-46.505656, -23.566386, -46.505656, -23.566386], "geometry" : {"coordinates" : [-46.505656, -23.566386], "type" : "Point"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "om_terrain": {"type": "string"}, "comment": {"type": "string"}, "weight": {"type": "integer"}, "method": {"type": "string"}, "object": {"type": "object", "properties": {"fill_ter": {"type": "string"}, "rows": {"type": "array", "items": {"type": "string"}}, "rotation": {"type": "array", "items": {"type": "integer"}}, "palettes": {"type": "array", "items": {"type": "string"}}}, "required": ["fill_ter", "rows", "rotation", "palettes"]}}, "required": ["type", "om_terrain", "comment", "weight", "method", "object"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"type" : "mapgen", "om_terrain" : "estate_mid", "comment" : "any floor, middle area", "weight" : 99, "method" : "json", "object" : {"fill_ter" : "t_floor", "rows" : [".....|....| |....|.....", ".....+...l| |....|.nnn.", ".....|----| |....|.....", "....d|pNNp| |....+.Z.Z.", "....d|....| |bb..|p....", "--+---..a.| |bb..------", "....a.....| |..........", "..........| +..........", "..........+ |bb..bb..bb", "..AAA....p| |bb..bb..bb", "----------- -----------", " ", " ", "-+---------------+------", "..M|o....TTTTT......o|d.", "..M|o....TTTTT......R|d.", "..M|................R|..", "..M|RRRCCUCoooCCRRRCC|d.", "-+----------------------", "....W|l.l.l.l|LLLL|p....", ".....|l.l.l.l|....|.Z.Z.", "...BB|l......|....|.....", "...BB|-----++|....+.Z.Z.", "....d|....| |....|....."], "rotation" : [0, 3], "palettes" : ["estate", "multistory_house"]}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "om_terrain": {"type": "string"}, "comment": {"type": "string"}, "weight": {"type": "integer"}, "method": {"type": "string"}, "object": {"type": "object", "properties": {"fill_ter": {"type": "string"}, "rows": {"type": "array", "items": {"type": "string"}}, "rotation": {"type": "array", "items": {"type": "integer"}}, "palettes": {"type": "array", "items": {"type": "string"}}}, "required": ["fill_ter", "rows", "rotation", "palettes"]}}, "required": ["type", "om_terrain", "comment", "weight", "method", "object"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/css/dropify.css": {"type": "string"}, "/css/swal2.css": {"type": "string"}, "/js/index_mixed.js": {"type": "string"}, "/js/user-profile.js": {"type": "string"}, "/js/swal2.js": {"type": "string"}, "/js/calendar.js": {"type": "string"}, "/css/calendar.css": {"type": "string"}, "/js/password.js": {"type": "string"}, "/css/password.css": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css", "/css/dropify.css", "/css/swal2.css", "/js/index_mixed.js", "/js/user-profile.js", "/js/swal2.js", "/js/calendar.js", "/css/calendar.css", "/js/password.js", "/css/password.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"/js/app.js" : "/js/app.js", "/css/app.css" : "/css/app.css", "/css/dropify.css" : "/css/dropify.css", "/css/swal2.css" : "/css/swal2.css", "/js/index_mixed.js" : "/js/index_mixed.js", "/js/user-profile.js" : "/js/user-profile.js", "/js/swal2.js" : "/js/swal2.js", "/js/calendar.js" : "/js/calendar.js", "/css/calendar.css" : "/css/calendar.css", "/js/password.js" : "/js/password.js", "/css/password.css" : "/css/password.css"}
json_instruct
{"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/css/dropify.css": {"type": "string"}, "/css/swal2.css": {"type": "string"}, "/js/index_mixed.js": {"type": "string"}, "/js/user-profile.js": {"type": "string"}, "/js/swal2.js": {"type": "string"}, "/js/calendar.js": {"type": "string"}, "/css/calendar.css": {"type": "string"}, "/js/password.js": {"type": "string"}, "/css/password.css": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css", "/css/dropify.css", "/css/swal2.css", "/js/index_mixed.js", "/js/user-profile.js", "/js/swal2.js", "/js/calendar.js", "/css/calendar.css", "/js/password.js", "/css/password.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"temp": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "humidity": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "light": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["temp", "humidity", "light"]}}, "required": ["title", "description", "type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Sensor", "description" : "IoT sensor readings", "type" : "object", "properties" : {"temp" : {"type" : "number"}, "humidity" : {"type" : "number"}, "light" : {"type" : "integer"}}}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"temp": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "humidity": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "light": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["temp", "humidity", "light"]}}, "required": ["title", "description", "type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "null"}, "url": {"type": "null"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "scapy-http", "description" : "Support for HTTP in Scapy", "license" : {"key" : "other", "name" : "Other", "spdx_id" : null, "url" : null}, "starNum" : 175, "folkNum" : 65, "watchNum" : 175, "topic" : []}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "null"}, "url": {"type": "null"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "integer"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Time" : "2021-09-30T19:00:00Z", "Temp" : 23, "RelHum" : 72, "WindSpeed" : 3.2, "WindDir" : 242}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "integer"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "primoId": {"type": "string"}, "slug": {"type": "string"}, "shortcode": {"type": "string"}, "imageUrl": {"type": "string"}, "content": {"type": "string"}, "imageType": {"type": "string"}, "date": {"type": "string"}, "dateText": {"type": "string"}, "timestamp": {"type": "string"}, "instagramUsername": {"type": "string"}, "featuredMedia": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "sizes": {"type": "object", "properties": {"medium": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "width", "height", "__typename"]}, "full": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "width", "height", "__typename"]}, "__typename": {"type": "string"}}, "required": ["medium", "full", "__typename"]}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "sizes", "__typename"]}, "__typename": {"type": "string"}}, "required": ["id", "title", "primoId", "slug", "shortcode", "imageUrl", "content", "imageType", "date", "dateText", "timestamp", "instagramUsername", "featuredMedia", "__typename"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"data" : {"id" : 29162, "title" : "Thomas Holmes of Oakendale, ca. 1855 / photographer unknown", "primoId" : "ADLIB110344019", "slug" : "adlib110344019", "shortcode" : "", "imageUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie1525326525627.jpg", "content" : "portraits, Adult Males", "imageType" : "portrait", "date" : "2018-05-03 05:48:45", "dateText" : "ca. 1855", "timestamp" : "", "instagramUsername" : "", "featuredMedia" : {"sourceUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie1525326525627.jpg", "sizes" : {"medium" : {"sourceUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie1525326525627-e1534916826554-215x300.jpg", "width" : 215, "height" : 300, "__typename" : "MediaSize"}, "full" : {"sourceUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie1525326525627.jpg", "width" : 653, "height" : 913, "__typename" : "MediaSize"}, "__typename" : "MediaSizes"}, "__typename" : "Media"}, "__typename" : "NewSelfWalesPortrait"}}
json_instruct
{"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "primoId": {"type": "string"}, "slug": {"type": "string"}, "shortcode": {"type": "string"}, "imageUrl": {"type": "string"}, "content": {"type": "string"}, "imageType": {"type": "string"}, "date": {"type": "string"}, "dateText": {"type": "string"}, "timestamp": {"type": "string"}, "instagramUsername": {"type": "string"}, "featuredMedia": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "sizes": {"type": "object", "properties": {"medium": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "width", "height", "__typename"]}, "full": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "width", "height", "__typename"]}, "__typename": {"type": "string"}}, "required": ["medium", "full", "__typename"]}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "sizes", "__typename"]}, "__typename": {"type": "string"}}, "required": ["id", "title", "primoId", "slug", "shortcode", "imageUrl", "content", "imageType", "date", "dateText", "timestamp", "instagramUsername", "featuredMedia", "__typename"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "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": {}, "required": []}, "timeto": {"type": "object", "properties": {}, "required": []}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 29149, "title" : ["[Animal Track, Thistle Haven]"], "description" : ["Brambles and briars stretch along the eastern edges of the animal track, the spindly arms and thick thorns snagging on anything that passes too closely. Tall grasses give way to saplings that are surrounded by white-veined horehound and wild thistle with bright purple crowns. Distantly, the sound of a babbling brook trickles in."], "paths" : ["Obvious paths: northwest"], "location" : "Widowmaker's Road", "wayto" : {}, "timeto" : {}}
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": {}, "required": []}, "timeto": {"type": "object", "properties": {}, "required": []}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"operation": {"type": "object", "properties": {"classname": {"type": "string"}, "name": {"type": "string"}, "parameterTypes": {"type": "array", "items": {"type": "string"}}}, "required": ["classname", "name", "parameterTypes"]}, "identifiers": {"type": "object", "properties": {"parameters": {"type": "array", "items": {"type": "string"}}, "receiverName": {"type": "string"}, "returnName": {"type": "string"}}, "required": ["parameters", "receiverName", "returnName"]}, "throws": {"type": "array", "items": {"type": "object", "properties": {"exception": {"type": "string"}, "description": {"type": "string"}, "guard": {"type": "object", "properties": {"condition": {"type": "string"}, "description": {"type": "string"}}, "required": ["condition", "description"]}}, "required": ["exception", "description", "guard"]}}, "post": {"type": "array", "items": {}}, "pre": {"type": "array", "items": {}}}, "required": ["operation", "identifiers", "throws", "post", "pre"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"operation" : {"classname" : "java.util.concurrent.CyclicBarrier", "name" : "java.util.concurrent.CyclicBarrier", "parameterTypes" : ["int", "java.lang.Runnable"]}, "identifiers" : {"parameters" : ["parties", "barrierAction"], "receiverName" : "target", "returnName" : "result"}, "throws" : [{"exception" : "java.lang.IllegalArgumentException", "description" : "throws IllegalArgumentException if parties is less than 1", "guard" : {"condition" : "parties<1", "description" : "if parties is less than 1"}}], "post" : [], "pre" : []}, {"operation" : {"classname" : "java.util.concurrent.CyclicBarrier", "name" : "java.util.concurrent.CyclicBarrier", "parameterTypes" : ["int"]}, "identifiers" : {"parameters" : ["parties"], "receiverName" : "target", "returnName" : "result"}, "throws" : [{"exception" : "java.lang.IllegalArgumentException", "description" : "throws IllegalArgumentException if parties is less than 1", "guard" : {"condition" : "parties<1", "description" : "if parties is less than 1"}}], "post" : [], "pre" : []}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"operation": {"type": "object", "properties": {"classname": {"type": "string"}, "name": {"type": "string"}, "parameterTypes": {"type": "array", "items": {"type": "string"}}}, "required": ["classname", "name", "parameterTypes"]}, "identifiers": {"type": "object", "properties": {"parameters": {"type": "array", "items": {"type": "string"}}, "receiverName": {"type": "string"}, "returnName": {"type": "string"}}, "required": ["parameters", "receiverName", "returnName"]}, "throws": {"type": "array", "items": {"type": "object", "properties": {"exception": {"type": "string"}, "description": {"type": "string"}, "guard": {"type": "object", "properties": {"condition": {"type": "string"}, "description": {"type": "string"}}, "required": ["condition", "description"]}}, "required": ["exception", "description", "guard"]}}, "post": {"type": "array", "items": {}}, "pre": {"type": "array", "items": {}}}, "required": ["operation", "identifiers", "throws", "post", "pre"]}, "$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" : "Brouilla", "dpt" : "Pyr\u00e9n\u00e9es-Orientales", "inscrits" : 1069, "abs" : 164, "votants" : 905, "blancs" : 15, "nuls" : 5, "exp" : 885, "res" : [{"panneau" : "2", "voix" : 325}, {"panneau" : "9", "voix" : 178}, {"panneau" : "3", "voix" : 149}, {"panneau" : "11", "voix" : 146}, {"panneau" : "4", "voix" : 33}, {"panneau" : "1", "voix" : 30}, {"panneau" : "8", "voix" : 12}, {"panneau" : "6", "voix" : 5}, {"panneau" : "5", "voix" : 4}, {"panneau" : "10", "voix" : 2}, {"panneau" : "7", "voix" : 1}]}
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": {"name": {"type": "string"}, "order": {"type": "integer"}, "challenges": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "challengeSeed": {"type": "array", "items": {"type": "string"}}, "tests": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "description", "challengeSeed", "tests"]}}}, "required": ["name", "order", "challenges"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Conditional Probability", "order" : 15, "challenges" : [{"id" : "59a5801209a6acac5983b716", "title" : "Discrete conditional probability", "description" : [""], "challengeSeed" : [""], "tests" : [""]}, {"id" : "59a5801209a6acac5983b377", "title" : "Continuous conditional probability", "description" : [""], "challengeSeed" : [""], "tests" : [""]}, {"id" : "59a5801209a6acac5983b378", "title" : "Paradoxes", "description" : [""], "challengeSeed" : [""], "tests" : [""]}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "order": {"type": "integer"}, "challenges": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "challengeSeed": {"type": "array", "items": {"type": "string"}}, "tests": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "description", "challengeSeed", "tests"]}}}, "required": ["name", "order", "challenges"], "$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"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "moduleType": {"type": "array", "items": {}}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "angular-route": {"type": "string"}, "angular-ui-router": {"type": "string"}, "bootstrap": {"type": "string"}, "angular-animate": {"type": "string"}, "angular-bootstrap": {"type": "string"}, "d3": {"type": "string"}, "moment": {"type": "string"}, "bootstrap-social": {"type": "string"}, "bootstrap-toggle": {"type": "string"}}, "required": ["angular", "angular-route", "angular-ui-router", "bootstrap", "angular-animate", "angular-bootstrap", "d3", "moment", "bootstrap-social", "bootstrap-toggle"]}}, "required": ["name", "description", "main", "authors", "license", "homepage", "moduleType", "private", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "nodetojoy", "description" : "Room Collision web application", "main" : "index.js", "authors" : ["Joe Lagasse", "Time Steele", "Tyler Ferrier", "Robert Cardiff"], "license" : "MIT", "homepage" : "https://github.com/nodetojoy/nodetojoy", "moduleType" : [], "private" : true, "ignore" : ["**/.*", "node_modules", "bower_components", "public/lib", "test", "tests"], "dependencies" : {"angular" : "~1.4.8", "angular-route" : "~1.4.8", "angular-ui-router" : "~0.2.15", "bootstrap" : "~3.3.6", "angular-animate" : "~1.4.8", "angular-bootstrap" : "~0.14.3", "d3" : "^3.5.12", "moment" : "~2.11.0", "bootstrap-social" : "~4.12.0", "bootstrap-toggle" : "~2.2.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "moduleType": {"type": "array", "items": {}}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "angular-route": {"type": "string"}, "angular-ui-router": {"type": "string"}, "bootstrap": {"type": "string"}, "angular-animate": {"type": "string"}, "angular-bootstrap": {"type": "string"}, "d3": {"type": "string"}, "moment": {"type": "string"}, "bootstrap-social": {"type": "string"}, "bootstrap-toggle": {"type": "string"}}, "required": ["angular", "angular-route", "angular-ui-router", "bootstrap", "angular-animate", "angular-bootstrap", "d3", "moment", "bootstrap-social", "bootstrap-toggle"]}}, "required": ["name", "description", "main", "authors", "license", "homepage", "moduleType", "private", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"year" : 1980, "sex" : "F", "n" : 5, "prop" : 2.81e-06}, {"year" : 1981, "sex" : "F", "n" : 6, "prop" : 3.36e-06}, {"year" : 1988, "sex" : "F", "n" : 6, "prop" : 3.12e-06}, {"year" : 1990, "sex" : "F", "n" : 5, "prop" : 2.43e-06}, {"year" : 1991, "sex" : "F", "n" : 9, "prop" : 4.43e-06}, {"year" : 1992, "sex" : "F", "n" : 17, "prop" : 8.48e-06}, {"year" : 1993, "sex" : "F", "n" : 12, "prop" : 6.09e-06}, {"year" : 1994, "sex" : "F", "n" : 12, "prop" : 6.16e-06}, {"year" : 1995, "sex" : "F", "n" : 17, "prop" : 8.85e-06}, {"year" : 1996, "sex" : "F", "n" : 27, "prop" : 0}, {"year" : 1997, "sex" : "F", "n" : 19, "prop" : 9.95e-06}, {"year" : 1998, "sex" : "F", "n" : 35, "prop" : 0}, {"year" : 1999, "sex" : "F", "n" : 49, "prop" : 0}, {"year" : 2000, "sex" : "F", "n" : 48, "prop" : 0}, {"year" : 2001, "sex" : "F", "n" : 60, "prop" : 0}, {"year" : 2002, "sex" : "F", "n" : 78, "prop" : 0}, {"year" : 2003, "sex" : "F", "n" : 95, "prop" : 0}, {"year" : 2004, "sex" : "F", "n" : 99, "prop" : 0}, {"year" : 2005, "sex" : "F", "n" : 113, "prop" : 0.0001}, {"year" : 2006, "sex" : "F", "n" : 128, "prop" : 0.0001}, {"year" : 2007, "sex" : "F", "n" : 156, "prop" : 0.0001}, {"year" : 2008, "sex" : "F", "n" : 157, "prop" : 0.0001}, {"year" : 2009, "sex" : "F", "n" : 181, "prop" : 0.0001}, {"year" : 2010, "sex" : "F", "n" : 176, "prop" : 0.0001}, {"year" : 2011, "sex" : "F", "n" : 165, "prop" : 0.0001}, {"year" : 2012, "sex" : "F", "n" : 169, "prop" : 0.0001}, {"year" : 2013, "sex" : "F", "n" : 138, "prop" : 0.0001}, {"year" : 2014, "sex" : "F", "n" : 133, "prop" : 0.0001}, {"year" : 2015, "sex" : "F", "n" : 127, "prop" : 0.0001}, {"year" : 2016, "sex" : "F", "n" : 139, "prop" : 0.0001}, {"year" : 2017, "sex" : "F", "n" : 167, "prop" : 0.0001}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
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" : 57736, "cartId" : "e4abcb29-e50a-4b45-8938-3fd08cec1c05", "preferredProducts" : [1598, 1186, 323], "productReviews" : [{"productId" : 4903, "reviewText" : "I saw one of these in Sao Tome and Principe and I bought one.", "reviewDate" : "2018-02-14T13:32:01.2101431+02:00"}, {"productId" : 251, "reviewText" : "this benchmark is mellow.", "reviewDate" : "2018-03-16T08:20:01.1463211+02:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"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" : 2937, "surahNumber" : "026", "ayatNumber" : "005", "arabic" : "\u0648\u064e\u0645\u064e\u0627 \u064a\u064e\u0623\u0652\u062a\u0650\u064a\u0647\u0650\u0645\u0652 \u0645\u0650\u0646\u0652 \u0630\u0650\u0643\u0652\u0631\u064d \u0645\u0650\u0646\u064e \u0627\u0644\u0631\u0651\u064e\u062d\u0652\u0645\u064e\u0670\u0646\u0650 \u0645\u064f\u062d\u0652\u062f\u064e\u062b\u064d \u0625\u0650\u0644\u0651\u064e\u0627 \u0643\u064e\u0627\u0646\u064f\u0648\u0627 \u0639\u064e\u0646\u0652\u0647\u064f \u0645\u064f\u0639\u0652\u0631\u0650\u0636\u0650\u064a\u0646\u064e", "english" : "And never comes there unto them a Reminder as a recent revelation from the Most Beneficent (Allah), but they turn away therefrom.", "bengali" : "\u09af\u0996\u09a8\u0987 \u09a4\u09be\u09a6\u09c7\u09b0 \u0995\u09be\u099b\u09c7 \u09b0\u09b9\u09ae\u09be\u09a8 \u098f\u09b0 \u0995\u09c7\u09be\u09a8 \u09a8\u09a4\u09c1\u09a8 \u0989\u09aa\u09a6\u09c7\u09b6 \u0986\u09b8\u09c7, \u09a4\u0996\u09a8\u0987 \u09a4\u09be\u09b0\u09be \u09a4\u09be \u09a5\u09c7\u0995\u09c7 \u09ae\u09c1\u0996 \u09ab\u09bf\u09b0\u09bf\u09df\u09c7 \u09a8\u09c7\u09df\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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "test": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}, "release": {"type": "string"}}, "required": ["dev", "test", "build", "start", "release"]}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "jest": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["eslint", "jest", "typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "private", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "tinytech", "version" : "1.0.12", "description" : "for microservices", "main" : "dist/main.js", "scripts" : {"dev" : "npm run build && npm run start", "test" : "npm run build && jest", "build" : "rm -rf dist && tsc", "start" : "node dist/main.js", "release" : "npm run test && git add . && git commit -m \"release\" && git push origin master"}, "repository" : "https://github.com/arkjxu/tinytech.git", "author" : "Ark Xu", "license" : "MIT", "private" : false, "dependencies" : {}, "devDependencies" : {"eslint" : "^6.8.0", "jest" : "^25.5.3", "typescript" : "^3.8.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "test": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}, "release": {"type": "string"}}, "required": ["dev", "test", "build", "start", "release"]}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "jest": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["eslint", "jest", "typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "private", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"robanddan": {"type": "object", "properties": {"title": {"type": "string"}, "channel_id": {"type": "integer"}, "link": {"type": "string"}, "desc": {"type": "null"}, "plans": {"type": "object", "properties": {"$4.99": {"type": "string"}, "$9.99": {"type": "string"}, "$24.99": {"type": "string"}}, "required": ["$4.99", "$9.99", "$24.99"]}, "id": {"type": "string"}, "first_seen": {"type": "string"}, "badge": {"type": "null"}, "badge_starting": {"type": "null"}, "badge_3m": {"type": "null"}, "badge_6m": {"type": "null"}, "badge_12m": {"type": "null"}, "badge_24m": {"type": "null"}, "badges": {"type": "null"}, "bits_badges": {"type": "null"}, "cheermote1": {"type": "null"}, "cheermote100": {"type": "null"}, "cheermote1000": {"type": "null"}, "cheermote5000": {"type": "null"}, "cheermote10000": {"type": "null"}, "set": {"type": "integer"}, "emotes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "image_id": {"type": "integer"}, "set": {"type": "integer"}}, "required": ["code", "image_id", "set"]}}}, "required": ["title", "channel_id", "link", "desc", "plans", "id", "first_seen", "badge", "badge_starting", "badge_3m", "badge_6m", "badge_12m", "badge_24m", "badges", "bits_badges", "cheermote1", "cheermote100", "cheermote1000", "cheermote5000", "cheermote10000", "set", "emotes"]}}, "required": ["robanddan"]}}, "required": ["template", "channels"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"template" : {"small" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/1.0", "medium" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/2.0", "large" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/3.0"}, "channels" : {"robanddan" : {"title" : "RobAndDan", "channel_id" : 37614826, "link" : "http://twitch.tv/robanddan", "desc" : null, "plans" : {"$4.99" : "85676", "$9.99" : "85678", "$24.99" : "85679"}, "id" : "robanddan", "first_seen" : "2017-06-28 16:15:04", "badge" : null, "badge_starting" : null, "badge_3m" : null, "badge_6m" : null, "badge_12m" : null, "badge_24m" : null, "badges" : null, "bits_badges" : null, "cheermote1" : null, "cheermote100" : null, "cheermote1000" : null, "cheermote5000" : null, "cheermote10000" : null, "set" : 85676, "emotes" : [{"code" : "robandFIST", "image_id" : 215403, "set" : 85676}, {"code" : "robandDAN", "image_id" : 246277, "set" : 85678}]}}}
json_instruct
{"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"robanddan": {"type": "object", "properties": {"title": {"type": "string"}, "channel_id": {"type": "integer"}, "link": {"type": "string"}, "desc": {"type": "null"}, "plans": {"type": "object", "properties": {"$4.99": {"type": "string"}, "$9.99": {"type": "string"}, "$24.99": {"type": "string"}}, "required": ["$4.99", "$9.99", "$24.99"]}, "id": {"type": "string"}, "first_seen": {"type": "string"}, "badge": {"type": "null"}, "badge_starting": {"type": "null"}, "badge_3m": {"type": "null"}, "badge_6m": {"type": "null"}, "badge_12m": {"type": "null"}, "badge_24m": {"type": "null"}, "badges": {"type": "null"}, "bits_badges": {"type": "null"}, "cheermote1": {"type": "null"}, "cheermote100": {"type": "null"}, "cheermote1000": {"type": "null"}, "cheermote5000": {"type": "null"}, "cheermote10000": {"type": "null"}, "set": {"type": "integer"}, "emotes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "image_id": {"type": "integer"}, "set": {"type": "integer"}}, "required": ["code", "image_id", "set"]}}}, "required": ["title", "channel_id", "link", "desc", "plans", "id", "first_seen", "badge", "badge_starting", "badge_3m", "badge_6m", "badge_12m", "badge_24m", "badges", "bits_badges", "cheermote1", "cheermote100", "cheermote1000", "cheermote5000", "cheermote10000", "set", "emotes"]}}, "required": ["robanddan"]}}, "required": ["template", "channels"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"subscribe-btn": {"type": "string"}, "go-to-events": {"type": "string"}, "go-to-articles": {"type": "string"}, "email-placeholder": {"type": "string"}}, "required": ["subscribe-btn", "go-to-events", "go-to-articles", "email-placeholder"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"subscribe-btn" : "SUSCRIBIR", "go-to-events" : "Ir a la colecci\u00f3n de eventos", "go-to-articles" : "Ir a la colecci\u00f3n de art\u00edculos", "email-placeholder" : "Correo electr\u00f3nico"}
json_instruct
{"type": "object", "properties": {"subscribe-btn": {"type": "string"}, "go-to-events": {"type": "string"}, "go-to-articles": {"type": "string"}, "email-placeholder": {"type": "string"}}, "required": ["subscribe-btn", "go-to-events", "go-to-articles", "email-placeholder"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"appid" : 391590, "name" : "Dream Chamber", "windows" : true, "mac" : true, "linux" : false, "early_access" : false, "lookup_time" : 1490985656}
json_instruct
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"station" : [{"pref_cd" : 4, "line_cd" : 11223, "line_name" : "JR\u77f3\u5dfb\u7dda", "station_cd" : 1122304, "station_g_cd" : 1122304, "station_name" : "\u524d\u8c37\u5730", "lon" : 141.194345, "lat" : 38.512187}]}
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": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["description", "homepage"]}, "versions": {"type": "object", "properties": {"0.5.3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.8.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.8.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.8.3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.9.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.5.3", "0.8.1", "0.8.2", "0.8.3", "0.9.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"latest_version" : ["0.9.1"], "meta" : {"description" : "Use Nudge to (gently) push content between Django servers", "homepage" : "https://github.com/CFPB/django-nudge"}, "versions" : {"0.5.3" : {"sha256" : "2ba5f2c6f9883ee8c66a342d8ca32d9c03c8c1a924ac439a410aed53a2b95903", "url" : "https://files.pythonhosted.org/packages/b9/46/005e87ce0cd6b2af51e7d6fecb8ff430f70f037d9490748dcd6b69a46a0b/django-nudge-0.5.3.tar.gz"}, "0.8.1" : {"sha256" : "78973dca211d1f3eeefef3a95babf9319b1ddb5500d7e293c0cbc48c9be4c1af", "url" : "https://files.pythonhosted.org/packages/47/40/fdd8bc3ab167c164ccb484fd5853f5b5d4e9c211e824c9474fcd66ee39d4/django-nudge-0.8.1.tar.gz"}, "0.8.2" : {"sha256" : "80babcb895c522c8bfd3439a2f5389877f10197eecc35301a7390474e06b3efd", "url" : "https://files.pythonhosted.org/packages/25/98/18257277eaba538fe1e1d166227c02122dfd1c61590fb6b76bc88599df6b/django-nudge-0.8.2.tar.gz"}, "0.8.3" : {"sha256" : "7a81eede33d5cb952ef8d82ac151b0d5b22af29f891920f8a1863904fe45cc8c", "url" : "https://files.pythonhosted.org/packages/41/75/1c6279ae95aa2c598342860b34f5ba12ca52e4afbcfc57cb6e105ef1979b/django-nudge-0.8.3.tar.gz"}, "0.9.1" : {"sha256" : "86a5a456ac59fd62fe109bc737292b8f5ff49f473aea749abb26638763218c7c", "url" : "https://files.pythonhosted.org/packages/bd/9b/4f7d925c8e1c38c6f7418bc68bbf5df2929ddda76e832805d0f83221d27d/django-nudge-0.9.1.tar.gz"}}}
json_instruct
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["description", "homepage"]}, "versions": {"type": "object", "properties": {"0.5.3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.8.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.8.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.8.3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.9.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.5.3", "0.8.1", "0.8.2", "0.8.3", "0.9.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"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" : [[[-81.749692, 41.455852], [-81.749646, 41.462208], [-81.746621, 41.462157], [-81.746608, 41.46476], [-81.741409, 41.463367], [-81.741395, 41.464853], [-81.738021, 41.464627], [-81.739104, 41.462689], [-81.738583, 41.462525], [-81.748462, 41.455616], [-81.749692, 41.455852]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 50343}}]}
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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"wikipedia:en": {"type": "string"}}, "required": ["wikipedia:en"]}}, "required": ["localname", "official_name", "alltags"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}, "wikidata_id": {"type": "string"}}, "required": ["name", "iso2", "admin_level", "osm_id", "countrylevel_id", "osm_data", "center_lat", "center_lon", "area_m2", "timezone", "wikidata_id"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[-61.032, 13.96], [-61.033, 13.958], [-61.032, 13.956], [-61.032, 13.952], [-61.031, 13.95], [-61.026, 13.948], [-61.024, 13.947], [-61.018, 13.946], [-61.014, 13.946], [-61.014, 13.944], [-61.013, 13.942], [-61.013, 13.94], [-61.009, 13.937], [-61.008, 13.934], [-61.005, 13.93], [-61.003, 13.929], [-61.001, 13.927], [-60.999, 13.928], [-60.996, 13.932], [-60.993, 13.934], [-60.993, 13.926], [-60.992, 13.925], [-60.988, 13.924], [-60.986, 13.923], [-60.984, 13.921], [-60.986, 13.919], [-60.984, 13.915], [-60.986, 13.912], [-60.987, 13.907], [-60.988, 13.905], [-60.988, 13.903], [-60.989, 13.897], [-60.989, 13.895], [-60.989, 13.891], [-60.987, 13.888], [-60.985, 13.886], [-60.985, 13.883], [-60.987, 13.882], [-60.988, 13.878], [-60.991, 13.877], [-60.994, 13.874], [-60.997, 13.872], [-60.998, 13.87], [-61, 13.869], [-61.003, 13.872], [-61.003, 13.878], [-61.009, 13.888], [-61.015, 13.893], [-61.016, 13.899], [-61.018, 13.905], [-61.019, 13.908], [-61.024, 13.911], [-61.029, 13.912], [-61.035, 13.92], [-61.038, 13.924], [-61.045, 13.926], [-61.05, 13.929], [-61.055, 13.935], [-61.054, 13.934], [-61.049, 13.935], [-61.048, 13.937], [-61.044, 13.939], [-61.044, 13.942], [-61.046, 13.942], [-61.044, 13.947], [-61.042, 13.948], [-61.039, 13.95], [-61.04, 13.952], [-61.039, 13.956], [-61.035, 13.958], [-61.033, 13.959], [-61.033, 13.96], [-61.032, 13.96]]]}, "properties" : {"name" : "Anse la Raye", "iso2" : "LC-01", "admin_level" : 4, "osm_id" : 9304002, "countrylevel_id" : "iso2:LC-01", "osm_data" : {"localname" : "Anse la Raye", "official_name" : "", "alltags" : {"wikipedia:en" : "Anse la Raye Quarter"}}, "center_lat" : 13.92, "center_lon" : -61.01, "area_m2" : 30996863, "timezone" : "America/St_Lucia", "wikidata_id" : "Q1676934"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"wikipedia:en": {"type": "string"}}, "required": ["wikipedia:en"]}}, "required": ["localname", "official_name", "alltags"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}, "wikidata_id": {"type": "string"}}, "required": ["name", "iso2", "admin_level", "osm_id", "countrylevel_id", "osm_data", "center_lat", "center_lon", "area_m2", "timezone", "wikidata_id"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"votes": {"type": "object", "properties": {"diff": {"type": "integer"}, "dem": {"type": "integer"}, "tot": {"type": "integer"}, "gop": {"type": "integer"}}, "required": ["diff", "dem", "tot", "gop"]}, "for": {"type": "string"}, "pct": {"type": "object", "properties": {"dem": {"type": "number"}, "per_point_diff": {"type": "number"}, "gop": {"type": "number"}}, "required": ["dem", "per_point_diff", "gop"]}}, "required": ["votes", "for", "pct"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"votes" : {"diff" : 684, "dem" : 2116, "tot" : 5350, "gop" : 2800}, "for" : "MN/Stevens County/27149", "pct" : {"dem" : 39.55, "per_point_diff" : 12.79, "gop" : 52.34}}
json_instruct
{"type": "object", "properties": {"votes": {"type": "object", "properties": {"diff": {"type": "integer"}, "dem": {"type": "integer"}, "tot": {"type": "integer"}, "gop": {"type": "integer"}}, "required": ["diff", "dem", "tot", "gop"]}, "for": {"type": "string"}, "pct": {"type": "object", "properties": {"dem": {"type": "number"}, "per_point_diff": {"type": "number"}, "gop": {"type": "number"}}, "required": ["dem", "per_point_diff", "gop"]}}, "required": ["votes", "for", "pct"], "$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"}, "private": {"type": "boolean"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bitmovin-javascript": {"type": "string"}, "react": {"type": "string"}, "react-bootstrap": {"type": "string"}, "react-dom": {"type": "string"}, "react-highcharts": {"type": "string"}, "react-scripts": {"type": "string"}}, "required": ["bitmovin-javascript", "react", "react-bootstrap", "react-dom", "react-highcharts", "react-scripts"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "eject": {"type": "string"}}, "required": ["start", "build", "test", "eject"]}}, "required": ["name", "version", "private", "homepage", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "livestream-monitor", "version" : "0.1.0", "private" : true, "homepage" : "https://demo.bitmovin.com/public/analytics/live-monitor", "dependencies" : {"bitmovin-javascript" : "^1.5.0", "react" : "^16.1.1", "react-bootstrap" : "^0.31.5", "react-dom" : "^16.1.1", "react-highcharts" : "^15.0.0", "react-scripts" : "1.0.17"}, "scripts" : {"start" : "react-scripts start", "build" : "react-scripts build", "test" : "react-scripts test --env=jsdom", "eject" : "react-scripts eject"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bitmovin-javascript": {"type": "string"}, "react": {"type": "string"}, "react-bootstrap": {"type": "string"}, "react-dom": {"type": "string"}, "react-highcharts": {"type": "string"}, "react-scripts": {"type": "string"}}, "required": ["bitmovin-javascript", "react", "react-bootstrap", "react-dom", "react-highcharts", "react-scripts"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "eject": {"type": "string"}}, "required": ["start", "build", "test", "eject"]}}, "required": ["name", "version", "private", "homepage", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "keywords": {"type": "string"}, "description": {"type": "string"}, "include": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"name": {"type": "string"}, "frameworks": {"type": "string"}}, "required": ["name", "frameworks"]}, "frameworks": {"type": "string"}, "platforms": {"type": "string"}}, "required": ["name", "keywords", "description", "include", "repository", "dependencies", "frameworks", "platforms"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "I2Cdevlib-HMC5843", "keywords" : "magnetometer, compass, sensor, i2cdevlib, i2c", "description" : "The HMC5843 is 3-Axis digital compass/magnetometer", "include" : "Arduino/HMC5843", "repository" : {"type" : "git", "url" : "https://github.com/jrowberg/i2cdevlib.git"}, "dependencies" : {"name" : "I2Cdevlib-Core", "frameworks" : "arduino"}, "frameworks" : "arduino", "platforms" : "atmelavr"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "keywords": {"type": "string"}, "description": {"type": "string"}, "include": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"name": {"type": "string"}, "frameworks": {"type": "string"}}, "required": ["name", "frameworks"]}, "frameworks": {"type": "string"}, "platforms": {"type": "string"}}, "required": ["name", "keywords", "description", "include", "repository", "dependencies", "frameworks", "platforms"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"B": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "L": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "D": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["B", "L", "D"]}, "result": {"type": "object", "properties": {"item": {"type": "string"}, "count": {"type": "integer"}}, "required": ["item", "count"]}}, "required": ["type", "pattern", "key", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "minecraft:crafting_shaped", "pattern" : [" D ", "LBL", " L "], "key" : {"B" : {"item" : "minecraft:book"}, "L" : {"item" : "minecraft:lapis_lazuli"}, "D" : {"item" : "minecraft:diamond"}}, "result" : {"item" : "xp_storage:xp_book", "count" : 1}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"B": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "L": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "D": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["B", "L", "D"]}, "result": {"type": "object", "properties": {"item": {"type": "string"}, "count": {"type": "integer"}}, "required": ["item", "count"]}}, "required": ["type", "pattern", "key", "result"], "$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"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "type": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "status": {"type": "string"}, "id": {"type": "string"}, "logo": {"type": "string"}}, "required": ["name", "website", "description", "explorer", "type", "symbol", "decimals", "status", "id", "logo"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "WolfSafePoorPeople", "website" : "https://wolfsafepoorpeople.com", "description" : "The first cryptocurrency to think about reducing the poor by providing social assistance.", "explorer" : "https://bscscan.com/token/0x46D502Fac9aEA7c5bC7B13C8Ec9D02378C33D36F", "type" : "BEP20", "symbol" : "WSPP", "decimals" : 0, "status" : "active", "id" : "0x46D502Fac9aEA7c5bC7B13C8Ec9D02378C33D36F", "logo" : "ipfs://QmVwPKfaYTWqcAVcTbVNMvc6arvq82cQoTCHd5xfQR87Vu/smartchain/assets/0x46D502Fac9aEA7c5bC7B13C8Ec9D02378C33D36F/logo.png"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "type": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "status": {"type": "string"}, "id": {"type": "string"}, "logo": {"type": "string"}}, "required": ["name", "website", "description", "explorer", "type", "symbol", "decimals", "status", "id", "logo"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"__type__": {"type": "string"}, "content": {"type": "object", "properties": {"name": {"type": "string"}, "texture": {"type": "string"}, "atlas": {"type": "string"}, "rect": {"type": "array", "items": {"type": "integer"}}, "offset": {"type": "array", "items": {"type": "integer"}}, "originalSize": {"type": "array", "items": {"type": "integer"}}}, "required": ["name", "texture", "atlas", "rect", "offset", "originalSize"]}}, "required": ["__type__", "content"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"__type__" : "cc.SpriteFrame", "content" : {"name" : "anniu_paihangbang", "texture" : "f1af7b94-fcd5-444e-8c17-088891ad6c71", "atlas" : "", "rect" : [26, 16, 108, 26], "offset" : [0, 0], "originalSize" : [160, 58]}}
json_instruct
{"type": "object", "properties": {"__type__": {"type": "string"}, "content": {"type": "object", "properties": {"name": {"type": "string"}, "texture": {"type": "string"}, "atlas": {"type": "string"}, "rect": {"type": "array", "items": {"type": "integer"}}, "offset": {"type": "array", "items": {"type": "integer"}}, "originalSize": {"type": "array", "items": {"type": "integer"}}}, "required": ["name", "texture", "atlas", "rect", "offset", "originalSize"]}}, "required": ["__type__", "content"], "$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": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "is_suicidal_vulnerable": {"type": "boolean"}}, "required": ["is_lock_vulnerable", "is_prodigal_vulnerable", "is_suicidal_vulnerable"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x7751278c8b6b224946d065776fc67c81a5202958", "tool" : "maian", "start" : 1565363610.7103171, "end" : 1565364796.301319, "duration" : 1185.5910017490387, "analysis" : {"is_lock_vulnerable" : false, "is_prodigal_vulnerable" : false, "is_suicidal_vulnerable" : false}}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "is_suicidal_vulnerable": {"type": "boolean"}}, "required": ["is_lock_vulnerable", "is_prodigal_vulnerable", "is_suicidal_vulnerable"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"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", "outline", "kjv_def", "lemma", "frequency", "strongs_def", "xlit"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"derivation" : "the same as H8476 (\u05ea\u05bc\u05b7\u05d7\u05b7\u05e9\u05c1);", "pron" : "takh'-ash", "outline" : "<span class=\"literal-meaning\">Thahash = &quot;dugong&quot;</span><ol><li> son of Nahor by his concubine Reumah and nephew of Abraham</li></ol>", "kjv_def" : "Thahash.", "lemma" : "\u05ea\u05bc\u05b7\u05d7\u05b7\u05e9\u05c1", "frequency" : 1, "strongs_def" : "Tachash, a relative of Abraham", "xlit" : "Tachash"}
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", "outline", "kjv_def", "lemma", "frequency", "strongs_def", "xlit"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "gravatar_id": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}}, "required": ["login", "id", "avatar_url", "gravatar_id", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"login" : "jdoe", "id" : 123, "avatar_url" : "https://example.com/image.png", "gravatar_id" : "123456abcde", "url" : "https://api.github.com/users/jdoe", "html_url" : "https://github.com/jdoe", "followers_url" : "https://api.github.com/users/jdoe/followers", "following_url" : "https://api.github.com/users/jdoe/following{/other_user}", "gists_url" : "https://api.github.com/users/jdoe/gists{/gist_id}", "starred_url" : "https://api.github.com/users/jdoe/starred{/owner}{/repo}", "subscriptions_url" : "https://api.github.com/users/jdoe/subscriptions", "organizations_url" : "https://api.github.com/users/jdoe/orgs", "repos_url" : "https://api.github.com/users/jdoe/repos", "events_url" : "https://api.github.com/users/jdoe/events{/privacy}", "received_events_url" : "https://api.github.com/users/jdoe/received_events", "type" : "User"}, {"login" : "asmith", "id" : 987, "avatar_url" : "https://example.com/image.png", "gravatar_id" : "098754321acbe", "url" : "https://api.github.com/users/asmith", "html_url" : "https://github.com/asmith", "followers_url" : "https://api.github.com/users/asmith/followers", "following_url" : "https://api.github.com/users/asmith/following{/other_user}", "gists_url" : "https://api.github.com/users/asmith/gists{/gist_id}", "starred_url" : "https://api.github.com/users/asmith/starred{/owner}{/repo}", "subscriptions_url" : "https://api.github.com/users/asmith/subscriptions", "organizations_url" : "https://api.github.com/users/asmith/orgs", "repos_url" : "https://api.github.com/users/asmith/repos", "events_url" : "https://api.github.com/users/asmith/events{/privacy}", "received_events_url" : "https://api.github.com/users/asmith/received_events", "type" : "User"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "gravatar_id": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}}, "required": ["login", "id", "avatar_url", "gravatar_id", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "behat/behat": {"type": "string"}, "symfony/http-kernel": {"type": "string"}, "behat/mink-extension": {"type": "string"}, "symfony/browser-kit": {"type": "string"}, "behat/mink-browserkit-driver": {"type": "string"}}, "required": ["php", "behat/behat", "symfony/http-kernel", "behat/mink-extension", "symfony/browser-kit", "behat/mink-browserkit-driver"]}, "require-dev": {"type": "object", "properties": {"symfony/var-dumper": {"type": "string"}}, "required": ["symfony/var-dumper"]}, "config": {"type": "object", "properties": {"bin-dir": {"type": "string"}}, "required": ["bin-dir"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"MageTest\\Magento2Driver\\": {"type": "string"}}, "required": ["MageTest\\Magento2Driver\\"]}}, "required": ["psr-0"]}}, "required": ["name", "type", "description", "keywords", "homepage", "license", "require", "require-dev", "config", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "magetest/behat-m2-driver", "type" : "library", "description" : "", "keywords" : ["tdd", "bdd", "behat", "magento2"], "homepage" : "https://github.com/magetest/behat-m2-driver", "license" : "MIT", "require" : {"php" : ">=5.5", "behat/behat" : "^3.0.0", "symfony/http-kernel" : "^3.1", "behat/mink-extension" : "^2.2", "symfony/browser-kit" : "^3.1", "behat/mink-browserkit-driver" : "^1.3"}, "require-dev" : {"symfony/var-dumper" : "^3.1"}, "config" : {"bin-dir" : "bin"}, "autoload" : {"psr-0" : {"MageTest\\Magento2Driver\\" : "src"}}}
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"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "behat/behat": {"type": "string"}, "symfony/http-kernel": {"type": "string"}, "behat/mink-extension": {"type": "string"}, "symfony/browser-kit": {"type": "string"}, "behat/mink-browserkit-driver": {"type": "string"}}, "required": ["php", "behat/behat", "symfony/http-kernel", "behat/mink-extension", "symfony/browser-kit", "behat/mink-browserkit-driver"]}, "require-dev": {"type": "object", "properties": {"symfony/var-dumper": {"type": "string"}}, "required": ["symfony/var-dumper"]}, "config": {"type": "object", "properties": {"bin-dir": {"type": "string"}}, "required": ["bin-dir"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"MageTest\\Magento2Driver\\": {"type": "string"}}, "required": ["MageTest\\Magento2Driver\\"]}}, "required": ["psr-0"]}}, "required": ["name", "type", "description", "keywords", "homepage", "license", "require", "require-dev", "config", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "logo": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"QUESTION": {"type": "string"}, "ANSWER": {"type": "string"}, "JOB_EMAIL": {"type": "string"}}, "required": ["QUESTION", "ANSWER", "JOB_EMAIL"]}}, "required": ["name", "description", "repository", "logo", "keywords", "env"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Hackers Job Apply", "description" : "Reduce the spam you get for your job posting by setting up a micro challenge. ", "repository" : "https://github.com/lukasz-madon/hackers-job-apply", "logo" : "http://flask.pocoo.org/static/logo/flask.png", "keywords" : ["python", "flask", "challenge", "jobs"], "env" : {"QUESTION" : "What is the largest 3 digit prime number?", "ANSWER" : "997", "JOB_EMAIL" : "dev.job@example.com"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "logo": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"QUESTION": {"type": "string"}, "ANSWER": {"type": "string"}, "JOB_EMAIL": {"type": "string"}}, "required": ["QUESTION", "ANSWER", "JOB_EMAIL"]}}, "required": ["name", "description", "repository", "logo", "keywords", "env"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"bump-versions": {"type": "string"}, "publish-all": {"type": "string"}}, "required": ["bump-versions", "publish-all"]}, "devDependencies": {"type": "object", "properties": {"cross-var": {"type": "string"}, "edit-json-file": {"type": "string"}, "lit-html": {"type": "string"}, "simple-git": {"type": "string"}, "tslint": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["cross-var", "edit-json-file", "lit-html", "simple-git", "tslint", "typescript"]}}, "required": ["name", "description", "version", "repository", "bugs", "author", "license", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "lio-spa-srcs", "description" : "Single Page Framework developed by Liiiooo", "version" : "2.0.1", "repository" : {"type" : "git", "url" : "https://github.com/Liiioooo/lio-spa.git"}, "bugs" : "https://github.com/Liiioooo/lio-spa/issues", "author" : "Liiioooo", "license" : "MIT", "scripts" : {"bump-versions" : "cross-var node scripts/bump-versions $npm_package_version", "publish-all" : "node scripts/publish-all"}, "devDependencies" : {"cross-var" : "^1.1.0", "edit-json-file" : "^1.2.1", "lit-html" : "^1.1.0", "simple-git" : "^1.116.0", "tslint" : "^5.17.0", "typescript" : "^3.5.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"bump-versions": {"type": "string"}, "publish-all": {"type": "string"}}, "required": ["bump-versions", "publish-all"]}, "devDependencies": {"type": "object", "properties": {"cross-var": {"type": "string"}, "edit-json-file": {"type": "string"}, "lit-html": {"type": "string"}, "simple-git": {"type": "string"}, "tslint": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["cross-var", "edit-json-file", "lit-html", "simple-git", "tslint", "typescript"]}}, "required": ["name", "description", "version", "repository", "bugs", "author", "license", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : "Joanie Mackowski", "classification" : "", "keywords" : [], "period" : "", "reference" : "http://www.poetryfoundation.org/poetrymagazine/poem/29652", "region" : "", "text" : ["What vegetable leviathan", "extends beneath the dinner table,", "an unseen, monstrous green that pulls", "the chair out from under our faith", "in appearances: see a mere tuft", "of leaf on the plate like a wing,", "but if it flies away, it undoubtedly", "will disturb the continental drift", "asleep under the salad plate,", "the hidden world we forget", "as we reach for the smaller fork\u0097", "(and now, mouth full, don't speak: politely", "chew your leaf of firmament", "that's torn and tossed up in vinegar here as", "we'll be tossed before its vast", "root maybe someday or any moment)."], "title" : "Iceberg Lettuce", "year" : ""}
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"polyfill": {"type": "array", "items": {"type": "string"}}, "app": {"type": "array", "items": {"type": "string"}}, "component---src-pages-404-tsx": {"type": "array", "items": {"type": "string"}}, "component---src-pages-index-tsx": {"type": "array", "items": {"type": "string"}}, "component---src-pages-ty-tsx": {"type": "array", "items": {"type": "string"}}, "component---src-pages-view-tsx": {"type": "array", "items": {"type": "string"}}}, "required": ["polyfill", "app", "component---src-pages-404-tsx", "component---src-pages-index-tsx", "component---src-pages-ty-tsx", "component---src-pages-view-tsx"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"polyfill" : ["/polyfill-e55984e3725a55250abd.js"], "app" : ["/app-813c0f9984421849f5f2.js"], "component---src-pages-404-tsx" : ["/component---src-pages-404-tsx-09a19b975485e3a289f2.js"], "component---src-pages-index-tsx" : ["/component---src-pages-index-tsx-9fedfe3c8ad893d1ee04.js"], "component---src-pages-ty-tsx" : ["/component---src-pages-ty-tsx-32969dd378ea4cd52083.js"], "component---src-pages-view-tsx" : ["/component---src-pages-view-tsx-69dd326a700d854e15ae.js"]}
json_instruct
{"type": "object", "properties": {"polyfill": {"type": "array", "items": {"type": "string"}}, "app": {"type": "array", "items": {"type": "string"}}, "component---src-pages-404-tsx": {"type": "array", "items": {"type": "string"}}, "component---src-pages-index-tsx": {"type": "array", "items": {"type": "string"}}, "component---src-pages-ty-tsx": {"type": "array", "items": {"type": "string"}}, "component---src-pages-view-tsx": {"type": "array", "items": {"type": "string"}}}, "required": ["polyfill", "app", "component---src-pages-404-tsx", "component---src-pages-index-tsx", "component---src-pages-ty-tsx", "component---src-pages-view-tsx"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"year" : 1915, "sex" : "F", "n" : 7, "prop" : 6.84e-06}, {"year" : 1924, "sex" : "F", "n" : 8, "prop" : 6.17e-06}, {"year" : 1925, "sex" : "F", "n" : 5, "prop" : 3.96e-06}, {"year" : 1932, "sex" : "F", "n" : 7, "prop" : 6.33e-06}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "STRAYA", "symbol" : "AUD", "logoURI" : "https://raw.githubusercontent.com/Dmnted/Straya/main/logo.png.png", "decimals" : 0, "address" : "AZ2wwVXGgwf3CtEi1qAHoQo5o7ERDJfaMaKyxCM3igj5", "chainId" : 101, "tags" : ["Social-token", "Community-Token", "meme-token"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"Calculator\\StringCalc": {"type": "string"}}, "required": ["Calculator\\StringCalc"]}}, "required": ["psr-0"]}, "minimum-stability": {"type": "string"}}, "required": ["name", "description", "keywords", "license", "authors", "require", "autoload", "minimum-stability"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "hamzaze/Calculator", "description" : "StringCalc is a PHP calculator library for mathematical terms (expressions) passed as strings.", "keywords" : ["calculator", "configurator", "parser"], "license" : "MIT", "authors" : [{"name" : "Chris Konnertz"}], "require" : {"php" : ">=5.6.0"}, "autoload" : {"psr-0" : {"Calculator\\StringCalc" : "src/"}}, "minimum-stability" : "dev"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"Calculator\\StringCalc": {"type": "string"}}, "required": ["Calculator\\StringCalc"]}}, "required": ["psr-0"]}, "minimum-stability": {"type": "string"}}, "required": ["name", "description", "keywords", "license", "authors", "require", "autoload", "minimum-stability"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : [{"d" : [{"e" : ["\ufff9`Misalalad~ `ko~ `lapot~.\ufffa\ufffb\u5730\u74dc\u8449\u9577\u7684\u8513\u5ef6\u3002", "\ufff9`Misalalad~ `to~ `iloh~.\ufffa\ufffb\u8513\u5ef6\u5c71\u706b\u3002"], "f" : "\u9577\u7684\u8513\u5ef6\u3001\u6301\u7e8c\u767c\u5c55\u3002"}]}], "stem" : "lalad", "t" : "misalalad"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"n_dim" : 8, "n_trials" : 340, "objective" : "rosenbrock_modified_on_cube", "white" : "ultraopt_random", "black" : "platypus_cmaes", "traceback" : ["passing", "passing"], "best_val" : [2.5466451920990267, 2.7142979299967647], "best_x" : [[0.19579113478929644, 0.06936130087516545, 0.10077800137742665, 0.018221825651549728, 0.0944429607559284, 0.6830067734163568, 0.07118864846022899, 0.3189756302937613], [0.5098609335224715, 0.006345383917575054, 0.764866369652877, 0.11664206156147522, 0.00920645249281593, 0.2724938997167621, 0.07079139898273618, 0.7745481315247837]], "feval_count" : [340, 300], "n_trials_instructed" : [340, 289], "passing" : [true, true], "completed" : true, "points" : 1.0, "winner" : "ultraopt_random", "loser" : "platypus_cmaes"}
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "image": {"type": "string"}, "offset": {"type": "integer"}, "characterCount": {"type": "integer"}, "charactersPerLine": {"type": "integer"}, "size": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}, "required": ["name", "image", "offset", "characterCount", "charactersPerLine", "size"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "Number", "image" : "GuiFont/GuiFont", "offset" : 46, "characterCount" : 15, "charactersPerLine" : 15, "size" : {"x" : 1, "y" : 1}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "image": {"type": "string"}, "offset": {"type": "integer"}, "characterCount": {"type": "integer"}, "charactersPerLine": {"type": "integer"}, "size": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}, "required": ["name", "image", "offset", "characterCount", "charactersPerLine", "size"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type": "string"}, "company": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "address": {"type": "string"}, "about": {"type": "string"}, "registered": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "friends": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "greeting": {"type": "string"}, "favoriteFruit": {"type": "string"}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}, "docFormat": {"type": "string"}, "triples": {"type": "array", "items": {"type": "object", "properties": {"triple": {"type": "object", "properties": {"subject": {"type": "string"}, "predicate": {"type": "string"}, "object": {"type": "string"}}, "required": ["subject", "predicate", "object"]}}, "required": ["triple"]}}}, "required": ["_id", "index", "guid", "isActive", "balance", "picture", "age", "eyeColor", "name", "gender", "company", "email", "phone", "address", "about", "registered", "tags", "friends", "greeting", "favoriteFruit", "location", "docFormat", "triples"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_id" : "55ee5e4430bfbb5f20f211f2", "index" : 1259, "guid" : "6fd7e711-496c-4cb9-999c-ae50f7664a6b", "isActive" : false, "balance" : "$62,586.86", "picture" : "http://placehold.it/32x32", "age" : 30, "eyeColor" : "blue", "name" : "Cornelia Shields", "gender" : "female", "company" : "XERONK", "email" : "corneliashields@xeronk.com", "phone" : "+1 (970) 540-3782", "address" : "630 Amersfort Place, Herald, Minnesota, 8972", "about" : "Ullamco sunt qui fugiat adipisicing laborum nulla id cillum. Et sint magna elit dolor ipsum ipsum ipsum nisi amet pariatur. Labore qui cillum ex Lorem duis mollit dolor cupidatat. Culpa proident qui incididunt fugiat laboris esse. Reprehenderit commodo officia deserunt deserunt aliqua consectetur proident do dolore. Laboris veniam occaecat irure culpa aliqua dolor et adipisicing magna ea consequat. Aute sit sint aliquip ad culpa Lorem enim amet id ea.\r\n", "registered" : "2015-02-01T03:31:52 -07:00", "tags" : ["proident", "adipisicing", "deserunt", "veniam", "cillum", "enim", "elit"], "friends" : [{"id" : 0, "name" : "Ratliff Talley"}, {"id" : 1, "name" : "Kristie Wilkerson"}, {"id" : 2, "name" : "Leila Carroll"}], "greeting" : "Hello, Cornelia Shields! You have 6 unread messages.", "favoriteFruit" : "pear", "location" : {"latitude" : -85.607188, "longitude" : -148.495327}, "docFormat" : "json", "triples" : [{"triple" : {"subject" : "/sample-data/data-1259.json", "predicate" : "http://www.w3.org/2000/01/rdf-schema#label", "object" : "Cornelia Shields"}}, {"triple" : {"subject" : "/sample-data/data-1259.json", "predicate" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type", "object" : "http://xmlns.com/foaf/0.1/Person"}}, {"triple" : {"subject" : "/sample-data/data-1259.json", "predicate" : "http://xmlns.com/foaf/0.1/knows", "object" : "/sample-data/data-852.json"}}, {"triple" : {"subject" : "/sample-data/data-1259.json", "predicate" : "http://xmlns.com/foaf/0.1/knows", "object" : "/sample-data/data-75.json"}}, {"triple" : {"subject" : "/sample-data/data-1259.json", "predicate" : "http://xmlns.com/foaf/0.1/knows", "object" : "/sample-data/data-194.json"}}]}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type": "string"}, "company": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "address": {"type": "string"}, "about": {"type": "string"}, "registered": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "friends": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "greeting": {"type": "string"}, "favoriteFruit": {"type": "string"}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}, "docFormat": {"type": "string"}, "triples": {"type": "array", "items": {"type": "object", "properties": {"triple": {"type": "object", "properties": {"subject": {"type": "string"}, "predicate": {"type": "string"}, "object": {"type": "string"}}, "required": ["subject", "predicate", "object"]}}, "required": ["triple"]}}}, "required": ["_id", "index", "guid", "isActive", "balance", "picture", "age", "eyeColor", "name", "gender", "company", "email", "phone", "address", "about", "registered", "tags", "friends", "greeting", "favoriteFruit", "location", "docFormat", "triples"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "33", "provinceId" : "36", "regencyId" : "01", "name" : "Koroncong"}
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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "9d2c0f0ad242570b4479", "c" : {"0" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 128878, "info" : {"name" : "NowVideo", "description" : "Simple dark style and resized player for NowVideo.", "additionalInfo" : "Use any Adblocker to block the stupid ads on NowVideo !!!", "format" : "uso", "category" : "nowvideo", "createdAt" : "2016-06-11T18:16:50.000Z", "updatedAt" : "2016-12-27T21:26:47.000Z", "license" : "CC0-1.0", "author" : {"id" : 337996, "name" : "LauniSoft"}}, "stats" : {"installs" : {"total" : 107, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "128878_after.jpeg", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document domain(\"nowvideo.sx\") {\r\n\r\n /********************************\r\n ** NowVideo Dark (Only Video) **\r\n ** ========================== **\r\n ** .: written by LauniSoft :. **\r\n ********************************/\r\n\r\n body {\r\n background-color: #000000;\r\n border-top: none;\r\n overflow: hidden;\r\n }\r\n\r\n img, #nav, #footer, #content_player a[style], .video_details, .video_sharing {\r\n display: none !important;\r\n }\r\n\r\n #content {\r\n color: #ff0000;\r\n }\r\n\r\n #videoPlayer {\r\n position: absolute;\r\n top: 0px !important;\r\n left: 0px !important;\r\n width: 100% !important;\r\n height: 100% !important;\r\n }\r\n}"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"scenario_name": {"type": "string"}, "benchmark_name": {"type": "string"}, "label": {"type": "string"}, "max_resident_threads": {"type": "integer"}, "data_size": {"type": "integer"}, "release_time": {"type": "number"}, "PID": {"type": "integer"}, "TID": {"type": "integer"}, "times": {"type": "array", "items": {"type": "object", "properties": {}, "required": []}}}, "required": ["scenario_name", "benchmark_name", "label", "max_resident_threads", "data_size", "release_time", "PID", "TID", "times"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"scenario_name" : "Greedy scheduling test", "benchmark_name" : "Timer Spin", "label" : "Larger job (released second)", "max_resident_threads" : 163840, "data_size" : 0, "release_time" : 0.25, "PID" : 20754, "TID" : 20789, "times" : [{}, {"copy_in_times" : [1.03753023, 1.037531955], "execute_times" : [1.037533374, 2.037598375], "copy_out_times" : [2.037599088, 2.037627076], "cpu_times" : [1.03753023, 2.037627076]}, {"kernel_name" : "GPUSpin", "block_count" : 16, "thread_count" : 512, "shared_memory" : 0, "cuda_launch_times" : [1.037535226, 1.037598405, 2.037596392], "block_times" : [1.037612509, 2.037617659, 1.037612541, 2.037617659, 1.037612509, 2.037617627, 1.037612509, 2.037617659, 1.037612477, 2.037617595, 1.037612285, 2.037617403, 1.037612509, 2.037617659, 1.037612541, 2.037617659, 1.037612509, 2.037617595, 1.037612509, 2.037617627, 1.037612509, 2.037617627, 1.037612285, 2.037617435, 1.037612509, 2.037617627, 1.037612541, 2.037617691, 1.037612509, 2.037617627, 1.037612509, 2.037617595], "block_smids" : [2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32], "cpu_core" : 2}]}
json_instruct
{"type": "object", "properties": {"scenario_name": {"type": "string"}, "benchmark_name": {"type": "string"}, "label": {"type": "string"}, "max_resident_threads": {"type": "integer"}, "data_size": {"type": "integer"}, "release_time": {"type": "number"}, "PID": {"type": "integer"}, "TID": {"type": "integer"}, "times": {"type": "array", "items": {"type": "object", "properties": {}, "required": []}}}, "required": ["scenario_name", "benchmark_name", "label", "max_resident_threads", "data_size", "release_time", "PID", "TID", "times"], "$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"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "material-ui": {"type": "string"}, "prop-types": {"type": "string"}, "query-string": {"type": "string"}, "react": {"type": "string"}, "react-copy-to-clipboard": {"type": "string"}, "react-dom": {"type": "string"}, "react-router-dom": {"type": "string"}, "react-swipeable-views": {"type": "string"}, "react-tap-event-plugin": {"type": "string"}}, "required": ["axios", "material-ui", "prop-types", "query-string", "react", "react-copy-to-clipboard", "react-dom", "react-router-dom", "react-swipeable-views", "react-tap-event-plugin"]}, "devDependencies": {"type": "object", "properties": {"firebase-tools": {"type": "string"}, "react-scripts": {"type": "string"}}, "required": ["firebase-tools", "react-scripts"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "eject": {"type": "string"}, "deploy": {"type": "string"}, "firebase-init": {"type": "string"}}, "required": ["start", "build", "test", "eject", "deploy", "firebase-init"]}}, "required": ["name", "version", "private", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "github-battle", "version" : "0.1.0", "private" : true, "dependencies" : {"axios" : "^0.16.2", "material-ui" : "^0.18.5", "prop-types" : "^15.5.8", "query-string" : "^4.3.4", "react" : "^15.6.1", "react-copy-to-clipboard" : "^5.0.0", "react-dom" : "^15.6.1", "react-router-dom" : "^4.1.1", "react-swipeable-views" : "^0.12.3", "react-tap-event-plugin" : "^2.0.1"}, "devDependencies" : {"firebase-tools" : "^3.9.1", "react-scripts" : "1.0.10"}, "scripts" : {"start" : "react-scripts start", "build" : "react-scripts build", "test" : "react-scripts test --env=jsdom", "eject" : "react-scripts eject", "deploy" : "yarn build && firebase deploy", "firebase-init" : "firebase login && firebase init"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "material-ui": {"type": "string"}, "prop-types": {"type": "string"}, "query-string": {"type": "string"}, "react": {"type": "string"}, "react-copy-to-clipboard": {"type": "string"}, "react-dom": {"type": "string"}, "react-router-dom": {"type": "string"}, "react-swipeable-views": {"type": "string"}, "react-tap-event-plugin": {"type": "string"}}, "required": ["axios", "material-ui", "prop-types", "query-string", "react", "react-copy-to-clipboard", "react-dom", "react-router-dom", "react-swipeable-views", "react-tap-event-plugin"]}, "devDependencies": {"type": "object", "properties": {"firebase-tools": {"type": "string"}, "react-scripts": {"type": "string"}}, "required": ["firebase-tools", "react-scripts"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "eject": {"type": "string"}, "deploy": {"type": "string"}, "firebase-init": {"type": "string"}}, "required": ["start", "build", "test", "eject", "deploy", "firebase-init"]}}, "required": ["name", "version", "private", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 74362, "cartId" : "e37362d5-9534-4bde-b01a-c55ffae555e1", "preferredProducts" : [2635, 4325, 4788], "productReviews" : [{"productId" : 1350, "reviewText" : "I saw one of these in Cote d'Ivoire and I bought one.", "reviewDate" : "2019-02-05T02:45:21.1397104+02:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"player_pos": {"type": "array", "items": {"type": "integer"}}, "music": {"type": "string"}, "rooms": {"type": "integer"}}, "required": ["player_pos", "music", "rooms"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"player_pos" : [50, 300], "music" : "level0.ogg", "rooms" : 3}
json_instruct
{"type": "object", "properties": {"player_pos": {"type": "array", "items": {"type": "integer"}}, "music": {"type": "string"}, "rooms": {"type": "integer"}}, "required": ["player_pos", "music", "rooms"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"max": {"type": "array", "items": {"type": "number"}}, "centroid": {"type": "array", "items": {"type": "number"}}, "id": {"type": "string"}, "numVertices": {"type": "integer"}, "min": {"type": "array", "items": {"type": "number"}}}, "required": ["max", "centroid", "id", "numVertices", "min"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"max" : [0.0627365, 0.814449, 0.815482], "centroid" : [-0.2601997384511017, 0.6231528205200594, 0.49501463708309823], "id" : "ded74a76b1a4dc8ecb2a965e75be701c", "numVertices" : 1769, "min" : [-0.579827, 0.0, 0.172918]}
json_instruct
{"type": "object", "properties": {"max": {"type": "array", "items": {"type": "number"}}, "centroid": {"type": "array", "items": {"type": "number"}}, "id": {"type": "string"}, "numVertices": {"type": "integer"}, "min": {"type": "array", "items": {"type": "number"}}}, "required": ["max", "centroid", "id", "numVertices", "min"], "$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"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "font-awesome": {"type": "string"}, "jquery": {"type": "string"}, "moment": {"type": "string"}, "popper.js": {"type": "string"}, "prop-types": {"type": "string"}, "react": {"type": "string"}, "react-bootstrap": {"type": "string"}, "react-dom": {"type": "string"}, "react-fontawesome": {"type": "string"}, "react-redux": {"type": "string"}, "react-scripts": {"type": "string"}, "redux": {"type": "string"}}, "required": ["bootstrap", "font-awesome", "jquery", "moment", "popper.js", "prop-types", "react", "react-bootstrap", "react-dom", "react-fontawesome", "react-redux", "react-scripts", "redux"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "eject": {"type": "string"}}, "required": ["start", "build", "test", "eject"]}}, "required": ["name", "version", "private", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "assignment-dfs", "version" : "0.1.0", "private" : true, "dependencies" : {"bootstrap" : "^4.3.1", "font-awesome" : "^4.7.0", "jquery" : "^3.4.1", "moment" : "^2.22.1", "popper.js" : "^1.14.3", "prop-types" : "^15.6.1", "react" : "^16.3.2", "react-bootstrap" : "^0.32.1", "react-dom" : "^16.3.2", "react-fontawesome" : "^1.6.1", "react-redux" : "^5.0.7", "react-scripts" : "^3.0.0", "redux" : "^4.0.0"}, "scripts" : {"start" : "react-scripts start", "build" : "react-scripts build", "test" : "react-scripts test --env=jsdom", "eject" : "react-scripts eject"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "font-awesome": {"type": "string"}, "jquery": {"type": "string"}, "moment": {"type": "string"}, "popper.js": {"type": "string"}, "prop-types": {"type": "string"}, "react": {"type": "string"}, "react-bootstrap": {"type": "string"}, "react-dom": {"type": "string"}, "react-fontawesome": {"type": "string"}, "react-redux": {"type": "string"}, "react-scripts": {"type": "string"}, "redux": {"type": "string"}}, "required": ["bootstrap", "font-awesome", "jquery", "moment", "popper.js", "prop-types", "react", "react-bootstrap", "react-dom", "react-fontawesome", "react-redux", "react-scripts", "redux"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "eject": {"type": "string"}}, "required": ["start", "build", "test", "eject"]}}, "required": ["name", "version", "private", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "publish": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "publish", "test"]}, "dependencies": {"type": "object", "properties": {"@feathersjs/feathers": {"type": "string"}, "config": {"type": "string"}, "debug": {"type": "string"}}, "required": ["@feathersjs/feathers", "config", "debug"]}, "devDependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "@babel/eslint-parser": {"type": "string"}, "@babel/node": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-babel": {"type": "string"}, "ospec": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "@babel/eslint-parser", "@babel/node", "@babel/preset-env", "eslint", "eslint-plugin-babel", "ospec"]}}, "required": ["name", "description", "version", "license", "author", "homepage", "bugs", "repository", "keywords", "engines", "main", "files", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@soulofmischief/feathers-configuration", "description" : "A wrapper for node-config to integrate configuration data into a feathers app.", "version" : "1.4.0", "license" : "MIT", "author" : "soulofmischief", "homepage" : "https://github.com/soulofmischief/feathers-configuration#readme", "bugs" : {"url" : "https://github.com/soulofmischief/feathers-configuration/issues"}, "repository" : {"type" : "git", "url" : "git://github.com/soulofmischief/feathers-configuration.git"}, "keywords" : ["configuration", "feathers", "feathers-plugin"], "engines" : {"node" : ">= 10"}, "main" : "lib/index.js", "files" : ["lib"], "scripts" : {"build" : "babel src -d lib", "publish" : "./scripts/publish.sh", "test" : "babel-node $(yarn bin ospec)"}, "dependencies" : {"@feathersjs/feathers" : "^4.5.11", "config" : "^3.3.6", "debug" : "^4.3.2"}, "devDependencies" : {"@babel/cli" : "^7.15.4", "@babel/core" : "^7.15.5", "@babel/eslint-parser" : "^7.15.4", "@babel/node" : "^7.15.4", "@babel/preset-env" : "^7.15.4", "eslint" : "^7.32.0", "eslint-plugin-babel" : "^5.3.1", "ospec" : "^4.1.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "publish": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "publish", "test"]}, "dependencies": {"type": "object", "properties": {"@feathersjs/feathers": {"type": "string"}, "config": {"type": "string"}, "debug": {"type": "string"}}, "required": ["@feathersjs/feathers", "config", "debug"]}, "devDependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "@babel/eslint-parser": {"type": "string"}, "@babel/node": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-babel": {"type": "string"}, "ospec": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "@babel/eslint-parser", "@babel/node", "@babel/preset-env", "eslint", "eslint-plugin-babel", "ospec"]}}, "required": ["name", "description", "version", "license", "author", "homepage", "bugs", "repository", "keywords", "engines", "main", "files", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"batch_mode": {"type": "string"}, "env": {"type": "string"}, "env_config": {"type": "object", "properties": {"env_type": {"type": "string"}}, "required": ["env_type"]}, "gamma": {"type": "number"}, "kl_coeff": {"type": "number"}, "lr": {"type": "number"}, "model": {"type": "object", "properties": {"free_log_std": {"type": "boolean"}}, "required": ["free_log_std"]}, "num_gpus": {"type": "integer"}, "num_sgd_iter": {"type": "integer"}, "num_workers": {"type": "integer"}, "observation_filter": {"type": "string"}, "sgd_minibatch_size": {"type": "integer"}, "train_batch_size": {"type": "integer"}}, "required": ["batch_mode", "env", "env_config", "gamma", "kl_coeff", "lr", "model", "num_gpus", "num_sgd_iter", "num_workers", "observation_filter", "sgd_minibatch_size", "train_batch_size"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"batch_mode" : "complete_episodes", "env" : "RoboschoolReacher-v1", "env_config" : {"env_type" : "openai"}, "gamma" : 0.99, "kl_coeff" : 1.0, "lr" : 0.001, "model" : {"free_log_std" : true}, "num_gpus" : 0, "num_sgd_iter" : 20, "num_workers" : 0, "observation_filter" : "MeanStdFilter", "sgd_minibatch_size" : 1000, "train_batch_size" : 25000}
json_instruct
{"type": "object", "properties": {"batch_mode": {"type": "string"}, "env": {"type": "string"}, "env_config": {"type": "object", "properties": {"env_type": {"type": "string"}}, "required": ["env_type"]}, "gamma": {"type": "number"}, "kl_coeff": {"type": "number"}, "lr": {"type": "number"}, "model": {"type": "object", "properties": {"free_log_std": {"type": "boolean"}}, "required": ["free_log_std"]}, "num_gpus": {"type": "integer"}, "num_sgd_iter": {"type": "integer"}, "num_workers": {"type": "integer"}, "observation_filter": {"type": "string"}, "sgd_minibatch_size": {"type": "integer"}, "train_batch_size": {"type": "integer"}}, "required": ["batch_mode", "env", "env_config", "gamma", "kl_coeff", "lr", "model", "num_gpus", "num_sgd_iter", "num_workers", "observation_filter", "sgd_minibatch_size", "train_batch_size"], "$schema": "http://json-schema.org/draft-07/schema#"}