input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"topic": {"type": "string"}, "category": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "body": {"type": "string"}, "id": {"...
{"topic" : "visualize position index", "category" : "radiance-general", "attachments" : [], "created_by_name" : "Ji Zhang", "created_at" : "April 29, 2012 at 11:15AM", "body" : "Dear Radiance experts,\n\n\nLearning glare related analysis, I write a .cal file to define the position\nindex for every point on the sky in r...
json_instruct
{"type": "object", "properties": {"topic": {"type": "string"}, "category": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "body": {"type": "string"}, "id": {"type": "string"}, "created_by": {"type": "string"}}, "required": ["to...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates"...
{"type" : "FeatureCollection", "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-73.969248, 40.708893]}, "properties" : {"marker-symbol" : "star", "marker-color" : "#607D8B", "marker-size" : "small", "name" : "Evil Twin Brewing", "address" : "446 Kent Ave Apt 14A, Brooklyn, NY 11249",...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type"...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "googleanalytics-desc": {"type": "string"}}, "required": ["@metadata", "googleana...
{"@metadata" : {"authors" : ["Garas"]}, "googleanalytics-desc" : "\u012eterpia \u201eGoogle Analytics\u201c steb\u0117jimo scenarij\u0173 (ga.js) \u012f MediaWiki puslapius"}
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "googleanalytics-desc": {"type": "string"}}, "required": ["@metadata", "googleanalytics-desc"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"total_supply": {"type": "integer"}, "common_pool": {"type": "integer"}, "debonding_interval": {"type": "integer"}, "min_delegation_amount": {"type": "integer"}}, "required": ["total_supply", "common_pool", "debonding...
{"total_supply" : 10000000000000000000, "common_pool" : 8488268129209746000, "debonding_interval" : 336, "min_delegation_amount" : 100000000000}
json_instruct
{"type": "object", "properties": {"total_supply": {"type": "integer"}, "common_pool": {"type": "integer"}, "debonding_interval": {"type": "integer"}, "min_delegation_amount": {"type": "integer"}}, "required": ["total_supply", "common_pool", "debonding_interval", "min_delegation_amount"], "$schema": "http://json-schema....
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"}, "start": {"type": "s...
{"name" : "tomato-food-ordering-pwa", "version" : "1.0.0", "description" : "PWA for food ordering system.", "main" : "server.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "nodemon server.js", "server" : "node server.js"}, "repository" : {"type" : "git", "url" : "git+https://github....
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"}, "server": {"type": "string"}}, "required": ["test", "start", "...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["t...
{"name" : "@muxiu1997/eslint-config-monorepo", "version" : "0.1.0", "license" : "MIT", "repository" : {"type" : "git", "url" : "git+https://github.com/MuXiu1997/eslint-config.git"}, "author" : "MuXiu1997 <muxiu1997@gmail.com> (https://github.com/MuXiu1997/)", "scripts" : {"lint" : "npx eslint --ext .js,.json --fix"}, "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "scripts": {"type": "object", "p...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"vehicule": {"type": "array", "items": {"type": "object", "properties": {"localisation": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}, "cap": {"type": "integer"}}, "required"...
{"vehicule" : [{"localisation" : {"lat" : 35.152352162269246, "lng" : -90.04999833914283, "cap" : 198}, "conduite" : {"idLigne" : 47324, "vitesse" : 6, "destination" : "CENTRAL STATION", "avanceRetard" : "9 min late", "arretSuiv" : {"nomCommercial" : "CONVENTION@MAIN", "estimationTemps" : 0}}, "id" : 15015, "vehiculeLo...
json_instruct
{"type": "object", "properties": {"vehicule": {"type": "array", "items": {"type": "object", "properties": {"localisation": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}, "cap": {"type": "integer"}}, "required": ["lat", "lng", "cap"]}, "conduite": {"type": "object", "properties":...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"900713405": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900713406": {"type": "object", "properties": {"nama": {"type":...
{"900713405" : {"nama" : "TPS 1", "dapil" : [7201, 17205, 2720903]}, "900713406" : {"nama" : "TPS 2", "dapil" : [7201, 17205, 2720903]}}
json_instruct
{"type": "object", "properties": {"900713405": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900713406": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"requires": {"type": "boolean"}, "lockfileVersion": {"type": "integer"}, "dependencies": {"type": "object", "properties": {"tns-platform-declarations": {"type": "object", "properties": {"version": {"type": "string"}...
{"requires" : true, "lockfileVersion" : 1, "dependencies" : {"tns-platform-declarations" : {"version" : "6.5.15", "resolved" : "https://registry.npmjs.org/tns-platform-declarations/-/tns-platform-declarations-6.5.15.tgz", "integrity" : "sha512-gCUt2rjPTndp0K6xrgo6tFJvmkAsVOnIvebUUXMdLsNrJScs+OX4pL4DeIGMHGm/ciLqBlG5ZPkT...
json_instruct
{"type": "object", "properties": {"requires": {"type": "boolean"}, "lockfileVersion": {"type": "integer"}, "dependencies": {"type": "object", "properties": {"tns-platform-declarations": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "re...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"dsl": {"type": "object", "properties": {"widgetName": {"type": "string"}, "backgroundColor": {"type": "string"}, "rightColumn": {"type": "integer"}, "snapColumns": {"type": "integer"}, "detachFromLayout": {"type": "boolean"}, ...
{"dsl" : {"widgetName" : "MainContainer", "backgroundColor" : "none", "rightColumn" : 1224, "snapColumns" : 16, "detachFromLayout" : true, "widgetId" : "0", "topRow" : 0, "bottomRow" : 1280, "containerStyle" : "none", "snapRows" : 33, "parentRowSpace" : 1, "type" : "CANVAS_WIDGET", "canExtend" : true, "dynamicBindings"...
json_instruct
{"type": "object", "properties": {"dsl": {"type": "object", "properties": {"widgetName": {"type": "string"}, "backgroundColor": {"type": "string"}, "rightColumn": {"type": "integer"}, "snapColumns": {"type": "integer"}, "detachFromLayout": {"type": "boolean"}, "widgetId": {"type": "string"}, "topRow": {"type": "integer...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "subject_identifier": {"type": "string"}, "configuration": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "requested_attributes": {"type": "array", "items": ...
{"id" : "citz-verified-person_test", "subject_identifier" : "given_names", "configuration" : {"name" : "citz-verified-person", "version" : "0.1.0", "requested_attributes" : [{"names" : ["verified_person_key", "given_names", "additional_names", "family_name", "birthdate", "street_address", "postal_code", "locality", "re...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "subject_identifier": {"type": "string"}, "configuration": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "requested_attributes": {"type": "array", "items": {"type": "object", "properties": {"names": {"type": "arra...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"state": {"type": "object", "properties": {"zodiac__sign": {"type": "object", "properties": {"aquarius": {"type": "string"}, "aries": {"type": "string"}, "cancer": {"type": "string"}, "capricorn": {"type": "stri...
{"state" : {"zodiac__sign" : {"aquarius" : "Kova", "aries" : "Ko\u00e7", "cancer" : "Yenge\u00e7", "capricorn" : "O\u011flak", "gemini" : "Ikizler", "leo" : "Aslan", "libra" : "Terazi", "pisces" : "Bal\u0131k", "sagittarius" : "Yay", "scorpio" : "Akrep", "taurus" : "Bo\u011fa", "virgo" : "Ba\u015fak"}}}
json_instruct
{"type": "object", "properties": {"state": {"type": "object", "properties": {"zodiac__sign": {"type": "object", "properties": {"aquarius": {"type": "string"}, "aries": {"type": "string"}, "cancer": {"type": "string"}, "capricorn": {"type": "string"}, "gemini": {"type": "string"}, "leo": {"type": "string"}, "libra": {"t...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"angular-base64.js": {"type": "string"}, "angular-base64.min.js": {"type": "string"}}, "required": ["angular-base64.js", "angular-base64.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"angular-base64.js" : "sha512-dbIPUEQYBYmzUEEhXJofPApMpZBJJsuenELRpiBP99ZnxmDOXD+GJFC2kTdlXQNH6shnSJSYn3rivav8z2a3hA==", "angular-base64.min.js" : "sha512-QdmaIF2NrV+ZkxiHSmTHJoai2E7GBcGAxSI5ayHuUWO+L7p1K3dW3i57AHV+b8VwFcRd/zqCGQqG+/tB5jJRVA=="}
json_instruct
{"type": "object", "properties": {"angular-base64.js": {"type": "string"}, "angular-base64.min.js": {"type": "string"}}, "required": ["angular-base64.js", "angular-base64.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "homepage": {"type": "string"}, "version": {"type": "string"}, "globalDependencies": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ...
{"name" : "twilio-common", "main" : "index.d.ts", "homepage" : "https://www.twilio.com", "version" : "0.1.5", "globalDependencies" : {"node" : "registry:env/node#6.0.0+20160918225031"}, "devDependencies" : {"blue-tape" : "registry:npm/blue-tape#0.2.0+20160723033700"}, "dependencies" : {}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "homepage": {"type": "string"}, "version": {"type": "string"}, "globalDependencies": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "devDependencies": {"type": "object", "properties": {"blue-...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"baseline:": {"type": "string"}}, "required": ["baseline:"]}}, "required": ["class", "instance"], "$schema": "http:...
{"class" : {}, "instance" : {"baseline:" : "mt 10/21/2014 11:39:19.105"}}
json_instruct
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"baseline:": {"type": "string"}}, "required": ["baseline:"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "jsonClass": {"type": "string"}, "priority": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "timing": {"type": "object", "properties": {"angam_number": {"type": "integer...
{"id" : "kAJcI jagadguru zrI~candrazEkharEndra sarasvatI jayantI", "jsonClass" : "HinduCalendarEvent", "priority" : "paraviddha", "tags" : ["mahapurusha-events", "common-festivals"], "timing" : {"angam_number" : 17, "angam_type" : "nakshatram", "jsonClass" : "HinduCalendarEventTiming", "kaala" : "praatah", "month_numbe...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "jsonClass": {"type": "string"}, "priority": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "timing": {"type": "object", "properties": {"angam_number": {"type": "integer"}, "angam_type": {"type": "string"}, "jsonClass": {"type": "s...
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["ember-cli-uncharted-simple-auth"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"group": {"type": "string"}, "hidden": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["group", "hidden", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"group" : "arthropod", "hidden" : true, "type" : "apoli:entity_group"}
json_instruct
{"type": "object", "properties": {"group": {"type": "string"}, "hidden": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["group", "hidden", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://jso...
{"word" : "Zoopraxiscope", "definitions" : ["A modified form of zoetrope used to project a series of photographic images of animals or other subjects in order to display their movement."], "parts-of-speech" : "Noun"}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schem...
[{"name" : "CHIRA", "frequency" : 5, "gender" : "female"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "st...
{"edges" : [[13, 10], [13, 20], [13, 35], [36, 27], [13, 20], [13, 25], [22, 13], [4, 26], [13, 11], [13, 10], [13, 25], [13, 2], [18, 13], [31, 3], [13, 12], [13, 16], [33, 13], [14, 6], [13, 34], [13, 27], [17, 4], [11, 13], [25, 13], [13, 15], [13, 36], [37, 13], [13, 5], [19, 8], [21, 13], [25, 13], [13, 28], [30, ...
json_instruct
{"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6":...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "cells": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "data": {"type": "string"}}, "required": ["type", "data"]}}}, "required": ["title", "cel...
{"title" : "CDN \u56de\u6e90", "cells" : [{"type" : "text", "data" : "<div>\u5f53 cdn \u7f13\u5b58\u670d\u52a1\u5668\u4e2d\u6ca1\u6709\u7b26\u5408\u5ba2\u6237\u7aef\u8981\u6c42\u7684\u8d44\u6e90\u7684\u65f6\u5019\uff0c\u7f13\u5b58\u670d\u52a1\u5668\u4f1a\u8bf7\u6c42\u4e0a\u4e00\u7ea7\u7f13\u5b58\u670d\u52a1\u5668\uff0c...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "cells": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "data": {"type": "string"}}, "required": ["type", "data"]}}}, "required": ["title", "cells"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "require": {"type": "object", "properties"...
{"name" : "comrade/client", "type" : "library", "description" : "Comrade PHP client", "keywords" : ["job manager", "client"], "license" : "MIT", "require" : {"php" : ">=7.1", "comrade/shared" : "*@dev", "enqueue/enqueue" : "^0.8", "guzzlehttp/guzzle" : "^6.3"}, "autoload" : {"psr-4" : {"Comrade\\Client\\" : ""}}, "mini...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "comrade/shared": {"type": "stri...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"preset": {"type": "object", "properties": {"name": {"type": "string"}, "statusBarQuery": {"type": "string"}, "statusBarAltQuery": {"type": "string"}}, "required": ["name", "statusBarQuery", "statusBarAltQuery"]}, "statusBarQuery...
{"preset" : {"name" : "default", "statusBarQuery" : "{word_count} words {character_count} characters", "statusBarAltQuery" : "{file_count} files {total_word_count} words {total_character_count} characters"}, "statusBarQuery" : "{word_count} words {character_count} characters", "statusBarAltQuery" : "{file_count} files ...
json_instruct
{"type": "object", "properties": {"preset": {"type": "object", "properties": {"name": {"type": "string"}, "statusBarQuery": {"type": "string"}, "statusBarAltQuery": {"type": "string"}}, "required": ["name", "statusBarQuery", "statusBarAltQuery"]}, "statusBarQuery": {"type": "string"}, "statusBarAltQuery": {"type": "str...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "1104051026", "district_id" : "1104051", "name" : "LAWE PINIS"}
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#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "jsnext:main": {"type": "string"}, "module": {"type": "string"}, "dependencies": {"type": "object", "p...
{"name" : "claygl-advanced-renderer", "version" : "0.1.0", "description" : "Advanced renderer for ClayGL", "main" : "dist/clay-advanced-renderer.js", "jsnext:main" : "index.js", "module" : "index.js", "dependencies" : {"@rollup/plugin-commonjs" : "^21.0.0", "@rollup/plugin-node-resolve" : "^13.0.5", "rollup" : "^2.58.0...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "jsnext:main": {"type": "string"}, "module": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@rollup/plugin-commonjs": {"type": "string"}, "@...
Create a JSON structure that matches this 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": "integer"}, "id...
[{"id" : 73392, "idParent" : 73385, "namaWilayah" : "KAMPANI", "tingkatWilayah" : 4, "idPro" : 72551, "idKab" : 928082, "idKec" : 73385, "idKel" : 73392, "namaPro" : "SULAWESI TENGGARA", "namaKab" : "MUNA BARAT", "namaKec" : "WA DAGA", "namaKel" : "KAMPANI", "kodeWilayah" : "74.13.04.2007"}, {"id" : 73390, "idParent" :...
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": "integer"}, "nama...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "type": {"type": "string"}, "decimals": {"type": "integer"}, "description": {"type": "string"}, "website": {"type": "string"}, "explorer": {"type": "string"}, "status": ...
{"name" : "YGGDRASH", "symbol" : "YEED", "type" : "ERC20", "decimals" : 18, "description" : "-", "website" : "https://yggdrash.io/", "explorer" : "https://etherscan.io/token/0xcA2796F9F61dc7b238Aab043971e49c6164DF375", "status" : "active", "id" : "0xcA2796F9F61dc7b238Aab043971e49c6164DF375"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "type": {"type": "string"}, "decimals": {"type": "integer"}, "description": {"type": "string"}, "website": {"type": "string"}, "explorer": {"type": "string"}, "status": {"type": "string"}, "id": {"type": "string"}}, "required": ...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "def...
{"manifest_version" : 2, "name" : "MicroWeather", "description" : "Simple weather application", "version" : "1.3", "browser_action" : {"default_icon" : "icon.png", "default_popup" : "popup.html"}, "icons" : {"16" : "icon.png", "48" : "icon.png", "128" : "icon.png"}, "content_scripts" : [{"matches" : ["http://*/*", "htt...
json_instruct
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_ico...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"ty...
{"userId" : 27075, "cartId" : "ea4835a7-885b-4992-b812-5a00551f8675", "preferredProducts" : [1809, 175, 2565, 1339], "productReviews" : [{"productId" : 2486, "reviewText" : "i use it never when i'm in my nightclub.", "reviewDate" : "2018-04-13T17:31:58.4829863+03:00"}, {"productId" : 4189, "reviewText" : "heard about t...
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...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "icons": {"type": "object", "properties": {"128": {"type": "string"}}, "required": ["128"]}, "permissions": {"type": ...
{"name" : "Moodle Test Hack", "version" : "1.0", "description" : "Chrome extension that solves Moodle Test or makes it easyer. (Moodle Hack)", "icons" : {"128" : "storepicture.png"}, "permissions" : ["activeTab", "<all_urls>", "https://ajax.googleapis.com/"], "content_scripts" : [{"matches" : ["https://school.demo.mood...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "icons": {"type": "object", "properties": {"128": {"type": "string"}}, "required": ["128"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "content_scripts": {"type": "array",...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"header": {"type": "array", "items": {}}, "links": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "container": {"type": "string"}, "grab": {"type": "array", "items": {"type": ...
{"header" : [], "links" : [{"url" : "http://0.0.0.0:1234/index.html", "container" : "html", "grab" : [{"css" : "a", "contents" : ["href", ""]}, {"css" : "p", "contents" : [""]}]}]}
json_instruct
{"type": "object", "properties": {"header": {"type": "array", "items": {}}, "links": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "container": {"type": "string"}, "grab": {"type": "array", "items": {"type": "object", "properties": {"css": {"type": "string"}, "contents": {"type...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "type": {"type"...
{"id" : "0x07390815524cc4cc6277cf4d2f3ba0afd11ada64669ac8d29bbbad0d2c66289c", "title" : "will btc and eth go up or down by end of 2021?", "body" : "", "choices" : ["up", "down", "hard to say"], "start" : 1638717447, "end" : 1638735447, "type" : "single-choice", "scores" : [5e-11, 0, 0], "scores_total" : 5e-11, "scores_...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "type": {"type": "string"}, "scores": {"type": "array", "items": {"type": "number"}}, ...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}...
{"title" : "Finding access control bugs in web applications with CanCheck.", "fields" : ["web application", "enforcement", "computer access control", "software bug", "first order logic"], "abstract" : "Access control bugs in web applications can have dire consequences since many web applications store private and sensi...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"typ...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema...
[{"name" : "SHERMAN", "frequency" : 38983, "males" : "99.47926019033937 %", "females" : "0.5207398096606213 %"}]
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "displayName": {"type": "string"}, "icon": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "strin...
{"name" : "markdown-image-size", "version" : "0.0.4", "displayName" : "Markdown Image Size", "icon" : "logo/logo.png", "description" : "Adds ![](./cat.gif =100x200) image support to VS Code's built-in markdown preview", "keywords" : ["image", "image size", "markdown", "md", "preview"], "publisher" : "bierner", "license...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "displayName": {"type": "string"}, "icon": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "publisher": {"type": "string"}, "license": {"type": "string"}, "repo...
Using the following JSON schema, generate a compatible JSON instance: {"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": ...
{"author" : {"id" : "t2_5m0sdkl9", "name" : "Kuqry"}, "date" : {"day" : 1621814400, "full" : 1621884857, "month" : 1619827200, "week" : 1621728000}, "id" : "t3_nk68kd", "picture" : {"filesize" : 48101, "fullUrl" : "https://preview.redd.it/c7uaj5dte4171.jpg?width=3541&format=pjpg&auto=webp&s=ad0cf7feea97caabd829f7ccbff7...
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 a JSON structure that matches this schema definition: {"type": "object", "properties": {"$schema": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "addresses": {"type": "array", "items": {"type": "string"}}, "protocols": {"type": "array", "items": {"type": "string"}}, "authors...
{"$schema" : "strategy", "name" : "Alpha Homora Lender Optimizer", "description" : "Supplies {{token}} to [Alpha Homora](https://homora.alphafinance.io/) to generate interest.", "addresses" : ["0xeE697232DF2226c9fB3F02a57062c4208f287851", "0xec2DB4A1Ad431CC3b102059FA91Ba643620F0826"], "protocols" : ["Alpha Homora"], "a...
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "addresses": {"type": "array", "items": {"type": "string"}}, "protocols": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {}}}, "required": ["$schema", "n...
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" : "Imastaser Anania Shirakatsi University of Gyumri", "alt_name" : "Gyumrii Imastaser Anania Shirakatsi Hamalsaran (IASU)", "country" : "Armenia", "state" : null, "address" : {"street" : "Sayat-Nova Street 1", "city" : "Gyumri", "province" : "Shirak Region", "postal_code" : "377500"}, "contact" : {"telephone" :...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"message_container_multiple_error": {"type": "string"}, "message_container_multiple_warning": {"type": "string"}, "message_container_multiple_info": {"type": "string"}}, "required": ["message_container_multipl...
{"message_container_multiple_error" : "Si sono verificati questi errori ", "message_container_multiple_warning" : "Informazioni importanti", "message_container_multiple_info" : "Informazioni"}
json_instruct
{"type": "object", "properties": {"message_container_multiple_error": {"type": "string"}, "message_container_multiple_warning": {"type": "string"}, "message_container_multiple_info": {"type": "string"}}, "required": ["message_container_multiple_error", "message_container_multiple_warning", "message_container_multiple_i...
Generate sample JSON data that conforms to the following 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", "...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-118.401829, 34.265091], [-118.400407, 34.271354], [-118.397704, 34.273323], [-118.395594, 34.272222], [-118.393794, 34.273536], [-118.389134, 34.273034], [-118.388491, 34.274761], [-118.386696, 34.27607], [-118.389114, 3...
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...
Generate sample JSON data that conforms to the following schema definition: {"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", "ite...
{"t" : "sapi'orong", "h" : [{"d" : [{"f" : "\u625b\u3001\u64e1\u6771\u897f\u4f7f\u7528\u7684\u5668\u5177\u3002", "e" : ["\ufff9`Sa~`pi'orong~ `a~ `'onoc~.\ufffa\ufffb\u62ac\u6771\u897f\u7684\u6241\u64d4\u3002"]}]}], "stem" : "'orong"}
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...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"members": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}, "constants": {"type": "array", "items": {}}, "methods": {"type"...
{"members" : [{"name" : "segments", "type" : "PoolVector2Array"}], "constants" : [], "methods" : [], "name" : "ConcavePolygonShape2D", "inherits" : "Shape2D"}
json_instruct
{"type": "object", "properties": {"members": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}, "constants": {"type": "array", "items": {}}, "methods": {"type": "array", "items": {}}, "name": {"type": "string"}, "inherits...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-sc...
{"variants" : {"" : {"model" : "buildersaddition:block/stool/stool_jungle_red"}}}
json_instruct
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"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-0...
{"id" : "http://data.doremus.org/performance/a3c7cbba-7705-3e6b-ba3b-6069e7a43bbe", "expression" : [{"id" : "http://data.doremus.org/expression/9300c53f-228e-3f95-9598-9fef447415e0"}, {"id" : "http://data.doremus.org/expression/0fcd61fb-1dfa-3bc0-9750-4d65d70afd01"}, {"id" : "http://data.doremus.org/expression/ec82c4f9...
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#"}
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" : "441324118001", "text" : "\u9f99\u534e\u9547\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "441324118002", "text" : "\u6c99\u8ff3\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "441324118201", "text" : "\u9f99\u77f3\u5934\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "441324118202", "text" : "\u6717\u8...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "str...
{"name" : "react-datepicker-clean", "version" : "2.3.0", "description" : "A clean datepicker for react", "main" : "index.js", "scripts" : {"build" : "sh ./scripts/build.sh", "test" : "echo \"Error: no test specified\" && exit 1", "prepare" : "sh ./scripts/prepare.sh"}, "repository" : {"type" : "git", "url" : "git+https...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "prepare": {"type": "string"}}, "required": ["build", "test", ...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"research.title": {"type": "string"}, "research.conductors": {"type": "string"}, "research.privacy": {"type": "string"}, "research.contactLinkText": {"type": "string"}, "research.intro": {"type": "string"}, "researc...
{"research.title" : "Scratch \u098f \u0997\u09ac\u09c7\u09b7\u09a3\u09be ", "research.conductors" : "\u098f\u09ae\u0986\u0987\u099f\u09bf \u09b8\u09cd\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099a \u099f\u09bf\u09ae\u09c7\u09b0 \u09b8\u09a6\u09b8\u09cd\u09af \u098f\u09ac\u0982 \u09aa\u09c7\u09a8\u09b8\u09bf\u09b2\u09ad\u09...
json_instruct
{"type": "object", "properties": {"research.title": {"type": "string"}, "research.conductors": {"type": "string"}, "research.privacy": {"type": "string"}, "research.contactLinkText": {"type": "string"}, "research.intro": {"type": "string"}, "research.papers": {"type": "string"}, "research.grants": {"type": "string"}}, ...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "3308150014", "district_id" : "3308150", "name" : "REJOSARI"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"webpackCompilationHash": {"type": "string"}}, "required": ["webpackCompilationHash"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"webpackCompilationHash" : "b199950c730653fabe5b"}
json_instruct
{"type": "object", "properties": {"webpackCompilationHash": {"type": "string"}}, "required": ["webpackCompilationHash"], "$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"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"tsc": {"type": "string"}, "build": {"type": "string"}, "sta...
{"name" : "mediatr-node", "version" : "0.0.0", "description" : "Typescript node implementation of the mediator pattern and a port of Jimmy Bogard's MediatR \ud83d\udc9c.", "main" : "dist/index.js", "scripts" : {"tsc" : "tsc", "build" : "npm run tsc", "start" : "npm run tsc && node dist/index", "lint" : "npx --no-instal...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"tsc": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}, "lint": {"type": "string"}, "test"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "note": {"type": "string"}, "conditions": {"type": "object", "properties": {"59ca2fba86f77445e4732b25": {"type": "string"}, "5b05468f86f774030379eb74": {"type": "string"}, "5b0548e686f7740...
{"name" : "The Punisher VI", "note" : "", "conditions" : {"59ca2fba86f77445e4732b25" : "Elimina 15 operadores PMC (debes usar un fusil SVD)", "5b05468f86f774030379eb74" : "Consigue 10 chapas de identificaci\u00f3n BEAR", "5b0548e686f7740306753506" : "Entrega las 10 chapas de identificaci\u00f3n BEAR ", "5cb3393888a4505...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "note": {"type": "string"}, "conditions": {"type": "object", "properties": {"59ca2fba86f77445e4732b25": {"type": "string"}, "5b05468f86f774030379eb74": {"type": "string"}, "5b0548e686f7740306753506": {"type": "string"}, "5cb3393888a4505d02042061": {"type": "...
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "YRMETE", "frequency" : 0, "gender" : "male"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"c_ref": {"type": "string"}, "totals": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}, "daily": {"type...
[{"c_ref" : "Bear River", "totals" : {"Cases" : 975, "Deaths" : 2}, "daily" : {"Cases" : 20, "Deaths" : 0}}, {"c_ref" : "Central Utah", "totals" : {"Cases" : 75, "Deaths" : 0}, "daily" : {"Cases" : 5, "Deaths" : 0}}, {"c_ref" : "Davis", "totals" : {"Cases" : 660, "Deaths" : 4}, "daily" : {"Cases" : 14, "Deaths" : 0}}, ...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"c_ref": {"type": "string"}, "totals": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}, "daily": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type"...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"0": {"type": "array", "items": {"type": "integer"}}, "1": {"type": "array", "items": {"type": "integer"}}, "2": {"type": "array", "items": {"type": "integer"}}, "3": {"type": "array", "items": {"type": "integer"}}, "5": {"type":...
{"0" : [0, 0, 1], "1" : [0, 1, 2], "2" : [1, 2, 3], "3" : [2, 3, 5], "5" : [3, 5, 8], "8" : [5, 8, 13], "13" : [8, 13, 21], "40" : [21, 40, 80], "21" : [13, 21, 40]}
json_instruct
{"type": "object", "properties": {"0": {"type": "array", "items": {"type": "integer"}}, "1": {"type": "array", "items": {"type": "integer"}}, "2": {"type": "array", "items": {"type": "integer"}}, "3": {"type": "array", "items": {"type": "integer"}}, "5": {"type": "array", "items": {"type": "integer"}}, "8": {"type": "a...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"acorn.js": {"type": "string"}, "acorn.min.js": {"type": "string"}, "acorn_csp.js": {"type": "string"}, "acorn_csp.min.js": {"type": "string"}, "acorn_loose.js": {"type": "string"}, "acorn_loose.min.js": {"type": "string"}, "wa...
{"acorn.js" : "sha256-Xmoc/s38wLeTbcyO14frvfV1v2wd9rNN7SqUSIgf+YU=", "acorn.min.js" : "sha256-/znKVK1hEy0KcUSOBD6jZ5cLq63rTI52ohoVWOTBRi0=", "acorn_csp.js" : "sha256-xYM3kux0Ya5OURcJu3nmJbE4onRrZO94NWF+e6+Q0po=", "acorn_csp.min.js" : "sha256-1m+RagJVarZSW3ogL8Z1ezjnnifIak2x8MtKcMWtHbs=", "acorn_loose.js" : "sha256-X8AV...
json_instruct
{"type": "object", "properties": {"acorn.js": {"type": "string"}, "acorn.min.js": {"type": "string"}, "acorn_csp.js": {"type": "string"}, "acorn_csp.min.js": {"type": "string"}, "acorn_loose.js": {"type": "string"}, "acorn_loose.min.js": {"type": "string"}, "walk.js": {"type": "string"}, "walk.min.js": {"type": "string...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"category": {"type": "string"}, "equivalent": {"type": "array", "items": {}}, "manufacturer": {"type": "string"}, "name": {"type": "string"}, "replacement": {"type": "array", "items": {}}, "subpart": {"type": "array", "items...
{"category" : "", "equivalent" : [], "manufacturer" : "HobbyWing", "name" : "XRotor-Pro 40A *3D* Multirotor Brushless ESC (3-6S / Wire Leaded)", "replacement" : [], "subpart" : [], "urls" : {"manufacturer" : [], "related" : [], "store" : ["http://www.myrcmart.com/hobbywing-xrotorpro-40a-3d-multirotor-brushless-esc-36s-...
json_instruct
{"type": "object", "properties": {"category": {"type": "string"}, "equivalent": {"type": "array", "items": {}}, "manufacturer": {"type": "string"}, "name": {"type": "string"}, "replacement": {"type": "array", "items": {}}, "subpart": {"type": "array", "items": {}}, "urls": {"type": "object", "properties": {"manufacture...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "emai...
{"name" : "cwm/broadworks-connector", "description" : "Library for connecting to BroadWorks OCI-P API", "type" : "library", "license" : "MIT", "authors" : [{"name" : "Chase Miller", "email" : "chase@miller.sh"}], "autoload" : {"psr-4" : {"CWM\\BroadWorksConnector\\" : "src/"}}, "autoload-dev" : {"psr-4" : {"CWM\\BroadW...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/sche...
[{"year" : 1973, "sex" : "F", "n" : 8, "prop" : 5.15e-06}, {"year" : 1974, "sex" : "F", "n" : 8, "prop" : 5.11e-06}, {"year" : 1978, "sex" : "F", "n" : 6, "prop" : 3.65e-06}, {"year" : 1991, "sex" : "F", "n" : 5, "prop" : 2.46e-06}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/css/libs.css": {"type": "string"}, "/js/libs.js": {"type": "string"}, "/css/defs.css": {"type": "string"}, "/js/defs.js": {"type": "string"}}, "r...
{"/js/app.js" : "/js/app.js", "/css/app.css" : "/css/app.css", "/css/libs.css" : "/css/libs.css", "/js/libs.js" : "/js/libs.js", "/css/defs.css" : "/css/defs.css", "/js/defs.js" : "/js/defs.js"}
json_instruct
{"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/css/libs.css": {"type": "string"}, "/js/libs.js": {"type": "string"}, "/css/defs.css": {"type": "string"}, "/js/defs.js": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css", "/css/libs.css", "/js/libs.j...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "engine": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "objec...
{"name" : "backbone.markdown", "version" : "0.3.6", "author" : "makesites", "engine" : {"node" : ">=0.8.x"}, "dependencies" : {"commander" : "~0.5", "jshint" : "~0.9", "uglify-js" : "2.3.x", "hbs" : "~1.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "engine": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"commander": {"type": "string"}, "jshint": {"type":...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severit...
{"schema_version" : "1.2.0", "id" : "GHSA-w623-fh3x-ffcc", "modified" : "2022-05-01T02:09:36Z", "published" : "2022-05-01T02:09:36Z", "aliases" : ["CVE-2005-2576"], "details" : "CaLogic 1.22, and possibly earlier versions, allows remote attackers to obtain sensitive information via a direct request to (1) doclsqlres.ph...
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "a...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "PrayerList", "displayName" : "PrayerList"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"$schema": {"type": "string"}, "title": {"type": "string"}, "oneOf": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "array", "items": {"type": "st...
{"$schema" : "http://json-schema.org/draft-07/schema#", "title" : "ExecuteMsg", "oneOf" : [{"type" : "object", "required" : ["member_changed_hook"], "properties" : {"member_changed_hook" : {"type" : "object", "required" : ["diffs"], "properties" : {"diffs" : {"type" : "array", "items" : {"$ref" : "#/definitions/MemberD...
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "title": {"type": "string"}, "oneOf": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"member_changed_hook...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "bd7b4bc711aaf6ce84115e33ca39a3cd7258895b"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}...
{"\uc758\uc548\uc811\uc218\uc815\ubcf4" : {"\uc758\uc548\ubc88\ud638" : ["ZZ1735"], "\uc81c\uc548\uc77c\uc790" : ["2005-05-04"], "\uc81c\uc548\uc790" : ["\uad6d\uac00\uc778\uad8c\uc704\uc6d0\ud68c\uc704\uc6d0\uc7a5"], "\ubb38\uc11c" : ["\uc758\uc548\uc6d0\ubb38"], "\uc81c\uc548\ud68c\uae30" : ["\uc81c17\ub300(2004~2008...
json_instruct
{"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "s...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "shortName": {"type": "string"}, "description": {"type": "string"}, "themeColor": {"type": "string"}, "backgroundColor": {"type": "string"}, "lang": {"type": "string"}}, "required": ["name...
{"name" : "ARNext", "shortName" : "ARNext", "description" : "A Nuxt.js & Netlify CMS boilerplate.", "themeColor" : "#0b3765", "backgroundColor" : "#ffffff", "lang" : "pt-BR"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "shortName": {"type": "string"}, "description": {"type": "string"}, "themeColor": {"type": "string"}, "backgroundColor": {"type": "string"}, "lang": {"type": "string"}}, "required": ["name", "shortName", "description", "themeColor", "backgroundColor", "lang"...
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["sprity-dirs", "x-git-grep"]
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": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "MUST HAVE A PLACE AMONGST THESE INNATE AXIOMS.", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/547.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"}, "description": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "version"...
{"name" : "aico", "description" : "abort in coroutines (promises)", "repository" : "https://github.com/skt-t1-byungi/aico.git", "author" : "skt-t1-byungi <tiniwz@gmail.com>", "keywords" : ["coroutine", "generator", "async", "promise", "abort", "AbortController", "AbortSignal", "abortable", "cancelable", "cancellation"]...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "types": ...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["...
{"name" : "name-conflict-assertion-error", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"build" : "asc index.ts -b index.wasm -t index.wat --validate -O3 --use abort=wasi_abort"}, "author" : "Aaron Turner", "license" : "MIT", "dependencies" : {"as-wasi" : "git+https://github.com/jedisct1/a...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dep...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array"...
{"name" : "icybee/module-articles", "type" : "icanboogie-module", "description" : "Introduces the Article content type to the CMS Icybee.", "keywords" : ["article", "blog", "node"], "license" : "BSD-3-Clause", "authors" : [{"name" : "Olivier Laviale", "email" : "olivier.laviale@gmail.com", "homepage" : "http://www.weir...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "ema...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"ForceHttpsRedirection": {"type": "boolean"}, "Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "System": {"type": "string"}, "Microsoft": {"type": "string...
{"ForceHttpsRedirection" : false, "Logging" : {"LogLevel" : {"Default" : "Warning", "System" : "Warning", "Microsoft" : "Warning"}}, "AllowedHosts" : "*", "GraphConfig" : {"Uri" : "bolt://localhost", "User" : "", "Password" : ""}, "Security" : {"Enabled" : false, "Oidc" : {"ClientId" : "", "Authority" : ""}, "Swagger" ...
json_instruct
{"type": "object", "properties": {"ForceHttpsRedirection": {"type": "boolean"}, "Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "System": {"type": "string"}, "Microsoft": {"type": "string"}}, "required": ["Default", "System", "Microsoft"]}}, "req...
Based on the schema below, produce a valid JSON object: {"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"}}}}}, "requir...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[137.0, 31.333333333333332], [137.0, 31.416666666666668], [137.125, 31.416666666666668], [137.125, 31.333333333333332], [137.0, 31.333333333333332]]]}, "properties" : {"code" : 473700, "url" : "http://madefor.github.io/0410/api/v1/473700.geojson",...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"authorId": {"type": "string"}, "authorName": {"type": "string"}, "avatarImage": {"type": "string"}, "discussionId": {"type": "integer"}, "rawTitle": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}}, "r...
{"authorId" : "zaharch", "authorName" : "nosound", "avatarImage" : "2243477-kg.png", "discussionId" : 110335, "rawTitle" : "7th place solution summary", "title" : "7th place solution", "url" : "https://www.kaggle.com/c/recursion-cellular-image-classification/discussion/110335"}
json_instruct
{"type": "object", "properties": {"authorId": {"type": "string"}, "authorName": {"type": "string"}, "avatarImage": {"type": "string"}, "discussionId": {"type": "integer"}, "rawTitle": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["authorId", "authorName", "avatarImage", "disc...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"resource": {"type": "string"}, "path": {"type": "string"}, "httpMethod": {"type": "string"}, "headers": {"type": "object", "properties": {}, "required": []}, "queryStringParameters": {"type": "null"}, "pathParamete...
{"resource" : "/", "path" : "/", "httpMethod" : "POST", "headers" : {}, "queryStringParameters" : null, "pathParameters" : null, "stageVariables" : null, "requestContext" : {"path" : "/", "stage" : "", "requestId" : "", "resourcePath" : "", "httpMethod" : "POST"}, "body" : "{ \"service\": \"https://graphical.weather.go...
json_instruct
{"type": "object", "properties": {"resource": {"type": "string"}, "path": {"type": "string"}, "httpMethod": {"type": "string"}, "headers": {"type": "object", "properties": {}, "required": []}, "queryStringParameters": {"type": "null"}, "pathParameters": {"type": "null"}, "stageVariables": {"type": "null"}, "requestCont...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"Process manipulation": {"type": "object", "properties": {"process_name": {"type": "array", "items": {"type": "string"}}, "cmdline": {"type": "array", "items": {"type": "string"}}}, "required": ["process_name", ...
{"Process manipulation" : {"process_name" : ["kill*", "pkill", "pskill.exe", "tskill.exe"], "cmdline" : ["stop-process", "terminate"]}, "Service manipulation" : {"cmdline" : ["net stop"]}}
json_instruct
{"type": "object", "properties": {"Process manipulation": {"type": "object", "properties": {"process_name": {"type": "array", "items": {"type": "string"}}, "cmdline": {"type": "array", "items": {"type": "string"}}}, "required": ["process_name", "cmdline"]}, "Service manipulation": {"type": "object", "properties": {"cmd...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["cont...
{"contract" : "0x875353da48c4f9627c4d0b8b8c37b162fc43ce67", "tool" : "oyente", "start" : 1563494028.8405235, "end" : 1563494031.7037816, "duration" : 2.863258123397827, "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": {"Question": {"type": "string"}, "Title": {"type": "string"}, "Tags": {"type": "string"}}, "required": ["Question", "Title", "Tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Question" : "<p>INMO '92 Question 9:</p> <blockquote> <p>Find <span class=\"math-container\" id=\"q_417\">$n$</span> such that in a regular <span class=\"math-container\" id=\"q_418\">$n$</span>-gon <span class=\"math-container\" id=\"q_419\">$A_1A_2 ...A_n$</span> we have <span class=\"math-container\" id=\"q_420\">...
json_instruct
{"type": "object", "properties": {"Question": {"type": "string"}, "Title": {"type": "string"}, "Tags": {"type": "string"}}, "required": ["Question", "Title", "Tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"virtualNetworkResourceId": {"type": "object", "properties": {"defaultValue": {"type": "array", "items": {}}, "metadata": {"type": "object", "properties": {"description": {"type": "string"}, "displayName": {"type": "string"}}, "r...
{"virtualNetworkResourceId" : {"defaultValue" : [], "metadata" : {"description" : "Resource Ids of a vNet to link. The format must be: '/subscriptions/{subscription id}/resourceGroups/{resourceGroup name}/providers/Microsoft.Network/virtualNetworks/{virtual network name}", "displayName" : "Vnet Resource IDs"}, "type" :...
json_instruct
{"type": "object", "properties": {"virtualNetworkResourceId": {"type": "object", "properties": {"defaultValue": {"type": "array", "items": {}}, "metadata": {"type": "object", "properties": {"description": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["description", "displayName"]}, "type": {"type...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "swizzle": {"type": "string"}, "deploy": {"type": "string"}, "prettier": {"type": "string"}, "prettier:diff": {"type": "s...
{"scripts" : {"start" : "docusaurus start", "build" : "docusaurus build", "swizzle" : "docusaurus swizzle", "deploy" : "docusaurus deploy", "prettier" : "prettier --config .prettierrc --write \"**/*.{js,md,mdx}\"", "prettier:diff" : "prettier --config .prettierrc --list-different \"**/*.{js,md,mdx}\""}, "dependencies" ...
json_instruct
{"type": "object", "properties": {"scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "swizzle": {"type": "string"}, "deploy": {"type": "string"}, "prettier": {"type": "string"}, "prettier:diff": {"type": "string"}}, "required": ["start", "build", "swizzle", "deploy", ...
Generate a valid JSON object that conforms to the following schema: {"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"}}...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[130.25, 39.583333333333336], [130.25, 39.666666666666664], [130.375, 39.666666666666664], [130.375, 39.583333333333336], [130.25, 39.583333333333336]]]}, "properties" : {"code" : 593032, "url" : "http://madefor.github.io/0410/api/v1/593032.geojso...
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": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/sc...
[{"package" : "bioconductor-kegggraph", "downloads" : 28800, "count" : 8122}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": ...
{"name" : "endless-runner", "version" : "0.1.0", "description" : "A simple Endless Runner game", "main" : "app.js", "engines" : {"node" : "12.x", "npm" : "6.x"}, "scripts" : {"build" : "webpack", "dev" : "webpack --watch & live-server --port=8080", "start" : "node server.js"}, "author" : "Budiman Putra Jaya", "license"...
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...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"entity": {"type": "string"}, "links": {"type": "array", "items": {"type": "string"}}, "month": {"type": "integer"}, "summary": {"type": "string"}, "tags": {"type": "object", "properties": {"actor": {"type": "string"}, "cost-us...
{"entity" : "Albion Online", "links" : ["https://securityaffairs.co/wordpress/109731/data-breach/albion-online-data-breach.html"], "month" : 10, "summary" : "Albion Online game maker discloses a data breach, hackers gained access to the company forum databas", "tags" : {"actor" : "Criminal", "cost-usd" : 0, "impacted-u...
json_instruct
{"type": "object", "properties": {"entity": {"type": "string"}, "links": {"type": "array", "items": {"type": "string"}}, "month": {"type": "integer"}, "summary": {"type": "string"}, "tags": {"type": "object", "properties": {"actor": {"type": "string"}, "cost-usd": {"type": "integer"}, "impacted-user-count": {"type": "i...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"period_id": {"type": "integer"}, "rest_mode_state": {"type": "integer"}, "score": {"type": "integer"}, "score_activity_balance": {"type": "integer"}, "score_hrv_balance": {"type": "...
[{"period_id" : 3, "rest_mode_state" : 0, "score" : 0, "score_activity_balance" : 0, "score_hrv_balance" : 0, "score_previous_day" : 0, "score_previous_night" : 0, "score_recovery_index" : 0, "score_resting_hr" : 0, "score_sleep_balance" : 0, "score_temperature" : 0, "summary_date" : "2020-12-25"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"period_id": {"type": "integer"}, "rest_mode_state": {"type": "integer"}, "score": {"type": "integer"}, "score_activity_balance": {"type": "integer"}, "score_hrv_balance": {"type": "integer"}, "score_previous_day": {"type": "integer"}, "score_previous_night":...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"Mean": {"type": "object", "properties": {"confidence_interval": {"type": "object", "properties": {"confidence_level": {"type": "number"}, "lower_bound": {"type": "number"}, "upper_bound": {"type": "number"}}, "required": ["con...
{"Mean" : {"confidence_interval" : {"confidence_level" : 0.95, "lower_bound" : -0.04200122065122901, "upper_bound" : -0.034209689166237595}, "point_estimate" : -0.03841649494814392, "standard_error" : 0.0019513110878133654}, "Median" : {"confidence_interval" : {"confidence_level" : 0.95, "lower_bound" : -0.040891783451...
json_instruct
{"type": "object", "properties": {"Mean": {"type": "object", "properties": {"confidence_interval": {"type": "object", "properties": {"confidence_level": {"type": "number"}, "lower_bound": {"type": "number"}, "upper_bound": {"type": "number"}}, "required": ["confidence_level", "lower_bound", "upper_bound"]}, "point_esti...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array...
{"title" : "Min-Max Problems on Factor Graphs.", "fields" : ["clique cover", "constraint satisfaction problem", "constraint satisfaction dual problem", "factor graph", "bottleneck traveling salesman problem"], "abstract" : "We study the min-max problem in factor graphs, which seeks the assignment that minimizes the max...
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...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "...
{"Time" : "2021-03-25T17:00:00Z", "Temp" : 6.1, "RelHum" : 94, "WindSpeed" : 6.6, "WindDir" : 269}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"sheet": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "count": {"type": "integer"}, "definition": {"type": "object", "properties": {"type"...
{"sheet" : "GatheringRarePopTimeTable", "definitions" : [{"type" : "repeat", "count" : 3, "definition" : {"type" : "group", "members" : [{"name" : "StartTime"}, {"name" : "Duration(m)"}]}}]}
json_instruct
{"type": "object", "properties": {"sheet": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "count": {"type": "integer"}, "definition": {"type": "object", "properties": {"type": {"type": "string"}, "members": {"type": "array", "items": {"type": ...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "color": {"type": "string"}}, "required": ["key", "name", "color"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"key" : "wh_main_dwf_barak_varr", "name" : "Barak Varr", "color" : "#613278"}
json_instruct
{"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "color": {"type": "string"}}, "required": ["key", "name", "color"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId",...
{"userId" : 1867, "cartId" : "a1cb23dc-e9c2-4465-a9a9-150503b8a21e", "preferredProducts" : [298, 2594, 3612, 378, 1898, 4784, 4264, 4486], "productReviews" : []}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema....
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"/js/admin.js": {"type": "string"}, "/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/css/admin.css": {"type": "string"}}, "required": ["/js/admin.js", "/js/app.js", "/css/app.css", "/css/admin.css"], "$sche...
{"/js/admin.js" : "/js/admin.js?id=db03d6dae6987f550519", "/js/app.js" : "/js/app.js?id=f2007c56bf6f148d7bef", "/css/app.css" : "/css/app.css?id=ed19634667e99629274c", "/css/admin.css" : "/css/admin.css?id=8bd22b222f28af08189c"}
json_instruct
{"type": "object", "properties": {"/js/admin.js": {"type": "string"}, "/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/css/admin.css": {"type": "string"}}, "required": ["/js/admin.js", "/js/app.js", "/css/app.css", "/css/admin.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"img": {"type": "object", "properties": {"i": {"type": "array", "items": {"type": "string"}}}, "required": ["i"]}}, "required": ["img"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"img" : {"i" : ["i", "1036", "1640"]}}
json_instruct
{"type": "object", "properties": {"img": {"type": "object", "properties": {"i": {"type": "array", "items": {"type": "string"}}}, "required": ["i"]}}, "required": ["img"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": ...
{"versionEnd" : {"versionNum" : 1801, "commit" : "fcce72312d0dbdd5d94a296539e114850f09d0c5", "date" : "2021-05-31T09:19:41.356Z"}, "versionStart" : {"versionNum" : 1800, "commit" : "74b329da5da109098f17d8bee7f4a5221f94d80e", "date" : "2021-05-31T09:18:17.644Z"}, "changes" : ["blockchains/smartchain/allowlist.json", "bl...
json_instruct
{"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"count": {"type": "integer"}, "254031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "132011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": [...
{"count" : 15, "254031" : {"count" : 1}, "132011" : {"count" : 1}, "252030" : {"count" : 1}, "292010" : {"count" : 1}, "412010" : {"count" : 1}, "251000" : {"count" : 1}, "436010" : {"count" : 1}, "N.A.//" : {"count" : 7}, "131111" : {"count" : 1}}
json_instruct
{"type": "object", "properties": {"count": {"type": "integer"}, "254031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "132011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "252030": {"type": "object", "properties": {"count": {"typ...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"some": {"type": "string"}}, "required": ["some"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"some" : "date"}
json_instruct
{"type": "object", "properties": {"some": {"type": "string"}}, "required": ["some"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"area": {"type": "object", "properties": {"id": {"type": "string"}, "iso-3166-1-code-list": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "sort-name": {"type": "string"}}, "required": ...
{"area" : {"id" : "8a754a16-0027-3a29-b6d7-2b40ea0481ed", "iso-3166-1-code-list" : ["GB"], "name" : "United Kingdom", "sort-name" : "United Kingdom"}, "country" : "GB", "disambiguation" : "UK punk band", "id" : "a9e670ea-2b66-44a9-b402-d770de61b0cf", "name" : "Youth in Asia", "sort-name" : "Youth in Asia", "tag-list" :...
json_instruct
{"type": "object", "properties": {"area": {"type": "object", "properties": {"id": {"type": "string"}, "iso-3166-1-code-list": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "sort-name": {"type": "string"}}, "required": ["id", "iso-3166-1-code-list", "name", "sort-name"]}, "country": {"type"...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "string"}}}, "required": ["baseObj...
{"baseObjects" : ["[618,893,null,null,null,2.5975651431371023e+307,false]", "[618,{\"Fd\":5e-324,\"\":\"\",\"-100\":\"\"},null,null,\"\",{\"157\":1.2559538218849188e+308,\"655\":\"\",\"823\":122,\"?*\":\"8D*(N)\",\"\":1.236199985155341e+308,\"1.7819937856474542e+308\":82,\"2.7798921031962303e+307\":\"\",\"1.68670910633...
json_instruct
{"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "string"}}}, "required": ["baseObjects", "returnObjects", "callbackArgs"], "$schema": "http://json-schema....
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"azure-i...
{"name" : "raspberrypi-nodejs-lesson-3", "version" : "1.1.0", "description" : "nodejs code that blinks the LED connected to raspberry pi while sending messages to Azure IoT Hub", "main" : "app.js", "license" : "MIT", "dependencies" : {"azure-iot-device" : "^1.0.17", "azure-iot-device-mqtt" : "^1.0.17", "wiring-pi" : ">...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"azure-iot-device": {"type": "string"}, "azure-iot-device-mqtt": {"type": "string"}...