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": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{".js" : "392d1069c0706a8ea465828e4b6a30c73bd1021b.js"}
json_instruct
{"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"titulo": {"type": "string"}, "autor": {"type": "string"}, "descricao": {"type": "string"}, "municipio": {"type": "string"}, "uf": {"type": "string"}, "situacao": {"type": "string"}, "porcentagem": {"type": "number"}, "encerram...
{"titulo" : "20age Comics - A Revista!", "autor" : "Rogerio Casacurta", "descricao" : "Este projeto foi relan\u00e7ado! Procure e apoie!", "municipio" : "Caxias do Sul", "uf" : "RS", "situacao" : "n\u00e3o financiado", "porcentagem" : 0.0051904761904761915, "encerramento" : "17/06/2016", "ano" : "2016", "apoiadores" : ...
json_instruct
{"type": "object", "properties": {"titulo": {"type": "string"}, "autor": {"type": "string"}, "descricao": {"type": "string"}, "municipio": {"type": "string"}, "uf": {"type": "string"}, "situacao": {"type": "string"}, "porcentagem": {"type": "number"}, "encerramento": {"type": "string"}, "ano": {"type": "string"}, "apoi...
Based on the schema below, produce a valid JSON object: {"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"}}, "r...
{"lastUpdated" : 1655019279666, "username" : "MoltenGore1", "scores" : [{"xp" : 17207, "rank" : 479, "cardId" : 434}, {"xp" : 12376, "rank" : 200, "cardId" : 397}, {"xp" : 13622, "rank" : 282, "cardId" : 250}]}
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...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"content": {"type": "array", "items": {"type": "object", "properties": {"directDepositId": {"type": "string"}, "startDate": {"type": "string"}, "paymentType": {"type": "string"}, "accountType": {"type": "string"}, "value": {"type...
{"content" : [{"directDepositId" : "675252", "startDate" : "2020-08-11T00:00:00Z", "paymentType" : "PERCENTAGE", "accountType" : "CHECKING", "value" : 75, "routingNumber" : "222371863", "accountNumber" : "123456", "priority" : "1", "links" : [{"rel" : "self", "href" : "https://api.paychex.com/workers/0EK1BK2AB3ZF/direc...
json_instruct
{"type": "object", "properties": {"content": {"type": "array", "items": {"type": "object", "properties": {"directDepositId": {"type": "string"}, "startDate": {"type": "string"}, "paymentType": {"type": "string"}, "accountType": {"type": "string"}, "value": {"type": "integer"}, "routingNumber": {"type": "string"}, "acco...
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "1811060001", "nama" : "PANGKAL MAS MULYA"}, {"id" : "1811060002", "nama" : "PANGKAL MAS JAYA"}, {"id" : "1811060003", "nama" : "TANJUNG MAS MAKMUR"}, {"id" : "1811060004", "nama" : "MUARA MAS"}, {"id" : "1811060005", "nama" : "TANJUNG MAS MULYA"}, {"id" : "1811060006", "nama" : "TANJUNG MAS JAYA"}, {"id" : "1...
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "devDependencies":...
{"name" : "@ferranvila/html-demo", "version" : "0.1.3", "description" : "HTML Demo", "scripts" : {"start" : "ws --port 80 --log.format dev --compress --open"}, "devDependencies" : {"@ferranvila/stencil-components" : "^0.4.0", "local-web-server" : "^4.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "devDependencies": {"type": "object", "properties": {"@ferranvila/stencil-components": {"type...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"status": {"type": "integer"}, "startTimes": {"type": "array", "items": {"type": "integer"}}, "objectiveValue": {"type": "number"}, "solverRuntimeInMilliseconds": {"type": "integer"}, "optional": {"type": "object", "...
{"status" : 1, "startTimes" : [70, 0, 28, 14, 56, 37, 10, 51, 79, 20], "objectiveValue" : 215.0, "solverRuntimeInMilliseconds" : 5125, "optional" : {}}
json_instruct
{"type": "object", "properties": {"status": {"type": "integer"}, "startTimes": {"type": "array", "items": {"type": "integer"}}, "objectiveValue": {"type": "number"}, "solverRuntimeInMilliseconds": {"type": "integer"}, "optional": {"type": "object", "properties": {}, "required": []}}, "required": ["status", "startTimes"...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "6633e504727125e2cea1859adc1001c5f86b5084"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "e...
{"nom" : "Lectoure", "dpt" : "Gers", "inscrits" : 2748, "abs" : 567, "votants" : 2181, "blancs" : 205, "nuls" : 97, "exp" : 1879, "res" : [{"panneau" : "1", "voix" : 1294}, {"panneau" : "2", "voix" : 585}]}
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"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "mistransport", "definition" : "To carry away or mislead wrongfully, as by passion. [Obs.] Bp. Hall."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["selectors-filter/basic_component.cmx:root/fuchsia.inspect.Health:start_timestamp_nanos", "selectors-filter/basic_component.cmx:root/fuchsia.inspect.Health:status"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-type", "titl...
{"published" : "2015-09-23T04:00:00Z", "media-type" : "Blog", "title" : "Tweet of the day", "id" : "ca16f4da-5955-454e-9e14-07bc4b59c679", "content" : "\u201cThe Pope has landed in the home of the Senate and the Congress. Boy if there\u2019s ever a place that needs some divine intervention....!\u201d \u2014 Colin Quinn...
json_instruct
{"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-type", "title", "id", "content", "source"], "$schema": "http://json-s...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"package": {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"web-vitals": {"type": "string"}}, "required": ["web-vitals"]}, "devDependencies": {"type": "object", "properties": {"@testing-libra...
{"package" : {"dependencies" : {"web-vitals" : "^2.1.4"}, "devDependencies" : {"@testing-library/jest-dom" : "^5.16.4", "@testing-library/react" : "^13.0.0", "@testing-library/user-event" : "^14.0.4", "@types/jest" : "^27.4.1", "@types/jest-axe" : "^3.5.3", "@types/node" : "^16.11.26", "@types/react" : "^18.0.0", "@typ...
json_instruct
{"type": "object", "properties": {"package": {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"web-vitals": {"type": "string"}}, "required": ["web-vitals"]}, "devDependencies": {"type": "object", "properties": {"@testing-library/jest-dom": {"type": "string"}, "@testing-library/react":...
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"}, "theme": {"type": "string"}, "consent": {"type": "array", "items": {"type": "string"}}, "lic...
{"name" : "iPadOS", "description" : "Discord redesigned to be simplified. Design by jacktompsett on Behance.", "version" : "0.1.0", "author" : "Gibbu#1211", "theme" : "dist/iPadOS.theme.css", "consent" : ["ext_listing"], "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "theme": {"type": "string"}, "consent": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}}, "required": ["name", "description", "versi...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["ty...
{"type" : "FeatureCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features" : [{"type" : "Feature", "properties" : {"Name" : "TABULEIRO DO NORTE", "Description" : "TABULEIRO DO NORTE / CE"}, "geometry" : {"type" : "LineString", "coordinates" : [[-37.786888385390625, -...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "array", "items": {"type": "ob...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "arra...
{"directions" : ["Melt 3/4 cup chocolate chips gently in the microwave or over a pot of simmering water (bain marie). Set aside to cool.", "Sift flour, cocoa powder, baking soda, and salt together in a bowl, and stir together.", "Beat the butter and sugar together until thick and creamy. Beat in eggs one by one. Add co...
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...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"timezone": {"type": "string"}}, "req...
{"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {"timezone" : "Etc/GMT+4"}, "geometry" : {"type" : "Polygon", "coordinates" : [[[-65.951014, -41.99205], [-66.877323, -41.992051], [-66, -41.99205], [-65.951014, -41.99205]]]}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"timezone": {"type": "string"}}, "required": ["timezone"]}, "geometry": {"type": "object", "properties": {"ty...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {...
{"nom" : "Druillat", "circ" : "1\u00e8re circonscription", "dpt" : "Ain", "inscrits" : 857, "abs" : 498, "votants" : 359, "blancs" : 18, "nuls" : 5, "exp" : 336, "res" : [{"nuance" : "LR", "nom" : "M. Xavier BRETON", "voix" : 197}, {"nuance" : "MDM", "nom" : "M. Laurent MALLET", "voix" : 139}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"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"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol",...
{"name" : "Roadhouse Runts Whitelist Token", "symbol" : "RR", "logoURI" : "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/RRTBB9xWcYD9DvaTX7R8UgYbNmxDkVsM2jo1iEXm1Et/logo.png", "decimals" : 0, "address" : "RRTBB9xWcYD9DvaTX7R8UgYbNmxDkVsM2jo1iEXm1Et", "chainId" : 101}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId"], "$schema": "http://json...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft...
{"index" : 2276, "redacted" : false, "hash" : 212002381, "blacklisted" : false}
json_instruct
{"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "pokecube_legends:block/dusk_dolerite_coal_ore"}
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": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type"...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-97.124365, 31.547586], [-97.119105, 31.557141], [-97.108869, 31.552946], [-97.10282, 31.551765], [-97.105349, 31.546265], [-97.109622, 31.549448], [-97.115261, 31.544363], [-97.117474, 31.546255], [-97.118387, 31.545425]...
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...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "company": {"type": "string"}, "phoneNumber": {"type": "string"}, "jobTitle": {"type": "string"},...
{"contacts" : [{"name" : "Sunil", "email" : "sunil01@gmail.com", "company" : "Infosys", "phoneNumber" : "8888888888", "jobTitle" : "Technology Lead", "note" : "Having 8 years of experience", "id" : 2}, {"name" : "Srinivasa", "email" : "srinivas.ch1991@gmail.com", "company" : "Infosys", "phoneNumber" : "8885495953", "jo...
json_instruct
{"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "company": {"type": "string"}, "phoneNumber": {"type": "string"}, "jobTitle": {"type": "string"}, "note": {"type": "string"}, "id": {"type": "integer"}}, "r...
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" : "rechiseled_compat:block/genericeco_mangrove_planks_tiles"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contrac...
{"contract" : "0x3632fde13be1f2f210ab154e6b673fb297591ba5", "tool" : "slither", "start" : 1563633970.335799, "end" : 1563633973.5365565, "duration" : 3.2007575035095215, "analysis" : []}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"role": {"type": "string"}}, "required": ["role"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"role" : "cookies"}
json_instruct
{"type": "object", "properties": {"role": {"type": "string"}}, "required": ["role"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"common": {"type": "object", "properties": {"lib": {"type": "string"}, "data-format": {"type": "string"}, "data-order": {"type": "string"}, "dtype": {"type": "string"}, "algorithm": {"type": "string"}, "tree-method...
{"common" : {"lib" : "xgboost", "data-format" : "pandas", "data-order" : "F", "dtype" : "float32", "algorithm" : "gbt", "tree-method" : "hist", "count-dmatrix" : "", "max-depth" : 8, "learning-rate" : 0.1, "reg-lambda" : 1, "max-leaves" : 256}, "cases" : [{"objective" : "binary:logistic", "scale-pos-weight" : 2.0017715...
json_instruct
{"type": "object", "properties": {"common": {"type": "object", "properties": {"lib": {"type": "string"}, "data-format": {"type": "string"}, "data-order": {"type": "string"}, "dtype": {"type": "string"}, "algorithm": {"type": "string"}, "tree-method": {"type": "string"}, "count-dmatrix": {"type": "string"}, "max-depth":...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": ...
{"id" : 101752477, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "5704c458715876e29c8199896c84d526", "wof:id" : 101752477, "wof:repo" : "whosonfirst-data-admin-ua"}, "bbox" : [26.58559, 48.6845, 26.58559, 48.6845], "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": ["...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string...
{"body" : "", "user" : "neilflood", "url" : "https://api.github.com/repos/spack/spack/issues/10242", "updated_at" : "2019-01-03 16:02:26", "created_at" : "2019-01-03 04:53:24", "closed_at" : "2019-01-03 16:02:26", "state" : "closed", "title" : "openssl: add location of system certificates for SUSE Linux", "number" : 10...
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": ...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "da177b6f4f11c982d2ab", "c" : {}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "dt": {"type": "integer"}, "ar": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "requi...
[{"id" : 1804598511, "name" : "By your neck", "dt" : 197015, "ar" : {"id" : 46310932, "name" : "NECTA"}, "al" : {"id" : 120475241, "name" : "By your neck", "picUrl" : "https://p1.music.126.net/tPqVvu1Bd5xM2KeHs4OVyA==/109951165543514132.jpg"}}, {"id" : 1892514538, "name" : "Slow Machina", "dt" : 165931, "ar" : {"id" : ...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "dt": {"type": "integer"}, "ar": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "al": {"type": "object", "properties": {"id": {"type...
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" : "5311052009", "district_id" : "5311052", "name" : "TANAROGA"}
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": {"private": {"type": "boolean"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string...
{"private" : true, "main" : "lib", "files" : ["lib"], "scripts" : {"start" : "abby test", "test" : "mocha --compilers js:babel-register", "lint" : "eslint src test", "cover" : "abby cover:test, cover:report --no-watch", "cover:test" : "nyc --reporter=lcov --reporter=text npm test", "cover:report" : "node -e \"if(proces...
json_instruct
{"type": "object", "properties": {"private": {"type": "boolean"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "lint": {"type": "string"}, "cover": {"type": "string"}, "cover:tes...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array",...
{"version" : 1.2, "people" : [{"pose_keypoints_2d" : [497.787, 234.07, 0.958872, 527.85, 271.98, 0.814212, 505.627, 274.585, 0.859198, 500.38, 334.63, 0.725217, 486.099, 381.58, 0.847239, 552.599, 268.054, 0.763163, 560.453, 339.902, 0.781508, 536.922, 393.4, 0.740681, 516.094, 389.407, 0.667699, 527.771, 467.785, 0.53...
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "han...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"development": {"type": "object", "properties": {"portHttp": {"type": "integer"}, "portHttps": {"type": "integer"}, "portSmtp": {"type": "integer"}, "hostname": {"type": "string"}, "ipaddress": {"type": "string"}, "co...
{"development" : {"portHttp" : 3080, "portHttps" : 3443, "portSmtp" : 465, "hostname" : "https://localhost:3443", "ipaddress" : "127.0.0.1", "consoleLogging" : true, "localkey" : false}, "test" : {"portHttp" : 3080, "portHttps" : 3443, "portSmtp" : 465, "hostname" : "https://localhost:3443", "ipaddress" : "127.0.0.1", ...
json_instruct
{"type": "object", "properties": {"development": {"type": "object", "properties": {"portHttp": {"type": "integer"}, "portHttps": {"type": "integer"}, "portSmtp": {"type": "integer"}, "hostname": {"type": "string"}, "ipaddress": {"type": "string"}, "consoleLogging": {"type": "boolean"}, "localkey": {"type": "boolean"}},...
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"}, "start:dev": {"type": ...
{"name" : "calculator", "version" : "1.0.0", "description" : "Simple calculator", "main" : "index.js", "scripts" : {"test" : "jest", "start:dev" : "webpack-dev-server", "build" : "webpack"}, "repository" : {"type" : "git", "url" : "git+https://github.com/TngSam/calculator.git"}, "keywords" : ["typescript"], "author" : ...
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:dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "start:...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"701671f-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"t...
{"701671f-a" : {"width" : 600, "thumb_url" : "http://oldnyc-assets.nypl.org/thumb/701671f-a.jpg", "image_url" : "http://oldnyc-assets.nypl.org/600px/701671f-a.jpg", "title" : "", "date" : "46935", "text" : "Pugsley Ave. (foreground), at the S.E. corner of Westchester Ave. (on which \"L\" appears). On the north side of ...
json_instruct
{"type": "object", "properties": {"701671f-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "string"}, "folder": {"type": "string"}, "height": {"type": "integer"...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kecamatan": {"type": "string"}, "name": {"type": "stri...
{"code" : "200", "messages" : "Successfully received data", "value" : [{"id" : "3207072001", "id_kecamatan" : "320707", "name" : "Medanglayang"}, {"id" : "3207072002", "id_kecamatan" : "320707", "name" : "Panumbangan"}, {"id" : "3207072003", "id_kecamatan" : "320707", "name" : "Sukakerta"}, {"id" : "3207072004", "id_ke...
json_instruct
{"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kecamatan": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "id_kecamatan", "name"]}}}, "required": ["code...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "530828207201", "text" : "\u96ea\u6797\u6751\u59d4\u4f1a"}, {"id" : "530828207202", "text" : "\u8292\u767b\u6751\u59d4\u4f1a"}, {"id" : "530828207203", "text" : "\u5c0f\u8292\u4ee4\u6751\u59d4\u4f1a"}, {"id" : "530828207204", "text" : "\u5357\u76fc\u6751\u59d4\u4f1a"}, {"id" : "530828207205", "text" : "\u5de6\...
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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"patientlst1req": {"type": "object", "properties": {"Base_StartDate": {"type": "string"}, "Base_EndDate": {"type": "string"}, "Contain_TestPatient_Flag": {"type": "integer"}}, "required": ["Base_StartDate", "Base_E...
{"patientlst1req" : {"Base_StartDate" : "2012-06-01", "Base_EndDate" : "2012-06-30", "Contain_TestPatient_Flag" : 1}}
json_instruct
{"type": "object", "properties": {"patientlst1req": {"type": "object", "properties": {"Base_StartDate": {"type": "string"}, "Base_EndDate": {"type": "string"}, "Contain_TestPatient_Flag": {"type": "integer"}}, "required": ["Base_StartDate", "Base_EndDate", "Contain_TestPatient_Flag"]}}, "required": ["patientlst1req"], ...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"controllerName": {"type": "string"}, "controllerTitle": {"type": "string"}, "pageList": {"type": "array", "items": {"type": "object", "properties": {"controllerName": {"type": "stri...
[{"controllerName" : "app", "controllerTitle" : "\u5e94\u7528\u7ba1\u7406", "pageList" : [{"controllerName" : "app", "controllerTitle" : "\u5e94\u7528\u7ba1\u7406", "name" : "\u67e5\u8be2\u5e94\u7528\u5217\u8868", "path" : "basic/app/getAppList.json", "url" : "/basic/app/list"}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"controllerName": {"type": "string"}, "controllerTitle": {"type": "string"}, "pageList": {"type": "array", "items": {"type": "object", "properties": {"controllerName": {"type": "string"}, "controllerTitle": {"type": "string"}, "name": {"type": "string"}, "pat...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "line-1": {"type": "string"}, "line-2": {"type": "string"}, "attribution": {"type": "string"}, "url": {"type": "string"}}, "required": ["id", "line-1", "line-2", "attribution", "url"], "$s...
{"id" : 1300, "line-1" : "Hesse", "line-2" : "Germany", "attribution" : "\u00a92014 AeroWest, DigitalGlobe, GeoBasis-DE/BKG, GeoContent", "url" : "https://www.google.com/maps/@50.066606,8.727629,18z/data=!3m1!1e3"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "line-1": {"type": "string"}, "line-2": {"type": "string"}, "attribution": {"type": "string"}, "url": {"type": "string"}}, "required": ["id", "line-1", "line-2", "attribution", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1914, 5], [1915, 5], [1916, 5], [1918, 9], [1919, 5], [1920, 6], [1921, 8], [1922, 10], [1923, 6], [1924, 13], [1925, 14], [1926, 10], [1927, 9], [1928, 13], [1929, 12], [1930, 7], [1931, 8], [1932, 5], [1933, 7], [1934, 9], [1935, 8], [1937, 5], [1938, 8], [1939, 9], [1940, 7], [1941, 8], [1943, 7], [1944, 7], [1945...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"t...
{"nom" : "Pontmain", "circ" : "3\u00e8me circonscription", "dpt" : "Mayenne", "inscrits" : 600, "abs" : 233, "votants" : 367, "blancs" : 8, "nuls" : 13, "exp" : 346, "res" : [{"nuance" : "UDI", "nom" : "M. Yannick FAVENNEC", "voix" : 246}, {"nuance" : "REM", "nom" : "M. Josselin CHOUZY", "voix" : 100}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"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"...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["211324108200", "\u4e1c\u524d\u6c9f\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["211324108201", "\u540e\u575f\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["211324108202", "\u897f\u5357\u6c9f\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["211324108203", "\u54c8\u53ed\u6c14\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"...
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": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["aviation-pg"]
json_instruct
{"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": {"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 dice from \"./dice.js\";\nimport slice from \"./slice.js\";\nexport default function (parent, x0, y0, x1, y1) {\n (parent.depth & 1 ? slice : dice)(parent, x0, y0, x1, y1);\n}", "map" : null, "metadata" : {}, "sourceType" : "module"}
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...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "idParent": {"type": "integer"}, "namaWilayah": {"type": "string"}, "tingkatWilayah": {"type": "integer"}, "idPro": {"type": "integer"}, "idKab": {"type": ...
[{"id" : 54926, "idParent" : 54925, "namaWilayah" : "AMPENAN", "tingkatWilayah" : 3, "idPro" : 54020, "idKab" : 54925, "idKec" : 54926, "idKel" : null, "namaPro" : "NUSA TENGGARA BARAT", "namaKab" : "KOTA MATARAM", "namaKec" : "AMPENAN", "namaKel" : null, "kodeWilayah" : "52.71.01"}, {"id" : 54947, "idParent" : 54925, ...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "idParent": {"type": "integer"}, "namaWilayah": {"type": "string"}, "tingkatWilayah": {"type": "integer"}, "idPro": {"type": "integer"}, "idKab": {"type": "integer"}, "idKec": {"type": "integer"}, "idKel": {"type": "null"}, "namaPro...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "minimum-stability": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type":...
{"name" : "olml89/doctrine-utils", "description" : "A collection of utils to ease up working with Doctrine", "type" : "library", "minimum-stability" : "dev", "license" : "MIT", "authors" : [{"name" : "Oleguer Mas", "email" : "olml89dev@gmail.com"}], "require" : {"php" : "^8.0", "doctrine/orm" : "^2.9", "gedmo/doctrine-...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "minimum-stability": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "stri...
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" : "35", "regencyId" : "24", "name" : "Deket"}
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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type...
{"title" : "Searching for myself: motivations and strategies for self-search.", "fields" : ["reflexive pronoun", "entertainment", "identity management", "reuse", "id ego and super ego"], "abstract" : "We present findings from a qualitative study of self-search, also known as ego or vanity search. In the context of a br...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"typ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "st...
{"name" : "graphql_tut", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "nodemon ./index.js --exec babel-node -e js"}, "author" : "prasob kumar kp", "license" : "ISC", "dependencies" : {"babel-cli" : "^6.26.0", "babel-preset-e...
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"]}, "author": {"type": "string"},...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"MGDigital\\BusQue\\": {"t...
{"name" : "mgdigital/busque", "description" : "A flexible, modern command queue and scheduler for PHP7, built on Redis", "license" : "MIT", "autoload" : {"psr-4" : {"MGDigital\\BusQue\\" : "src", "MGDigital\\BusQue\\Features\\" : "features", "spec\\MGDigital\\BusQue\\" : "spec"}}, "require" : {"php" : ">=7.0", "psr/log...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"MGDigital\\BusQue\\": {"type": "string"}, "MGDigital\\BusQue\\Features\\": {"type": "string"}, "spec\\...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"zooming.js": {"type": "string"}, "zooming.min.js": {"type": "string"}}, "required": ["zooming.js", "zooming.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"zooming.js" : "sha512-dhlFElpJd4BGWqY9guVhXhEaJIVXtemUaGUlDJ/FDNvh8JAWbDy9aTZPNs+myPDxrjeL0cm/6UDKZrDaaod6iw==", "zooming.min.js" : "sha512-+3dSOKvI5sxknIJJJIT+o9FIKhJyqOrFkWMFaDPew+928jvY6xX9lYvCZGB7QNxxXrAic5msRM2oTyGy8vvDaA=="}
json_instruct
{"type": "object", "properties": {"zooming.js": {"type": "string"}, "zooming.min.js": {"type": "string"}}, "required": ["zooming.js", "zooming.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "3598a1fa996c2ec615aa05dfe312cbeeae764776"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "author-email": {"type": "string"}, "version": {"type": "integer"}, "implements": {"type": "array", "items": {}}, "loads-after": {"type": "array", "ite...
{"name" : "Implementation of the GENI Federation Registry API (v1) for OFELIA (the CH API)", "author" : "Tom Rothe", "author-email" : "tom.rothe@eict.de", "version" : 1, "implements" : [], "loads-after" : ["gregistryv1handler", "gregistryv1delegatebase", "gmav1handler", "gmav1delegatebase", "gfedv1exceptions", "config"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "author-email": {"type": "string"}, "version": {"type": "integer"}, "implements": {"type": "array", "items": {}}, "loads-after": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {}}}, "requi...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["grape-cli"]
json_instruct
{"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": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "7411040008", "district_id" : "7411040", "name" : "MEKAR JAYA"}
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#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "str...
{"name" : "erlang-autocompile", "main" : "./lib/erlang-autocompile", "version" : "0.1.2", "description" : "Autocompile erlang files", "keywords" : ["erlang", "compilation", "file", "watch", "watcher"], "repository" : "https://github.com/alexgal/atom-erlang-autocompile", "license" : "MIT", "engines" : {"atom" : ">=1.0.0...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properti...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"server": {"type": "object", "properties": {"domain": {"type": "string"}}, "required": ["domain"]}, "client": {"type": "object", "properties": {"googleTalk": {"type": "object", "properties": {"host": {"type": ...
{"server" : {"domain" : "hm.queuecumber.net"}, "client" : {"googleTalk" : {"host" : "talk.google.com", "port" : 5222}}, "redis" : {}}
json_instruct
{"type": "object", "properties": {"server": {"type": "object", "properties": {"domain": {"type": "string"}}, "required": ["domain"]}, "client": {"type": "object", "properties": {"googleTalk": {"type": "object", "properties": {"host": {"type": "string"}, "port": {"type": "integer"}}, "required": ["host", "port"]}}, "req...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type...
{"id" : 55424270, "name" : "Mythical Beast Cerberus", "is_illegal" : false, "is_custom" : false, "text" : "Each time a Spell Card is activated, place 1 Spell Counter on this card when that Spell resolves. Gains 500 ATK for each Spell Counter on it. At the end of the Battle Phase, if this card battled, remove all Spell ...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "attribute": {"type": "string"}, "atk": {"type":...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "category": {"type": "string"}, "pages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "required...
{"name" : "\u041d\u0430\u0431\u0435\u0433\u0438 \u043c\u043e\u043d\u0441\u0442\u0440\u043e\u0432", "icon" : "iceandfire:troll_skull", "category" : "survival_danger", "pages" : [{"type" : "text", "text" : "\u042f \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0442\u0431\u0438\u043b \u043d\u0430\u043f\u0430\u0434\u04...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "category": {"type": "string"}, "pages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "text"]}}}, "required": ["name", "icon", "category...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {}}, "metadata": {"type": "object", "pro...
{"id" : "2ee3e9b0-11cc-442c-8c1f-eef515f56b5a", "playerTags" : [], "teamTags" : ["a37f9158-7f82-46bc-908c-c9e2dda7c33b"], "gameTags" : [], "metadata" : {"title" : "Ground Broken", "votes" : 936095, "renoId" : "6"}, "created" : "2021-03-11T16:37:47.134Z", "season" : 12, "tournament" : -1, "type" : 56, "day" : 72, "phase...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {}}, "metadata": {"type": "object", "properties": {"title": {"type": "string"}, "votes": {"type": "integer"}, "reno...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "keywords": {"type": "array", "...
{"name" : "JukeTube", "version" : "0.0.0", "homepage" : "https://github.com/zeusk/JukeTube", "authors" : ["Shantanu Gupta <shans95g@gmail.com>"], "description" : "A WIP Jukebox for Youtube, built using polymer during GDG Manipal's polymer hackathon.", "keywords" : ["youtube", "jukebox", "polymer"], "license" : "MIT", "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "private":...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Comentarios", "type" : "css"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id"...
{"id" : 404388233, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "113435c0fe337d8732c9016ae9ccf85c", "wof:id" : 404388233, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [0.96466868710581, 49.57210470923845, 1.00437195999123, 49.59387708788145...
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": ["...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "projectID": {"type": "integer"}, "fileID": {"type": "integer"}}, "required": ["type", "projectID", "fileID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "voodoo.data.lock.LockEntry.Curse", "projectID" : 282963, "fileID" : 2532663}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "projectID": {"type": "integer"}, "fileID": {"type": "integer"}}, "required": ["type", "projectID", "fileID"], "$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"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "requi...
{"name" : "@artificialsolutions/tie-api-example-nexmo-sms", "version" : "1.0.0", "description" : "An example of using Teneo and Nexmo SMS", "main" : "server.js", "engines" : {"node" : ">=10.13.0", "npm" : ">=6.7.0"}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "node server.js"}, "auth...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}, "scripts": {"type": "object", "pr...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"average_occupancy" : [1.3922007453415386, 1.3937889545058493, 1.35796946604945, 1.41337512403177, 1.3923689711220293, 1.427046497376956, 1.4271606559854444, 1.463691473687359, 1.5246630228372515, 1.5185875760946432, 1.4726847025472334, 1.3611138180588593, 1.2545744827784315, 1.2672510636332612, 1.2351510741274505, 1....
json_instruct
{"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "type", "value"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "command", "type" : "size_t", "value" : "10001"}, {"name" : "status", "type" : "size_t", "value" : "0"}, {"name" : "id", "type" : "string", "value" : ""}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "type", "value"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"text": {"type": "string"}, "image": {"type": "string"}}, "required": ["text", "image"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : " 198 TH E HISTOR Y and a prodigious number draughted from the marines. On the march he betrayed no symptom of sloth (c), no passion for luxury: he advanced on foot, at the head of the colours, covered with an iron breastplate, rough and soldier-like, exhi- biting a striking contrast to his former character. ...
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "image": {"type": "string"}}, "required": ["text", "image"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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"...
{"contract" : "0x0fc8edd50e87229b921e7694f310b0229d31b3e8", "tool" : "oyente", "start" : 1563823645.4820983, "end" : 1563823654.136361, "duration" : 8.65426254272461, "analysis" : [{"errors" : [], "file" : "/unique_chucks/31/0x0fc8edd50e87229b921e7694f310b0229d31b3e8.sol", "name" : "InsightsNetwork1", "evm_code_coverag...
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "strin...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["gene...
{"generated_at" : "2017-01-27T09:37:34.838677", "required_by" : ["bundle-celery"], "requires" : ["sqlalchemy", "kombu"], "package" : "kombu-sqlalchemy"}
json_instruct
{"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-sch...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_10...
{"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "CONDITIONS_BY_TYPE" : {"CONCEPT_NAME" : "Claim- Inpatient: Secondary diagnosis", "COUNT_VALUE" : 76}, "AGE_AT_...
json_instruct
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRE...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"task1": {"type": "object", "properties": {"output": {"type": "object", "properties": {"chart_type": {"type": "string"}}, "required": ["chart_type"]}}, "required": ["output"]}, "task6": {"type": "object", "properties": {"output...
{"task1" : {"output" : {"chart_type" : "line"}}, "task6" : {"output" : {"visual elements" : {"lines" : [[{"x" : 187.42562866210938, "y" : 131.25616455078125}, {"x" : 196.46185302734375, "y" : 116.83863830566406}, {"x" : 254.90554809570312, "y" : 76.99072265625}, {"x" : 269.2763671875, "y" : 73.3405532836914}, {"x" : 27...
json_instruct
{"type": "object", "properties": {"task1": {"type": "object", "properties": {"output": {"type": "object", "properties": {"chart_type": {"type": "string"}}, "required": ["chart_type"]}}, "required": ["output"]}, "task6": {"type": "object", "properties": {"output": {"type": "object", "properties": {"visual elements": {"t...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"oq": {"type": "string"}, "q": {"type": "string"}, "rvnm": {"type": "string"}, "stcd": {"type": "string"}, "stnm": {"type": "string"}, "tm": {"type": "integer"}, "wptn": {"type": "st...
[{"oq" : "0", "q" : "20500", "rvnm" : "\u957f\u6c5f", "stcd" : "60105400", "stnm" : "\u5bf8\u6ee9", "tm" : 1599804000000, "wptn" : "5", "z" : "169.13"}, {"oq" : "0", "q" : "2690", "rvnm" : "\u4e4c\u6c5f", "stcd" : "60803000", "stnm" : "\u6b66\u9686", "tm" : 1599804000000, "wptn" : "5", "z" : "176.06"}, {"oq" : "0", "q"...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"oq": {"type": "string"}, "q": {"type": "string"}, "rvnm": {"type": "string"}, "stcd": {"type": "string"}, "stnm": {"type": "string"}, "tm": {"type": "integer"}, "wptn": {"type": "string"}, "z": {"type": "string"}}, "required": ["oq", "q", "rvnm", "stcd", "st...
Create an example JSON object that satisfies this schema: {"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"}, ...
{"author" : {"id" : "t2_7rw440ul", "name" : "CozyMaps"}, "date" : {"day" : 1626998400, "full" : 1627001529, "month" : 1625097600, "week" : 1626566400}, "id" : "t3_opr86n", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 92857, "fullUrl" : "https://preview.redd.it/bdmvjhoxyuc71.jpg?auto=webp&s=a3df8ea79da9be3...
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": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "null"}, "city": {"type": "string"}, "provinc...
{"name" : "Sampurnanand Sanskrit University", "alt_name" : "Sampurnanand Sanskrit Vishwavidyalaya (SSVV)", "country" : "India", "state" : null, "address" : {"street" : null, "city" : "Varanasi", "province" : "Uttar Pradesh", "postal_code" : "221002"}, "contact" : {"telephone" : "+91(542) 203-911", "website" : "http://s...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "null"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}},...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}}, "required": ["text", "created", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : "I think it would be awesome if, out of a brokered convention, <a href=\"https://www.youtube.com/watch?v=Ty92wz0K-CM&feature=youtu.be&t=18\">Nancy Pelosi</a> leads us to victory in the fall.", "created" : "Thu, 27 Feb 2020 17:37:28 GMT", "type" : "outline"}
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}}, "required": ["text", "created", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"t...
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "San Juan, Morong, Rizal, CALABARZON (Region IV-A), PH", "locale" : "ph.calabarzon-region-iv-a.rizal.morong.san-juan", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "4", "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 a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"min.js": {"type": "string"}}, "required": ["min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"min.js" : "sha256-1qvEpQ33PwjMuvw18CJWUs3L45aV5xh+8al+ovWvSF0="}
json_instruct
{"type": "object", "properties": {"min.js": {"type": "string"}}, "required": ["min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"bundle": {"type": "boolean"}}, "required": ["bundle"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "93a34dfe06852416577a", "c" : {"bundle" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"bundle": {"type": "boolean"}}, "required": ["bundle"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"address_components": {"type": "array", "items": {"type": "object", "properties": {"long_name": {"type": "string"}, "short_name": {"type": "string"}, "types": {"type": "array", "items": {...
[{"address_components" : [{"long_name" : "Yeni\u015farbademli", "short_name" : "Yeni\u015farbademli", "types" : ["locality", "political"]}, {"long_name" : "Yeni\u015farbademli", "short_name" : "Yeni\u015farbademli", "types" : ["administrative_area_level_2", "political"]}, {"long_name" : "Isparta", "short_name" : "Ispar...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"address_components": {"type": "array", "items": {"type": "object", "properties": {"long_name": {"type": "string"}, "short_name": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}}, "required": ["long_name", "short_name", "types"]}},...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "stateShort": {"type": "string"}, "country": {"type": "string"}, "description": {"type": "string"}, "im...
{"id" : "anc", "name" : "Ted Stevens Anchorage International Airport", "city" : "Anchorage", "state" : "Alaska", "stateShort" : "AK", "country" : "USA", "description" : "In 2009, Anchorage International was renamed to honor U.S. Senator Ted Stevens, but its airport code still honors its home in *Anc*horage.", "imageCre...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "stateShort": {"type": "string"}, "country": {"type": "string"}, "description": {"type": "string"}, "imageCredit": {"type": "string"}, "imageCreditLink": {"type": "string"}}, ...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"entity.strawgolem.strawgolem": {"type": "string"}, "entity.strawgolem.strawnggolem": {"type": "string"}, "strawgolem.subtitle.golemAmbient": {"type": "string"}, "strawgolem.subtitle.golemHurt": {"type": "string"},...
{"entity.strawgolem.strawgolem" : "Straw Golem", "entity.strawgolem.strawnggolem" : "Strawng Golem", "strawgolem.subtitle.golemAmbient" : "Straw Golem Ambient", "strawgolem.subtitle.golemHurt" : "Straw Golem Hurt", "strawgolem.subtitle.golemDeath" : "Straw Golem Death", "strawgolem.subtitle.golemHeal" : "Straw Golem He...
json_instruct
{"type": "object", "properties": {"entity.strawgolem.strawgolem": {"type": "string"}, "entity.strawgolem.strawnggolem": {"type": "string"}, "strawgolem.subtitle.golemAmbient": {"type": "string"}, "strawgolem.subtitle.golemHurt": {"type": "string"}, "strawgolem.subtitle.golemDeath": {"type": "string"}, "strawgolem.subti...
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": {}, "required": []}, "inner_path":...
{"address" : "1UDbADib99KE9d3qZ87NqJF2QLTHmMkoV", "cert_auth_type" : "web", "cert_sign" : "G5sb8nMu9+CYuyByfPGnXPqWucv0+wNiZoafDotLdB1kjLmkl/lLGzKNTY6gJtckQkHEGpZE2scz8xat3fuYljU=", "cert_user_id" : "przemouser@zeroid.bit", "files" : {}, "inner_path" : "data/userdb/14HxNEi2W7RTH6fpt2ifx6MXHLpENEC2ou/content.json", "mod...
json_instruct
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {}, "required": []}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"...
{"nom" : "Oberbronn", "circ" : "8\u00e8me circonscription", "dpt" : "Bas-Rhin", "inscrits" : 1171, "abs" : 682, "votants" : 489, "blancs" : 23, "nuls" : 6, "exp" : 460, "res" : [{"nuance" : "LR", "nom" : "M. Fr\u00e9d\u00e9ric REISS", "voix" : 321}, {"nuance" : "REM", "nom" : "M. Christian GLIECH", "voix" : 139}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"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"...
Generate a valid JSON object that conforms to the following schema: {"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" : "\u745e\u9686\u78da\u74e6\u5de5\u5ee0", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99683935", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "06310000174188", "\u5de5\u5ee0\u5730\u5740" : "\u81fa\u5357\u5e02\u516d\u7532\u5340\u9f8d\u6e56\u91cc\u548c\u5e73\u8857110\u865f", "\u5de5\u5ee...
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...
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" : 4462, "surahNumber" : "044", "ayatNumber" : "048", "arabic" : "\u062b\u064f\u0645\u0651\u064e \u0635\u064f\u0628\u0651\u064f\u0648\u0627 \u0641\u064e\u0648\u0652\u0642\u064e \u0631\u064e\u0623\u0652\u0633\u0650\u0647\u0650 \u0645\u0650\u0646\u0652 \u0639\u064e\u0630\u064e\u0627\u0628\u0650 \u0627\u0644\u0652\u0...
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...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "...
{"name" : "@lamansky/mq", "version" : "1.0.0", "description" : "A library of media query mixins for Sass.", "keywords" : ["sass", "scss", "mixins", "library", "color scheme", "dark mode", "light mode", "test", "viewport", "width"], "author" : {"name" : "Fr. John Lamansky", "url" : "lamansky.com"}, "license" : "MIT", "h...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "l...
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" : "emendatusenigmatica:block/arcane_ore"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/core": {"type": "string"}, "tslib": {"type": "string"}}...
{"name" : "ngx-timeline-vertical", "version" : "1.0.1", "peerDependencies" : {"@angular/common" : "^9.0.7", "@angular/core" : "^9.0.7", "tslib" : "^1.10.0"}, "keywords" : ["angular", "timeline", "timeline-vertical", "vertical-timeline", "responsive"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/core": {"type": "string"}, "tslib": {"type": "string"}}, "required": ["@angular/common", "@angular/core", "tslib"]}, "keywor...
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": {"test": {"type": "string"}, "start": {"type": "string"}, "deploy-prod": {"type": "str...
{"name" : "frc-team-updates-slack-notifier", "version" : "2.2.0", "description" : "scrapes the frc game manual updates page and sends alerts to your slack team via incoming webhook using AWS S3 and Lambda\"", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "node example.js", "deploy-prod"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "deploy-prod": {"type": "string"}, "deploy-dev": {"type": "string"}, "create-nodejs-aws-la...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"body": {"type": "object", "properties": {"party": {"type": "object", "properties": {"partyIdInfo": {"type": "object", "properties": {"partyIdType": {"type": "string"}, "partyIdentifier": {"type": "string"}, "partySubIdOrTyp...
{"body" : {"party" : {"partyIdInfo" : {"partyIdType" : "PERSONAL_ID", "partyIdentifier" : "123456789", "partySubIdOrType" : "PASSPORT", "fspId" : "MobileMoney"}, "personalInfo" : {"complexName" : {"firstName" : "John", "lastName" : "Doe"}}}}}
json_instruct
{"type": "object", "properties": {"body": {"type": "object", "properties": {"party": {"type": "object", "properties": {"partyIdInfo": {"type": "object", "properties": {"partyIdType": {"type": "string"}, "partyIdentifier": {"type": "string"}, "partySubIdOrType": {"type": "string"}, "fspId": {"type": "string"}}, "require...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"t...
[{"province" : "\u5185\u8499\u53e4\u81ea\u6cbb\u533a", "city" : "\u547c\u4f26\u8d1d\u5c14\u5e02", "area" : "\u65b0\u5df4\u5c14\u864e\u53f3\u65d7", "name" : "\u5185\u8499\u53e4\u81ea\u6cbb\u533a\u65b0\u5df4\u5c14\u864e\u53f3\u65d7\u53e3\u5cb8\u90ae\u653f\u6240", "code" : "021314", "address" : "\u5185\u8499\u53e4\u81ea\u...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}}, "required": ["province", "city", "area", "name", "code...
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"}}, "required": ["test"...
{"name" : "set-game-js", "version" : "0.0.1", "description" : "Playing Set game with JavaScript and Selenium", "main" : "Gruntfile.js", "scripts" : {"test" : "grunt"}, "repository" : {"type" : "git", "url" : "git+https://github.com/zeljkofilipin/set-game-js.git"}, "author" : {"name" : "\u017deljko Filipin", "email" : "...
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...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"description": {"type": "string"}, "icon": {"type": "string"}, "name": {"type": "string"}, "namespace": {"type": "string"}, "type": {"type": "string"}, "uuid": {"type": "string"}, "version": {"type": "integer"}}, "required": ["de...
{"description" : "ATT&CK Mitigation", "icon" : "chain", "name" : "Course of Action", "namespace" : "mitre-attack", "type" : "mitre-course-of-action", "uuid" : "6fcb4472-6de4-11e7-b5f7-37771619e14e", "version" : 7}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "icon": {"type": "string"}, "name": {"type": "string"}, "namespace": {"type": "string"}, "type": {"type": "string"}, "uuid": {"type": "string"}, "version": {"type": "integer"}}, "required": ["description", "icon", "name", "namespace", "type", "uuid", ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "logo": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "stack": {"type": "strin...
{"name" : "Discord Proxy", "description" : "Fastest proxy using only nginx as the backend server", "repository" : "https://github.com/TheMasterPorg/discord-proxy", "logo" : "", "keywords" : ["discord", "proxy"], "stack" : "container"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "logo": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "stack": {"type": "string"}}, "required": ["name", "description", "repository", "logo", "keywords", "...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "codepoint": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "string"}}, "author": {"type": "strin...
{"id" : "57984F1A-6CA5-4928-B221-466C0CC11562", "name" : "calendar-blank", "codepoint" : "F00EE", "aliases" : ["calendar-today"], "tags" : ["Date / Time"], "author" : "Austin Andrews", "version" : "1.5.54", "zhs" : ["\u65e5\u5386\u7a7a\u767d", "\u4eca\u5929\u7684\u65e5\u5386"], "description" : "", "comments" : []}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "codepoint": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "version": {"type": "string"}, "zhs": {"type": "array"...
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" : "2004", "provinceId" : "12", "regencyId" : "12", "districtId" : "06", "name" : "Lintong"}
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#"}