input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "in...
{"lastUpdated" : 1655019279666, "username" : "bertday4", "scores" : [{"xp" : 8012, "rank" : 338, "cardId" : 539}, {"xp" : 9542, "rank" : 84, "cardId" : 660}, {"xp" : 9246, "rank" : 392, "cardId" : 479}, {"xp" : 13971, "rank" : 169, "cardId" : 740}, {"xp" : 15101, "rank" : 362, "cardId" : 221}, {"xp" : 41649, "rank" : 3...
json_instruct
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["last...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"banner_alt": {"type": "string"}, "app_store": {"type": "string"}, "search_apps": {"type": "string"}, "search_games": {"type": "string"}, "search_movies_and_tv": {"type": "string"}, "search_books": {"type": "string"}, "apps"...
{"banner_alt" : "Banner alt text", "app_store" : "App store", "search_apps" : "Search apps", "search_games" : "Search games", "search_movies_and_tv" : "Search movies & TV", "search_books" : "Search books", "apps" : "Apps", "games" : "Games", "movies_and_tv" : "Movies & TV", "books" : "Books", "top_rated" : "Top rated",...
json_instruct
{"type": "object", "properties": {"banner_alt": {"type": "string"}, "app_store": {"type": "string"}, "search_apps": {"type": "string"}, "search_games": {"type": "string"}, "search_movies_and_tv": {"type": "string"}, "search_books": {"type": "string"}, "apps": {"type": "string"}, "games": {"type": "string"}, "movies_and...
Based on the schema below, produce a valid JSON object: {"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/sche...
[{"year" : 1956, "sex" : "F", "n" : 5, "prop" : 2.43e-06}, {"year" : 1958, "sex" : "F", "n" : 5, "prop" : 2.42e-06}, {"year" : 1967, "sex" : "F", "n" : 15, "prop" : 8.74e-06}, {"year" : 1968, "sex" : "F", "n" : 14, "prop" : 8.19e-06}, {"year" : 1969, "sex" : "F", "n" : 10, "prop" : 5.67e-06}, {"year" : 1970, "sex" : "F...
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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"IDSTORE": {"type": "string"}, "MERCHANT": {"type": "string"}, "MERCHANTCODE": {"type": "string"}, "CHECKOUT_BUTTON": {"type": "object", "properties": {"class": {"type": "string"}, "text": {"type": "string"}}, "requi...
{"IDSTORE" : "0000", "MERCHANT" : "0000000000000000000000000000", "MERCHANTCODE" : "1a1a1a1a1a1-2b2b-3c3c-4d4d-5c5c5c5c5c5", "CHECKOUT_BUTTON" : {"class" : "button search-submit", "text" : "Proceed to Checkout"}, "CONF" : {"PAGINATION_PRODUCTS" : {"VALUE" : "TRUE", "ID_DIV_PAGINACION" : ".product-list"}, "PRODUCT_TYPE_...
json_instruct
{"type": "object", "properties": {"IDSTORE": {"type": "string"}, "MERCHANT": {"type": "string"}, "MERCHANTCODE": {"type": "string"}, "CHECKOUT_BUTTON": {"type": "object", "properties": {"class": {"type": "string"}, "text": {"type": "string"}}, "required": ["class", "text"]}, "CONF": {"type": "object", "properties": {"P...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"connector.class": {"type": "string"}, "connection.url": {"type": "string"}, "topics": {"type": "string"}, "key.converter": {"type": "string"}, "key.converter.schema.registry.url": {"type": "string"}, "key.converter.e...
{"connector.class" : "io.confluent.connect.jdbc.JdbcSinkConnector", "connection.url" : "jdbc:postgresql://postgres:5432/db_user", "topics" : "test01", "key.converter" : "org.apache.kafka.connect.storage.StringConverter", "key.converter.schema.registry.url" : "http://schema:8081", "key.converter.enhanced.avro.schema.sup...
json_instruct
{"type": "object", "properties": {"connector.class": {"type": "string"}, "connection.url": {"type": "string"}, "topics": {"type": "string"}, "key.converter": {"type": "string"}, "key.converter.schema.registry.url": {"type": "string"}, "key.converter.enhanced.avro.schema.support": {"type": "boolean"}, "value.converter":...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "locati...
{"id" : 6798, "title" : ["[Wehntoph, Cave]"], "description" : ["A natural cave has formed in the hillside, providing shelter from the elements and a convenient resting place. Drawings mar the walls, clear evidence that others have been here before you."], "paths" : ["Obvious paths: northeast"], "location" : "the north...
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": {"6791":...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bcryptjs": {"type": "string"}, "cors": {"type": "strin...
{"name" : "codersmarket-nodejs-api", "version" : "1.0.0", "description" : "An api-based application focused on analyzing the main aspects of a REST API using express", "main" : "src/index.js", "dependencies" : {"bcryptjs" : "^2.4.3", "cors" : "^2.8.5", "dotenv" : "^10.0.0", "express" : "^4.17.1", "express-async-errors"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bcryptjs": {"type": "string"}, "cors": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "str...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "min_rarity": {"type": "integer"}, "max_rarity": {"type": "integer"}, "two_pc": {"type": "string"}, "four_pc": {"type": "string"}, "goblet": {"type": "object", "p...
{"id" : "thundersoother", "name" : "Thundersoother", "min_rarity" : 4, "max_rarity" : 5, "two_pc" : "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e04\u0e27\u0e32\u0e21\u0e15\u0e49\u0e32\u0e19\u0e17\u0e32\u0e19\u0e18\u0e32\u0e15\u0e38\u0e44\u0e1f\u0e1f\u0e49\u0e32\u0e02\u0e36\u0e49\u0e19 40%", "four_pc" : "\u0e2a\u0e23\u0e49\u0e32\...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "min_rarity": {"type": "integer"}, "max_rarity": {"type": "integer"}, "two_pc": {"type": "string"}, "four_pc": {"type": "string"}, "goblet": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "de...
Based on the schema below, produce a valid JSON object: {"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"}, "i...
{"categories" : ["Uncategorized"], "desc" : " This is a beginner\u2019s guide with clear step-by-step instructions, explanations, and advice. Each concept is illustrated with a complete example that you can use as a starting point for your own work. If you are an engineer, scientist, mathematician, or student, this boo...
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"},...
Based on the schema below, produce a valid JSON object: {"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...
{"id" : 2026, "name" : "Website: cleaner - www.computerwoche.de", "description" : "The website of the german it-magazin Computerwoche without banner-ads.", "user" : {"id" : 760, "name" : "xwolf", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "updated" : "2007-03-21T0...
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...
Please provide a valid JSON object following 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"}, ...
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Badlan Grande, Calinog, Iloilo, Western Visayas (Region VI), PH", "locale" : "ph.western-visayas-region-vi.iloilo.calinog.badlan-grande", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "16",...
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": {...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "type": {"type": "string"}, "mirrored": {"type": "boolean"}, "pattern": {"type": "array", "items": {"type": "stri...
{"result" : {"item" : "powersuits:blink_drive"}, "type" : "minecraft:crafting_shaped", "mirrored" : true, "pattern" : ["COC", "MPM", "NON"], "key" : {"P" : {"item" : "numina:component_control_circuit"}, "C" : {"item" : "numina:component_computer_chip"}, "M" : {"item" : "numina:component_field_emitter"}, "N" : {"item" :...
json_instruct
{"type": "object", "properties": {"result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "type": {"type": "string"}, "mirrored": {"type": "boolean"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"P": {"type": "object", "prop...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"generate_keys_arguments_decorator": {"type": "object", "properties": {"num_validators": {"type": "object", "properties": {"help": {"type": "string"}, "prompt": {"type": "string"}}, "required": ["help", "prompt"]}, "chain": {"t...
{"generate_keys_arguments_decorator" : {"num_validators" : {"help" : "\u60a8\u60f3\u8981\u751f\u6210\u7684\u9a8c\u8bc1\u8005\u5bc6\u94a5\u6570\u91cf\uff08\u60a8\u4ee5\u540e\u968f\u65f6\u53ef\u4ee5\u751f\u6210\u66f4\u591a\u5bc6\u94a5\uff09", "prompt" : "\u8bf7\u9009\u62e9\u60a8\u60f3\u8981\u8fd0\u884c\u591a\u5c11\u9a8c\...
json_instruct
{"type": "object", "properties": {"generate_keys_arguments_decorator": {"type": "object", "properties": {"num_validators": {"type": "object", "properties": {"help": {"type": "string"}, "prompt": {"type": "string"}}, "required": ["help", "prompt"]}, "chain": {"type": "object", "properties": {"help": {"type": "string"}, ...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"title": {"type": "object", "properties": {"zh": {"type": "string"}, "en": {"type": "string"}}, "required": ["zh", "en"]}, "demos": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": ...
{"title" : {"zh" : "\u4e2d\u6587\u5206\u7c7b", "en" : "Category"}, "demos" : [{"filename" : "multiEdges.js", "title" : {"zh" : "\u4e24\u8282\u70b9\u95f4\u5b58\u5728\u591a\u6761\u8fb9", "en" : "Multiple Edges Between 2 Nodes"}, "screenshot" : "https://gw.alipayobjects.com/mdn/rms_f8c6a0/afts/img/A*g2p_Qa_wZcIAAAAAAAAAAA...
json_instruct
{"type": "object", "properties": {"title": {"type": "object", "properties": {"zh": {"type": "string"}, "en": {"type": "string"}}, "required": ["zh", "en"]}, "demos": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "title": {"type": "object", "properties": {"zh": {"type": "st...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"tasks": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}}, "required": ["tasks", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"tasks" : ["sls-src-queue-queue", "sls-test-queue-queue"], "description" : "Manage files for SQS finite state machine using aws-sdk-wrap."}
json_instruct
{"type": "object", "properties": {"tasks": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}}, "required": ["tasks", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "stri...
{"body" : "Hi Zack,\n\n\nI have to admit that calling it 2.5-phase was a bit tounge-in-cheek of \nme. All those different phases keep confusing the living daylight out \nof me, and by reading the posts on this list, others see to share \nsimilar sentiment.\n\n\nAnyhow, and I'm glad you pointed this out. My intention w...
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "filename": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "reposito...
{"name" : "background-check", "filename" : "background-check.min.js", "description" : "Automatically switch to a darker or a lighter version of an element depending on the brightness of images behind it.", "homepage" : "http://www.kennethcachia.com/background-check/", "keywords" : ["background", "check"], "license" : "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "filename": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "st...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"angular-local-storage.js": {"type": "string"}, "angular-local-storage.min.js": {"type": "string"}}, "required": ["angular-local-storage.js", "angular-local-storage.min.js"], "$schema": "http://json-schema.org...
{"angular-local-storage.js" : "sha512-dIqpeFnHS4NjW/s9r6QgjjEB+pbQixB32SE2b508zCn8HiFWYqQfTA+tm0L4gP4fDw7Q4GM+6BPIAPQ70DmEsQ==", "angular-local-storage.min.js" : "sha512-zl/F4VC3QQYoySDzHn+tghxBcQu+GZxNJZzn6dd9ot5xely+fAgA6EtvQ6+2cxVZ6e+M0EAKAMsKCs3UMCCrTg=="}
json_instruct
{"type": "object", "properties": {"angular-local-storage.js": {"type": "string"}, "angular-local-storage.min.js": {"type": "string"}}, "required": ["angular-local-storage.js", "angular-local-storage.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"subreddit" : "blackcock", "author" : "tmx1000", "count" : 14}
json_instruct
{"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "relative": {"type": "object", "proper...
{"builtin" : {"__set__" : true, "elements" : ["__future__", "argparse", "glob", "imp", "os", "re", "sys", "time"]}, "relative" : {"__set__" : true, "elements" : ["common", "exceptions", "parser", "rfkeyword", "rflint", "tables", "testcase", "util", "version"]}, "required" : {"__set__" : true, "elements" : ["rflint", "r...
json_instruct
{"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "relative": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "i...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"downlevelIteration": {"type": "boolean"}, "importHelpers": {"type": "boolean"}, "incremental": {"type": "boolean"}, "removeComment...
{"extends" : "@tsconfig/recommended/tsconfig.json", "compilerOptions" : {"downlevelIteration" : true, "importHelpers" : true, "incremental" : true, "removeComments" : true, "resolveJsonModule" : true, "rootDir" : "src", "useUnknownInCatchVariables" : false}, "exclude" : ["test/"]}
json_instruct
{"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"downlevelIteration": {"type": "boolean"}, "importHelpers": {"type": "boolean"}, "incremental": {"type": "boolean"}, "removeComments": {"type": "boolean"}, "resolveJsonModule": {"type": "boolean"}, "roo...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"listing_id": {"type": "integer"}, "id": {"type": "integer"}, "date": {"type": "string"}, "reviewer_id": {"type": "integer"}, "reviewer_name": {"type": "string"}, "text": {"type": "string"}, "title": {"type": ...
{"listing_id" : 141550, "id" : 5060435, "date" : "2013-06-10", "reviewer_id" : 3667100, "reviewer_name" : "Blaire", "text" : "Fiona's place was perfectly sized for one, with ample living area and closet space, and comfortable air conditioning and window shades to keep everything cool during the day. There wasn't a hair...
json_instruct
{"type": "object", "properties": {"listing_id": {"type": "integer"}, "id": {"type": "integer"}, "date": {"type": "string"}, "reviewer_id": {"type": "integer"}, "reviewer_name": {"type": "string"}, "text": {"type": "string"}, "title": {"type": "string"}, "host_id": {"type": "integer"}, "listing_latitude": {"type": "numb...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "env": {"type": "object", "properties": {}, "required": []}, "formation": {"type": "object", "properties": {}, "required": []}, "addon...
{"name" : "number8", "scripts" : {}, "env" : {}, "formation" : {}, "addons" : [], "buildpacks" : [{"url" : "https://elements.heroku.com/buildpacks/heroku/heroku-buildpack-php"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "env": {"type": "object", "properties": {}, "required": []}, "formation": {"type": "object", "properties": {}, "required": []}, "addons": {"type": "array", "items": {}}, "buildpacks": {"type": ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", ...
{"id" : "2017", "provinceId" : "13", "regencyId" : "01", "districtId" : "05", "name" : "Bukik Kaciak Lumpo"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"ty...
{"name" : "react-native-shapes", "version" : "0.1.0", "description" : "A collection of simple shapes built with CSS for use as icons, buttons, graphics, etc..", "license" : "MIT", "author" : "Michael Lefkowitz <lefkowitz.michael@gmail.com>", "repository" : {"type" : "git", "url" : "https://github.com/lfkwtz/react-nativ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"recommendations": {"type": "array", "items": {"type": "string"}}}, "required": ["recommendations"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"recommendations" : ["rokucommunity.brightscript"]}
json_instruct
{"type": "object", "properties": {"recommendations": {"type": "array", "items": {"type": "string"}}}, "required": ["recommendations"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1994, 5], [1998, 5], [2003, 5], [2004, 9], [2005, 9], [2006, 8]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id_3281": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "reade...
{"id_3281" : {"title" : "By Pond and River", "language" : "English", "totaltime" : "0:48:29", "url_librivox" : "http://librivox.org/by-pond-and-river-by-arabella-b-buckley/", "url_iarchive" : "http://www.archive.org/details/by_pond_and_river_0907_librivox", "readers" : ["1841"], "authors" : "4219", "genres" : "Children...
json_instruct
{"type": "object", "properties": {"id_3281": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"typ...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id_0320": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_0320"], "$schema": "http://json-schema.org/draft-07/schema#...
{"id_0320" : {"publicdate" : "2006-10-22 14:41:50", "title" : "Denslow's Three Bears"}}
json_instruct
{"type": "object", "properties": {"id_0320": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_0320"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "Address...
{"IsRecentlyVerified" : false, "ID" : 153393, "UUID" : "88DD18ED-07B1-4490-A5E4-0176A7BE8EC5", "DataProviderID" : 28, "DataProvidersReference" : "FR*S89*P89076*A", "UsageTypeID" : 5, "AddressInfo" : {"ID" : 153746, "Title" : "CHAMPLOST_Route De Paris", "AddressLine1" : "Route De Paris 89210 CHAMPLOST", "CountryID" : 80...
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "in...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"(0, 0, 2)": {"type": "string"}, "(1, 0, 1)": {"type": "string"}, "(1, 1, 1)": {"type": "string"}, "(2, 0, 1)": {"type": "string"}, "(2, 1, 1)": {"type": "string"}, "(3, 0, 1)": {"type": "string"}, "(3, 1, 1)": {"typ...
{"(0, 0, 2)" : "Fitz and The Tantrums", "(1, 0, 1)" : "Also known as", "(1, 1, 1)" : "Fitz & The Tantrums", "(2, 0, 1)" : "Origin", "(2, 1, 1)" : "Los Angeles, California, U.S.", "(3, 0, 1)" : "Genres", "(3, 1, 1)" : "Indie pop", "(3, 2, 1)" : "neo soul", "(4, 0, 1)" : "Years active", "(4, 1, 1)" : "2008-present", "(5,...
json_instruct
{"type": "object", "properties": {"(0, 0, 2)": {"type": "string"}, "(1, 0, 1)": {"type": "string"}, "(1, 1, 1)": {"type": "string"}, "(2, 0, 1)": {"type": "string"}, "(2, 1, 1)": {"type": "string"}, "(3, 0, 1)": {"type": "string"}, "(3, 1, 1)": {"type": "string"}, "(3, 2, 1)": {"type": "string"}, "(4, 0, 1)": {"type": ...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"brief" : "holiness", "long" : "holiness, sanctity, as an abstract quality."}
json_instruct
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "propert...
{"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" : {"zulinovaboroda" : {"title" : "ZulinovaBoroda", "channel_id" : 139965515, "link...
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": {"zulinovaboroda": {"type": "object", "properties": {"title": {...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"hashlips_art_engine": {"type": "string"}}, "required": ["has...
{"name" : "hashlips_art_engine", "version" : "1.0.9", "description" : "HashLips Art Engine is a tool used to create multiple different instances of artworks based on provided layers.", "main" : "index.js", "bin" : {"hashlips_art_engine" : "index.js"}, "pkg" : {"assets" : ["layers/**/*", "node_modules/**/*", "src/**/*"]...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"hashlips_art_engine": {"type": "string"}}, "required": ["hashlips_art_engine"]}, "pkg": {"type": "object", "properties": {...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"cross": {"type": "string"}}, "required": ["cross"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/sch...
{"parent" : "minecraft:block/cross", "textures" : {"cross" : "block/cyan_amaranth"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"cross": {"type": "string"}}, "required": ["cross"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "emailauthorization-config-label-username": {"type": "string"}}, "required": ["@metadata", "em...
{"@metadata" : {"authors" : ["ToJack"]}, "emailauthorization-config-label-username" : "\u041d\u043e\u043c\u0438 \u043a\u043e\u0440\u0431\u0430\u0440"}
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "emailauthorization-config-label-username": {"type": "string"}}, "required": ["@metadata", "emailauthorization-config-label-username"], "$schema": "http:...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "full_name": {"type": "string"}, "owner": {"type": "object", "properties": {"login": {"type": "string"}, "id": {"type": "intege...
[{"id" : 231370688, "name" : "CVE-2019-18890", "full_name" : "RealLinkers/CVE-2019-18890", "owner" : {"login" : "RealLinkers", "id" : 22389074, "avatar_url" : "https://avatars.githubusercontent.com/u/22389074?v=4", "html_url" : "https://github.com/RealLinkers"}, "html_url" : "https://github.com/RealLinkers/CVE-2019-188...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "full_name": {"type": "string"}, "owner": {"type": "object", "properties": {"login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "html_url": {"type": "string"}}, "requ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"FeatureEventName": {"type": "string"}, "EventImage": {"type": "string"}, "EventDate": {"type": "object", "properties": {"Date": {"type": "string"}, "Month": {"type": "string"}, "Year": {"type": "string"}}, "r...
{"FeatureEventName" : "DevFest Makurdi 2019 ", "EventImage" : "hero.gif", "EventDate" : {"Date" : "26", "Month" : "10", "Year" : "2019"}, "EventTime" : {"StartTime" : "09:30 AM", "EndTime" : ""}, "EventVenue" : "HealthyWays Kitchen and Grill, Is inside the same compound as HealthyWays Gym and Spa, Emmanual Mande Close,...
json_instruct
{"type": "object", "properties": {"FeatureEventName": {"type": "string"}, "EventImage": {"type": "string"}, "EventDate": {"type": "object", "properties": {"Date": {"type": "string"}, "Month": {"type": "string"}, "Year": {"type": "string"}}, "required": ["Date", "Month", "Year"]}, "EventTime": {"type": "object", "proper...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}}, "required": ["id", "name", "email"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 1, "name" : "Rick", "email" : "rick@gmail.com"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}}, "required": ["id", "name", "email"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"314781": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["314781"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"314781" : {"success" : false}}
json_instruct
{"type": "object", "properties": {"314781": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["314781"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "...
{"name" : "@jest-runner/nuclide-e2e", "version" : "1.0.0", "description" : "Jest runner that spawns atom/electron workers instead of node", "author" : "Aaron Abramov", "license" : "MIT", "homepage" : "https://github.com/facebook-atom/jest-electron-runner", "repository" : "https://github.com/facebook-atom/jest-electron-...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@jest-runner/c...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"public": {"type": "object", "properties": {"plans": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "amount": {"type": "object", "properties": {"cents": {"type": "integer"}, "usd": {"type...
{"public" : {"plans" : [{"name" : "tiny", "amount" : {"cents" : 500, "usd" : "$5"}, "limit" : 1, "interval" : "month"}, {"name" : "small", "amount" : {"cents" : 1000, "usd" : "$10"}, "limit" : 5, "interval" : "month"}, {"name" : "medium", "amount" : {"cents" : 1500, "usd" : "$15"}, "limit" : 10, "interval" : "month"}, ...
json_instruct
{"type": "object", "properties": {"public": {"type": "object", "properties": {"plans": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "amount": {"type": "object", "properties": {"cents": {"type": "integer"}, "usd": {"type": "string"}}, "required": ["cents", "usd"]}, "limit": {"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Frame": {"type": "array", "items": {"type": "object", "properties": {"NAME": {"type": "string"}, "x": {"type": "number"}, "y": {"type": "number"}, "score": {"type": "number"}}, "required": ["NAME", "x", "y", "score"]}}}, "requ...
{"Frame" : [{"NAME" : "NOSE", "x" : 425.3087158203125, "y" : 224.30044555664062, "score" : 0.9150804877281189}, {"NAME" : "LEFT_EYE", "x" : 436.02783203125, "y" : 215.12037658691406, "score" : 0.918644905090332}, {"NAME" : "RIGHT_EYE", "x" : 415.38079833984375, "y" : 215.6085662841797, "score" : 0.8984145522117615}, {"...
json_instruct
{"type": "object", "properties": {"Frame": {"type": "array", "items": {"type": "object", "properties": {"NAME": {"type": "string"}, "x": {"type": "number"}, "y": {"type": "number"}, "score": {"type": "number"}}, "required": ["NAME", "x", "y", "score"]}}}, "required": ["Frame"], "$schema": "http://json-schema.org/draft-...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id"...
{"id" : 1343488335, "type" : "Feature", "properties" : {"src:alt_label" : "geonames", "src:geom" : "geonames", "wof:geomhash" : "e3f3827cb539a8dd861ed1f370d39bb3", "wof:id" : 1343488335, "wof:repo" : "whosonfirst-data-admin-gb"}, "bbox" : [0.4, 50.9, 0.4, 50.9], "geometry" : {"coordinates" : [0.4, 50.9], "type" : "Poin...
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": ["...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}},...
{"name" : "matscha", "version" : "1.0.0", "description" : "JS/TS Ast matching tool", "main" : "index.js", "scripts" : {"build" : "tsc", "test" : "jest"}, "author" : "rkirov@gmail.com", "license" : "Apache2", "dependencies" : {"@types/jest" : "^25.1.1", "@types/node" : "^13.7.0", "typescript" : "^3.7.5"}, "devDependenci...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "test"]}, "author": {"type": "string"},...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"accuracy": {"type": "array", "items": {"type": "number"}}, "loss": {"type": "array", "items": {"type": "number"}}, "val_accuracy": {"type": "array", "items": {"type": "number"}}, "val_loss": {"type": "array", "items...
{"accuracy" : [0.8915154337882996, 0.9928290247917175, 0.9975568056106567, 0.9999682903289795, 1.0, 0.9923213720321655, 0.998096227645874], "loss" : [0.33688703179359436, 0.026131458580493927, 0.008700976148247719, 0.00037192966556176543, 0.00012174712173873559, 0.024624459445476532, 0.005865458399057388], "val_accurac...
json_instruct
{"type": "object", "properties": {"accuracy": {"type": "array", "items": {"type": "number"}}, "loss": {"type": "array", "items": {"type": "number"}}, "val_accuracy": {"type": "array", "items": {"type": "number"}}, "val_loss": {"type": "array", "items": {"type": "number"}}}, "required": ["accuracy", "loss", "val_accurac...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"serve": {"type": "s...
{"name" : "auth-app-sdk", "version" : "1.0.0", "description" : "integrate auth into your app", "type" : "module", "main" : "index.js", "scripts" : {"serve" : "http-server src/ -p 8081"}, "repository" : {"type" : "git", "url" : "git+https://github.com/webformula/auth-app-sdk.git"}, "author" : "", "license" : "ISC", "bug...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"serve": {"type": "string"}}, "required": ["serve"]}, "repository": {"type": "object", "pro...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "adorn:block/byg/palm_coffee_table"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"pci_projects_project_instances_instance_shelve_title": {"type": "string"}, "pci_projects_project_instances_instance_shelve_submit_label": {"type": "string"}, "pci_projects_project_instances_instance_shelve_cancel_l...
{"pci_projects_project_instances_instance_shelve_title" : "Suspension de votre instance", "pci_projects_project_instances_instance_shelve_submit_label" : "Confirmer", "pci_projects_project_instances_instance_shelve_cancel_label" : "Annuler", "pci_projects_project_instances_instance_shelve_content" : "Vous allez suspend...
json_instruct
{"type": "object", "properties": {"pci_projects_project_instances_instance_shelve_title": {"type": "string"}, "pci_projects_project_instances_instance_shelve_submit_label": {"type": "string"}, "pci_projects_project_instances_instance_shelve_cancel_label": {"type": "string"}, "pci_projects_project_instances_instance_she...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id...
{"type" : "Feature", "properties" : {"name" : "Tartus", "iso2" : "SY-TA", "admin_level" : 4, "osm_id" : 184882, "wikidata_id" : "Q232382", "wikipedia_id" : "ar:\u0645\u062d\u0627\u0641\u0638\u0629 \u0637\u0631\u0637\u0648\u0633", "population" : 797000, "countrylevel_id" : "iso2:SY-TA", "osm_data" : {"localname" : "\u06...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}, "population": {"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "private": {"type": "boolean"}, "devDep...
{"name" : "gulp-boilerplate", "version" : "1.0.0", "description" : "A simple boilerplate for client-side web projects.", "author" : "Philipp Naderer <philipp.naderer@orf.at>", "contributors" : ["Robert Gaggl, (http://dev.ORF.at/)", "Simon Oberhammer, (http://dev.ORF.at/)", "Ernst Beiglboeck, (http://dev.ORF.at/)"], "pr...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"babel-preset...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"level": {"type": "object", "properties": {"objects": {"type": "object", "properties": {"ExitDoor": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "Hero":...
{"level" : {"objects" : {"ExitDoor" : {"x" : "422", "y" : "404"}, "Hero" : {"x" : "90", "y" : "430"}, "KeyObj" : {"x" : "38", "y" : "394"}, "Stone" : [{"x" : "273", "y" : "384"}, {"x" : "273", "y" : "400"}, {"x" : "273", "y" : "416"}, {"x" : "303", "y" : "416"}, {"x" : "303", "y" : "400"}, {"x" : "303", "y" : "384"}, {...
json_instruct
{"type": "object", "properties": {"level": {"type": "object", "properties": {"objects": {"type": "object", "properties": {"ExitDoor": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}}, "required": ["x", "y"]}, "Hero": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"ty...
Generate a valid JSON object that conforms to the following schema: {"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": ...
{"votes" : {"diff" : 2815, "dem" : 882, "tot" : 4734, "gop" : 3697}, "for" : "OK/Haskell County/40061", "pct" : {"dem" : 18.63, "per_point_diff" : 59.46, "gop" : 78.09}}
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": "...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "str...
{"name" : "tilegrinder", "version" : "0.1.3", "description" : "Easily alter all vector tiles in an MBTiles file", "main" : "index.js", "scripts" : {"start" : "echo \"Error: sorry, this is not a standalone app\" && exit 1", "test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "repository": {"type": "objec...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "str...
{"name" : "antarctica/laravel-base-exceptions", "description" : "A set of base exceptions for Laravel applications", "type" : "library", "license" : "MIT", "authors" : [{"name" : "Felix Fennell", "email" : "felnne@bas.ac.uk"}], "require" : {"php" : ">=5.4.0"}, "require-dev" : {"symfony/http-kernel" : "2.5.*"}, "autoloa...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"entity": {"type": "string"}, "links": {"type": "array", "items": {"type": "string"}}, "month": {"type": "integer"}, "summary": {"type": "string"}, "tags": {"type": "object", "properties": {"actor": {"type": "string"}, "cost-us...
{"entity" : "Finastra", "links" : ["https://krebsonsecurity.com/2020/03/security-breach-disrupts-fintech-firm-finastra/", "https://www.securityweek.com/hackers-target-uk-fintech-company-finastra"], "month" : 3, "summary" : "Finastra, a company that provides a range of technology solutions to banks worldwide, said it wa...
json_instruct
{"type": "object", "properties": {"entity": {"type": "string"}, "links": {"type": "array", "items": {"type": "string"}}, "month": {"type": "integer"}, "summary": {"type": "string"}, "tags": {"type": "object", "properties": {"actor": {"type": "string"}, "cost-usd": {"type": "integer"}, "impacted-user-count": {"type": "i...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"connection": {"type": "object", "properties": {"address": {"type": "string"}, "database": {"type": "string"}, "databasetype": {"type": "string"}, "password": {"type": "string"}, "port": {"type": "string"}, "sch...
{"connection" : {"address" : "localhost", "database" : "infviewer", "databasetype" : "MongoDB", "password" : "rvs1992", "port" : "27001", "schema" : "", "username" : "", "connectionName" : "NoSQL-1"}, "collection" : [{"code" : "offer", "name" : "Offer"}, {"code" : "order", "name" : "Order"}, {"code" : "HOTEL", "name" :...
json_instruct
{"type": "object", "properties": {"connection": {"type": "object", "properties": {"address": {"type": "string"}, "database": {"type": "string"}, "databasetype": {"type": "string"}, "password": {"type": "string"}, "port": {"type": "string"}, "schema": {"type": "string"}, "username": {"type": "string"}, "connectionName":...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "rankine:block/weeping_willow_wood"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"$id": {"type": "string"}, "definitions": {"type": "object", "properties": {"unitRank": {"type": "object", "properties": {"enum": {"type": "array", "items": {"type": "string"}}}, "required": ["enum"]}}, "required": ["unitRank"]}}...
{"$id" : "http://www.legiondice.com/schemas/unitrank", "definitions" : {"unitRank" : {"enum" : ["commander", "operative", "corps", "specialForces", "support", "heavy"]}}}
json_instruct
{"type": "object", "properties": {"$id": {"type": "string"}, "definitions": {"type": "object", "properties": {"unitRank": {"type": "object", "properties": {"enum": {"type": "array", "items": {"type": "string"}}}, "required": ["enum"]}}, "required": ["unitRank"]}}, "required": ["$id", "definitions"], "$schema": "http://...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "preclusion": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", ...
{"courseCode" : "SWD5285", "courseCredit" : "4", "description" : "The issues and philosophies of various rehabilitation and treatment programmes in criminal and juvenile justice and other rehabilitative contexts will be examined in this module. Application of techniques and concepts for the local context will be emphas...
json_instruct
{"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "preclusion": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "preclusion", "ti...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "code-of-conduct": {"type": "string"}, "location": {"type": "object", "properties": {"coordinates": {"type": "object", "properties": {"lat": {"type": "number"}, "...
{"name" : "Codefreeze", "url" : "https://www.codefreeze.fi/", "code-of-conduct" : "https://codefreeze.fi/#code-of-conduct", "location" : {"coordinates" : {"lat" : 68.3752, "lng" : 27.4315}}, "next-date" : {"start" : "2022-01-09", "end" : "2022-01-16"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "code-of-conduct": {"type": "string"}, "location": {"type": "object", "properties": {"coordinates": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}, "required": ...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["basic-authentication", "express-sitemap", "server-signature", "supergiovane", "top-vhost"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Bytes": {"type": "integer"}, "Lines": {"type": "integer"}, "Code": {"type": "integer"}, "Comment": {"type": "integer"}, "Blank": {"type": "integer"}, "Complexity": {"ty...
[{"Name" : "gitignore", "Bytes" : 0, "Lines" : 1, "Code" : 1, "Comment" : 0, "Blank" : 0, "Complexity" : 0, "Count" : 1, "WeightedComplexity" : 0, "Files" : [{"Language" : "gitignore", "PossibleLanguages" : ["gitignore"], "Filename" : ".gitignore", "Extension" : "", "Location" : "/tmp/scc-tmp-path-23930/.gitignore", "C...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Bytes": {"type": "integer"}, "Lines": {"type": "integer"}, "Code": {"type": "integer"}, "Comment": {"type": "integer"}, "Blank": {"type": "integer"}, "Complexity": {"type": "integer"}, "Count": {"type": "integer"}, "WeightedComple...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draf...
{"id" : "170702021004", "variable1" : 0.2357, "variable2" : 0.6686, "variable3" : "A"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "minimumCoreVersion": {"type": "string"}, "compatibleCoreVersion": {"type": ...
{"name" : "UEST-5e-Conversion", "title" : "Unofficial UESTRPG 5th edition conversion", "description" : "A conversion for the unofficial elder scrolls tabletop rpg ", "version" : "0.1.4", "author" : "Michael Tendy", "minimumCoreVersion" : "0.8.6", "compatibleCoreVersion" : "0.8.9", "system" : ["dnd5e"], "packs" : [{"nam...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "minimumCoreVersion": {"type": "string"}, "compatibleCoreVersion": {"type": "string"}, "system": {"type": "array", "items": {"type": ...
Create a JSON structure that matches this schema definition: {"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...
[{"year" : 2002, "sex" : "F", "n" : 5, "prop" : 2.53e-06}, {"year" : 2011, "sex" : "F", "n" : 5, "prop" : 2.58e-06}, {"year" : 2012, "sex" : "F", "n" : 14, "prop" : 7.23e-06}, {"year" : 2013, "sex" : "F", "n" : 61, "prop" : 0}, {"year" : 2014, "sex" : "F", "n" : 79, "prop" : 0}, {"year" : 2015, "sex" : "F", "n" : 23, "...
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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"images": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "idiom": {"type": "string"}, "scale": {"type": "string"}, "size": {"type": "string"}}, "required": ["filename", "...
{"images" : [{"filename" : "round_invert_colors_black_36pt_1x.png", "idiom" : "universal", "scale" : "1x", "size" : "36x36"}, {"filename" : "round_invert_colors_black_36pt_2x.png", "idiom" : "universal", "scale" : "2x", "size" : "36x36"}, {"filename" : "round_invert_colors_black_36pt_3x.png", "idiom" : "universal", "sc...
json_instruct
{"type": "object", "properties": {"images": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "idiom": {"type": "string"}, "scale": {"type": "string"}, "size": {"type": "string"}}, "required": ["filename", "idiom", "scale", "size"]}}, "info": {"type": "object", "properties": {...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"avif": {"type": "array", "items": {"type": "object", "properties": {"format": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "url": {"type": "string"}, "sourceType": {"type": "stri...
{"avif" : [{"format" : "avif", "width" : 90, "height" : 90, "url" : "/img/avatars/twitter/CM4jgVQYES-90.avif", "sourceType" : "image/avif", "srcset" : "/img/avatars/twitter/CM4jgVQYES-90.avif 90w", "filename" : "CM4jgVQYES-90.avif", "outputPath" : "src/img/avatars/twitter/CM4jgVQYES-90.avif", "size" : 830}], "webp" : [...
json_instruct
{"type": "object", "properties": {"avif": {"type": "array", "items": {"type": "object", "properties": {"format": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "url": {"type": "string"}, "sourceType": {"type": "string"}, "srcset": {"type": "string"}, "filename": {"type": "string"}, "ou...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "endpoints": {"type": "object", "properties": {"sms": {"type": "object", "properties": {"delivery_class": {"type": "string"}}, "required": ["delivery_class"]}}, "required": ["sms"]}, "usha...
{"name" : "di_ussd_4729_3_live_app", "endpoints" : {"sms" : {"delivery_class" : "sms"}}, "ushahidi_map" : "https://godi.crowdmap.com/api", "kv_group" : "di_live_app", "channel" : "*120*4729*3#", "display_results_date" : "15 April, 2014", "bypass_address" : "true", "quiz" : "endlinesurveyquiz"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "endpoints": {"type": "object", "properties": {"sms": {"type": "object", "properties": {"delivery_class": {"type": "string"}}, "required": ["delivery_class"]}}, "required": ["sms"]}, "ushahidi_map": {"type": "string"}, "kv_group": {"type": "string"}, "channe...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "511325103001", "text" : "\u60dc\u5b57\u5854\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "511325103002", "text" : "\u534e\u5149\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "511325103202", "text" : "\u9a6c\u5eb8\u5bfa\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "511325103204", "text" : "\u7...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}...
{"h" : [{"d" : [{"f" : "\u63d2\u4e0a\u4e86\uff0c\u7d66\u63d2\u4e0a\u4e86\u3002"}, {"f" : "\u6307\u63d2\u6771\u897f\u7684\u4eba\u3002"}]}], "stem" : "conek", "t" : "paconekay"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"],...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "i...
{"status" : 200, "data" : {"totalSubs" : 14217, "subsInEachSource" : {"feedly" : 0, "inoreader" : 14000, "feedsPub" : 217}, "failedSources" : {"feedly" : "too many requests, slow down"}}, "lastModified" : 1623545136473}
json_instruct
{"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "integer"}, "feedsPub": {"type": "integer"}}, "required": ["feedly", "in...
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "429006107001", "text" : "\u5e99\u5df7\u8857\u4e00\u5c45\u59d4\u4f1a"}, {"id" : "429006107003", "text" : "\u9648\u5bb6\u5df7\u8857\u5c45\u59d4\u4f1a"}, {"id" : "429006107004", "text" : "\u91d1\u6e7e\u5c45\u59d4\u4f1a"}, {"id" : "429006107005", "text" : "\u9752\u534e\u5bfa\u5c45\u59d4\u4f1a"}, {"id" : "42900610...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["t...
{"name" : "visualize-ansi-codes", "version" : "1.0.0", "description" : "Replace ansi escape sequences with tokens indicating what they are.", "main" : "index.js", "scripts" : {"test" : "vitest"}, "keywords" : ["ansi", "color", "print", "format", "test"], "author" : "Lily Scott <me@suchipi.com>", "repository" : {"type" ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"t...
{"userId" : 89615, "cartId" : "0cba8955-e837-4b52-9444-d92eb92ca618", "preferredProducts" : [], "productReviews" : [{"productId" : 3472, "reviewText" : "This payment works really well. It sympathetically improves my baseball by a lot.", "reviewDate" : "2020-02-27T18:38:13.6849048+02:00"}, {"productId" : 4574, "reviewTe...
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "s...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"summary": {"type": "object", "properties": {"byte_size": {"type": "integer"}, "kb_size": {"type": "integer"}, "mb_size": {"type": "number"}, "collect_input": {"type": "boolean"}, "layers": {"type": "array", "...
{"summary" : {"byte_size" : 17039360, "kb_size" : 16640, "mb_size" : 16.25, "collect_input" : false, "layers" : [{"bits:" : 8, "size:" : 16777216, "byte_size:" : 16777216, "foz:" : 0.0768456, "zeros:" : 1289256, "sum:" : 968388, "min:" : 0, "max:" : 255, "mean:" : 0.0577204}, {"bits:" : 32, "size:" : 65536, "byte_size:...
json_instruct
{"type": "object", "properties": {"summary": {"type": "object", "properties": {"byte_size": {"type": "integer"}, "kb_size": {"type": "integer"}, "mb_size": {"type": "number"}, "collect_input": {"type": "boolean"}, "layers": {"type": "array", "items": {"type": "object", "properties": {"bits:": {"type": "integer"}, "size...
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": "null"}, "format": {"type": "string"}, "category":...
{"id" : 174531, "info" : {"name" : "Simple Roblox", "description" : "I will work as hard as I can to update this and make ROBLOX a very clean website that everyone can use.", "additionalInfo" : null, "format" : "uso", "category" : "global", "createdAt" : "2019-08-19T22:35:42.000Z", "updatedAt" : "2019-08-19T22:35:42.00...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[142, -360, 4837, -217, -581, -12077, 86, 35, 42, 726, -257, -96, 137, -182, -132, 8722, -113, -6121, -1107, 68, -2812, 2632, -239, -4372, -31, -7302, 1147, -11, 12198, 17161, -7, 281], [9817, 9867, 1874, 9928, 10007, 1900, 9958, 10022, 9978, 5794, 10063, 9943, 9939, 9961, 9900, 5016, 9880, 475, 10098, 10021, 1010, 26...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "questionable": {"type": "object", "properties": {"__...
{"builtin" : {"__set__" : true, "elements" : ["__future__", "argparse", "collections", "contextlib", "copy", "io", "logging", "os", "re", "signal", "subprocess", "sys", "time", "traceback", "weakref", "xml"]}, "questionable" : {"__set__" : true, "elements" : ["PyQt5", "pyyaml", "qtpy", "setproctitle"]}, "relative" : {"...
json_instruct
{"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "questionable": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array"...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"lodash": {"type": "object"...
{"name" : "demo2", "version" : "1.0.0", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"lodash" : {"version" : "4.17.15", "resolved" : "http://npm.it.q1oa.com/repository/npm-group/lodash/-/lodash-4.17.15.tgz", "integrity" : "sha1-tEf2ZwoEVbv+7dETku/zMOoJdUg="}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"lodash": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, ...
{"directions" : ["Mix the strawberries, peach, banana, watermelon, blueberries, and pineapple together in a large bowl. Drizzle the pina colada mix over the fruit; stir until evenly coated."], "ingredients" : ["6 fresh strawberries, hulled and sliced", "1 peach, sliced", "1 banana, sliced", "1/2 cup watermelon chunks",...
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "r...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type...
{"name" : "react-native-text-input-mask", "version" : "2.0.5", "description" : "Text input mask for React Native.", "main" : "dist/index.js", "typings" : "dist/index.d.ts", "repository" : {"type" : "git", "url" : "git://github.com/dmprilipko/react-native-text-input-mask.git"}, "keywords" : ["react", "native", "mask", "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]},...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"__biz": {"type": "string"}, "uin": {"type": "string"}, "key": {"type": "string"}, "pass_ticket": {"type": "string"}}, "required": ["__biz", "uin", "key", "pass_ticket"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"__biz" : "MzA5NDQ2OTcwMA==", "uin" : "ODY5MzgzODYx", "key" : "e73d18115f9204d132bc60b501ffa1842a1212b00ddb26ff875dbbe852a6c02259022250e6c744afffb287c429f8d4a9c90e2d40f5221aa881231542af5bdd43ff5400bd9e0954bbf319d0f19a9796aa", "pass_ticket" : "7KhgUrkHBffZrR2o7IGyewYIeD%2BcksGv%2FnjgvABhysjA2SImJa3yttNaFx0zjWuB"}
json_instruct
{"type": "object", "properties": {"__biz": {"type": "string"}, "uin": {"type": "string"}, "key": {"type": "string"}, "pass_ticket": {"type": "string"}}, "required": ["__biz", "uin", "key", "pass_ticket"], "$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"}, "short_name": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, ...
{"name" : "PL Boilerplate", "short_name" : "PL Boilerplate", "icons" : [{"src" : "favicons/apple-touch-icon-120x120.png", "sizes" : "120x120", "type" : "image/png"}, {"src" : "favicons/apple-touch-icon-152x152.png", "sizes" : "152x152", "type" : "image/png"}, {"src" : "favicons/apple-touch-icon-180x180.png", "sizes" : ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "short_name": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}, "start_url": {"type": "string...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items"...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-88.041821, 43.76727], [-88.033572, 43.765219], [-88.021182, 43.763827], [-88.021366, 43.771744], [-88.026305, 43.776216], [-88.031055, 43.786158], [-88.031198, 43.790325], [-88.007191, 43.790224], [-88.01198, 43.799833],...
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": "numbe...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"department": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "fullname": {"type": "string"}, "number": {"type": "string"}, "section": {"type": "string"}, "semester": {"type": "string"}, "shor...
{"department" : "REL", "description" : ["How should interpreters of the biblical text make sense of references to supernatural beings like angels and demons? In what sense are they supposed to be real? How do they relate to the divine? What is their relationship with evil? Are there evil angels in the Bible and if so...
json_instruct
{"type": "object", "properties": {"department": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "fullname": {"type": "string"}, "number": {"type": "string"}, "section": {"type": "string"}, "semester": {"type": "string"}, "shortname": {"type": "string"}, "type": {"type": "string"}, "ye...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"twit": {"type": "string"}}, "required": ["twit"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"twit" : "1.1.19"}
json_instruct
{"type": "object", "properties": {"twit": {"type": "string"}}, "required": ["twit"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "request": {"type": "object", "properties": {"url": {"type": "string"}, "method": {"type": "string"}}, "required": ["url", "method"]}, "response": {"type": "object", "properties": {"status": {"type": "in...
{"id" : "ec2539b0-c7f8-3b60-a808-277e257ac034", "request" : {"url" : "/search/code?q=filename:spectacular-config+extension:yaml+extension:yml+path:/+org:specmore", "method" : "GET"}, "response" : {"status" : 200, "bodyFileName" : "body-search-code-5nvtK.json", "headers" : {"Server" : "GitHub.com", "Date" : "Sun, 16 May...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "request": {"type": "object", "properties": {"url": {"type": "string"}, "method": {"type": "string"}}, "required": ["url", "method"]}, "response": {"type": "object", "properties": {"status": {"type": "integer"}, "bodyFileName": {"type": "string"}, "headers": {...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}, "travis": {"type": "object", "properties": {"enabled": {"type": "boolean"}}, "required": ["enabled"]}, "assignees": {"type": "array", "items": {"type": "string"}}, "label...
{"extends" : ["config:base"], "travis" : {"enabled" : true}, "assignees" : ["@scriptex", "@alpanayotov"], "labels" : ["dependencies"], "rebaseWhen" : "conflicted", "vulnerabilityAlerts" : {"labels" : ["security"], "assignees" : ["@scriptex", "@alpanayotov"]}}
json_instruct
{"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}, "travis": {"type": "object", "properties": {"enabled": {"type": "boolean"}}, "required": ["enabled"]}, "assignees": {"type": "array", "items": {"type": "string"}}, "labels": {"type": "array", "items": {"type": "string"}}, "reba...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {}, "required": []}, "inner_path": {"type": ...
{"address" : "1UDbADib99KE9d3qZ87NqJF2QLTHmMkoV", "cert_auth_type" : "web", "cert_sign" : "HLLFPDXhhbK7cQV11srqSiuXhAOZNFdojU5zRqcqH0n+KBNQZUm4xVTRx6xL15C2Uq9N5ipKjTVdzhIRTeGA9ZI=", "cert_user_id" : "xixihaha@zeroid.bit", "files" : {}, "inner_path" : "data/userdb/18siMKLgnhAQP525vKpZ3iX21VwJ5qvXwy/content.json", "modif...
json_instruct
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {}, "required": []}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": ...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items"...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-81.769054, 41.449102], [-81.768976, 41.456376], [-81.758851, 41.456256], [-81.759417, 41.448437], [-81.763945, 41.444977], [-81.76442, 41.446239], [-81.763157, 41.447387], [-81.763244, 41.448556], [-81.766798, 41.44659],...
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": "numbe...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"topic": {"type": "string"}, "member_limit": {"type": "integer"}, "get_delegations": {"type": "string"}, "headers": {"type": "object", "properties": {"x-trust-me": {"type": "string"}}, "required": ["x-trust-me"]}}, "...
{"topic" : "12392", "member_limit" : 2, "get_delegations" : "http://trust-engine-dev.herokuapp.com/api/v1/delegations", "headers" : {"x-trust-me" : ""}}
json_instruct
{"type": "object", "properties": {"topic": {"type": "string"}, "member_limit": {"type": "integer"}, "get_delegations": {"type": "string"}, "headers": {"type": "object", "properties": {"x-trust-me": {"type": "string"}}, "required": ["x-trust-me"]}}, "required": ["topic", "member_limit", "get_delegations", "headers"], "$...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "disabled": {"type": "boolean"}, "public": {"type": "boolean"}, "env": {"type": "array", "items": {"type": "string"}}, "config": {"type": "object", "properties": {"REGISTER_CONFIG": {"type": "obje...
{"name" : "thumbsignin", "disabled" : false, "public" : true, "env" : ["browser"], "config" : {"REGISTER_CONFIG" : {"actionUrl" : "/tsAuth/register", "statusUrl" : "/tsAuth/txnStatus/"}, "LOGIN_CONFIG" : {"COMPLETED_SUCCESSFUL" : "Finished successfully", "ALREADY_REGISTERED" : "You have already enabled passwordless aut...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "disabled": {"type": "boolean"}, "public": {"type": "boolean"}, "env": {"type": "array", "items": {"type": "string"}}, "config": {"type": "object", "properties": {"REGISTER_CONFIG": {"type": "object", "properties": {"actionUrl": {"type": "string"}, "statusUr...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"BurnTheOrphanage": {"type": "array", "items": {"type": "string"}}}, "required": ["BurnTheOrphanage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"BurnTheOrphanage" : ["KickTheDog", "DeadUnicornTrope", "ComedicSociopathy", "OrphanageOfFear", "BloodbathVillainOrigin", "KidsAreCruel", "EvilOrphanageLady", "WouldHurtAChild", "OrphanageOfFear", "BreakTheCutie", "WoobieDestroyerOfWorlds", "Greed", "AssholeVictim", "OmnicidalManiac", "AllCrimesAreEqual", "OmnicidalMa...
json_instruct
{"type": "object", "properties": {"BurnTheOrphanage": {"type": "array", "items": {"type": "string"}}}, "required": ["BurnTheOrphanage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"xAxis": {"type": "object", "properties": {"type": {"type": "string"}, "region": {"type": "string"}, "name": {"type": "string"}, "yyyy": {"type": "string"}, "title": {"type": "string"}}, "required": [...
[{"xAxis" : {"type" : "Jumlah Penduduk", "region" : "Banten", "name" : "(L) Jumlah", "yyyy" : "2017", "title" : "Banten 2017"}, "series" : [{"data" : [{"value" : 605530, "name" : "PANDEGLANG"}, {"value" : 629566, "name" : "LEBAK"}, {"value" : 1337968, "name" : "TANGERANG"}, {"value" : 734743, "name" : "SERANG"}, {"valu...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"xAxis": {"type": "object", "properties": {"type": {"type": "string"}, "region": {"type": "string"}, "name": {"type": "string"}, "yyyy": {"type": "string"}, "title": {"type": "string"}}, "required": ["type", "region", "name", "yyyy", "title"]}, "series": {"ty...
Following the schema specification below, generate a valid JSON instance: {"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/s...
[{"name" : "HERNANDO JESUS", "frequency" : 35, "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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"project_name": {"type": "string"}, "files": {"type": "object", "properties": {"/src/main/java/com/finleash/eserve/service/util/RandomUtil.java": {"type": "integer"}}, "required": ["/src/main/java/com/finleash/eserv...
{"project_name" : "vaquarkhan/sampleApplication-framework-poc", "files" : {"/src/main/java/com/finleash/eserve/service/util/RandomUtil.java" : 3}, "pull_request" : "https://github.com/vaquarkhan/sampleApplication-framework-poc/pull/1", "report" : {"files_fixed" : 1, "vulnerabilities_fixed" : 3, "file_name_fixed" : ["/s...
json_instruct
{"type": "object", "properties": {"project_name": {"type": "string"}, "files": {"type": "object", "properties": {"/src/main/java/com/finleash/eserve/service/util/RandomUtil.java": {"type": "integer"}}, "required": ["/src/main/java/com/finleash/eserve/service/util/RandomUtil.java"]}, "pull_request": {"type": "string"}, ...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "prope...
{"id" : "303742b8-2973-44ea-b84a-1ec3c791978f", "playerTags" : [], "teamTags" : ["7966eb04-efcc-499b-8f03-d13916330531", "eb67ae5e-c4bf-46ca-bbbc-425cd34182ff"], "gameTags" : ["08638fae-c6f2-4698-a65a-1dfb6d5b1458"], "metadata" : {"play" : 26, "subPlay" : -1, "children" : ["cd935855-a1b4-4ea9-ad27-28ad9d27d5d7"]}, "cre...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type":...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "st...
[{"postal_code" : "80220", "place_name" : "Guadalupe", "place_type" : "Colonia", "county" : "Culiac\u00e1n", "state" : "Sinaloa", "city" : "Culiac\u00e1n Rosales"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "s...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"ma\u0161\u00b7r\u014d\u00b7w\u00b7q\u00ee\u00b7\u1e6f\u0101": {"type": "object", "properties": {"dan.3.7|10": {"type": "array", "items...
{"pos" : "n", "translits" : {"ma\u0161\u00b7r\u014d\u00b7w\u00b7q\u00ee\u00b7\u1e6f\u0101" : {"dan.3.7|10" : ["of horn the\uff64", "flute\uff64", "harp\uff64"], "dan.3.15|10" : ["of horn the\uff64", "flute\uff64", "harp\uff64"], "dan.3.5|5" : ["of horn the\uff64", "flute\uff64", "harp\uff64"]}, "ma\u0161\u00b7r\u014d\u...
json_instruct
{"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"ma\u0161\u00b7r\u014d\u00b7w\u00b7q\u00ee\u00b7\u1e6f\u0101": {"type": "object", "properties": {"dan.3.7|10": {"type": "array", "items": {"type": "string"}}, "dan.3.15|10": {"type": "array", "items": {"type": "s...