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": {"recipe_ID": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}}, "required": ["recipe_ID", "ingredients"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"recipe_ID" : "Alabama_77555", "ingredients" : ["sugar", "water", "tray ice cubes", "family size teabags family sized teabags of orange pekoe tea", "water"]} | json_instruct | {"type": "object", "properties": {"recipe_ID": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}}, "required": ["recipe_ID", "ingredients"], "$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": {"Name": {"type": "string"}, "Title": {"type": "string"}, "Description": {"type": "string"}, "CveIDs": {"type": "array", "items": {"type": "string"}}, "References": {"type": "array", "item... | [{"Name" : "upnp_location.rb", "Title" : "Mac OS X mDNSResponder UPnP Location Overflow", "Description" : "This module exploits a buffer overflow that occurs when processing specially crafted requests set to mDNSResponder. All Mac OS X systems between version 10.4 and 10.4.9 (without the 2007-005 patch) are affected.",... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Title": {"type": "string"}, "Description": {"type": "string"}, "CveIDs": {"type": "array", "items": {"type": "string"}}, "References": {"type": "array", "items": {"type": "string"}}}, "required": ["Name", "Title", "Description", "... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"jquery.chained.js": {"type": "string"}, "jquery.chained.min.js": {"type": "string"}, "jquery.chained.remote.js": {"type": "string"}, "jquery.chained.remote.min.js": {"type": "string"}}, "required": ["jquery.chained.js", "jquer... | {"jquery.chained.js" : "sha512-JjkQxXsZ8GMTLe9DUkPrx7J2c+LHkgdiG5KnC8SAcH98s6whNCmf7WB8EbUI9GmkjIPdtGrXTFkuyidNAPfZeA==", "jquery.chained.min.js" : "sha512-rcWQG55udn0NOSHKgu3DO5jb34nLcwC+iL1Qq6sq04Sj7uW27vmYENyvWm8I9oqtLoAE01KzcUO6THujRpi/Kg==", "jquery.chained.remote.js" : "sha512-A4ddi0TMTVXndWUSkFHRFejT2KkXIzuTPec3... | json_instruct | {"type": "object", "properties": {"jquery.chained.js": {"type": "string"}, "jquery.chained.min.js": {"type": "string"}, "jquery.chained.remote.js": {"type": "string"}, "jquery.chained.remote.min.js": {"type": "string"}}, "required": ["jquery.chained.js", "jquery.chained.min.js", "jquery.chained.remote.js", "jquery.chai... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"angular-sanitize.js": {"type": "string"}, "angular-sanitize.min.js": {"type": "string"}}, "required": ["angular-sanitize.js", "angular-sanitize.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"angular-sanitize.js" : "sha512-fi6BIgDI5Qc/SNQk4sj3RQXUwyy8c+GYfhtbGiAFlmfNe75isMebE6FMGFksH/7S/82z7moTk71rxT2mkdRHNQ==", "angular-sanitize.min.js" : "sha512-dcxFWKkQRpW028VZujbdsQoAY27q/MmWCokkMrprpF+s4iyhCMStfJe/zCYy/YKVF497lcU8HP2bG1fXvM1zFQ=="} | json_instruct | {"type": "object", "properties": {"angular-sanitize.js": {"type": "string"}, "angular-sanitize.min.js": {"type": "string"}}, "required": ["angular-sanitize.js", "angular-sanitize.min.js"], "$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"}, "keywords": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "author": {"type": "string"}, "repository... | {"name" : "package-clean", "version" : "0.1.2", "description" : "Search JS files and compare with package.json figure out which dependencies are unuse", "keywords" : "uglify uglifyjs directory folder", "homepage" : "https://github.com/ericdum/package-clean", "bugs" : "https://github.com/ericdum/package-clean", "author"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "stri... |
Please provide a valid JSON object following this schema:
{"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": "int... | {"nom" : "Riaville", "dpt" : "Meuse", "inscrits" : 46, "abs" : 9, "votants" : 37, "blancs" : 6, "nuls" : 2, "exp" : 29, "res" : [{"panneau" : "2", "voix" : 15}, {"panneau" : "1", "voix" : 14}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"roots": {"type": "array", "items": {"type": "string"}}, "collectCoverageFrom": {"type": "array", "items": {"type": "string"}}, "testMatch": {"type": "array", "items": {"type": "string"}}, "transform": {"type": "objec... | {"roots" : ["<rootDir>/src"], "collectCoverageFrom" : ["src/**/*.{js,jsx,ts,tsx}", "!src/**/*.d.ts"], "testMatch" : ["<rootDir>/src/**/__tests__/**/*.{js,jsx,ts,tsx}", "<rootDir>/src/**/*.{spec,test}.{js,jsx,ts,tsx}"], "transform" : {"^.+\\.(t|j)sx?$" : "ts-jest"}, "transformIgnorePatterns" : ["[/\\\\]node_modules[/\\\... | json_instruct | {"type": "object", "properties": {"roots": {"type": "array", "items": {"type": "string"}}, "collectCoverageFrom": {"type": "array", "items": {"type": "string"}}, "testMatch": {"type": "array", "items": {"type": "string"}}, "transform": {"type": "object", "properties": {"^.+\\.(t|j)sx?$": {"type": "string"}}, "required"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"SRC": {"type": "string"}, "DEST_DIR": {"type": "string"}, "RFLAGS": {"type": "string"}, "EXCLUDES": {"type": "array", "items": {"type": "string"}}, "DEFAULTS": {"type": "object", "properties": {"run_tests": {... | {"SRC" : "/app001/www/redcap/external_modules", "DEST_DIR" : "/app001/www/redcap/", "RFLAGS" : "--exclude 'deploy.json' --delete -avzcO -e ssh", "EXCLUDES" : [".idea", ".git*"], "DEFAULTS" : {"run_tests" : true, "run_predeploy" : true, "run_postdeploy" : true, "deploy_staging" : false, "deploy_production" : true, "crea... | json_instruct | {"type": "object", "properties": {"SRC": {"type": "string"}, "DEST_DIR": {"type": "string"}, "RFLAGS": {"type": "string"}, "EXCLUDES": {"type": "array", "items": {"type": "string"}}, "DEFAULTS": {"type": "object", "properties": {"run_tests": {"type": "boolean"}, "run_predeploy": {"type": "boolean"}, "run_postdeploy": {... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"baseUrl": {"type": "string"}, "paths": {"type": "object", "properties": {"App": {"type": "array", "items": {"type": "string"}}, "AppProviders": {"type": "array", "items":... | {"compilerOptions" : {"baseUrl" : "./src", "paths" : {"App" : ["./App.tsx"], "AppProviders" : ["./AppProviders.tsx"], "components" : ["./components"], "pages" : ["./pages"], "hooks" : ["./hooks"], "utils" : ["./utils"]}}} | json_instruct | {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"baseUrl": {"type": "string"}, "paths": {"type": "object", "properties": {"App": {"type": "array", "items": {"type": "string"}}, "AppProviders": {"type": "array", "items": {"type": "string"}}, "components": {"type": "array", "items":... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "points": {"type": "integer"}, "description": {"type": "string"}, "rewardItems": {"type": "array", "items": {}}, "icon": {"type": "string"}, "criteria": {"type": "array", ... | {"id" : 784, "title" : "Eye of the Storm Domination", "points" : 10, "description" : "Win Eye of the Storm 10 times while holding 4 bases.", "rewardItems" : [], "icon" : "inv_brd_banner", "criteria" : [{"id" : 1239, "description" : "Win Eye of the Storm 10 times while holding 4 bases", "orderIndex" : 0, "max" : 10}, {"... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "points": {"type": "integer"}, "description": {"type": "string"}, "rewardItems": {"type": "array", "items": {}}, "icon": {"type": "string"}, "criteria": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "... |
Please provide a valid JSON object following this 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": {"type": "int... | {"nom" : "Chermizy-Ailles", "circ" : "1\u00e8re circonscription", "dpt" : "Aisne", "inscrits" : 84, "abs" : 27, "votants" : 57, "blancs" : 6, "nuls" : 1, "exp" : 50, "res" : [{"nuance" : "FN", "nom" : "M. Damien PHILIPPOT", "voix" : 29}, {"nuance" : "REM", "nom" : "Mme Aude BONO-VANDORME", "voix" : 21}]} | 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"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "steam": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "gosugamers": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": ... | {"name" : "Team Acer", "steam" : {"name" : "acer"}, "gosugamers" : {"name" : "Team Acer.", "id" : 10962}, "identifier" : "teamacer", "hltv" : {"name" : "Acer", "id" : "6031"}, "csgolounge" : {"name" : "TA"}, "liquidpedia" : "Team_Acer"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "steam": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "gosugamers": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "integer"}}, "required": ["name", "id"]}, "identifier": {"type": "string... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"parser": {"type": "string"}, "parserOptions": {"type": "object", "properties": {"sourceType": {"type": "string"}}, "required": ["sourceType"]}, "plugins": {"type": "array", "items": {"type": "string"}}, "rules": {"type": "object... | {"parser" : "@typescript-eslint/parser", "parserOptions" : {"sourceType" : "module"}, "plugins" : ["@typescript-eslint"], "rules" : {"@typescript-eslint/no-empty-function" : "error", "@typescript-eslint/no-require-imports" : "error", "@typescript-eslint/prefer-namespace-keyword" : "error"}} | json_instruct | {"type": "object", "properties": {"parser": {"type": "string"}, "parserOptions": {"type": "object", "properties": {"sourceType": {"type": "string"}}, "required": ["sourceType"]}, "plugins": {"type": "array", "items": {"type": "string"}}, "rules": {"type": "object", "properties": {"@typescript-eslint/no-empty-function":... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_ema... | {"id" : 25132, "name" : "Facebook static top bar", "description" : "It just makes the top bar and the left sidebar static", "user" : {"id" : 25800, "name" : "Andrea Cimitan", "email" : "redacted", "paypal_email" : "andrea.cimitan@gmail.com", "homepage" : null, "about" : null, "license" : null}, "updated" : "2010-03-02T... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "string"}, "homepage": {"type": "null"}, "abo... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"Name": {"type": "string"}, "Registry ID": {"type": "string"}, "Class": {"type": "string"}}, "required": ["Name", "Registry ID", "Class"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "YautjaBerserker", "Registry ID" : "avp:yautjaberserker", "Class" : "org.avp.entities.living.species.yautja.EntityYautjaBerserker"} | json_instruct | {"type": "object", "properties": {"Name": {"type": "string"}, "Registry ID": {"type": "string"}, "Class": {"type": "string"}}, "required": ["Name", "Registry ID", "Class"], "$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"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"fetch-mock": {"type": "string"}, "jsdom": {"type": "string"}, "mocha": {"type":... | {"name" : "react-props-and-state-lab", "version" : "0.1.0", "private" : true, "devDependencies" : {"fetch-mock" : "^5.9.4", "jsdom" : "^9.9.1", "mocha" : "^3.2.0", "react-scripts" : "^1.0.7", "react-test-renderer" : "^16.0.0", "webpack" : "^3.6.0", "webpack-dev-server" : "^2.9.1"}, "dependencies" : {"babel-core" : "^6.... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"fetch-mock": {"type": "string"}, "jsdom": {"type": "string"}, "mocha": {"type": "string"}, "react-scripts": {"type": "string"}, "react-test-r... |
Using the following JSON schema, generate a compatible 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" : "Learning binary codes for collaborative filtering.", "fields" : ["recommender system", "binary code", "hamming distance", "discrete optimization", "collaborative filtering"], "abstract" : "This paper tackles the efficiency problem of making recommendations in the context of large user and item spaces. In pa... | 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... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"org.apache.jackrabbit.oak.segment.SegmentNodeStoreService": {"type": "object", "properties": {"customBlobStore": {"type": "boolean"}}, "required": ["customBlobStore"]}}, "required": ["org.apache.jackrabbit.oa... | {"org.apache.jackrabbit.oak.segment.SegmentNodeStoreService" : {"customBlobStore" : true}} | json_instruct | {"type": "object", "properties": {"org.apache.jackrabbit.oak.segment.SegmentNodeStoreService": {"type": "object", "properties": {"customBlobStore": {"type": "boolean"}}, "required": ["customBlobStore"]}}, "required": ["org.apache.jackrabbit.oak.segment.SegmentNodeStoreService"], "$schema": "http://json-schema.org/draft... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "pr... | {"name" : "ec0g/cvent-query", "description" : "CventQuery is a library package used to interact with Cvent's SOAP API", "license" : "MIT", "keywords" : ["php", "cvent", "soap"], "authors" : [{"name" : "Goce Evtimovski", "email" : "goce@goce.co"}], "require" : {"php" : ">=5.6.0", "vlucas/phpdotenv" : "^2.1"}, "require-d... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "r... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"namespaceStrategies": {"type": "object", "properties": {"ConfigurableNamespaceStrategy": {"type": "string"}}, "required": ["ConfigurableNamespaceStrategy"]}, "scm-nssample-plugin": {"type": "object", "properties": {... | {"namespaceStrategies" : {"ConfigurableNamespaceStrategy" : "Configurable"}, "scm-nssample-plugin" : {"navigation" : "Namespace", "title" : "Namespace Configuration", "namespace" : "Namespace", "save" : "Save", "submitted" : "Successfully submitted"}} | json_instruct | {"type": "object", "properties": {"namespaceStrategies": {"type": "object", "properties": {"ConfigurableNamespaceStrategy": {"type": "string"}}, "required": ["ConfigurableNamespaceStrategy"]}, "scm-nssample-plugin": {"type": "object", "properties": {"navigation": {"type": "string"}, "title": {"type": "string"}, "namesp... |
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": {"build": {"type": "string"}, "start": {"type": "... | {"name" : "vim2vsc", "version" : "1.0.1", "description" : "Converts Vim snippets to Visual Studio Code snippets.", "main" : "dist/app.js", "scripts" : {"build" : "babel ./src --out-dir ./dist", "start" : "npm run build && node dist/app.js", "test" : "npm start -- -f test_data/javascript_react.snippets"}, "bin" : {"vim2... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "start", "... |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : 85907607, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "fd13b2d5064eca6c952ab75243887b22", "wof:id" : 85907607, "wof:repo" : "whosonfirst-data-admin-cz"}, "bbox" : [18.27913533531398, 49.83443949237515, 18.2867431640866, 49.83975382390024]... | 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": ["... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"batch_size": {"type": "integer"}, "eps_start": {"type": "number"}, "eps_end": {"type": "number"}, "eps_decay": {"type": "number"}, "train_episodes": {"type": "integer"}, "target_update_freq": {"type": "integer"... | {"batch_size" : 36, "eps_start" : 0.27607471918908255, "eps_end" : 0.056260154737672784, "eps_decay" : 2854.6420712017634, "train_episodes" : 585, "target_update_freq" : 2, "memory_capacity" : 323, "eval_runs_train" : 9, "patience" : 152, "optimise_freq" : 3, "max_threshold" : 3, "score" : -2.17} | json_instruct | {"type": "object", "properties": {"batch_size": {"type": "integer"}, "eps_start": {"type": "number"}, "eps_end": {"type": "number"}, "eps_decay": {"type": "number"}, "train_episodes": {"type": "integer"}, "target_update_freq": {"type": "integer"}, "memory_capacity": {"type": "integer"}, "eval_runs_train": {"type": "int... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "requir... | {"ETag" : "W/\"c9e1f7b1b2e17f557e2b041cadc2ed31\"", "Last-Modified" : "Wed, 27 May 2020 20:34:45 GMT", "base" : {"repo" : {"name" : "impactutils-feedstock"}}, "closed_at" : "2020-05-27T20:34:45Z", "created_at" : "2020-01-16T20:14:40Z", "draft" : false, "head" : {"ref" : "0.8.17"}, "html_url" : "https://github.com/conda... | json_instruct | {"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "stri... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"class": {"type": "object", "properties": {"current": {"type": "string"}, "newChanges:": {"type": "string"}, "uniqueNameLike:": {"type": "string"}}, "required": ["current", "newChanges:", "uniqueNameLike:"]}, ... | {"class" : {"current" : "DataCurator 04/23/2007 14:43", "newChanges:" : "DataCurator 04/23/2007 14:43", "uniqueNameLike:" : "DataCurator 04/23/2007 14:43"}, "instance" : {"name:" : "DataCurator 04/23/2007 14:43"}} | json_instruct | {"type": "object", "properties": {"class": {"type": "object", "properties": {"current": {"type": "string"}, "newChanges:": {"type": "string"}, "uniqueNameLike:": {"type": "string"}}, "required": ["current", "newChanges:", "uniqueNameLike:"]}, "instance": {"type": "object", "properties": {"name:": {"type": "string"}}, "... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "require": {"type": "object", "properties": {"illuminate/support": {"type": "string"}}, "required": ["illuminate/support"]}, "keywords": {"type": "array", "items": ... | {"name" : "cedricziel/l5-webartisan", "description" : "Artisan for the web. Execute Artisan command on a webpage.", "require" : {"illuminate/support" : "~5.0"}, "keywords" : ["laravel", "laravel5", "artisan"], "license" : "MIT", "authors" : [{"name" : "Cedric Ziel", "email" : "cedric@cedric-ziel.com"}], "autoload" : {"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "require": {"type": "object", "properties": {"illuminate/support": {"type": "string"}}, "required": ["illuminate/support"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "author... |
Based on the schema below, produce a valid JSON object:
{"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... | {"version" : 1.2, "people" : [{"pose_keypoints_2d" : [672.53, 212.806, 0.887413, 648.978, 271.734, 0.935748, 560.64, 289.422, 0.795757, 504.618, 427.897, 0.870127, 448.639, 324.756, 0.823166, 734.603, 251.176, 0.795288, 805.344, 363.242, 0.86696, 858.412, 280.518, 0.861129, 660.81, 548.842, 0.65175, 601.906, 548.812, 0... | 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... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"apps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "script": {"type": "string"}, "exec_mode": {"type": "string"}, "max_memory_restart": {"type": "string"}}, "required": [... | {"apps" : [{"name" : "soi-api", "script" : "./src/server.js", "exec_mode" : "cluster", "max_memory_restart" : "512M"}]} | json_instruct | {"type": "object", "properties": {"apps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "script": {"type": "string"}, "exec_mode": {"type": "string"}, "max_memory_restart": {"type": "string"}}, "required": ["name", "script", "exec_mode", "max_memory_restart"]}}}, "required": [... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "str... | {"t" : "sapisato^emanaw", "h" : [{"d" : [{"f" : "\u60f3\u62b9\u9ed1\u3001\u60f3\u5f04\u6697\u3002", "e" : ["\ufff9`Sa~`pisa~`to~^`e~`mana~`w~ `ako~ `to~ `laloma'~.\ufffa\ufffb\u6211\u60f3\u628a\u5c4b\u88e1\u5f04\u6697\u6697\u7684\u3002"]}]}, {"d" : [{"f" : "\u60f3\u5de5\u4f5c\u5230\u591c\u88e1\u3002", "e" : ["\ufff9`Sa... | 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... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d632-16", "text" : "Dick - in this letter, Wheatley is merely suggesting a sample\nrating sheet for his programs & arparently is not requesting an\nanswer.\nMy opinion on \"We Human Beings\": Very good show for what we*re try\u00ac\ning to broadcast, A single-voice narration of certain periods of\nlife or of p... | json_instruct | {"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": {"extends": {"type": "string"}, "parserOptions": {"type": "object", "properties": {"ecmaVersion": {"type": "string"}, "sourceType": {"type": "string"}}, "required": ["ecmaVersion", "sourceType"]}, "env": {"type": "obje... | {"extends" : "@rocket.chat/eslint-config-alt/minimal", "parserOptions" : {"ecmaVersion" : "latest", "sourceType" : "module"}, "env" : {"node" : true, "jest" : true}, "overrides" : [{"files" : ["**/*.ts", "**/*.tsx"], "extends" : "@rocket.chat/eslint-config-alt/typescript"}]} | json_instruct | {"type": "object", "properties": {"extends": {"type": "string"}, "parserOptions": {"type": "object", "properties": {"ecmaVersion": {"type": "string"}, "sourceType": {"type": "string"}}, "required": ["ecmaVersion", "sourceType"]}, "env": {"type": "object", "properties": {"node": {"type": "boolean"}, "jest": {"type": "bo... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"typ... | {"version" : 1.3, "people" : [{"person_id" : [-1], "pose_keypoints_2d" : [121.795, 48.1527, 0.65373, 128.387, 53.966, 0.762419, 125.682, 53.9763, 0.735659, 0, 0, 0, 0, 0, 0, 130.712, 53.5948, 0.771806, 132.644, 64.0517, 0.748096, 132.246, 73.7403, 0.766522, 128.774, 74.9096, 0.665072, 126.462, 74.9082, 0.601525, 130.71... | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, ... |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1936, 5], [1938, 5], [1939, 9], [1940, 7], [1941, 9], [1942, 13], [1943, 8], [1944, 28], [1945, 24], [1946, 60], [1947, 53], [1948, 56], [1949, 55], [1950, 68], [1951, 60], [1952, 45], [1953, 44], [1954, 53], [1955, 53], [1956, 55], [1957, 46], [1958, 38], [1959, 44], [1960, 34], [1961, 41], [1962, 40], [1963, 44], [... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": ... | {"limit" : 5, "name" : "Virtus wand", "value" : 125000, "highalch" : 75000, "id" : 25654, "lowalch" : 50000, "name_pt" : "Varinha de Virtus", "price" : 9755332, "last" : 9755332} | json_instruct | {"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["l... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"apply": {"type": "string"}, "reset": {"type": "string"}, "today": {"type": "string"}, "last2Days": {"type": "string"}, "lastWeek": {"type": "string"}, "last2Weeks": {"type": "string"}, "lastMonth": {"type": "string"}... | {"apply" : "Applica", "reset" : "Reimposta", "today" : "Oggi", "last2Days" : "Ultimi 2 giorni", "lastWeek" : "Ultima settimana", "last2Weeks" : "Ultime 2 settimane", "lastMonth" : "Ultimo mese", "last2Months" : "Ultimi 2 mesi", "last3Months" : "Ultimi 3 mesi", "last6Months" : "Ultimi 6 mesi", "last12Months" : "Ultimi 1... | json_instruct | {"type": "object", "properties": {"apply": {"type": "string"}, "reset": {"type": "string"}, "today": {"type": "string"}, "last2Days": {"type": "string"}, "lastWeek": {"type": "string"}, "last2Weeks": {"type": "string"}, "lastMonth": {"type": "string"}, "last2Months": {"type": "string"}, "last3Months": {"type": "string"... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"events": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "enable": {"type": "boolean"}, "lttngEvents": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "enable",... | {"events" : [{"name" : "user", "enable" : true, "lttngEvents" : ["all"]}, {"name" : "cpu", "enable" : false, "lttngEvents" : ["sched_switch"]}, {"name" : "fps", "enable" : true, "lttngEvents" : ["starfish_qt5qpa*"]}]} | json_instruct | {"type": "object", "properties": {"events": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "enable": {"type": "boolean"}, "lttngEvents": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "enable", "lttngEvents"]}}}, "required": ["events"], "$schema": "http:/... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "kerasine", "definition" : "Resembling horn; horny; corneous."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "short_description": {"type": "string"}, "risk_rating": {"type": "string"}, "references": {"type": "object", "properties": {}, "required": []}, "privacy_issue": {"type": "boolean"}, "sec... | {"title" : "Continuous collection of GPS location", "short_description" : "The application continuously collects device GPS location", "risk_rating" : "potentially", "references" : {}, "privacy_issue" : true, "security_issue" : false} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "short_description": {"type": "string"}, "risk_rating": {"type": "string"}, "references": {"type": "object", "properties": {}, "required": []}, "privacy_issue": {"type": "boolean"}, "security_issue": {"type": "boolean"}}, "required": ["title", "short_descri... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"task_class": {"type": "string"}, "task_module": {"type": "string"}, "script_name": {"type": "string"}}, "required": ["task_class", "task_module", "script_name"], "$schema": "http://json-schema.org/draft-07/schema#"... | {"task_class" : "ExampleTask", "task_module" : "lsst.example", "script_name" : ""} | json_instruct | {"type": "object", "properties": {"task_class": {"type": "string"}, "task_module": {"type": "string"}, "script_name": {"type": "string"}}, "required": ["task_class", "task_module", "script_name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "result": {"type": "object", "properties": {"item": {"type... | {"type" : "minecraft:crafting_shapeless", "ingredients" : [{"item" : "candyworld:red_gummy_worm"}], "result" : {"item" : "candyworld:red_gummy", "count" : 3}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "result": {"type": "object", "properties": {"item": {"type": "string"}, "count": {"type": "integer"}}, "required": ["item", "coun... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}}, "required": ["name", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "a", "version" : "0.5.8"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}}, "required": ["name", "version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "st... | {"schema_version" : "1.2.0", "id" : "GHSA-743v-wpcg-936m", "modified" : "2022-05-01T02:17:37Z", "published" : "2022-05-01T02:17:37Z", "aliases" : ["CVE-2005-3404"], "details" : "Multiple PHP file inclusion vulnerabilities in ATutor 1.4.1 through 1.5.1-pl1 allow remote attackers to include arbitrary files via the sectio... | 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 an example JSON object that satisfies 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" : "1175040016", "district_id" : "1175040", "name" : "JABI-JABI"} | 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": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "requi... | [{"postal_code" : "26089", "place_name" : "Colinas", "place_type" : "Fraccionamiento", "county" : "Piedras Negras", "state" : "Coahuila de Zaragoza", "city" : "Piedras Negras"}, {"postal_code" : "26089", "place_name" : "Sind. Secci\u00f3n V", "place_type" : "Fraccionamiento", "county" : "Piedras Negras", "state" : "Coa... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "s... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"ty... | {"citations" : [{"textCitation" : "[See subcss1 on Metamath](http://us.metamath.org/mpegif/subcss1.html)"}], "argumentText" : "ARGUMENT\n\n| Step | Hyp | Ref | Expression |\n|---|---|---|---|\n\n| 1 | | subcss1.1 | |- ( ph -> J e. ( Subcat ` C ) ) |\n| 2 | | subcss1.2 | |- ( ph -> J Fn ( S X. S ) ) |\n| 3 | | subcss... | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items":... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"timeout": {"type": "integer"}, "load": {"type": "object", "properties": {"before": {"type": "array", "items": {}}, "order": {"type": "array", "items": {"type": "string"}}, "after": {"type": "array", "items": {}... | {"timeout" : 40000, "load" : {"before" : [], "order" : ["Define the hooks' load order by putting their names in this array in the right order"], "after" : []}, "turtle-coin" : {"enabled" : true}} | json_instruct | {"type": "object", "properties": {"timeout": {"type": "integer"}, "load": {"type": "object", "properties": {"before": {"type": "array", "items": {}}, "order": {"type": "array", "items": {"type": "string"}}, "after": {"type": "array", "items": {}}}, "required": ["before", "order", "after"]}, "turtle-coin": {"type": "obj... |
Create a JSON structure that matches this 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", "surahNumber", "... | {"id" : 4018, "surahNumber" : "038", "ayatNumber" : "048", "arabic" : "\u0648\u064e\u0627\u0630\u0652\u0643\u064f\u0631\u0652 \u0625\u0650\u0633\u0652\u0645\u064e\u0627\u0639\u0650\u064a\u0644\u064e \u0648\u064e\u0627\u0644\u0652\u064a\u064e\u0633\u064e\u0639\u064e \u0648\u064e\u0630\u064e\u0627 \u0627\u0644\u0652\u064... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {... | {"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {"label:cs" : "K\u0159\u00ed\u017e u kaple Narozen\u00ed Panny Marie v Kosov\u011b", "P31" : "http://www.wikidata.org/entity/Q2309609", "P31^label:cs" : "Pam\u011btn\u00ed k\u0159\u00ed\u017e", "P131^label:cs" : "Jihlava", "P6736" : "36778... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"te... | {"name" : "eastasianwidth", "version" : "0.2.0", "description" : "Get East Asian Width from a character.", "main" : "eastasianwidth.js", "files" : ["eastasianwidth.js"], "scripts" : {"test" : "mocha"}, "repository" : "git://github.com/komagata/eastasianwidth.git", "author" : "Masaki Komagata", "license" : "MIT", "devDe... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repositor... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"... | {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[130.0, 29.75], [130.0, 29.833333333333332], [130.125, 29.833333333333332], [130.125, 29.75], [130.0, 29.75]]]}, "properties" : {"code" : 443050, "url" : "http://madefor.github.io/0410/api/v1/443050.geojson", "view" : "https://github.com/madefor/0... | 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... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "category": {"type": "string"}, "advancement": {"type": "string"}, "sortnum": {"type": "integer"}, "pages": {"type": "array", "items": {"type": "object", "properties": {"t... | {"name" : "Tear Collector", "icon" : "lacrimis:tear_collector", "category" : "lacrimis:infusion", "advancement" : "lacrimis:base/solidified_tear", "sortnum" : 6, "pages" : [{"type" : "text", "text" : "The number of tears needed for this project is growing, and things are getting a lot harder to manage. This device can ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "category": {"type": "string"}, "advancement": {"type": "string"}, "sortnum": {"type": "integer"}, "pages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "req... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints": {"type": "array", "items": {"type": "number"}}, "face_keypoints": {"type": "array", "items": {}}, "hand_... | {"version" : 1.0, "people" : [{"pose_keypoints" : [327.42, 88.7711, 0.930044, 326.04, 153.913, 0.789405, 271.325, 151.306, 0.747901, 256.985, 251.753, 0.820867, 255.632, 335.234, 0.840258, 378.229, 155.231, 0.747393, 409.519, 234.828, 0.789071, 433.056, 264.771, 0.775982, 296.057, 328.68, 0.529272, 294.804, 453.916, 0.... | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints": {"type": "array", "items": {"type": "number"}}, "face_keypoints": {"type": "array", "items": {}}, "hand_left_keypoints": {"type": "array", "items": {}}, "hand_right_k... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "f2926777459fa21199d3", "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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "null"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "strin... | {"name" : "Liaoning Finance and Trade College", "alt_name" : null, "country" : "China", "state" : null, "address" : {"street" : "Xingcheng, Higher Education Park", "city" : "Liaoning", "province" : "Liaoning", "postal_code" : "125105"}, "contact" : {"telephone" : "+86(429) 5418666", "website" : "http://www.lncmxy.com/"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "null"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}},... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["82c346ae999e1e250fb52732419aff9a86b1f455", "e4f23bb6779d434d88a7c4335f92d13ea639b373"], ["82c346ae999e1e250fb52732419aff9a86b1f455", "e4f23bb6779d434d88a7c4335f92d13ea639b373"], ["82c346ae999e1e250fb52732419aff9a86b1f455", "0e1e87827326aa785da225aa980d7429a9d562f7"], ["82c346ae999e1e250fb52732419aff9a86b1f455", "0e1... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["2141905", "2141906", "2141901", "2141907", "2141908"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url"... | {"authors" : [{"author" : "Steven Naylor"}, {"author" : "Zakareya Gamie"}, {"author" : "Ravinder S Vohra"}, {"author" : "Sapna Puppala"}, {"author" : "Patrick J Kent"}, {"author" : "D Julian A Scott"}], "doi" : "10.1186/1752-1947-4-333", "publication_date" : "2010-10-23", "id" : "EN117568", "url" : "https://pubmed.ncbi... | json_instruct | {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"Bluestein's FFT": {"type": "array", "items": {"type": "string"}}}, "required": ["Bluestein's FFT"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Bluestein's FFT" : ["https://en.wikipedia.org/wiki/Rader's_FFT_algorithm", "https://en.wikipedia.org/wiki/FFTW", "https://en.wikipedia.org/wiki/Fractional_Fourier_transform", "https://en.wikipedia.org/wiki/Cooley\u2013Tukey_FFT_algorithm"]} | json_instruct | {"type": "object", "properties": {"Bluestein's FFT": {"type": "array", "items": {"type": "string"}}}, "required": ["Bluestein's FFT"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "integer"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": ... | {"nft" : {"id" : 8318, "image" : "ipfs://QmSeaY2DdBqqPMgTMA5ifKc3UsnCtUQnBfP2dXQ2WVcd7J", "attributes" : [{"trait_type" : "Eyes", "value" : "Sad"}, {"trait_type" : "Background", "value" : "Army Green"}, {"trait_type" : "Mouth", "value" : "Bored"}, {"trait_type" : "Hat", "value" : "Sea Captain's Hat"}, {"trait_type" : "... | json_instruct | {"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "integer"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "background": {"type": "object", "properties": {"scr... | {"name" : "TabRecorder", "description" : "Records selected browser tab", "version" : "1.0", "permissions" : ["activeTab", "storage", "tabs", "tabCapture", "desktopCapture", "<all_urls>"], "background" : {"scripts" : ["lib/RecordRTC.js", "DiskStorage.js", "background.js", "background.common.js"], "persistent" : false}, ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}, "persistent": {"type":... |
Create an example JSON object that satisfies this schema:
{"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": ... | {"type" : "FeatureCollection", "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [153.028357, -27.477418]}, "properties" : {"marker-color" : "#2b3990", "details" : "<a href='https://2016-02-01.resbaz.com/brisbane/'>Brisbane</a>"}}]} | 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"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"prepublishOn... | {"name" : "reactive-websocket", "version" : "1.0.3", "description" : "", "main" : "dist/index.js", "types" : "dist/index.d.ts", "scripts" : {"prepublishOnly" : "npm run build", "test" : "jest", "build" : "tsc"}, "repository" : {"type" : "git", "url" : "git+https://github.com/GabrielInTheWorld/reactive-websocket.git"}, ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"prepublishOnly": {"type": "string"}, "test": {"type": "string"}, "build": {"type": "strin... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"index": {"type": "boolean"}}, "required": ["index"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "550b580a240df82beb05", "c" : {"index" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"index": {"type": "boolean"}}, "required": ["index"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text"... | {"author" : "James Weldon Johnson", "classification" : "", "keywords" : ["Time", "Brevity", "Relationships", "Living", "Love", "Infatuation", "Crushes", "Heartache", "Loss"], "period" : "Harlem Renaissance", "reference" : "http://www.poetryfoundation.org/poem/175745", "region" : "U.S., Southern", "text" : ["Seems lak t... | json_instruct | {"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": ... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "i... | {"directions" : ["In a 12-inch deep skillet heat the olive oil over medium heat, then add the mushrooms, squash, zucchini, onion, garlic and salt.", "Cook and stir for 5 to 6 minutes or until just tender, then stir in the Meat Sauce and reduce heat to a low simmer.", "Meanwhile, bring 4 to 6 quarts of water to a rollin... | 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... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"Index": {"type": "integer"}, "Start": {"type": "string"}, "WordList": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "Word": {"type": "string"}, "POS": {"type": "string"}, "S... | {"Index" : 2434, "Start" : "\u0982", "WordList" : [{"ID" : 10000894, "Word" : "\u0982\u0995", "POS" : "to", "Source" : "init", "On" : "2019-08-11T11:51:22.1941306-07:00"}, {"ID" : 10000954, "Word" : "\u0982\u0997", "POS" : "to", "Source" : "init", "On" : "2019-08-11T11:51:23.1486431-07:00"}, {"ID" : 10005845, "Word" : ... | json_instruct | {"type": "object", "properties": {"Index": {"type": "integer"}, "Start": {"type": "string"}, "WordList": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "Word": {"type": "string"}, "POS": {"type": "string"}, "Source": {"type": "string"}, "On": {"type": "string"}}, "required": ["I... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "OperatorID": {"type": "integer"}, "UsageTyp... | {"IsRecentlyVerified" : false, "ID" : 45895, "UUID" : "8C81ABBA-372C-44FC-B13F-E2F778F70709", "DataProviderID" : 1, "DataProvidersReference" : "2642", "OperatorID" : 1, "UsageTypeID" : 1, "AddressInfo" : {"ID" : 46241, "Title" : "Fortum GlashusEtt", "AddressLine1" : "Lugnets All\u00e9 39", "Town" : "STOCKHOLM", "StateO... | json_instruct | {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object"... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}}, "required": ["name", "version", "private", "main"], "$schema": "http://json-schema.org/draft-07/... | {"name" : "ModalInfoDonor", "version" : "0.0.0", "private" : true, "main" : "./ModalInfoDonor.js"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}}, "required": ["name", "version", "private", "main"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "time": {"type": "string"}, "cost": {"type": "number"}, "items": {"type": "array", "items": {"type": "object", "proper... | {"items" : [{"id" : 49, "time" : "1", "cost" : 25.0, "items" : [{"id" : 0, "name" : "Milk Shake", "items" : 4, "cost" : 20}, {"id" : 1, "name" : "Coca Cola", "items" : 1, "cost" : 10}, {"id" : 2, "name" : "Biscuits", "items" : 2, "cost" : 4}, {"id" : 3, "name" : "Apple", "items" : 5, "cost" : 2}]}, {"id" : 48, "time" :... | json_instruct | {"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "time": {"type": "string"}, "cost": {"type": "number"}, "items": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "items":... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"apiUrl": {"type": "string"}, "apiKey": {"type": "string"}, "projectId": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "startDate": {"type": "string"}, "endDate": {"type": "string"}, "companyI... | {"apiUrl" : "%s(apiUrl)", "apiKey" : "%s(apiKey)", "projectId" : "%s(newProjectId)", "name" : "%s(projectName)", "description" : "%s(projectDescription)", "startDate" : "%s(projectStartDate)", "endDate" : "%s(projectEndDate)", "companyId" : "%s(companyId)", "newCompany" : "%s(newCompanyId)", "status" : "%s(projectStatu... | json_instruct | {"type": "object", "properties": {"apiUrl": {"type": "string"}, "apiKey": {"type": "string"}, "projectId": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "startDate": {"type": "string"}, "endDate": {"type": "string"}, "companyId": {"type": "string"}, "newCompany": {"type": "string"},... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "... | {"title" : "BOKU NO HERO ASUI SEX\uff11\uff18\u6b73\u4ee5\u4e0a\uff01", "author" : "sofokyan", "description" : "\u25b6|Thankundefinedyouundefinedveryundefinedmuchundefinedforundefinedviewingundefinedmyundefinedcontent,undefinedIundefinedwillundefinedbeundefineduploadingundefinedmoreundefinedthingsundefinedwhenundefined... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://js... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"... | {"id" : "676264683", "name" : "Greenfields Drive", "nodes" : [{"type" : "node", "id" : 6333180057, "lat" : 52.4883513, "lon" : -0.477785}, {"type" : "node", "id" : 6333180058, "lat" : 52.4885093, "lon" : -0.4777475}, {"type" : "node", "id" : 6333180059, "lat" : 52.488792, "lon" : -0.4777792}, {"type" : "node", "id" : 6... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunte... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "null"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type... | {"title" : "Product Quantized Translation for Fast Nearest Neighbor Search.", "fields" : ["machine learning", "quantization", "computer science", "artificial intelligence", "nearest neighbor search"], "abstract" : null, "citation" : "Not cited", "departments" : ["Pohang University of Science and Technology", "Pohang Un... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "null"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"idArt": {"type": "string"}, "series": {"type": "string"}, "booktitle": {"type": "string"}, "year": {"type": "string"}, "place": {"type": "string"}, "location": {"type": "object", "properties": {"lat": {"type"... | {"idArt" : "407", "series" : "Revue des Nouvelles Technologies de l'Information", "booktitle" : "EGC", "year" : "2010", "place" : "Hammamet", "location" : {"lat" : 36.4, "lon" : 10.616667}, "title" : "Comparaison de crit\u00e8res de puret\u00e9 pour l'int\u00e9gration de connaissances en clustering semi-supervis\u00e9"... | json_instruct | {"type": "object", "properties": {"idArt": {"type": "string"}, "series": {"type": "string"}, "booktitle": {"type": "string"}, "year": {"type": "string"}, "place": {"type": "string"}, "location": {"type": "object", "properties": {"lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["lat", "lon"]}, "title"... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["78cd453ae0af483e8c7da5d3f8a857bd"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId"... | {"id" : "2005", "provinceId" : "12", "regencyId" : "18", "districtId" : "17", "name" : "Ujung Negeri Kahan"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}}, "required": ["name", "description", "version", "main", "types"], "$schem... | {"name" : "@types/blog", "description" : "blog's common typings", "version" : "1.0.0", "main" : "", "types" : "index.d.ts"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}}, "required": ["name", "description", "version", "main", "types"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJe... | [{"namaKab" : "REJANG LEBONG", "originalFilename" : "PAS PHOTO.jpg", "namaPartai" : "Partai NasDem", "id" : 692, "noUrut" : 1, "nama" : "A.GAPUR, Bc.Hk", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "REJANG LEBONG", "originalFilename" : "AHMAD A..jpg", "namaPartai" : "Partai NasDem", "id" : 679, "noUrut" : 2, "nam... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kabupaten": {"type": "string"}, "name": {"type": "string"}}, "requi... | {"code" : "200", "messages" : "Successfully received data", "value" : [{"id" : "730901", "id_kabupaten" : "7309", "name" : "Mandai"}, {"id" : "730902", "id_kabupaten" : "7309", "name" : "Camba"}, {"id" : "730903", "id_kabupaten" : "7309", "name" : "Bantimurung"}, {"id" : "730904", "id_kabupaten" : "7309", "name" : "Mar... | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kabupaten": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "id_kabupaten", "name"]}}}, "required": ["code... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"services": {"type": "object", "properties": {"listen": {"type": "object", "properties": {"port": {"type": "string"}, "url": {"type": "string"}}, "required": ["port", "url"]}, "socket": {"type": "object", "propertie... | {"services" : {"listen" : {"port" : "8600", "url" : "http://127.0.0.1"}, "socket" : {"connections" : []}, "restApiRoot" : "", "https" : {"privateKey" : "", "certificate" : ""}, "security" : {"sessionOptions" : {"store" : null, "storeOptions" : {}}, "contentSecurityPolicy" : false, "hpkp" : false, "referrerPolicy" : {"p... | json_instruct | {"type": "object", "properties": {"services": {"type": "object", "properties": {"listen": {"type": "object", "properties": {"port": {"type": "string"}, "url": {"type": "string"}}, "required": ["port", "url"]}, "socket": {"type": "object", "properties": {"connections": {"type": "array", "items": {}}}, "required": ["conn... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "medi... | {"published" : "2015-09-28T20:50:46Z", "media-type" : "News", "title" : "Airbnb has spent more than $8 million fighting a proposed law in San Francisco (Biz Carson/Business Insider: Tech)", "id" : "f8585d4d-7952-40b6-a3ae-20c29eca08cb", "content" : "Airbnb has spent more than $8 million fighting a proposed law in San F... | 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... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"recurse": {"type": "boolean"}, "skip": {"type": "array", "items": {"type": "string"}}, "silent": {"type": "boolean"}, "concurrency": {"type": "integer"}, "retry": {"type": "boolean"}, "retryErrors": {"type": "boolea... | {"recurse" : true, "skip" : ["https://codecov.io/gh/googleapis/", "www.googleapis.com", "img.shields.io", "https://console.cloud.google.com/cloudshell", "https://support.google.com", "https://github.com/googleapis/nodejs-eventarc-publishing/blob/master/CHANGELOG.md", "https://googleapis.dev/nodejs/publishing/latest/", ... | json_instruct | {"type": "object", "properties": {"recurse": {"type": "boolean"}, "skip": {"type": "array", "items": {"type": "string"}}, "silent": {"type": "boolean"}, "concurrency": {"type": "integer"}, "retry": {"type": "boolean"}, "retryErrors": {"type": "boolean"}, "retryErrorsCount": {"type": "integer"}, "retryErrorsJitter": {"t... |
Based on the schema below, produce a valid JSON object:
{"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" : "One-Sided Device-Independent QKD and Position-Based Cryptography from Monogamy Games.", "fields" : ["quantum cryptography", "bell s theorem", "cryptography", "quantum key distribution", "quantum", "mathematics", "quantum pseudo telepathy", "theoretical computer science"], "abstract" : "A serious concern wit... | 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... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"description": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "icon64": {"type": "string"}, "name": {"type": "string"}, "title": {"type": "string"}, "version": {"type": "string"}, "id": {"ty... | {"description" : "PB and more", "license" : "MIT", "author" : "PillBat", "icon64" : "data/images/pbe.64.png", "name" : "pbe", "title" : "PBe", "version" : "0.1.6", "id" : "pbe@thetabx.net", "icon" : "resource://pbe-at-thetabx-dot-net/data/images/pbe.48.png", "updateURL" : "https://thetabx.net/addon/pbe/firefox/%APP_OS%... | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "icon64": {"type": "string"}, "name": {"type": "string"}, "title": {"type": "string"}, "version": {"type": "string"}, "id": {"type": "string"}, "icon": {"type": "string"}, "updateURL": {"typ... |
Construct a JSON document that adheres to this schema specification:
{"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": "... | {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Canibungan, Lantawan, Basilan, Autonomous Region of Muslim Mindanao (ARMM), PH", "locale" : "ph.autonomous-region-of-muslim-mindanao-armm.basilan.lantawan.canibungan", "country_id" : 177, "country_reference" : 177, "country_name" : "Phi... | 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": {... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "refresh": {"type": "integer"}, "param": {"type": "object", "properties": {"repeat": {"type": "integer"}, "duration": {"type": "integer"}, "wlength": {"type": "... | {"name" : "Simple wave", "type" : "wave", "refresh" : 1, "param" : {"repeat" : 20, "duration" : 1, "wlength" : 3, "rlength" : 1, "flength" : 1, "color" : "#000000", "rays" : [{"ray" : [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10], "direction" : "ud", "bcolor" : "#000000", "wcolor" : "#808080"}]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "refresh": {"type": "integer"}, "param": {"type": "object", "properties": {"repeat": {"type": "integer"}, "duration": {"type": "integer"}, "wlength": {"type": "integer"}, "rlength": {"type": "integer"}, "flength": {"type": "intege... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "approvalType": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"t... | {"name" : "httpbin-product-prod", "displayName" : "httpbin product prod", "approvalType" : "auto", "attributes" : [{"name" : "access", "value" : "private"}, {"name" : "apigee-remote-service-targets", "value" : "httpbin.org,httpbin.default.svc.cluster.local"}], "description" : "httpbin product prod for test mutli-env pu... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "approvalType": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}, "description": {"type... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"class": {"type": "object", "properties": {"LICENSE": {"type": "string"}}, "required": ["LICENSE"]}, "instance": {"type": "object", "properties": {"key": {"type": "string"}, "key:": {"type": "string"}}, "required": ["key", "... | {"class" : {"LICENSE" : "RJT 2/9/2007 11:15"}, "instance" : {"key" : "RJT 2/9/2007 10:04", "key:" : "RJT 2/9/2007 10:04"}} | json_instruct | {"type": "object", "properties": {"class": {"type": "object", "properties": {"LICENSE": {"type": "string"}}, "required": ["LICENSE"]}, "instance": {"type": "object", "properties": {"key": {"type": "string"}, "key:": {"type": "string"}}, "required": ["key", "key:"]}}, "required": ["class", "instance"], "$schema": "http:... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "WITHOUT CERTAIN AND INDUBITABLE PROOFS OF THEIR TRUTH;", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/12187.json"} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"mercury.js": {"type": "string"}, "mercury.min.js": {"type": "string"}}, "required": ["mercury.js", "mercury.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"mercury.js" : "sha256-Nw9kdIpmGaNJB2DuyCM1X6sksYDDoTehsf4ebG+4oY8=", "mercury.min.js" : "sha256-4Y2Q+51MkCMR9SsTxbQzTrdNJG3nB+cvh3oM5VC+i/c="} | json_instruct | {"type": "object", "properties": {"mercury.js": {"type": "string"}, "mercury.min.js": {"type": "string"}}, "required": ["mercury.js", "mercury.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"href": {"type": "string"}, "name": {"type": "string"}, "image": {"type": "string"}}, "required": ["href", "name", "image"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"href" : "catalog:index", "name" : "Romba 980", "image" : "/static/img/romba_980_big.jpg"}, {"href" : "catalog:index", "name" : "Romba 980", "image" : "/static/img/romba_980_big.jpg"}, {"href" : "catalog:index", "name" : "Romba 980", "image" : "/static/img/romba_980_big.jpg"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"href": {"type": "string"}, "name": {"type": "string"}, "image": {"type": "string"}}, "required": ["href", "name", "image"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "arra... | {"author" : "Nicky Beer", "classification" : "", "keywords" : [], "period" : "", "reference" : "http://www.poetryfoundation.org/poetrymagazine/poem/182576", "region" : "", "text" : [":", "Fugitive lung, prodigal intestine\u2014", "where\u2019s the pink crimp in my side", "where they took you out?", ":", "It must be a d... | json_instruct | {"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"run": {"type": "string"}, "start": {"type": "string"}, "scan"... | {"name" : "inslumin", "version" : "1.0.0", "description" : "Control a light based on insulin readings from a CGM.", "main" : "src/index.ts", "scripts" : {"run" : "nodemon --config nodemon.json src/index.ts", "start" : "ts-node src/index.ts", "scan" : "ts-node src/Lights/scan.ts"}, "author" : "Randall Knutson", "license... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"run": {"type": "string"}, "start": {"type": "string"}, "scan": {"type": "string"}}, "required": ["run", "start", "scan... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "c:block/copper_nether_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"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items... | {"name" : "modernizr-min", "version" : "3.2.0", "authors" : ["Wooram Jun"], "description" : "Minified version of Modernizr.", "main" : "dist/modernizr.min.js", "keywords" : ["modernizr"], "license" : "MIT", "homepage" : "https://github.com/chatii2412/modernizr-min", "ignore" : ["**/.*", "node_modules", "original", "Gru... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"desc": {"type": "string"}, "home": {"type": "string"}, "license": {"type": "string"}}, "required": ["desc", "home", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"desc" : "Oslo Configuration API", "home" : "https://docs.openstack.org/oslo.config/latest/", "license" : ""} | json_instruct | {"type": "object", "properties": {"desc": {"type": "string"}, "home": {"type": "string"}, "license": {"type": "string"}}, "required": ["desc", "home", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"version": {"type": "integer"}, "PedestalHDF5Writer": {"type": "object", "properties": {"calculator_product": {"type": "string"}, "r0calibrator_product": {"type": "string"}, "output_file": {"type": "string"}, "log_le... | {"version" : 1, "PedestalHDF5Writer" : {"calculator_product" : "PedestalIntegrator", "r0calibrator_product" : "LSTR0Corrections", "output_file" : "/astro/users/cassol/soft/python/lstchain-test/pedestal.hdf5", "log_level" : "DEBUG"}, "EventSource" : {"input_url" : "/ctadata/franca/fefs/aswg/real/R0/20191107/LST-1.1.Run0... | json_instruct | {"type": "object", "properties": {"version": {"type": "integer"}, "PedestalHDF5Writer": {"type": "object", "properties": {"calculator_product": {"type": "string"}, "r0calibrator_product": {"type": "string"}, "output_file": {"type": "string"}, "log_level": {"type": "string"}}, "required": ["calculator_product", "r0calib... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "moduleType": {"type": "array", "i... | {"name" : "pointerEventWrapper", "main" : "pointerEventWrapper.js", "homepage" : "https://github.com/arctelix/PointerEventWrapper", "authors" : ["arctelix <arctelix@gmail.com>"], "description" : "An api for normalizing, handling, & binding the PointerEvent, MouseEvent, & TouchEvent with less code.", "moduleType" : [], ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "moduleType": {"type": "array", "items": {}}, "keywords": {"type": "array", "items": {"type": "string"}}... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"mithril.js": {"type": "string"}, "mithril.min.js": {"type": "string"}}, "required": ["mithril.js", "mithril.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"mithril.js" : "sha512-Jyynd+LXlq1ibfnLENyxvC5lKvrH0XrIPXKEK6mtmC6lPcSwRzX1x7OvvAGA0Tot2X2Jm1UFyWUNeeSqUcUaDw==", "mithril.min.js" : "sha512-blYC43zs8Vns+JEc9BoXzFBSar3rRWvZlDwEu1B4N5wD3JkQK5R0KGt/1pgBx4BjSqTydhoBMxqC4I3e1+MEkw=="} | json_instruct | {"type": "object", "properties": {"mithril.js": {"type": "string"}, "mithril.min.js": {"type": "string"}}, "required": ["mithril.js", "mithril.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": ... | {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-77.002073, 39.075828], [-76.99965, 39.085984], [-76.99986, 39.089436], [-76.995529, 39.093215], [-76.985908, 39.097061], [-76.981941, 39.102115], [-76.973136, 39.098781], [-76.968658, 39.094646], [-76.964431, 39.088329],... | 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... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.