input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"code": {"type": "string"}, "express"...
{"name" : "nodeserver", "version" : "1.0.0", "description" : "", "main" : "app.js", "dependencies" : {"code" : "^5.2.0", "express" : "^4.16.3", "file-exists" : "^5.0.1", "fs-extra" : "^7.0.0", "good" : "^8.1.1", "hapi" : "^17.6.0", "lab" : "^16.1.0", "mocha" : "^5.2.0", "request" : "^2.88.0", "shelljs" : "^0.8.2", "sys...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"code": {"type": "string"}, "express": {"type": "string"}, "file-exists": {"type": "string"}, "fs-extra": {"type":...
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": {"start": {"type": "string"}, "test": {"type"...
{"name" : "code4humans-content-api", "version" : "1.0.0", "description" : "API that serves content to Code4humans.com", "main" : "index.js", "scripts" : {"start" : "nodemon ./src/server.js", "test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/martin27...
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...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "addressLines": {"type": "array", "items": {"type": "string"}}, "postalCode": {"type": "string"}, "country": {"type": "string"}}, "required": ["name", "addressLines", "postalCode", "country...
{"name" : "Abingdon", "addressLines" : ["Unit 21", "Abingdon Shopping Centre", "Abingdon", "Oxfordshire"], "postalCode" : "OX14 3QT", "country" : "gb"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "addressLines": {"type": "array", "items": {"type": "string"}}, "postalCode": {"type": "string"}, "country": {"type": "string"}}, "required": ["name", "addressLines", "postalCode", "country"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"algorithm": {"type": "string"}, "coin": {"type": "string"}, "forkedFrom": {"type": "string"}, "icon": {"type": "string"}, "name": {"type": "string"}, "startDate": {"type": "string"}, "endDate": {"type": "string"}}, "...
{"algorithm" : "ERC-20", "coin" : "WEA", "forkedFrom" : "main-token-erc20", "icon" : "https://raw.githubusercontent.com/Arielony/project-data/master/dist/images/wea-icon.png", "name" : "Vultur", "startDate" : "2018-03", "endDate" : "2018-07"}
json_instruct
{"type": "object", "properties": {"algorithm": {"type": "string"}, "coin": {"type": "string"}, "forkedFrom": {"type": "string"}, "icon": {"type": "string"}, "name": {"type": "string"}, "startDate": {"type": "string"}, "endDate": {"type": "string"}}, "required": ["algorithm", "coin", "forkedFrom", "icon", "name", "start...
Following the schema specification below, generate a valid 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" : "411121102201", "text" : "\u5b98\u5385\u8857\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "411121102202", "text" : "\u7530\u674e\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "411121102203", "text" : "\u9e7f\u5e97\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "411121102204", "text" : "\u84bf\u5e84\u6751\u6...
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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"user_id": {"type": "string"}, "sentiment": {"type": "string"}, "rt_count": {"type": "integer"}, "user_followers": {"type": "integer"}, "text": {"type": "string"}, "created_at": {"type": "st...
[{"user_id" : "455230249", "sentiment" : "neg", "rt_count" : 0, "user_followers" : 2090, "text" : "\" I bet the dinosaurs thought that they had time too\" \ud83d\ude02\ud83d\ude02#climatemarch #motherearthTrumpsfalsenews https://t.co/CTdqdbZYRA", "created_at" : "Sun Apr 23 07:16:15 +0000 2017", "topic" : 4, "like_count...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"user_id": {"type": "string"}, "sentiment": {"type": "string"}, "rt_count": {"type": "integer"}, "user_followers": {"type": "integer"}, "text": {"type": "string"}, "created_at": {"type": "string"}, "topic": {"type": "integer"}, "like_count": {"type": "integer...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$...
{"id" : "2010", "provinceId" : "32", "regencyId" : "01", "districtId" : "24", "name" : "Bojong Murni"}
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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {}}, "afters": {"type": "array", "items": {}}, "links": {"ty...
{"uuid" : "b337f8ca-dcd7-4ad9-b868-d26f4a3c63fe", "name" : "EtmBasket", "children" : ["49775bba-e5d0-40b4-9e8c-39c43170dcc7"], "befores" : [], "afters" : [], "links" : [], "start" : 1643730811124, "stop" : 1643730842203}
json_instruct
{"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {}}, "afters": {"type": "array", "items": {}}, "links": {"type": "array", "items": {}}, "start": {"type": "integer"}, "stop": {"type...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"t...
{"author" : {"id" : "t2_73ecneyj", "name" : "TheCraftyDice"}, "date" : {"day" : 1598486400, "full" : 1598547912, "month" : 1596240000, "week" : 1598140800}, "id" : "t3_ihowpr", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 139090, "fullUrl" : "https://preview.redd.it/1vfd89ixtkj51.jpg?auto=webp&s=a340d9834...
json_instruct
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}},...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"aliases": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "null"}, "images": {"type": "object", "properties": {"background": {"type": "null"}, ...
{"aliases" : ["High Priestess of the Sun god", "Zaladane"], "authors" : ["Barry Windsor-Smith", "Gerry Conway"], "description" : null, "images" : {"background" : null, "thumbnail" : null}, "mainColor" : null, "name" : "Zaladane", "partners" : ["Garokk"], "powers" : ["Magnetism", "Manipulate magic"], "ranking" : {"comic...
json_instruct
{"type": "object", "properties": {"aliases": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "null"}, "images": {"type": "object", "properties": {"background": {"type": "null"}, "thumbnail": {"type": "null"}}, "required": ["background", ...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"update_url": {"type": "string"}, "manifest_version": {"type": "integer"}, "icons": {"type": "object", "properties": {"128": {"type": "string"}}, "required": ["128"]}, "name": {"type": "string"}, "description": {"type": "string...
{"update_url" : "https://clients2.google.com/service/update2/crx", "manifest_version" : 2, "icons" : {"128" : "icon2_128_128.png"}, "name" : "Kindle Optimizer", "description" : "Adds instant Google Search and Translate functionality to the Kindle Cloud Reader.", "version" : "3.1", "page_action" : {"default_icon" : "ico...
json_instruct
{"type": "object", "properties": {"update_url": {"type": "string"}, "manifest_version": {"type": "integer"}, "icons": {"type": "object", "properties": {"128": {"type": "string"}}, "required": ["128"]}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "page_action": {"type": ...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"duration": {"type": "integer"}, "predictions": {"type": "array", "items": {"type": "object", "properties": {"confidence": {"type": "number"}, "y_min": {"type": "integer"}, "y_max": {"type": "integer"}, "label": {"type": "strin...
{"duration" : 0, "predictions" : [{"confidence" : 0.68561596, "y_min" : 1513, "y_max" : 1809, "label" : "cow", "x_max" : 2889, "x_min" : 2330}], "success" : true}
json_instruct
{"type": "object", "properties": {"duration": {"type": "integer"}, "predictions": {"type": "array", "items": {"type": "object", "properties": {"confidence": {"type": "number"}, "y_min": {"type": "integer"}, "y_max": {"type": "integer"}, "label": {"type": "string"}, "x_max": {"type": "integer"}, "x_min": {"type": "integ...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"company": {"type": "string"}, "date": {"type": "string"}, "address": {"type": "string"}, "total": {"type": "string"}}, "required": ["company", "date", "address", "total"], "$schema": "http://json-schema.org/draft-07/schema#...
{"company" : "BANH MI CAFE SDN BHD", "date" : "29-10-2017", "address" : "NO,1 JALAN PUTERI 7/10 BANDAR PUTERI, 47100 PUCHONG SELANGOR, MALAYSIA", "total" : "23.25"}
json_instruct
{"type": "object", "properties": {"company": {"type": "string"}, "date": {"type": "string"}, "address": {"type": "string"}, "total": {"type": "string"}}, "required": ["company", "date", "address", "total"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"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" : "3301030013", "district_id" : "3301030", "name" : "BOJA"}
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#"}
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"}, "dependencies": {"type": "object", "properties": {"argparse": {"type": "string"}, "lodash": {"type": "strin...
{"name" : "examples", "version" : "1.0.0", "description" : "", "main" : "app-9490.js", "dependencies" : {"argparse" : "^2.0.1", "lodash" : "^4.17.21", "rocksdb" : "^5.0.0"}, "devDependencies" : {}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "app-9040" : "node app.js -p 9040", "app-9041" : "nod...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"argparse": {"type": "string"}, "lodash": {"type": "string"}, "rocksdb": {"type": "string"}}, "required": ["argpar...
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" : [[[-86.71887, 36.342117], [-86.717464, 36.344403], [-86.713228, 36.357177], [-86.709249, 36.372754], [-86.700615, 36.383886], [-86.689351, 36.393737], [-86.688787, 36.395602], [-86.689502, 36.399594], [-86.686467, 36.403639]...
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 a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "name_kana": {"type": "string"}}, "required": ["code", "name", "name_kana"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"code" : "020", "name" : "\u677f\u4ed8", "name_kana" : "\uff72\uff80\uff82\uff9e\uff79"}, {"code" : "031", "name" : "\u4e95\u5c3b", "name_kana" : "\uff72\uff7c\uff9e\uff98"}, {"code" : "120", "name" : "\u58f1\u5c90", "name_kana" : "\uff72\uff77"}, {"code" : "150", "name" : "\u4eca\u5bbf", "name_kana" : "\uff72\uff8f\...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "name_kana": {"type": "string"}}, "required": ["code", "name", "name_kana"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"networkCallRecords": {"type": "array", "items": {}}, "variables": {"type": "array", "items": {"type": "string"}}}, "required": ["networkCallRecords", "variables"], "$schema": "http://json-schema.org/draft-07/sc...
{"networkCallRecords" : [], "variables" : ["jtcuploaddownload094002466a789d653a4d588def", "javablobuploaddownload1016294ce9ad7c6e864f1fa", "5b3a16ec-5fad-4c6d-9019-a471f978cceb"]}
json_instruct
{"type": "object", "properties": {"networkCallRecords": {"type": "array", "items": {}}, "variables": {"type": "array", "items": {"type": "string"}}}, "required": ["networkCallRecords", "variables"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "m...
{"ast" : null, "code" : "import React from \"react\";\nvar __jsx = React.createElement;\n/** @jsx jsx */\n\nimport { jsx, css } from '@emotion/core';\nimport Button from \"../../../../../packages/material-ui/src/Button\";\n\nvar _ref = jsx(Button, null, \"Default\");\n\nexport default function EmotionCSS() {\n return ...
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/s...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "pkg_version": {"type": "string"}, "rebuild": {"type": "integer"}, "bottles": {"type": "object", "properties": {"arm64_big_sur": {"type": "object", "properties": {"url": {"type": "string"}}, "require...
{"name" : "scotch", "pkg_version" : "6.1.1", "rebuild" : 0, "bottles" : {"arm64_big_sur" : {"url" : "https://ghcr.io/v2/homebrew/core/scotch/blobs/sha256:a2a88eca7948940c07bc2263143b35be2d0a6d4f66bf3f4bff93ead83a653921"}, "big_sur" : {"url" : "https://ghcr.io/v2/homebrew/core/scotch/blobs/sha256:54e1182e94e87f15ba4671d...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "pkg_version": {"type": "string"}, "rebuild": {"type": "integer"}, "bottles": {"type": "object", "properties": {"arm64_big_sur": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "big_sur": {"type": "object", "properties": {...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "extendedmushrooms:block/red_mushroom_carpet"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"instances": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "questions": {"type": "array", "items": {"type": "string"}}}, "required": ["text", "questions"]}}}, "required": ["instance...
{"instances" : [{"text" : "Transformers (formerly known as pytorch-transformers and pytorch-pretrained-bert) provides general-purpose architectures (BERT, GPT-2, RoBERTa, XLM, DistilBert, XLNet\u2026) for Natural Language Understanding (NLU) and Natural Language Generation (NLG) with over 32+ pretrained models in 100+ ...
json_instruct
{"type": "object", "properties": {"instances": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "questions": {"type": "array", "items": {"type": "string"}}}, "required": ["text", "questions"]}}}, "required": ["instances"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"app_name": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "app_description": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}}, "required":...
{"app_name" : {"message" : "F\u00e4rg pipettverktyg"}, "app_description" : {"message" : "F\u00e5 f\u00e4rger fr\u00e5n en sida med pipett."}}
json_instruct
{"type": "object", "properties": {"app_name": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "app_description": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}}, "required": ["app_name", "app_description"], "$schema": "http://json-s...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"silex/silex": {"type": "string"}, "jandc/critical-css": {"type": "string"}, "jandc/twig-wrapper-provider": {"type"...
{"name" : "jandc/critical-css-silex", "type" : "package", "require" : {"silex/silex" : "^1.2", "jandc/critical-css" : "^0.5", "jandc/twig-wrapper-provider" : "^0.3"}, "authors" : [{"name" : "Jan Decavele", "email" : "jandecavele@gmail.com"}], "minimum-stability" : "stable"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"silex/silex": {"type": "string"}, "jandc/critical-css": {"type": "string"}, "jandc/twig-wrapper-provider": {"type": "string"}}, "required": ["silex/silex", "jandc/critical-css", "jandc...
Create an example JSON object that satisfies this schema: {"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"}, "emai...
{"name" : "vibar/laravel-account", "description" : "Laravel account activation.", "type" : "library", "license" : "MIT", "authors" : [{"name" : "V\u00edtor Barroso", "email" : "vitor.vgb@gmail.com"}], "require" : {}, "autoload" : {"psr-4" : {"Vibar\\Account\\" : "src/Account/"}}}
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 a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"],...
{"id" : "2009", "provinceId" : "18", "regencyId" : "11", "districtId" : "04", "name" : "Hadi Mulyo"}
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#"}
Create a JSON structure that matches this 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": "string"}, "id": {"t...
{"body" : "Peter Apian-Bennewitz wrote:\n\n\n> Ignacio Mun\u00e1rriz wrote:\n>\n> >Greg, unfortunately, although polling is very simple, it is also very\n> >inefficient. The CPU can waste an awful lot of time just waiting for input.\n> >And i need that time for ray calculation. I think that rholo start a fork\n> >proce...
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...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"success": {"type": "boolean"}, "application": {"type": "string"}}, "required": ["success", "application"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"success" : true, "application" : "biodiv-mail-utils"}
json_instruct
{"type": "object", "properties": {"success": {"type": "boolean"}, "application": {"type": "string"}}, "required": ["success", "application"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type...
{"id" : 85771799, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "d46c9fa7a143e60f1aa63691e96095fe", "wof:id" : 85771799, "wof:repo" : "whosonfirst-data-admin-my"}, "bbox" : [100.29418945300006, 5.35899052648855, 100.305175781, 5.36857954242069], "g...
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": ["...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "event": {"type": "object", "properties": {"type": {"type": "string"}, "target": {"type": "string"}, "payload": {"type": "string"}}, "required": ["type", "target", "payload"]}}, "required...
{"name" : "Room 01 vent is open", "event" : {"type" : "VENT_OPEN", "target" : "1", "payload" : ""}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "event": {"type": "object", "properties": {"type": {"type": "string"}, "target": {"type": "string"}, "payload": {"type": "string"}}, "required": ["type", "target", "payload"]}}, "required": ["name", "event"], "$schema": "http://json-schema.org/draft-07/schem...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"$comment": {"type": "string"}, "templates": {"type": "string"}, "content": {"type": "string"}, "check": {"type": "object", "properties": {"ignoreURLPattern": {"type": "string"}}, "required": ["ignoreURLPattern"]}}, "require...
{"$comment" : "The actual configuration, templates, and assets for https://docs.sourcegraph.com live in https://github.com/sourcegraph/docs.sourcegraph.com. This docsite.json merely enables `docsite check` to check the doc files for common problems in this repository's CI.", "templates" : "../dev/check/docsite", "conte...
json_instruct
{"type": "object", "properties": {"$comment": {"type": "string"}, "templates": {"type": "string"}, "content": {"type": "string"}, "check": {"type": "object", "properties": {"ignoreURLPattern": {"type": "string"}}, "required": ["ignoreURLPattern"]}}, "required": ["$comment", "templates", "content", "check"], "$schema": ...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"tag" : "sitecore-reporting:8.2.180406-windowsservercore-1803"}
json_instruct
{"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"...
{"IsRecentlyVerified" : false, "ID" : 93039, "UUID" : "4049A4FB-4545-48D8-B5CA-6CE8379445AA", "DataProviderID" : 1, "OperatorID" : 25, "OperatorsReference" : "wandsworth-keswickroad", "UsageTypeID" : 4, "UsageCost" : "\u00a30.059/minute; min \u00a31.18; other tariffs available", "AddressInfo" : {"ID" : 93385, "Title" :...
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "UsageCost": {"type": "string"}, "Ad...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": [...
{"name" : "typingt-tutor-documentation", "version" : "0.0.1", "description" : "Basic code documentation for the application.", "author" : {"name" : "David Brvar", "email" : "db9949@student.uni-lj.si"}, "dependencies" : {"grunt" : "~0.4.1", "grunt-ngdocs" : "~0.2.9", "grunt-contrib-connect" : "~0.3.0", "grunt-contrib-cl...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "dependencies": {"type": "object", "properties": {"grunt":...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schem...
{"symbol" : "XCAD", "name" : "XCAD Network", "decimals" : 18, "address" : "0x7659ce147d0e714454073a5dd7003544234b6aa0"}
json_instruct
{"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]},...
{"name" : "baldr", "version" : "0.1.38", "description" : "A try to write my presentations for school in HTML5, CSS3 and Javascript using Electron. Virtual top level package for tooling support.", "homepage" : "https://github.com/Josef-Friedrich/baldr#readme", "bugs" : {"url" : "https://github.com/Josef-Friedrich/baldr/...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "repository": {"type": "object", "properties": {"type": {"type": "st...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"ramda.js": {"type": "string"}, "ramda.min.js": {"type": "string"}}, "required": ["ramda.js", "ramda.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ramda.js" : "sha512-3sdB9mAxNh2MIo6YkY05uY1qjkywAlDfCf5u1cSotv6k9CZUSyHVf4BJSpTYgla+YHLaHG8LUpqV7MHctlYzlw==", "ramda.min.js" : "sha512-rZHvUXcc1zWKsxm7rJ8lVQuIr1oOmm7cShlvpV0gWf0RvbcJN6x96al/Rp2L2BI4a4ZkT2/YfVe/8YvB2UHzQw=="}
json_instruct
{"type": "object", "properties": {"ramda.js": {"type": "string"}, "ramda.min.js": {"type": "string"}}, "required": ["ramda.js", "ramda.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"resource.resolver.mapping": {"type": "array", "items": {"type": "string"}}}, "required": ["resource.resolver.mapping"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"resource.resolver.mapping" : ["/content/nag/</", "/:/"]}
json_instruct
{"type": "object", "properties": {"resource.resolver.mapping": {"type": "array", "items": {"type": "string"}}}, "required": ["resource.resolver.mapping"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "...
{"directions" : ["Pour oil into a large heavy skillet fitted with thermometer to come 1/2\" up sides. Heat over medium-high until thermometer registers 350\u00b0F. Place breadcrumbs in a shallow dish or rimmed baking sheet.", "Season chicken all over with salt and pepper on a rimmed baking sheet. Spread 1/4 cup pesto ...
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type"...
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["deployment", "service"]
json_instruct
{"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": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]...
{"name" : "find-devs-api", "version" : "1.0.0", "main" : "server.js", "license" : "MIT", "scripts" : {"start" : "nodemon src/server.js"}, "dependencies" : {"axios" : "^0.21.1", "express" : "^4.17.1", "mongoose" : "^5.11.15"}, "devDependencies" : {"nodemon" : "^2.0.7"}, "type" : "module"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"axios": {"type": "...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"autoplayTransitionDelay": {"type": "integer"}, "author": {"type": "string"}, "timestamp": {"type": "string"}, "loopSlideshow": {"type": "integer"}, "filename": {"type": "string"}, "autoplayBuildDelay": {"type": "integer"}, "co...
{"autoplayTransitionDelay" : 5, "author" : "", "timestamp" : "2019-9-23 0:1:9", "loopSlideshow" : 0, "filename" : "What Is Block Chain?", "autoplayBuildDelay" : 2, "comment" : "", "title" : "What Is Block Chain?", "showMode" : 0, "creator" : "Apple Keynote 8.3", "slideList" : ["28C2CEC4-A85C-4246-8ECC-1CB61D5F6A2A", "6...
json_instruct
{"type": "object", "properties": {"autoplayTransitionDelay": {"type": "integer"}, "author": {"type": "string"}, "timestamp": {"type": "string"}, "loopSlideshow": {"type": "integer"}, "filename": {"type": "string"}, "autoplayBuildDelay": {"type": "integer"}, "comment": {"type": "string"}, "title": {"type": "string"}, "s...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"sourceHash": {"type": "integer"}, "sourceString": {"type": "string"}, "blacklisted": {"type": "boolean"}, "acquisitionInfo": {"type": "object", "properties": {"runOnlyAcquisitionRewardSite": {"type": "boolean...
{"sourceHash" : 1491707941, "sourceString" : "Source: \"Garden of Salvation\" raid.", "blacklisted" : false, "acquisitionInfo" : {"runOnlyAcquisitionRewardSite" : false}, "index" : 1499, "presentationNodeType" : 2, "traitHashes" : [], "redacted" : false, "stateInfo" : {"requirements" : {"entitlementUnavailableMessage" ...
json_instruct
{"type": "object", "properties": {"sourceHash": {"type": "integer"}, "sourceString": {"type": "string"}, "blacklisted": {"type": "boolean"}, "acquisitionInfo": {"type": "object", "properties": {"runOnlyAcquisitionRewardSite": {"type": "boolean"}}, "required": ["runOnlyAcquisitionRewardSite"]}, "index": {"type": "intege...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, "scripts": {"type": "array", ...
{"name" : "jcal", "version" : "0.0.1", "description" : "A Jalali/Shamsi/Sun Calendar", "keywords" : ["date", "calendar", "jalali", "sun", "shamsi"], "repository" : "arashm/JCal", "scripts" : ["index.js", "lib/jcal.js", "lib/template.js"], "styles" : ["styles/styles.sass"], "license" : "MIT", "dependencies" : {"componen...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, "scripts": {"type": "array", "items": {"type": "string"}}, "styles": {"type": "array", "items": {"...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "main": {"type": "string"}, "scripts...
{"name" : "matrix-sentry-webhooks", "version" : "0.5.0", "description" : "Sentry webhooks integration bot for Matrix", "engines" : {"node" : ">=10"}, "main" : "src/app.js", "scripts" : {"dev" : "node_modules/.bin/nodemon src/app.js localhost 3000", "test" : "node_modules/.bin/mocha tests/", "start" : "node src/app.js"}...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "strin...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : 1, "name" : "Customer Service"}, {"id" : 2, "name" : "Billing"}, {"id" : 3, "name" : "Account Receivable"}, {"id" : 4, "name" : "Payroll"}, {"id" : 5, "name" : "Music Department"}, {"id" : 6, "name" : "Engineering"}, {"id" : 7, "name" : "Public Health"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"url": {"type": "string"}, "archived_snapshots": {"type": "object", "properties": {"closest": {"type": "object", "properties": {"status": {"type": "string"}, "available": {"type": "boolean"}, "url": {"type": "string...
{"url" : "http://web.archive.org/web/20100222214101/http://web.intuit.com/support/quicken/docs/d_qif.html", "archived_snapshots" : {"closest" : {"status" : "200", "available" : true, "url" : "http://web.archive.org/web/20180606142322/http://web.archive.org:80/web/20100222214101/http://web.intuit.com/support/quicken/doc...
json_instruct
{"type": "object", "properties": {"url": {"type": "string"}, "archived_snapshots": {"type": "object", "properties": {"closest": {"type": "object", "properties": {"status": {"type": "string"}, "available": {"type": "boolean"}, "url": {"type": "string"}, "timestamp": {"type": "string"}}, "required": ["status", "available...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}, "ignorePaths": {"type": "array", "items": {"type": "string"}}, "schedule": {"type": "array", "items": {"type": "string"}}, "rangeStrategy": {"type": "...
{"extends" : ["config:base"], "ignorePaths" : ["**/draft/**"], "schedule" : ["before 3am on the first day of the month"], "rangeStrategy" : "bump"}
json_instruct
{"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}, "ignorePaths": {"type": "array", "items": {"type": "string"}}, "schedule": {"type": "array", "items": {"type": "string"}}, "rangeStrategy": {"type": "string"}}, "required": ["extends", "ignorePaths", "schedule", "rangeStrategy"...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"tab_name": {"type": "string"}, "tab_label": {"type": "string"}, "tab_title": {"type": "string"}}, "required": ["tab_name", "tab_label", "tab_title"]}, "$schema": "http://json-schema.org/d...
[{"tab_name" : "turtle4t", "tab_label" : " \u6d77\u9f9c ", "tab_title" : "\u6d77\u9f9c\u5e7e\u4f55\u7e6a\u5716 "}, {"tab_name" : "physics4t", "tab_label" : " \u7269\u7406 ", "tab_title" : "\u7269\u7406\u78b0\u649e"}, {"tab_name" : "threed4t", "tab_label" : " 3D ", "tab_title" : "3D\u7a0b\u5f0f"}, {"tab_name" : "cv4t"...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"tab_name": {"type": "string"}, "tab_label": {"type": "string"}, "tab_title": {"type": "string"}}, "required": ["tab_name", "tab_label", "tab_title"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["facebook-cli", "fb-falafel", "fb-uploader", "kayz", "promise-facebook", "social-feed", "wanashare"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["513425234200", "\u6728\u6811\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513425234201", "\u575d\u5730\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513425234202", "\u504f\u6865\u6751\u6c11\u59d4\u5458\u4f1a", "210", "0"], ["513425234203", "\u97ed\u83dc\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513425234204"...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "Tango Down Stubby BGV-MK46K tactical grip Black", "ShortName" : "BGV-MK46K Black", "Description" : "Tango Down Stubby BGV-MK46K tactical grip. Short grip for use with weapons of close and extra close quarters combat. Ideally fits assault shotguns. Contains a compartment for batteries or SPTA."}
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"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" : "Quirangay, Camalig, Albay, Bicol Region (Region V), PH", "locale" : "ph.bicol-region-region-v.albay.camalig.quirangay", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "2", "region_reference"...
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": {"id": {"type": "string"}, "article": {"type": "string"}, "questions": {"type": "string"}, "options": {"type": "object", "properties": {"model": {"type": "array", "items": {"type": "string"}}, "human": {"type":...
{"id" : "1902", "article" : "Another thing an astronaut has to learn about is eating in space . Food is weightless , just as men are . Food for space has to be packed in special ways . Some of it goes into tubes that a man can squeeze into his mouth . Bite - sized cookies are packed in plastic . There is a good reason ...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "article": {"type": "string"}, "questions": {"type": "string"}, "options": {"type": "object", "properties": {"model": {"type": "array", "items": {"type": "string"}}, "human": {"type": "array", "items": {"type": "string"}}}, "required": ["model", "human"]}, "an...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["eslint-config-oleander"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "includedInParent": {"type": "boolean"}, "mtime": {"type": "integer"}}, "required": ...
{"id" : "assets/cup_too_full.png", "dependencies" : [{"name" : "/home/ahmed/Desktop/WWW/coffee-test/package.json", "includedInParent" : true, "mtime" : 1568833334684}], "generated" : {"js" : "module.exports = \"/6546fe8b38df594d170b085e2366d5ad.png\";"}, "hash" : "246764322a9e5c9b40f89440ebc3acc2", "cacheData" : {"env"...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "includedInParent": {"type": "boolean"}, "mtime": {"type": "integer"}}, "required": ["name", "includedInParent", "mtime"]}}, "generated": {"type": "object"...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"ty...
[{"label" : "Animal", "normalizedVertices" : [{"x" : 0.45535937, "y" : 0.37606713}, {"x" : 0.7415199, "y" : 0.37606713}, {"x" : 0.7415199, "y" : 0.52196383}, {"x" : 0.45535937, "y" : 0.52196383}], "score" : 0.5979825}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertice...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"count" : 48532}
json_instruct
{"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"json.schemas": {"type": "array", "items": {"type": "object", "properties": {"fileMatch": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}}, "required": ["fileMatch", "url"]}}, "editor.defaultFormatter"...
{"json.schemas" : [{"fileMatch" : ["**/console-extensions.json"], "url" : "../node_modules/@openshift-console/dynamic-plugin-sdk-webpack/schema/console-extensions.json"}], "editor.defaultFormatter" : "esbenp.prettier-vscode", "files.insertFinalNewline" : true}
json_instruct
{"type": "object", "properties": {"json.schemas": {"type": "array", "items": {"type": "object", "properties": {"fileMatch": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}}, "required": ["fileMatch", "url"]}}, "editor.defaultFormatter": {"type": "string"}, "files.insertFinalNewline": {"type": ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"asset": {"type": "object", "properties": {"version": {"type": "string"}, "tilesetVersion": {"type": "string"}}, "required": ["version", "tilesetVersion"]}, "geometricError": {"type": "integer"}, "root": {"type": "ob...
{"asset" : {"version" : "0.0", "tilesetVersion" : "1.2.3"}, "geometricError" : 1, "root" : {"boundingVolume" : {"sphere" : [6358690.753173649, -498908.0651319595, -24.67403057500963, 9.875597953796387]}, "geometricError" : 1, "content" : {"url" : "Tile_+004_+005_L21_0000320.b3dm"}, "children" : [{"boundingVolume" : {"s...
json_instruct
{"type": "object", "properties": {"asset": {"type": "object", "properties": {"version": {"type": "string"}, "tilesetVersion": {"type": "string"}}, "required": ["version", "tilesetVersion"]}, "geometricError": {"type": "integer"}, "root": {"type": "object", "properties": {"boundingVolume": {"type": "object", "properties...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"data.json": {"type": "object", "...
{"address" : "1BLogC9LN4oPDcruNz3qo1ysa133E9AGg8", "cert_auth_type" : "web", "cert_sign" : "HJBfgR9gOL+YrFk9SUr4goMGNjnSDBjmXwm+tZ0/gARjUwFubIrlTgIwXTJCBOXNxaUvf0j+57PninFugqch+nU=", "cert_user_id" : "auxillium@zeroid.bit", "files" : {"data.json" : {"sha512" : "bfc1bca0e0a7121e1b554e7c40ab3f1b439c8e6dd5f3d5681bfc6e2f9c...
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": {"data.json": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "command": {"type": "string"}, "locked": {"type": "boolean"}, "starred": {"type": "boolean"}}, "required": ["name", "command", "locked", "starred"], "$schema": "http://json-schema.org/draft-07/schema...
{"name" : "nn", "command" : "print('cr0sis| ya wel obv ur telin thing wot stoppin of sleep come fukov')", "locked" : false, "starred" : false}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "command": {"type": "string"}, "locked": {"type": "boolean"}, "starred": {"type": "boolean"}}, "required": ["name", "command", "locked", "starred"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d1025-57", "text" : "NAEB RADIO NETWORK\nli; Gregory Hall\nUrbana, Illinois\nOFFERING* OFFERING!\nTo: All NAEB Radio Network Stations July 12, 1955\nFrom: Network Headquarters\nRe: REVIEW OF THE BRITISH WEEKLIES\nMay we again remind you that the BBC produces a quarter-hour REVIEW OF THE\nBRITISH WEEKLIES which...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "6101060012", "district_id" : "6101060", "name" : "TANJUNG KERACUT"}
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": {"jsgrid-theme.css": {"type": "string"}, "jsgrid-theme.min.css": {"type": "string"}, "jsgrid.css": {"type": "string"}, "jsgrid.js": {"type": "string"}, "jsgrid.min.css": {"type": "string"}, "jsgrid.min.js": {"type": "...
{"jsgrid-theme.css" : "sha256-d5oeWjonbYcINJR5fsa02UzkP05+GlfrC+3G67EpQN8=", "jsgrid-theme.min.css" : "sha256-hRrBfTnqJqjuBaR4vcv0FZMMHkPh9UNUCX5aHC3f/uc=", "jsgrid.css" : "sha256-1uC7+UG4UgCBE+YPRqO/lHD+YSpDKE09RLi2NssTB5A=", "jsgrid.js" : "sha256-qDJvgCZyYuZWhGxYTYPPo7NvDaYxlNiIwqunWtMiFgQ=", "jsgrid.min.css" : "sha2...
json_instruct
{"type": "object", "properties": {"jsgrid-theme.css": {"type": "string"}, "jsgrid-theme.min.css": {"type": "string"}, "jsgrid.css": {"type": "string"}, "jsgrid.js": {"type": "string"}, "jsgrid.min.css": {"type": "string"}, "jsgrid.min.js": {"type": "string"}}, "required": ["jsgrid-theme.css", "jsgrid-theme.min.css", "j...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "OperatorID": {"type": "integer"}, "UsageTypeI...
{"IsRecentlyVerified" : false, "ID" : 9792, "UUID" : "CE50E9E4-2971-4EB5-B84D-25B5E38727CF", "DataProviderID" : 15, "DataProvidersReference" : "16398", "OperatorID" : 1, "UsageTypeID" : 1, "AddressInfo" : {"ID" : 9689, "Title" : "1337 Lower Campus RD", "AddressLine1" : "1337 Lower Campus RD", "Town" : "Honolulu", "Stat...
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"ty...
{"userId" : 30950, "cartId" : "e3ad79c5-2218-4eb8-8ef6-3b1cd19dd81c", "preferredProducts" : [2639, 3422, 2082, 2152, 1376, 368, 4052, 1306, 1318, 2027], "productReviews" : [{"productId" : 331, "reviewText" : "The box this comes in is 5 kilometer by 6 yard and weights 18 gram.", "reviewDate" : "2016-11-27T11:01:20.14215...
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"}, "reviewD...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"from": {"type": "string"}, "name": {"type": "string"}, "num": {"type": "integer"}, "comps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "place": {"type": "string"}, "date": {"type": "...
{"from" : " , ", "name" : " Lightning Bots", "num" : 6083, "comps" : [{"name" : "OR FTC Qualifying Tournament", "place" : "Evergreen Space Museum", "date" : "16-Feb-13", "highest" : 147, "QP" : 6, "RP" : 162, "matches" : 5}, {"name" : "OR FTC Qualifying Tournament", "place" : "Oregon Museum of Science and Industry"...
json_instruct
{"type": "object", "properties": {"from": {"type": "string"}, "name": {"type": "string"}, "num": {"type": "integer"}, "comps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "place": {"type": "string"}, "date": {"type": "string"}, "highest": {"type": "integer"}, "QP": {"type": ...
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" : "1106031007", "district_id" : "1106031", "name" : "TOWEREN TOA"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "is-portable": {"type": "boolean"}, "portable": {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": ...
{"display-name" : "", "package-name" : "ghostwriter", "is-portable" : true, "portable" : {"display-name" : "", "package-name" : "ghostwriter", "latest-version" : "1.8.1", "1.8.1" : {"url" : "https://github.com/michelolvera/vs-ghostwriter/releases/download/1.8.1/ghostwriter_x64_portable.7z", "file-type" : ".7z", "bin" :...
json_instruct
{"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "is-portable": {"type": "boolean"}, "portable": {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "latest-version": {"type": "string"}, "1.8.1": {"type": "obj...
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/...
[{"year" : 2005, "sex" : "F", "n" : 12, "prop" : 5.92e-06}, {"year" : 2006, "sex" : "F", "n" : 13, "prop" : 6.22e-06}, {"year" : 2007, "sex" : "F", "n" : 16, "prop" : 7.57e-06}, {"year" : 2008, "sex" : "F", "n" : 10, "prop" : 4.81e-06}, {"year" : 2009, "sex" : "F", "n" : 15, "prop" : 7.41e-06}, {"year" : 2010, "sex" : ...
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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"typ...
{"id" : 153410, "info" : {"name" : "Ninja Whatsapp (Blurry Images and Chats)", "description" : "Is your whatsapp full of silly images and it's difficult to chat in public? With this style now you can keep your conversations and images hidden. Works with all styles!*\r\n\r\nUpdated @ 26/09/2019", "additionalInfo" : "*Ma...
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":...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "s...
{"name" : "crsa", "version" : "1.2.0", "description" : "A tool allowing usage of container-relative units similar to those relative to the viewport", "main" : "./umd/crsa.js", "scripts" : {"test" : "node test.js", "build" : "grunt"}, "repository" : {"type" : "git", "url" : "git+https://github.com/wwtchrsin/CRSA.git"}, ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "repository": {"type": "objec...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"browsers": {"type": "array", "items": {"type": "object", "properties": {"browser": {"type": "string"}, "os": {"type": "string"}, "versions": {"type": "array", "items": {"type": "string"}}}, "required": ["browser", "os", "versi...
{"browsers" : [{"browser" : "chrome", "os" : "Windows 10", "versions" : ["latest", "latest-1"]}, {"browser" : "firefox", "os" : "Windows 10", "versions" : ["latest", "latest-1"]}, {"browser" : "edge", "os" : "Windows 10", "versions" : ["latest", "latest-1"]}, {"browser" : "chrome", "os" : "OS X Big Sur", "versions" : [...
json_instruct
{"type": "object", "properties": {"browsers": {"type": "array", "items": {"type": "object", "properties": {"browser": {"type": "string"}, "os": {"type": "string"}, "versions": {"type": "array", "items": {"type": "string"}}}, "required": ["browser", "os", "versions"]}}, "run_settings": {"type": "object", "properties": {...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"hash": {"type": "string"}, "browserHash": {"type": "string"}, "optimized": {"type": "object", "properties": {}, "required": []}}, "required": ["hash", "browserHash", "optimized"], "$schema": "http://json-schema.org/...
{"hash" : "be68f56b", "browserHash" : "0f8967b2", "optimized" : {}}
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "browserHash": {"type": "string"}, "optimized": {"type": "object", "properties": {}, "required": []}}, "required": ["hash", "browserHash", "optimized"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properti...
{"contract" : "0xe9c48b34e2498797b7f70d9fb5875805dd6bc8b4", "tool" : "osiris", "start" : 1564619605.3199055, "end" : 1564619732.4587173, "duration" : 127.13881182670593, "analysis" : [{"errors" : [], "file" : "/unique_chucks/23/0xe9c48b34e2498797b7f70d9fb5875805dd6bc8b4.sol", "name" : "Exchange"}, {"errors" : [], "file...
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "strin...
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" : ["Place the black olives, green olives, artichoke hearts with their juice, and onion into a food processor. Pour in the vinegar and olive oil, and season with garlic, celery seed, oregano, basil and black pepper. Cover, and process until finely chopped. Use as a condiment on sandwiches, or a dip for cra...
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...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"profiles": {"type": "object", "properties": {"default": {"type": "object", "properties": {"token": {"type": "object", "properties": {"access_token": {"type": "string"}, "refresh_token": {"type": "string"}, "token_type": {"t...
{"profiles" : {"default" : {"token" : {"access_token" : "Atza|IwEBIPnnGgbrsarK3PQ8VE_hKhWLWnkpxu8LFCFOxJHWVL06qZDSx_2kjhDGbdBnoJibI1OI8ukqVJ75liTCef0owxBKvTsyWsh9i43X7KKEdNE9W97hhgWyzNI9_7AexOZujIdsynZs8YPQwiHFYaRy7k4DiBkCvVXD1d4jYuXXu2h1eYL_uLmTIt40nkiRUcBKCWf5TjV3B5ZAsF4a-4trYbphxL9rYzqSKSU-n8PgQFJh1jHRUr0YZHMIKrm9Mq...
json_instruct
{"type": "object", "properties": {"profiles": {"type": "object", "properties": {"default": {"type": "object", "properties": {"token": {"type": "object", "properties": {"access_token": {"type": "string"}, "refresh_token": {"type": "string"}, "token_type": {"type": "string"}, "expires_in": {"type": "integer"}, "expires_a...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type":...
{"userId" : 86420, "cartId" : "4352b9d9-0a08-4c5e-a005-699e2d27a19d", "preferredProducts" : [], "productReviews" : [{"productId" : 4896, "reviewText" : "My baboon loves to play with it.", "reviewDate" : "2016-08-24T07:27:02.49737+03:00"}, {"productId" : 534, "reviewText" : "one of my hobbies is theater. and when i'm ac...
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...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "IT WILL BE HARD TO SAY WHAT A CONFUSED IDEA IS.", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/6865.json"}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "str...
[{"namaKab" : "ACEH BESAR", "originalFilename" : "DSC_1042.JPG", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 297298, "noUrut" : 1, "nama" : "HENDRA HERDIAN", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA BANDA ACEH", "originalFilename" : "img011.jpg", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : ...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"docs": {"type": "string"}, "lint": {"type": "string"}, "prettier-format": {"type": "...
{"name" : "aws-fms-automations", "version" : "2.0.0", "description" : "AWS Firewall Manager Automations for AWS Organizations", "scripts" : {"docs" : "./node_modules/typedoc/bin/typedoc --out docs --name \"AWS Firewall Manager Automations for AWS Organizations\"", "lint" : "./node_modules/eslint/bin/eslint.js . --ext ....
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"docs": {"type": "string"}, "lint": {"type": "string"}, "prettier-format": {"type": "string"}, "build:helper": {"type": "string"}, "build:policyMan...
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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": ...
{"name" : "@kakadu-dev/nodejs-ijson-helpers", "version" : "1.9.2", "description" : "NodeJS Inverted Json microservices helpers", "main" : "index.js", "keywords" : ["node", "js", "microservices", "inverted", "json", "helpers"], "repository" : {"type" : "git", "url" : "https://github.com/kakadu-dev/nodejs-ijson-helpers.g...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, ...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "prop...
{"contract" : "0x219101d69455c620700bf02f157f29ef7a8f7988", "tool" : "honeybadger", "start" : 1565886102.621469, "end" : 1565886155.8512836, "duration" : 53.229814529418945, "analysis" : [{"errors" : [], "file" : "/unique_chucks/4/0x219101d69455c620700bf02f157f29ef7a8f7988.sol", "name" : "MyOwned"}, {"errors" : [], "fi...
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "strin...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"umbrella.js": {"type": "string"}, "umbrella.min.js": {"type": "string"}}, "required": ["umbrella.js", "umbrella.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"umbrella.js" : "sha512-caTr+ccZp31VdmTZfWZCKFFG46L8T8c58gbQrCJL3t+HyYU+LhJwGqaxjWVjiXH98lMaENEtT5YwsBm1y44tiQ==", "umbrella.min.js" : "sha512-W4duDn9KFvUA9f04TtKZaMqzRDG1tbcjK/hpLscx/ml+VZV0xfO5ZxHOMvrbJIqfFld06+EaZb/ap5P/0ru1Lw=="}
json_instruct
{"type": "object", "properties": {"umbrella.js": {"type": "string"}, "umbrella.min.js": {"type": "string"}}, "required": ["umbrella.js", "umbrella.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"author": {"type": "string"}, "date": {"type": "string"}}, "required": ["author", "date"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : "unknown", "date" : "2018-01-11T00:00:00"}
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "date": {"type": "string"}}, "required": ["author", "date"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "demo": {"type": "string"}, "version": {"type": "string"}, "engines": {"type": "object", "properties": {"ghost": {"type": "string"}}, "required": ["...
{"name" : "FirePress_Crisply", "description" : "This Ghost theme is supported by FirePress. Find more free themes at https://github.com/topics/firepress-ghost-theme", "demo" : "https://play-with-ghost.com/ghost-themes/firepress-crisply-for-barbershops/", "version" : "2.1.1", "engines" : {"ghost" : ">=2.0.0"}, "license"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "demo": {"type": "string"}, "version": {"type": "string"}, "engines": {"type": "object", "properties": {"ghost": {"type": "string"}}, "required": ["ghost"]}, "license": {"type": "string"}, "screenshots": {"type": "object", ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "ite...
{"ast" : null, "code" : "var _s = $RefreshSig$();\n\nimport React, { useContext, useState } from 'react';\nexport function MainProvider({\n children\n}) {\n _s();\n\n const [ra, setRa] = useState('20153');\n\n function trocaRa(param) {\n setRa(param);\n }\n}\n\n_s(MainProvider, \"iK7Gp3aghKmEX+K2zG3CRQGITK8=\")...
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesCont...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties"...
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [0.806468, 52.335787]}, "properties" : {"documentation-url" : "https://historicengland.org.uk/listing/the-list/list-entry/1031291", "listed-building-grade" : "II", "listed-building" : "1031291", "name" : "HONINGTON VOLUNTARY CONTROLLED SCHOOL", "start...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"documentation-url": {"type": "str...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"statistical": {"type": "object", "properties": {"9638056": {"type": "object", "properties": {"RMSE": {"type": "number"}, "PCC": {"type": "number"}}, "required": ["RMSE", "PCC"]}, "9691931_2": {"type": "object...
{"statistical" : {"9638056" : {"RMSE" : 317.0480296816241, "PCC" : -0.7276234175513439}, "9691931_2" : {"RMSE" : 303.44423911157054, "PCC" : 0.33341648913626265}, "9699634" : {"RMSE" : 312.84575872145047, "PCC" : -0.13294644041551337}}}
json_instruct
{"type": "object", "properties": {"statistical": {"type": "object", "properties": {"9638056": {"type": "object", "properties": {"RMSE": {"type": "number"}, "PCC": {"type": "number"}}, "required": ["RMSE", "PCC"]}, "9691931_2": {"type": "object", "properties": {"RMSE": {"type": "number"}, "PCC": {"type": "number"}}, "re...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"hyperrectangles": {"type": "array", "items": {"type": "object", "properties": {"size": {"type": "array", "items": {"type": "integer"}}}, "required": ["size"]}}, "base": {"type": "object", "properties": {"size": {"type": "ar...
{"hyperrectangles" : [{"size" : [1, 3, 1]}, {"size" : [2, 1, 1]}, {"size" : [1, 1, 1]}, {"size" : [1, 3, 1]}, {"size" : [1, 5, 2]}, {"size" : [2, 4, 4]}, {"size" : [2, 1, 2]}], "base" : {"size" : [6, 6, 0], "position" : [0, 0, 0]}}
json_instruct
{"type": "object", "properties": {"hyperrectangles": {"type": "array", "items": {"type": "object", "properties": {"size": {"type": "array", "items": {"type": "integer"}}}, "required": ["size"]}}, "base": {"type": "object", "properties": {"size": {"type": "array", "items": {"type": "integer"}}, "position": {"type": "arr...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "default_locale": {"type": "string"}, "manifest_version": {"type": "integer"}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "48":...
{"name" : "__MSG_extName__", "description" : "__MSG_extDescription__", "default_locale" : "en", "manifest_version" : 2, "icons" : {"16" : "icon/16.png", "48" : "icon/48.png", "128" : "icon/128.png"}, "browser_action" : {"default_icon" : {"19" : "icon/19.png", "38" : "icon/38.png"}}, "background" : {"scripts" : ["event....
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "default_locale": {"type": "string"}, "manifest_version": {"type": "integer"}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "4...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"mdb_source_id": {"type": "integer"}, "data_type": {"type": "string"}, "provider": {"type": "string"}, "location": {"type": "object", "properties": {"country_code": {"type": "string"}, "subdivision_name": {"type": "s...
{"mdb_source_id" : 481, "data_type" : "gtfs", "provider" : "Potomac and Rappahannock Transportation Commission (PRTC)", "location" : {"country_code" : "US", "subdivision_name" : "Virginia", "municipality" : "Woodbridge", "bounding_box" : {"minimum_latitude" : 38.475418, "maximum_latitude" : 38.931923, "minimum_longitud...
json_instruct
{"type": "object", "properties": {"mdb_source_id": {"type": "integer"}, "data_type": {"type": "string"}, "provider": {"type": "string"}, "location": {"type": "object", "properties": {"country_code": {"type": "string"}, "subdivision_name": {"type": "string"}, "municipality": {"type": "string"}, "bounding_box": {"type": ...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"activeSolution": {"type": "string"}, "solutions": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "deepLink": {"type": "string"}, "iframeUrl": {"type": "st...
{"activeSolution" : "Leopard Test Solution", "solutions" : [{"name" : "Leopard Test Solution", "url" : "https://teneo5feature-demos.presales.artificial-solutions.com/leopard/", "deepLink" : "leopard", "iframeUrl" : "https://www.worldweatheronline.com/lang/es/", "contextParams" : [{"name" : "channel", "values" : [{"text...
json_instruct
{"type": "object", "properties": {"activeSolution": {"type": "string"}, "solutions": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "deepLink": {"type": "string"}, "iframeUrl": {"type": "string"}, "contextParams": {"type": "array", "items": {"type": "...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}, "constants": {"type": "array", "items": {}}, "class": {"type": "string"}, "constructors": {"type": "array", "items": {}}, "fiel...
{"methods" : ["abstract int getMax() The age range's upper bound, if any.", "abstract int getMin() The age range's lower bound, if any.", "abstract boolean hasMax() Indicates whether the \"max\" field is explicitly set to a value.", "abstract boolean hasMin() Indicates whether the \"min\" field is explicitly set to a v...
json_instruct
{"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}, "constants": {"type": "array", "items": {}}, "class": {"type": "string"}, "constructors": {"type": "array", "items": {}}, "fields": {"type": "array", "items": {}}}, "required": ["methods", "packag...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type"...
{"name" : "cerberus-api", "description" : "Node module for interacting with the Cerberus API", "version" : "0.1.1", "author" : "makesites", "contributors" : [{"name" : "Makis Tracend", "email" : "makis@makesit.es"}], "homepage" : "http://cerberus.makesit.es", "keywords" : ["cerberus", "makesites", "api"], "repository" ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "contributors": {"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": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"average_occupancy" : [2.8966241215046744, 2.9679690123190396, 2.922985210961296, 2.913351610766935, 2.798168566035331, 2.789054860474096, 2.781501527587616, 2.676516387634812, 2.706083025417884, 2.697883754205802, 2.684533166602865, 2.702139294000492, 2.8203955056360344, 2.8951437044467014, 3.0751653799542735, 3.0198...
json_instruct
{"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"description": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "title": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "use-of...
{"description" : {"message" : "Utilizzo dei cookie da parte di eyeo"}, "title" : {"message" : "Cookie"}, "use-of-cookies" : {"message" : "Utilizzo dei cookie sui nostri siti web"}, "change-cookie-settings-label" : {"message" : "Modifica le impostazioni cookie"}, "use-of-cookies-4" : {"message" : "Se non desideri aiutar...
json_instruct
{"type": "object", "properties": {"description": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "title": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "use-of-cookies": {"type": "object", "properties": {"message": {"type": "strin...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1979, 5], [1981, 5], [2007, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "ite...
{"name" : "FareedAlBandar/zaincash-sdk", "description" : "An Unofficial Object Oriented SDK for integrating ZainCash with php applications.", "keywords" : ["zaincash", "zain", "payment", "iraq", "sdk"], "license" : "MIT", "type" : "library", "authors" : [{"name" : "Alhasan A. Al-Nasiry", "email" : "alhasan.nasiry+gh@gm...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "ema...