input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"WorkItem": {"type": "object", "properties": {"AffectedComponent": {"type": "object", "properties": {"Name": {"type": "string"}, "DisplayName": {"type": "string"}}, "required": ["Name", "DisplayName"]}, "ClosedComme...
{"WorkItem" : {"AffectedComponent" : {"Name" : "", "DisplayName" : ""}, "ClosedComment" : "", "ClosedDate" : null, "CommentCount" : 0, "Custom" : null, "Description" : "Using 2.2.2\n\nThere doesn't seem to be any way at all to access the separate result sets from a MultiResultStoredProcedure without serialising the out...
json_instruct
{"type": "object", "properties": {"WorkItem": {"type": "object", "properties": {"AffectedComponent": {"type": "object", "properties": {"Name": {"type": "string"}, "DisplayName": {"type": "string"}}, "required": ["Name", "DisplayName"]}, "ClosedComment": {"type": "string"}, "ClosedDate": {"type": "null"}, "CommentCount"...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"identity": {"type": "string"}, "version": {"type": "string"}}, "required": ["identity", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"identity" : "main_assets", "version" : "1.0.0"}
json_instruct
{"type": "object", "properties": {"identity": {"type": "string"}, "version": {"type": "string"}}, "required": ["identity", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "requir...
{"latest_version" : ["2.2"], "meta" : {"description" : "Image to Ascii Text, can output to html or ansi terminal", "homepage" : "https://github.com/hit9/img2txt", "license" : "BSD"}, "versions" : {"2.0" : {"sha256" : "049aacdc9c34e61937ec44f8765b7f76101e07c539a1742e68c20d3c1eff7316", "url" : "https://files.pythonhosted...
json_instruct
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "obje...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "...
{"id" : 1153, "source" : "barnes", "verse_id" : 18060, "verse_count" : 1, "reference" : "22:7", "title" : "", "html" : " <p> <em>Thy choicest valleys </em>&mdash;Hebrew, &lsquo;The choice of thy galleys;&rsquo; meaning the most fertile and most valued lands in the vicinity of the city. The rich and fertile vales around...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "integer"}}, "required": ["id", "source", "verse_id"...
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": {"test": {"type": "string"}, "compile": {"type": "s...
{"name" : "data-adapter", "version" : "1.0.0", "description" : "a simple adapter to connect multiple datastores", "main" : "dist/index.js", "scripts" : {"test" : "./node_modules/.bin/mocha $(find test -name '*.test.js')", "compile" : "rm -rf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./package...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "compile": {"type": "string"}, "postinstall": {"type": "string"}, "start": {"type": "string...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"iPDB set trace": {"type": "object", "properties": {"prefix": {"type": "string"}, "body": {"type": "string"}}, "required": ["prefix", "body"]}, "set ipython trace": {"type": "object", "properties": {"prefix": {"...
{"iPDB set trace" : {"prefix" : "ipdb", "body" : "import ipdb; ipdb.set_trace() # fmt: skip $0"}, "set ipython trace" : {"prefix" : "ipy", "body" : "import IPython; IPython.embed() # fmt: skip"}}
json_instruct
{"type": "object", "properties": {"iPDB set trace": {"type": "object", "properties": {"prefix": {"type": "string"}, "body": {"type": "string"}}, "required": ["prefix", "body"]}, "set ipython trace": {"type": "object", "properties": {"prefix": {"type": "string"}, "body": {"type": "string"}}, "required": ["prefix", "body...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"kbaPropertyName": {"type": "string"}, "minimumAnswersToDefine": {"type": "integer"}, "minimumAnswersToVerify": {"type": "integer"}, "questions": {"type": "object", "properties": {"1": {"type": "object", "properties": {"en":...
{"kbaPropertyName" : "kbaInfo", "minimumAnswersToDefine" : 2, "minimumAnswersToVerify" : 1, "questions" : {"1" : {"en" : "What's your favorite color?", "en_GB" : "What is your favourite colour?", "fr" : "Quelle est votre couleur pr\u00e9f\u00e9r\u00e9e?"}, "2" : {"en" : "Who was your first employer?"}}}
json_instruct
{"type": "object", "properties": {"kbaPropertyName": {"type": "string"}, "minimumAnswersToDefine": {"type": "integer"}, "minimumAnswersToVerify": {"type": "integer"}, "questions": {"type": "object", "properties": {"1": {"type": "object", "properties": {"en": {"type": "string"}, "en_GB": {"type": "string"}, "fr": {"type...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "start": {"type": "string"}, "end": {"type": "string"}}, "required": ["id", "type", "start", "end"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "nocto-blatta__DROPS__medicinal-blatta-oil", "type" : "DROPS", "start" : "nocto-blatta", "end" : "medicinal-blatta-oil"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "start": {"type": "string"}, "end": {"type": "string"}}, "required": ["id", "type", "start", "end"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type"...
{"name" : "Cropper LP token (DXL/USDC)", "symbol" : "DXL/USDC", "logoURI" : "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/2Da82KXrqcUnv9oRcoKKUYRWM2yjPesi31GmrgMjZZ6h/logo.png", "decimals" : 8, "address" : "GnZmzcApAfDfZZ1VyuaqKCT5JgepGbqe5kP189jeGMPk", "chainId" : 101, "tags" : ["lp-tok...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "extensions": {"type": "object", "properties"...
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" : "FOR UPON TRIAL HAVING FOUND THAT PARTICULAR PIECE (AND ALL OTHERS OF THAT COLOUR, WEIGHT, AND FUSIBILITY, THAT I EVER TRIED) MALLEABLE,", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/11858.json"}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"},...
{"name" : "crawl-pet", "version" : "0.0.3", "author" : "wl879", "description" : "Support queue Nodejs crawler framework", "main" : "pet/index.js", "repository" : {"type" : "git", "url" : "https://github.com/wl879/crawler-pet.git"}, "bin" : {"crawl-pet" : "./main.js"}, "scripts" : {"test" : "node ./main.js --help"}, "li...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, ...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "WHICH THE MIND ARRIVES AT BY DEDUCTION MADE FROM SUCH IDEAS, WHICH IT HAS GOT BY THE USE OF ITS NATURAL FACULTIES;", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/12887.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": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"...
{"userId" : 88513, "cartId" : "464daaec-5d4d-4713-9bc5-7f6d86ac2561", "preferredProducts" : [1908, 3570, 4268, 3213], "productReviews" : [{"productId" : 2980, "reviewText" : "talk about fury.", "reviewDate" : "2018-02-17T01:12:44.0830264+02:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft...
{"id" : "25", "provinceId" : "36", "regencyId" : "04", "name" : "Kopo"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"pages": {"type": "array", "items": {"type": "string"}}, "window": {"type": "object", "properties": {"backgroundColor": {"type": "string"}, "backgroundTextStyle": {"type": "string"}, "navigationBarBackgroundCo...
{"pages" : ["pages/team-tab/team-tab", "pages/event-tab/event-tab", "pages/favor-tab/favor-tab", "pages/settting-tab/setting-tab", "pages/team-detail/team-detail", "pages/event-detail/event-detail", "pages/team-event/team-event"], "window" : {"backgroundColor" : "#F6F6F6", "backgroundTextStyle" : "light", "navigationBa...
json_instruct
{"type": "object", "properties": {"pages": {"type": "array", "items": {"type": "string"}}, "window": {"type": "object", "properties": {"backgroundColor": {"type": "string"}, "backgroundTextStyle": {"type": "string"}, "navigationBarBackgroundColor": {"type": "string"}, "navigationBarTitleText": {"type": "string"}, "navi...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, ...
{"name" : "GRButtons", "version" : "0.0.1", "summary" : "Social network buttons without any image.", "homepage" : "http://github.com/goncz9/GRButtons", "license" : {"type" : "MIT", "text" : "Copyright (c) 2012 Robert Goncz\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "text"]}, "authors": {"type": "object", "...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"image_name": {"type": "string"}, "image_height": {"type": "integer"}, "camera_gps": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "object", "properties": {"score": {"type": "number"}, "frontvi...
{"image_name" : "lesion587.png", "image_height" : 512, "camera_gps" : "", "bbox" : [{"score" : 1.0, "frontview" : true, "other" : {"region_attributes" : {"id" : 1.0, "type" : "car"}}, "category_id" : "car", "segmentation" : "195.0,297.0,191.0,294.0,186.0,294.0,181.0,296.0,179.0,297.0,177.0,302.0,181.0,303.0,184.0,300.0...
json_instruct
{"type": "object", "properties": {"image_name": {"type": "string"}, "image_height": {"type": "integer"}, "camera_gps": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "object", "properties": {"score": {"type": "number"}, "frontview": {"type": "boolean"}, "other": {"type": "object", "properties": {"regio...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draf...
{"id" : "http://data.doremus.org/performance/976f91c8-0111-3d8b-a871-2db095e50e61", "expression" : [{"id" : "http://data.doremus.org/expression/dfafa5fb-c089-3e21-adab-5a9f2cc822f9"}, {"id" : "http://data.doremus.org/expression/c90d3245-fcf1-3da7-a5bf-640146a5da99"}, {"id" : "http://data.doremus.org/expression/f843ee96...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"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": {"t...
{"ast" : null, "code" : "var _jsxFileName = \"E:\\\\Learn React\\\\reactcomponent\\\\src\\\\App.jsx\";\nimport React from 'react';\nimport Heading from './Heading';\nimport Paragraph from './Paragraph';\nimport List from './List';\n\nfunction App() {\n return /*#__PURE__*/React.createElement(React.Fragment, null, /*#_...
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...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"DESCRIPTION": {"type": "string"}, "USAGE": {"type": "string"}, "EXAMPLES": {"type": "string"}, "MISSING_STATUS": {"type": "string"}, "MISSING_ROLE": {"type": "string"}, "SUCCESS_ENABLED": {"type": "string"}, "ALREADY_DISABLED"...
{"DESCRIPTION" : "V\u00e1lt\u00e1s az autorole-ra a szerveren!", "USAGE" : "{{prefix}}autorole [on/off] (rang)", "EXAMPLES" : "{{prefix}}autorole on @Tag\n{{prefix}}autorole off", "MISSING_STATUS" : "Adj meg egy \u00e9rv\u00e9nyes \u00e9rt\u00e9ket a k\u00f6vetkez\u0151k k\u00f6z\u00f6tt: `on` \u00e9s `off`", "MISSING_...
json_instruct
{"type": "object", "properties": {"DESCRIPTION": {"type": "string"}, "USAGE": {"type": "string"}, "EXAMPLES": {"type": "string"}, "MISSING_STATUS": {"type": "string"}, "MISSING_ROLE": {"type": "string"}, "SUCCESS_ENABLED": {"type": "string"}, "ALREADY_DISABLED": {"type": "string"}, "SUCCESS_DISABLED": {"type": "string"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"cdf_smooth": {"type": "object", "properties": {"c": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "x": {"type": "array", "items": {"type": "number"}}}, "required": ["c", "x"]}}, "required": ["cdf_...
{"cdf_smooth" : {"c" : [[-0.0011999246791783928, 0.011980766973463137, -1.025968464228268e-17, 0.005236], [0.0026102980206611512, 0.005129891429289283, 0.03256398595407225, 0.0403585], [-0.005265864666034393, 0.015722369651261312, 0.06076984848091932, 0.1002525], [0.0019754233421077102, 0.002263766574330553, 0.07609295...
json_instruct
{"type": "object", "properties": {"cdf_smooth": {"type": "object", "properties": {"c": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "x": {"type": "array", "items": {"type": "number"}}}, "required": ["c", "x"]}}, "required": ["cdf_smooth"], "$schema": "http://json-schema.org/draft-07/schem...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"/user-management/users": {"type": "object", "properties": {"get": {"type": "object", "properties": {"tags": {"type": "array", "items": {"type": "string"}}, "security": {"type": "array", "items": {"type": "objec...
{"/user-management/users" : {"get" : {"tags" : ["user-management"], "security" : [{"authentication" : []}], "summary" : "Get the list of user", "description" : "Get the list of user", "parameters" : [], "responses" : {"200" : {"description" : "Success"}, "400" : {"description" : "Bad Request"}, "401" : {"description" :...
json_instruct
{"type": "object", "properties": {"/user-management/users": {"type": "object", "properties": {"get": {"type": "object", "properties": {"tags": {"type": "array", "items": {"type": "string"}}, "security": {"type": "array", "items": {"type": "object", "properties": {"authentication": {"type": "array", "items": {}}}, "requ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"service": {"type": "object", "properties": {"port": {"type": "string"}}, "required": ["port"]}, "email": {"type": "object", "properties": {"recipient": {"type": "string"}, "user": {"type": "string"}, "password": {"t...
{"service" : {"port" : "5000"}, "email" : {"recipient" : "email of the receiving person", "user" : "your gmail sender account", "password" : "your gmail sender password"}}
json_instruct
{"type": "object", "properties": {"service": {"type": "object", "properties": {"port": {"type": "string"}}, "required": ["port"]}, "email": {"type": "object", "properties": {"recipient": {"type": "string"}, "user": {"type": "string"}, "password": {"type": "string"}}, "required": ["recipient", "user", "password"]}}, "re...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"compression": {"type": "string"}, "express": {"type": "string"}, "serve-static": {...
{"name" : "fsws", "version" : "1.0.0", "description" : "Fragment Synthesizer Web Server", "dependencies" : {"compression" : "~1.7.4", "express" : "~4.17.1", "serve-static" : "~1.14.1", "strong-cluster-control" : "^2.2.4", "url" : "~0.11.0", "winston" : "3.3.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"compression": {"type": "string"}, "express": {"type": "string"}, "serve-static": {"type": "string"}, "strong-cluster-control": {"type": "stri...
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "fontawesome": {"type": "string"}}, "required": ["name", "displayName", "fontawesome"]}, "$schema": "http://json-schema.org/draft-07/s...
[{"name" : "facebook", "displayName" : "Facebook", "fontawesome" : "fa-facebook"}, {"name" : "twitter", "displayName" : "Twitter", "fontawesome" : "fa-twitter"}, {"name" : "youtube", "displayName" : "YouTube", "fontawesome" : "fa-youtube"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "fontawesome": {"type": "string"}}, "required": ["name", "displayName", "fontawesome"]}, "$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"}, "eggPlugin": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["name", "version", "eggPlugin"], "$schema": "http://json-...
{"name" : "egg-wxauth", "version" : "1.0.0", "eggPlugin" : {"name" : "wxauth"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "eggPlugin": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["name", "version", "eggPlugin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"fontFamily": {"type": "string"}, "description": {"type": "string"}, "order": {"type": "integer"}}, "required": ["fontFamily", "description", "order"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"fontFamily" : "Yu Mincho", "description" : "An elegant font", "order" : 1}
json_instruct
{"type": "object", "properties": {"fontFamily": {"type": "string"}, "description": {"type": "string"}, "order": {"type": "integer"}}, "required": ["fontFamily", "description", "order"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "locellate", "definition" : "Divided into secondary compartments or cells, as where one cavity is separated into several smaller ones."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"...
{"userId" : 92479, "cartId" : "91cdbf5a-3ddf-44b0-abe6-32386513504a", "preferredProducts" : [4978], "productReviews" : [{"productId" : 2081, "reviewText" : "I saw one of these in Bhutan and I bought one.", "reviewDate" : "2020-04-03T11:54:45.359546+03:00"}, {"productId" : 4101, "reviewText" : "My co-worker Merwin has o...
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...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "trachelipoda", "definition" : "An extensive artificial group of gastropods comprising all those which have a spiral shell and the foot attached to the base of the neck."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "...
{"lastUpdated" : 1655019279666, "username" : "LogicGatekeeper", "scores" : [{"xp" : 12196, "rank" : 283, "cardId" : 567}, {"xp" : 7130, "rank" : 395, "cardId" : 539}]}
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...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"sp.es5.js": {"type": "string"}, "sp.es5.umd.bundle.js": {"type": "string"}, "sp.es5.umd.bundle.min.js": {"type": "string"}, "sp.es5.umd.js": {"type": "string"}, "sp.es5.umd.min.js": {"type": "string"}, "sp.js": {"t...
{"sp.es5.js" : "sha256-jqBwn9fHmnn/TpPKs5D9EBL+Q0/2x8nEdyQxwP8DwSc=", "sp.es5.umd.bundle.js" : "sha256-Fn0NtoUFTisBAasZDUX4yiwykgik9F3EmYBd3URN0pA=", "sp.es5.umd.bundle.min.js" : "sha256-7U3xwD4g37bvVOwkdpMUbnBM5PhRbZNYaXgBp/gpBL0=", "sp.es5.umd.js" : "sha256-kk0/IWUEIC04PjGkk4RTSkbu5vtFidN2b1HpO4B+GqI=", "sp.es5.umd.m...
json_instruct
{"type": "object", "properties": {"sp.es5.js": {"type": "string"}, "sp.es5.umd.bundle.js": {"type": "string"}, "sp.es5.umd.bundle.min.js": {"type": "string"}, "sp.es5.umd.js": {"type": "string"}, "sp.es5.umd.min.js": {"type": "string"}, "sp.js": {"type": "string"}}, "required": ["sp.es5.js", "sp.es5.umd.bundle.js", "sp...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"text": {"type": "string"}, "image": {"type": "string"}}, "required": ["text", "image"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : " 194 THE HISTORY II. book duct either to <span class=\"place\" data-place-id=\"531109\" >Syria</span>, or to iEgypt. The masters of the galle3rs, alarmed at the pro- posal, or intending to deceive, desired time to prepare the minds of their sailors, faithfully promising to return without de- lay. Asprenas, d...
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "image": {"type": "string"}}, "required": ["text", "image"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "...
{"id" : 1135, "surahNumber" : "007", "ayatNumber" : "181", "arabic" : "\u0648\u064e\u0645\u0650\u0645\u0651\u064e\u0646\u0652 \u062e\u064e\u0644\u064e\u0642\u0652\u0646\u064e\u0627 \u0623\u064f\u0645\u0651\u064e\u0629\u064c \u064a\u064e\u0647\u0652\u062f\u064f\u0648\u0646\u064e \u0628\u0650\u0627\u0644\u0652\u062d\u064...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{".js" : "94038f4b9018557b3e080523f4f49032efd8af6d.js"}
json_instruct
{"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"canisters": {"type": "object", "properties": {"inline_types": {"type": "object", "properties": {"type": {"type": "string"}, "build": {"type": "string"}, "root": {"type": "string"}, "ts": {"type": "string"}, "candid...
{"canisters" : {"inline_types" : {"type" : "custom", "build" : "npx azle inline_types", "root" : "src", "ts" : "src/inline_types.ts", "candid" : "src/inline_types.did", "wasm" : "target/wasm32-unknown-unknown/release/inline_types.wasm"}}}
json_instruct
{"type": "object", "properties": {"canisters": {"type": "object", "properties": {"inline_types": {"type": "object", "properties": {"type": {"type": "string"}, "build": {"type": "string"}, "root": {"type": "string"}, "ts": {"type": "string"}, "candid": {"type": "string"}, "wasm": {"type": "string"}}, "required": ["type"...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp...
{"nom" : "Santranges", "dpt" : "Cher", "inscrits" : 373, "abs" : 90, "votants" : 283, "blancs" : 3, "nuls" : 3, "exp" : 277, "res" : [{"panneau" : "2", "voix" : 85}, {"panneau" : "11", "voix" : 62}, {"panneau" : "9", "voix" : 50}, {"panneau" : "3", "voix" : 30}, {"panneau" : "1", "voix" : 22}, {"panneau" : "4", "voix" ...
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object"...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "dependencies": {"type": "object", "properties": {"lit": {"type": "string"}}, "required": ["lit"]}}, "required": ["name", "type", "dependencies"], "$sche...
{"name" : "plugin-prerender-lit-build-prerender-getting-started", "type" : "module", "dependencies" : {"lit" : "^2.1.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "dependencies": {"type": "object", "properties": {"lit": {"type": "string"}}, "required": ["lit"]}}, "required": ["name", "type", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "1602023001", "nama" : "BALIAN MAKMUR"}, {"id" : "1602023002", "nama" : "MULYA JAYA"}, {"id" : "1602023003", "nama" : "SUMBER BARU"}, {"id" : "1602023004", "nama" : "CIPTA SARI"}, {"id" : "1602023005", "nama" : "SUMBU SARI"}, {"id" : "1602023006", "nama" : "SUKA SARI"}, {"id" : "1602023007", "nama" : "KEMANG I...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[2005, 5], [2008, 6], [2009, 8]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "num...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[126.75, 25.666666666666668], [126.75, 25.75], [126.875, 25.75], [126.875, 25.666666666666668], [126.75, 25.666666666666668]]]}, "properties" : {"code" : 382646, "url" : "http://madefor.github.io/0410/api/v1/382646.geojson", "view" : "https://gith...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"type": "array", "items": {"type"...
{"type" : "FeatureCollection", "title" : "Roman amphitheater", "id" : "808098069", "bbox" : [10.7912831, 35.2118299, 10.7912831, 35.2118299], "description" : "The Roman amphitheater is located on the opposite bank of the wadi from Bararus.", "connectsWith" : ["324673"], "features" : [{"type" : "Feature", "geometry" : {...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"type": "array", "items": {"type": "string"}}, "features": {"type": "array", "items": {"type": ...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"...
{"name" : "my-dynamodb-autoscaler", "version" : "0.1.0", "private" : true, "dependencies" : {}, "devDependencies" : {"lambda-middleware" : "^0.1.0", "lambda-scripts" : "0.1.2"}, "scripts" : {"start" : "lambda-scripts start", "build" : "lambda-scripts build", "test" : "lambda-scripts test --env=jsdom", "eject" : "lambda...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"lambda-middleware": {"type": "string"}, "lambda-scripts": {"type": "str...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "prop...
{"hash" : "0xf804e82bfa6446fd6fc20a09c7ce5a88c62968cb3103ee22bbd9a56db6867778", "parentHash" : "0x0bb3a51408cf5e07b03f6627bd1b46cc1a2e63859008f44e4c040af7ea1a1eb8", "number" : 41696, "timestamp" : 1438843041, "nonce" : "0x844182c0cafdf39e", "difficulty" : 1360654571735, "gasLimit" : {"_hex" : "0x139a"}, "gasUsed" : {"_...
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]...
Based on the schema below, produce a valid JSON object: {"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": "i...
{"id" : 101791871, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "b831c876e06f47421cea432dad893eb4", "wof:id" : 101791871, "wof:repo" : "whosonfirst-data-admin-ro"}, "bbox" : [27.785458, 44.974262, 27.822041, 45.018938], "geometry" : {"coordinates"...
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 an example JSON object that satisfies this schema: {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"module": {"type": "string"}, "sourceMap": {"type": "boolean"}, "target": {"type": "string"}, "outDir": {"type": "string"}}, "required": ["module", "sourceMap", "target", "ou...
{"compilerOptions" : {"module" : "commonjs", "sourceMap" : true, "target" : "ES2015", "outDir" : "./tmp/"}, "exclude" : ["node_modules"], "files" : ["src/main.ts", "src/functions.ts"]}
json_instruct
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"module": {"type": "string"}, "sourceMap": {"type": "boolean"}, "target": {"type": "string"}, "outDir": {"type": "string"}}, "required": ["module", "sourceMap", "target", "outDir"]}, "exclude": {"type": "array", "items": {"type": "st...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {...
{"id" : 24417, "title" : ["[Ranger Guild, Pavilion]"], "description" : ["Open on all sides to the mild breeze, this tent is large enough to shelter many. Zephyrs tease the tassels of numerous cushions scattered on the intricately woven rugs which cover smoothly packed earth. A lectern carved from a tree stump stands ...
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": {"24418"...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "req...
{"name" : "bitx-demo", "version" : "1.0.0", "description" : "Live BitX node.js demo", "main" : "demo.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "node demo.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/CjS77/bitx-demo.git"}, "keywords" : ["API", "live", "d...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "repository": {"type": "objec...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "author": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}, "photo": {"type": "string"}}, "required": ["type", "name", "url", "ph...
{"type" : "entry", "author" : {"type" : "card", "name" : "Ryan Boyd", "url" : "", "photo" : "https://www.gravatar.com/avatar/4e996e6665ea0217793625e2c4d2817d?s=256&d=404"}, "url" : "", "published" : "2010-01-27T03:31:52-08:00", "content" : {"html" : "<p>Congrats Will! Looking forward to working with you!</p>\n", "text...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "author": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}, "photo": {"type": "string"}}, "required": ["type", "name", "url", "photo"]}, "url": {"type": "string"}, "published": {"type": "stri...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"dimensioncommentfor": {"type": "string"}, "dimensiongradefor": {"type": "string"}, "dimensionnumber": {"type": "string"}}, "required": ["dimensioncommentfor", "dimensiongradefor", "dimensionnumber"], "$schema":...
{"dimensioncommentfor" : "Kommentar f\u00fcr {{$a}}", "dimensiongradefor" : "Bewertung f\u00fcr {{$a}}", "dimensionnumber" : "Kriterium"}
json_instruct
{"type": "object", "properties": {"dimensioncommentfor": {"type": "string"}, "dimensiongradefor": {"type": "string"}, "dimensionnumber": {"type": "string"}}, "required": ["dimensioncommentfor", "dimensiongradefor", "dimensionnumber"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "server": {"type": "string"}}, "re...
{"name" : "updated_portfolio", "version" : "1.0.0", "description" : "Tinkering with building a brand new portfolio with basic css and html https://bradfabian.github.io/updated_portfolio/", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "server" : "nodemon server.js"}, "reposit...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "server": {"type": "string"}}, "required": ["test", "server"]}, "repository": {"type": "obj...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"count": {"type": "integer"}, "_tpl": {"type": "string"}}, "required": ["count", "_tpl"]}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[{"count" : 35650, "_tpl" : "5449016a4bdc2d6f028b456f"}]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"count": {"type": "integer"}, "_tpl": {"type": "string"}}, "required": ["count", "_tpl"]}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"created": {"type": "integer"}, "data": {"type": "object", "properties": {"object": {"type": "object", "properties": {"account_balance": {"type": "integer"}, "active_card": {"type": "null"}, "created"...
[{"created" : 1326853478, "data" : {"object" : {"account_balance" : 0, "active_card" : null, "created" : 1372666743, "delinquent" : false, "description" : null, "discount" : null, "email" : null, "id" : "cus_00000000000000", "livemode" : false, "object" : "customer", "subscription" : null}}, "id" : "evt_00000000000000"...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"created": {"type": "integer"}, "data": {"type": "object", "properties": {"object": {"type": "object", "properties": {"account_balance": {"type": "integer"}, "active_card": {"type": "null"}, "created": {"type": "integer"}, "delinquent": {"type": "boolean"}, "...
Create a JSON structure that matches this 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": {"type": "stri...
{"id" : 84279, "info" : {"name" : "Road to Fame Facebook No Sidebar", "description" : "A stylish style, to get rid of the sidebar.", "additionalInfo" : null, "format" : "uso", "category" : "facebook", "createdAt" : "2013-03-10T10:53:26.000Z", "updatedAt" : "2013-03-10T10:53:26.000Z", "license" : "NO-REDISTRIBUTION", "a...
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": "...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}}, "required": ["name", "version", "lockfileVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "repodispatch-sample-main", "version" : "0.0.0-calendar-version", "lockfileVersion" : 1}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}}, "required": ["name", "version", "lockfileVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string...
{"stationId" : 2600205, "stationGroupId" : 2600205, "name" : "\u6d17\u8db3", "lineId" : 26002, "zipCode" : "152-0012", "pref" : "\u6771\u4eac\u90fd", "city" : "\u76ee\u9ed2\u533a", "town" : "\u6d17\u8db3", "longitude" : 139.694367, "latitude" : 35.61043, "status" : 0}
json_instruct
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latit...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "collection": {"type": "string"}, "title": {"type": "string"}, "summary": {"type": "string"}, "parent": {"type": "string"}, "url": {"type": "string"}, "updated": {"type": "string"}, "childr...
{"type" : "wiki", "collection" : "diary", "title" : "2020 TIL", "summary" : "", "parent" : "TIL", "url" : "/diary/til-2020", "updated" : "2020-02-27 23:50:14 +0900", "children" : []}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "collection": {"type": "string"}, "title": {"type": "string"}, "summary": {"type": "string"}, "parent": {"type": "string"}, "url": {"type": "string"}, "updated": {"type": "string"}, "children": {"type": "array", "items": {}}}, "required": ["type", "collectio...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K18223": {"type": "string"}, "K18226": {"type": "string"}, "K18224": {"type": "string"}, ...
[{"comment" : "", "definition" : "Propane + NADH + H+ + Oxygen <=> Propan-2-ol + NAD+ + H2O", "orthologs" : {"K18223" : "propane 2-monooxygenase large subunit [EC:1.14.13.227]", "K18226" : "propane monooxygenase coupling protein", "K18224" : "propane 2-monooxygenase small subunit [EC:1.14.13.227]", "K18225" : "propane ...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K18223": {"type": "string"}, "K18226": {"type": "string"}, "K18224": {"type": "string"}, "K18225": {"type": "string"}}, "required": ["K18223", "K1...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type":...
{"\u5de5\u5ee0\u540d\u7a31" : "\u6b23\u5efa\u5fb7\u4f01\u696d\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99608585", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u65b0\u5317\u5e02\u65b0\u838a\u5340\u4e2d\u6b63\u8def\u516b\uff10\u4e09\u5df7\u4e00\uff10\u...
json_instruct
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "st...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"arguments": {"type": "array", "items": {"type": "string"}}, "cores": {"type": "integer"}, "duration": {"type": "integer"}, "executable": {"type": "string"}, "input_staging": {"type": "array", "items": {"type": "string"}}, "mpi":...
{"arguments" : ["1930", "input_shared_1_3.txt", "input_shared_1_4.txt", "output_1_1_1930.txt"], "cores" : 2, "duration" : 60, "executable" : "~/bin.rp/stage_2.sh", "input_staging" : ["/home/merzky/aimes/swift-k/dist/swift-svn/libexec/_swiftwrap.staging", "/home/merzky/aimes/AIMES-Swift/viveks_workflow/data.02048.000/./...
json_instruct
{"type": "object", "properties": {"arguments": {"type": "array", "items": {"type": "string"}}, "cores": {"type": "integer"}, "duration": {"type": "integer"}, "executable": {"type": "string"}, "input_staging": {"type": "array", "items": {"type": "string"}}, "mpi": {"type": "boolean"}, "name": {"type": "string"}, "output...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}, "cod...
{"image" : "https://ipfs.infura.io/ipfs/Qmb5hPzwK9FrogfEuGvXd7ctwWUC4XiTz1b7SkVQ2iipn1", "attributes" : [{"trait_type" : "Type", "value" : "Human"}, {"trait_type" : "Gender", "value" : "Female"}, {"trait_type" : "Hair Style", "value" : "Top Swoosh"}, {"trait_type" : "Top", "value" : "Cowl"}, {"trait_type" : "Top Color"...
json_instruct
{"type": "object", "properties": {"image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}, "code": {"type": "string"}}, "required": ["image", "attributes", "code"], "$sch...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "proper...
{"hash" : "0x825df5d55e25d281bdb880871a472149fd402e707596ae501e65facc20ec9ca7", "parentHash" : "0x8cc0991c49ae01242f55ee4a0b6ee1e085978da700a017fff029689898e3da5c", "number" : 98410, "timestamp" : 1439772202, "nonce" : "0xf9b476856e38b9b9", "difficulty" : 3880223028603, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {...
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"corpus": {"type": "array", "items": {"type": "string"}}, "question": {"type": "array", "items": {"type": "string"}}, "answer": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["corpus", "...
{"corpus" : ["\u5728", "\u79d1\u6280\u90e8", "\u53ca", "\u76f8\u95dc", "\u90e8\u6703", "\u7684", "\u7814\u5546", "\u898f\u5283", "\u4e0b", "\u6211\u570b", "\u6295\u5165", "\u7d04", "16\u5104", "\u5143", "\u65b0\u5efa", "\u5169", "\u8258", "500", "\u5678", "\u7d1a", "\u53ca", "\u4e00", "\u8258", "1000", "\u5678", "\u7d1...
json_instruct
{"type": "object", "properties": {"corpus": {"type": "array", "items": {"type": "string"}}, "question": {"type": "array", "items": {"type": "string"}}, "answer": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["corpus", "question", "answer"], "$schema": "http://json-schema.org/...
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/materials/redsand.matitem": {"type": "array", "items": {"type": "string"}}, "items/mat...
[{"DeniedAlternatives" : [], "Files" : {"items/materials/redsand.matitem" : ["/glitchdescription/glitchEmotedText"], "items/materials/redsand2.matitem" : ["/glitchdescription/glitchEmotedText"]}, "Texts" : {"Chs" : "\u7ea2\u6c99", "Eng" : "Red sand."}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/materials/redsand.matitem": {"type": "array", "items": {"type": "string"}}, "items/materials/redsand2.matitem": {"type": "array", "items": {"type": "string...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": ...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-85.275617, 34.990788], [-85.271119, 34.998242], [-85.27128, 34.999664], [-85.269894, 35.002191], [-85.270388, 35.002371], [-85.268767, 35.004802], [-85.269267, 35.005444], [-85.267473, 35.007064], [-85.267962, 35.009119]...
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": {"title": {"type": "string"}, "description": {"type": "string"}, "pages": {"type": "object", "properties": {"about": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}}, "required":...
{"title" : "Julien Martins Da Costa \u2014 Front-End Web Developer", "description" : "Julien Martins Da Costa aka jdacosta, a front-End web developer based in Montr\u00e9al.", "pages" : {"about" : {"title" : "About"}}, "system" : {"notfound" : {"title" : "Not found"}}, "social" : {"uri" : "https://jdacosta.io", "twitte...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "pages": {"type": "object", "properties": {"about": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}}, "required": ["about"]}, "system": {"type": "object", "properties": {"notfound": {...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"presente": {"type": "object", "properties": {"eu": {"type": "string"}, "tu": {"type": "string"}, "ele": {"type": "string"}, "nos": {"type": "string"}, "vos": {"type": "string"}, "eles": {"type": "string"}}, "required...
{"presente" : {"eu" : "facilito", "tu" : "facilitas", "ele" : "facilita", "nos" : "facilitamos", "vos" : "facilitais", "eles" : "facilitam"}, "preterito_imperfeito" : {"eu" : "facilitava", "tu" : "facilitavas", "ele" : "facilitava", "nos" : "facilit\u00e1vamos", "vos" : "facilit\u00e1veis", "eles" : "facilitavam"}, "pr...
json_instruct
{"type": "object", "properties": {"presente": {"type": "object", "properties": {"eu": {"type": "string"}, "tu": {"type": "string"}, "ele": {"type": "string"}, "nos": {"type": "string"}, "vos": {"type": "string"}, "eles": {"type": "string"}}, "required": ["eu", "tu", "ele", "nos", "vos", "eles"]}, "preterito_imperfeito"...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "provi...
{"name" : "The American University in Cairo", "alt_name" : "(AUC)", "country" : "Egypt", "state" : null, "address" : {"street" : "PO Box 74", "city" : "New Cairo", "province" : null, "postal_code" : "11835"}, "contact" : {"telephone" : "+20(2) 2615-1000 +1(212) 7308800 (New York Office)", "website" : "http://www.auceg...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "null"}, "postal_code": {"type": "string"}},...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"ListOfAllHistoryValues": {"type": "string"}, "ListOfAllPolledValues": {"type": "string"}, "ebus_adapter_settings": {"type": "string"}, "hint_arduino": {"type": "string"}, "hint_ebusd": {"type": "string"}, "hint_eb...
{"ListOfAllHistoryValues" : "lista separada por v\u00edrgula de pontos de dados para o widget da hist\u00f3ria do ebus. O m\u00e1ximo de 4 pontos de dados deve ser usado, mais podem ser usados.", "ListOfAllPolledValues" : "lista separada por v\u00edrgulas de pontos de dados polidos", "ebus_adapter_settings" : "Configur...
json_instruct
{"type": "object", "properties": {"ListOfAllHistoryValues": {"type": "string"}, "ListOfAllPolledValues": {"type": "string"}, "ebus_adapter_settings": {"type": "string"}, "hint_arduino": {"type": "string"}, "hint_ebusd": {"type": "string"}, "hint_ebusd_history": {"type": "string"}, "hint_ebusd_polled": {"type": "string"...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type"...
{"code" : 9107180003, "parent" : 9107180, "name" : "SAYOSA", "latitude" : null, "longitude" : null, "postal" : [98444, 98453], "children" : []}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "n...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"mil7.8.3:0.1": {"type": "string"}, "mil7.8.3:0.2": {"type": "string"}, "mil7.8.3:0.3": {"type": "string"}, "mil7.8.3:0.4": {"type": "string"}, "mil7.8.3:1.1": {"type": "string"}, "mil7.8.3:1.2": {"type": "string"}, "mil7.8.3:1...
{"mil7.8.3:0.1" : "<article id='mil7.8.3'><header><ul><li class='division'>{}</li>", "mil7.8.3:0.2" : "<li>{}</li>", "mil7.8.3:0.3" : "<li>{}</li></ul>", "mil7.8.3:0.4" : "<h1>{}</h1></header>", "mil7.8.3:1.1" : "<p>{}", "mil7.8.3:1.2" : "{}", "mil7.8.3:1.3" : "{}", "mil7.8.3:1.4" : "{}</p>", "mil7.8.3:2.1" : "<p>{}", ...
json_instruct
{"type": "object", "properties": {"mil7.8.3:0.1": {"type": "string"}, "mil7.8.3:0.2": {"type": "string"}, "mil7.8.3:0.3": {"type": "string"}, "mil7.8.3:0.4": {"type": "string"}, "mil7.8.3:1.1": {"type": "string"}, "mil7.8.3:1.2": {"type": "string"}, "mil7.8.3:1.3": {"type": "string"}, "mil7.8.3:1.4": {"type": "string"}...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type":...
{"name" : "BvImages", "version" : "0.1.3", "summary" : "Images Preview Utilities.", "description" : "This library give utilities to preview images", "homepage" : "https://github.com/byvapps/BvImages", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"Adrian Apodaca" : "adrian@byvapps.com"}, "source" : {"g...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"debugMode": {"type": "integer"}, "showFPS": {"type": "boolean"}, "frameRate": {"type": "integer"}, "id": {"type": "string"}, "renderMode": {"type": "integer"}, "jsList": {"type": "array", "items": {"type": "string"}}}, "requir...
{"debugMode" : 1, "showFPS" : false, "frameRate" : 30, "id" : "gameCanvas", "renderMode" : 2, "jsList" : ["src/resource.js", "src/audio.js", "src/data.js", "src/StarLayer.js", "src/common/MySprite.js", "src/common/MyLayer.js", "src/Layer01.js", "src/Layer02.js", "src/Layer03.js", "src/Layer04.js", "src/Layer05.js", "sr...
json_instruct
{"type": "object", "properties": {"debugMode": {"type": "integer"}, "showFPS": {"type": "boolean"}, "frameRate": {"type": "integer"}, "id": {"type": "string"}, "renderMode": {"type": "integer"}, "jsList": {"type": "array", "items": {"type": "string"}}}, "required": ["debugMode", "showFPS", "frameRate", "id", "renderMod...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "array", "items": {"type": "integer"}}, "y": {"type": "array", "items": {"type": "integer"}}, "marker": {"type": "object", "properties": {"co...
{"data" : [{"x" : [1, 2, 3, 4], "y" : [5, 4, -3, 2], "marker" : {"color" : ["#447adb", "#447adb", "#db5a44", "#447adb"], "line" : {"width" : [2, 3, 2, 3], "color" : ["red", "green", "blue", "yellow"]}}, "type" : "bar"}], "layout" : {"showlegend" : true}}
json_instruct
{"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "array", "items": {"type": "integer"}}, "y": {"type": "array", "items": {"type": "integer"}}, "marker": {"type": "object", "properties": {"color": {"type": "array", "items": {"type": "string"}}, "line": ...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id"...
{"type" : "MultiPolygon", "coordinates" : [[[[-89.32428722299993, 31.314261792000018], [-89.32402591599995, 31.31400987300003], [-89.32356576399994, 31.313566254000072], [-89.32167944599993, 31.31174770800003], [-89.32171143099995, 31.309924526000028], [-89.32167944599993, 31.309540698000024], [-89.32151951799993, 31.3...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "num...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[26.996, 57.103], [27.105, 57.107], [27.1, 57.085], [27.163, 57.081], [27.224, 57.058], [27.317, 57.05], [27.295, 56.991], [27.243, 56.979], [27.315, 56.933], [27.297, 56.914], [27.262, 56.909], [27.205, 56.887], [27.179, 56.856], [27.052, 56.879]...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"t...
{"t" : "sarakaen", "h" : [{"d" : [{"f" : "\u628a\u2026\u5806\u780c\u7901\u7058\u3001\u5806\u780c\u7901\u7058\u5427\u3002", "e" : ["\ufff9`Ma'erac~`ay~ `to~ `ko~ `r~`i~`ya~`l~, `saraka~`e~`n~ `makena~?\ufffa\ufffb\u6d77\u6c34\u9000\u6f6e\u4e86\uff0c\u5806\u780c\u7901\u7058\u5427\uff0c\u600e\u9ebc\u6a23\uff1f"]}]}], "ste...
json_instruct
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "s...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema....
{"symbol" : "ETHBTCRSI", "name" : "ETH/BTC RSI Ratio Trading Set", "decimals" : 18, "address" : "0xbf70a33a13fbe8d0106df321da0cf654d2e9ab50"}
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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"title": {"type": "array", "items": {"type": "string"}}, "Directed by": {"type": "array", "items": {"type": "string"}}, "Produced by": {"type": "array", "items": {"type": "string"}}, "Written by": {"type": "array", "...
{"title" : ["Ingrid Goes West"], "Directed by" : ["Matt Spicer"], "Produced by" : ["Jared Ian Goldman", "Aubrey Plaza", "Tim White", "Trevor White", "Adam Mirels", "Robert Mirels"], "Written by" : ["David Branson Smith", "Matt Spicer"], "Starring" : ["Aubrey Plaza", "Elizabeth Olsen", "Billy Magnussen", "Wyatt Russell"...
json_instruct
{"type": "object", "properties": {"title": {"type": "array", "items": {"type": "string"}}, "Directed by": {"type": "array", "items": {"type": "string"}}, "Produced by": {"type": "array", "items": {"type": "string"}}, "Written by": {"type": "array", "items": {"type": "string"}}, "Starring": {"type": "array", "items": {"...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "conve...
[{"name" : "77777\u5c0f\u5929\u63a2\u82b1\u6df1\u591c\u7b2c\u4e09\u573a\u7ea2\u5507\u82b1\u81c2\u59b9\u5b50\u556a\u556a\uff0c\u8214\u5976\u53e3\u4ea4\u4e00\u5b57\u9a6c\u5f20\u5f00\u53cc\u817f\u6309\u7740\u5927\u529b\u731b\u64cd", "size" : 73317763, "link" : "https://streamtape.com/e/LqVgA6e1xghRdLo", "created_at" : "20...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe":...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"usingComponents": {"type": "object", "properties": {"wemark": {"type": "string"}, "WxComment": {"type": "string"}}, "required": ["wemark", "WxComment"]}}, "required": ["usingComponents"], "$schema": "http://json-sche...
{"usingComponents" : {"wemark" : "/components/wemark/wemark", "WxComment" : "/components/WxComment/component/WxComment/WxComment"}}
json_instruct
{"type": "object", "properties": {"usingComponents": {"type": "object", "properties": {"wemark": {"type": "string"}, "WxComment": {"type": "string"}}, "required": ["wemark", "WxComment"]}}, "required": ["usingComponents"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"node" : "ws://136.244.102.229:8888/ws"}
json_instruct
{"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"], "$schema": "http://json-schema.org/draft-07/schema#"}
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" : "2007", "provinceId" : "92", "regencyId" : "10", "districtId" : "23", "name" : "Kambusabo"}
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 an example JSON object that satisfies this schema: {"type": "object", "properties": {"schemaVersion": {"type": "integer"}, "id": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "contact":...
{"schemaVersion" : 1, "id" : "disc_jockey", "version" : "${version}", "name" : "Disc Jockey", "description" : "Play note block songs in Minecraft", "authors" : ["SemmieDev"], "contact" : {"repo" : "https://github.com/SemmieboyYT/Disc-Jockey"}, "license" : "MIT", "icon" : "assets/disc_jockey/icon.png", "environment" : "...
json_instruct
{"type": "object", "properties": {"schemaVersion": {"type": "integer"}, "id": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "contact": {"type": "object", "properties": {"repo": {"type": "string...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "eba0361cd697f600dd1ab4fa80eaa8cb5f13601a"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"module": {"type": "string"}, "target": {"type": "string"}, "baseUrl": {"type": "string"}, "paths": {"type": "object", "properties": {"@event-bus/*": {"type": "array", "items":...
{"compilerOptions" : {"module" : "commonjs", "target" : "es2020", "baseUrl" : ".", "paths" : {"@event-bus/*" : ["src/common/event-bus/*"], "@services/*" : ["src/common/services/*"], "@client/*" : ["src/client/*"], "@server/*" : ["src/server/*"], "@config/*" : ["config/*"], "@plugins/*" : ["src/plugins/*"]}}, "exclude" ...
json_instruct
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"module": {"type": "string"}, "target": {"type": "string"}, "baseUrl": {"type": "string"}, "paths": {"type": "object", "properties": {"@event-bus/*": {"type": "array", "items": {"type": "string"}}, "@services/*": {"type": "array", "i...
Create an example JSON object that satisfies this schema: {"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": "s...
{"id" : 28814, "title" : ["[Bank]"], "description" : ["A small series of wide steps just inside the oak door lead down into a wide corridor. Alcoves can be seen to either side, though they aren't well lit, and it's hard to make out their contents. Several muscular guards patrol this area, their suspicious eyes consta...
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": {"28870"...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "item...
{"ast" : null, "code" : "import { PRODUCT_LIST_REQUEST, PRODUCT_LIST_SUCCESS, PRODUCT_LIST_FAIL } from '../constants/productContants';\nexport const productListReducers = (state = {\n products: []\n}, action) => {\n switch (action.type) {\n case PRODUCT_LIST_REQUEST:\n return {\n loading: true,\n ...
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...
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http:/...
[{"name" : "DRAGOMIR", "frequency" : 6336, "males" : "99.98421717171718 %", "females" : "0.015782828282828284 %"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata...
{"id" : "ea456ace-38f1-4be3-899d-a48274136f08", "playerTags" : ["7a75d626-d4fd-474f-a862-473138d8c376"], "teamTags" : ["979aee4a-6d80-4863-bf1c-ee1a78e06024", "7966eb04-efcc-499b-8f03-d13916330531"], "gameTags" : ["69400984-b63c-4040-897e-03732fa0678e"], "metadata" : {"play" : 111, "subPlay" : -1}, "created" : "2021-04...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "su...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"project_slug": {"type": "string"}, "project_name": {"type": "string"}}, "required": ["project_slug", "project_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"project_slug" : "project", "project_name" : "Project Title"}
json_instruct
{"type": "object", "properties": {"project_slug": {"type": "string"}, "project_name": {"type": "string"}}, "required": ["project_slug", "project_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"results": {"type": "object", "properties": {"77f1c6bf916a1ad5fd05bd236f015989": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}}, "required": ["label"]}}, "8644db11df0d1055...
{"results" : {"77f1c6bf916a1ad5fd05bd236f015989" : [{"label" : "\u725b\u8089"}], "8644db11df0d10558d6a6ed526d5ef1e" : [{"label" : "\u9c7c"}], "647c2a438671db7f8f813f3872a9195b" : [{"label" : "\u9e21"}], "b63696622979a07cd42e2ea0f1b90fae" : [{"label" : "\u751c\u70b9"}]}, "sources" : []}
json_instruct
{"type": "object", "properties": {"results": {"type": "object", "properties": {"77f1c6bf916a1ad5fd05bd236f015989": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}}, "required": ["label"]}}, "8644db11df0d10558d6a6ed526d5ef1e": {"type": "array", "items": {"type": "object", "proper...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"addressbook": {"type": "string"}, "contacts_count": {"type": "integer"}, "description": {"type": "string"}, "created": {"type": "string"}, "id": {"type": "st...
{"data" : [{"addressbook" : "Default", "contacts_count" : 30, "description" : "", "created" : "2021-03-10T19:10:47.708Z", "id" : "604919718fb019194453764e"}, {"description" : "Test Group", "addressbook" : "Trial", "contacts_count" : 0, "created" : "2021-07-08T14:28:54.155Z", "id" : "60e70ba6ffe24b0019011782"}], "pagina...
json_instruct
{"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"addressbook": {"type": "string"}, "contacts_count": {"type": "integer"}, "description": {"type": "string"}, "created": {"type": "string"}, "id": {"type": "string"}}, "required": ["addressbook", "contacts_count", "des...
Construct a JSON document that adheres to this schema specification: {"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"}, ...
{"id" : 206541, "name" : "Anime: Panty and Stocking Theme for Discord.gg", "description" : "From the anime show, PANTY AND STOCKING", "user" : {"id" : 1197719, "name" : "Lisa Richards", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "updated" : "2021-06-23T01:43:53.00...
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": {"scn": {"type": "string"}, "appid": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "year": {"type": "string"}, "reports": {"type": "object", "properties": {"students": {"type": "string"}, "s...
{"scn" : "SchoolName", "appid" : "1", "username" : "CHANGE_ME", "password" : "CHANGE_ME", "year" : "current", "reports" : {"students" : "./students.csv", "sections" : "./sections.csv", "schedule" : "./schedule.csv"}}
json_instruct
{"type": "object", "properties": {"scn": {"type": "string"}, "appid": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "year": {"type": "string"}, "reports": {"type": "object", "properties": {"students": {"type": "string"}, "sections": {"type": "string"}, "schedule": {"type": "string"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "keyImages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"...
{"id" : "cf47032bf60b4ec893005ebcbaf34883", "title" : "RoseGeneralAudience", "description" : "RoseGeneralAudience", "keyImages" : [{"type" : "ESRB", "url" : "https://cdn1.epicgames.com/rose/item/ESRB_No_Descriptors-842x404-101b2c53a62bca99efa171b39547d0ff.jpg", "md5" : "101b2c53a62bca99efa171b39547d0ff", "width" : 842,...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "keyImages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "md5": {"type": "string"}, "width": {"type": "integer"}, "height": ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"Description": {"type": "string"}, "Difficulty": {"type": "string"}, "Category": {"type": "string"}, "Reward": {"type": "object", "properties": {"InventoryItems": {"type": "array", "items": {}}, "OperationExpe...
{"Description" : "Headshot Enemy Spartans while looking down the scope of a Sniper Rifle in PvP", "Difficulty" : "legendary", "Category" : "WeaponBased", "Reward" : {"InventoryItems" : [], "OperationExperience" : 300}, "ThresholdForSuccess" : 3, "Title" : "Zoom Boom"}
json_instruct
{"type": "object", "properties": {"Description": {"type": "string"}, "Difficulty": {"type": "string"}, "Category": {"type": "string"}, "Reward": {"type": "object", "properties": {"InventoryItems": {"type": "array", "items": {}}, "OperationExperience": {"type": "integer"}}, "required": ["InventoryItems", "OperationExper...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repositor...
{"name" : "angular-bacon", "version" : "2.0.1", "description" : "bacon.js bindings for AngularJS", "main" : "dist/angular-bacon.js", "scripts" : {"test" : "grunt test"}, "repository" : {"type" : "git", "url" : "git://github.com/lauripiispanen/angular-bacon.git"}, "keywords" : ["angular", "bacon", "frp"], "author" : "La...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "s...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"schemaVersion": {"type": "integer"}, "label": {"type": "string"}, "message": {"type": "string"}, "color": {"type": "string"}}, "required": ["schemaVersion", "label", "message", "color"], "$schema": "http://js...
{"schemaVersion" : 1, "label" : "uptime", "message" : "58.01%", "color" : "red"}
json_instruct
{"type": "object", "properties": {"schemaVersion": {"type": "integer"}, "label": {"type": "string"}, "message": {"type": "string"}, "color": {"type": "string"}}, "required": ["schemaVersion", "label", "message", "color"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}...
{"short_name" : "Simon Says App", "name" : "Simon-Says-React-Redux", "icons" : [{"src" : "favicon.ico", "sizes" : "64x64 32x32 24x24 16x16", "type" : "image/x-icon"}], "start_url" : ".", "display" : "standalone", "theme_color" : "#000000", "background_color" : "#333333"}
json_instruct
{"type": "object", "properties": {"short_name": {"type": "string"}, "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...