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": {"private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"husky": {"type": "string"}, "lint-staged": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["husky", "lint-stage...
{"private" : true, "devDependencies" : {"husky" : "^6.0.0", "lint-staged" : "^10.5.4", "prettier" : "^2.2.1"}}
json_instruct
{"type": "object", "properties": {"private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"husky": {"type": "string"}, "lint-staged": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["husky", "lint-staged", "prettier"]}}, "required": ["private", "devDependencies"], "$schema...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"resources": {"type": "object", "properties": {"Scripts/Script.sql": {"type": "object", "properties": {"sql-editor-data-source-id": {"type": "string"}, "default-datasource": {"type": "string"}, "default-catalog": {"ty...
{"resources" : {"Scripts/Script.sql" : {"sql-editor-data-source-id" : "mysql5-176d703e91f-7a4564567da1fff6", "default-datasource" : "mysql5-176d703e91f-7a4564567da1fff6", "default-catalog" : "dyjsj"}}}
json_instruct
{"type": "object", "properties": {"resources": {"type": "object", "properties": {"Scripts/Script.sql": {"type": "object", "properties": {"sql-editor-data-source-id": {"type": "string"}, "default-datasource": {"type": "string"}, "default-catalog": {"type": "string"}}, "required": ["sql-editor-data-source-id", "default-d...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"mobile-emulation": {"type": "string"}}, "required": ["mobile-emulation"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"mobile-emulation" : "device-mode"}
json_instruct
{"type": "object", "properties": {"mobile-emulation": {"type": "string"}}, "required": ["mobile-emulation"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"stationGroupId" : 1122602, "stations" : ["1122602"]}
json_instruct
{"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
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" : "Principal type inference for GADTs.", "fields" : ["generalized algebraic data type", "conservative extension", "type inference", "principal type", "expression"], "abstract" : "We present a new method for GADT type inference that improves the precision of previous approaches. In particular, our approach acce...
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": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId"...
{"id" : "2003", "provinceId" : "13", "regencyId" : "05", "districtId" : "16", "name" : "Tandikek Utara"}
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": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type...
{"id" : 1125819343, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "685104fe2de5afc5a0a5701b345f5403", "wof:id" : 1125819343, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [4.82246, 48.2405, 4.82246, 48.2405], "geometry" : {"coordinates" : [4.82246, 48.2405],...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "arra...
{"directions" : ["Finely mash tofu with a fork in a bowl, then let drain in a sieve set over another bowl, about 15 minutes (discard liquid).", "While tofu drains, whisk together mayonnaise, lemon juice, turmeric, and mustard in bowl, then stir in tofu, celery, chives, salt, and pepper."], "ingredients" : ["1 (14-oz) p...
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type"...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"acadYear": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "integer"}}, "m...
{"acadYear" : "2019/2020", "description" : "This Independent Study Module (ISM) is designed to enable the student to explore an approved topic in one of the following areas of public health: a) Epidemiology and Disease Control b) Biostatistics c) Environmental and Occupational Health, d) Health Policy and Systems e) He...
json_instruct
{"type": "object", "properties": {"acadYear": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "integer"}}, "moduleCredit": {"type": "string"}, "moduleCode": {"type": "stri...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"produ...
{"userId" : 57103, "cartId" : "87f9a533-d569-4ad5-99b5-3a0b170b5440", "preferredProducts" : [4785, 3997, 2014, 1921], "productReviews" : [{"productId" : 555, "reviewText" : "I tried to cremate it but got Turkish Delight all over it.", "reviewDate" : "2020-02-06T06:05:26.3311935+02:00"}, {"productId" : 4005, "reviewText...
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": {"946806938545": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "su...
{"946806938545" : {"type" : "book open", "bookName" : "Epic%20Quest", "subjectName" : "school", "fName" : "users/NC0vYW5kcm9pZF9hc3NldC93d3cvc2Nob29sL0VwaWMlMjBRdWVzdC92YXJpYWJsZS1FUV9NYXBfdmlkZW9zLUVRX01hcF92aWRfU3F1aXJyZWwuaHRtbC1hbmFseXRpY3MtOTQ2ODA2OTM4NDc4.json"}, "946806938822" : {"type" : "st"}, "946806938823" :...
json_instruct
{"type": "object", "properties": {"946806938545": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}, "946806938822": {"type": "object", "properties": {"t...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"2484": {"type": "string"}, "2482": {"type": "string"}}, "required": ["2484", "2482"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"2484" : "2485", "2482" : "2483"}
json_instruct
{"type": "object", "properties": {"2484": {"type": "string"}, "2482": {"type": "string"}}, "required": ["2484", "2482"], "$schema": "http://json-schema.org/draft-07/schema#"}
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" : "Guisad Sorong, Baguio City, Benguet, Cordillera Administrative Region (CAR), PH", "locale" : "ph.cordillera-administrative-region-car.benguet.baguio-city.guisad-sorong", "country_id" : 177, "country_reference" : 177, "country_name" : "P...
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": {...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"which": {"type": "object", "properties": {"grunt": {"type": "string"}, "node": {"type": "string"}}, "required": ["grunt", "node"]}, "exec": {"type": "object", "properties": {"/usr/local/bin/grunt build test --grun...
{"which" : {"grunt" : "/usr/local/bin/grunt", "node" : "/usr/local/bin/node"}, "exec" : {"/usr/local/bin/grunt build test --gruntfile gruntfile.js -v" : {"code" : 1, "stdout" : "grunt output here", "stderr" : "grunt failed with this output"}}, "checkPath" : {"gruntfile.js" : true}, "exist" : {"/usr/local/bin/grunt" : t...
json_instruct
{"type": "object", "properties": {"which": {"type": "object", "properties": {"grunt": {"type": "string"}, "node": {"type": "string"}}, "required": ["grunt", "node"]}, "exec": {"type": "object", "properties": {"/usr/local/bin/grunt build test --gruntfile gruntfile.js -v": {"type": "object", "properties": {"code": {"type...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"closedLoopControlName": {"type": "string"}, "controlLoopYaml": {"type": "string"}, "policyName": {"type": "string"}, "policyScope": {"type": "string"}, "policyVersion": {"type": "string"}}, "required": ["closedLoopControlNa...
{"closedLoopControlName" : "${vcpeClosedLoopControlName}", "controlLoopYaml" : "${vcpeControlLoopYaml}", "policyName" : "${vcpePolicyName}", "policyScope" : "${policyScope}", "policyVersion" : "${policyVersion}"}
json_instruct
{"type": "object", "properties": {"closedLoopControlName": {"type": "string"}, "controlLoopYaml": {"type": "string"}, "policyName": {"type": "string"}, "policyScope": {"type": "string"}, "policyVersion": {"type": "string"}}, "required": ["closedLoopControlName", "controlLoopYaml", "policyName", "policyScope", "policyVe...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"config-database": {"type": "object", "properties": {"user": {"type": "string"}, "type": {"type": "string"}, "password": {"type": "string"}, "name": {"type": "string"}, "host": {"type": "string"}}, "required":...
{"config-database" : {"user" : "keatest", "type" : "postgresql", "password" : "keatest", "name" : "kea_shard", "host" : "127.0.0.1"}}
json_instruct
{"type": "object", "properties": {"config-database": {"type": "object", "properties": {"user": {"type": "string"}, "type": {"type": "string"}, "password": {"type": "string"}, "name": {"type": "string"}, "host": {"type": "string"}}, "required": ["user", "type", "password", "name", "host"]}}, "required": ["config-databas...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"t...
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Cerrudo, Banga, Aklan, Western Visayas (Region VI), PH", "locale" : "ph.western-visayas-region-vi.aklan.banga.cerrudo", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "16", "region_reference...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"uri": {"type": "string"}, "label": {"type": "string"}, "description": {"type": "string"}, "refCount": {"type": "integer"}, "classes": {"ty...
{"results" : [{"uri" : "http://dbpedia.org/resource/Geeknet", "label" : "Geeknet", "description" : "Geeknet, Inc. is a Fairfax County, Virginia-based company that owns several computer tech-related websites and the online retailer ThinkGeek. Formerly known as VA Research, VA Linux Systems, VA Software, and SourceForge,...
json_instruct
{"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"uri": {"type": "string"}, "label": {"type": "string"}, "description": {"type": "string"}, "refCount": {"type": "integer"}, "classes": {"type": "array", "items": {"type": "object", "properties": {"uri": {"type": "s...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"...
{"geometry" : {"type" : "Point", "coordinates" : [-84.54, 39.33]}, "type" : "Feature", "id" : "45018", "properties" : {"other_cities" : "Hamilton", "city" : "Fairfield", "state" : "OH", "county" : "Butler County"}}
json_instruct
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_c...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"husky": {"type": "string"}, "prettier": {"type": "string"}, "pretty-quick": {"type": "string"}}, "required": ["husky", "prettier...
{"private" : true, "devDependencies" : {"husky" : "^4.2.5", "prettier" : "^2.0.5", "pretty-quick" : "^2.0.1"}, "husky" : {"hooks" : {"pre-commit" : "pretty-quick --staged"}}, "scripts" : {"pretty-all" : "pretty-quick --since 2749fd02 --pattern \"**/*.*(js|jsx|ts|tsx)\""}}
json_instruct
{"type": "object", "properties": {"private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"husky": {"type": "string"}, "prettier": {"type": "string"}, "pretty-quick": {"type": "string"}}, "required": ["husky", "prettier", "pretty-quick"]}, "husky": {"type": "object", "properties": {"hooks":...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"sync-exec": {"type": "object", "p...
{"name" : "aem-upload-install", "version" : "0.0.1", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"sync-exec" : {"version" : "0.6.2", "resolved" : "https://registry.npmjs.org/sync-exec/-/sync-exec-0.6.2.tgz", "integrity" : "sha1-cX0izFPwzh3vVZQ2LzqJouu5EQU=", "dev" : true}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"sync-exec": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "stri...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "url": {"type": "string"}, "author": {"type": "string"}, "authorUrl": {"type": "string"}, "license": {"type": "string"}, "licenseUrl": {"type": "string"}}, "required...
{"name" : "Umbraco2FA", "version" : "2.1.0", "url" : "https://github.com/Offroadcode/Umbraco-2FA", "author" : "Offroadcode - Janae Cram - Pete Duncanson - Jack Penney - Stephen Roberts - Kyle Weems - James Young - Et. Al.", "authorUrl" : "http://offroadcode.com/", "license" : "MIT License", "licenseUrl" : "https://open...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "url": {"type": "string"}, "author": {"type": "string"}, "authorUrl": {"type": "string"}, "license": {"type": "string"}, "licenseUrl": {"type": "string"}}, "required": ["name", "version", "url", "author", "authorUrl", "license"...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"SolverName": {"type": "string"}, "ObjBound": {"type": "number"}, "SolveTime": {"type": "number"}, "PrimalStatus": {"type": "string"}, "InstanceName": {"type": "string"}, "SolveTimeRaw": {"type": "number"}, "Com...
{"SolverName" : "EAGO", "ObjBound" : 0.491372521866092, "SolveTime" : 97.90699982643127, "PrimalStatus" : "FEASIBLE_POINT", "InstanceName" : "72_gelu_3_3_5", "SolveTimeRaw" : 97.90699982643127, "CompletedSolveTime" : 97.90699982643127, "ObjValue" : 0.4914729540000476, "Error" : false, "TerminationStatus" : "OPTIMAL"}
json_instruct
{"type": "object", "properties": {"SolverName": {"type": "string"}, "ObjBound": {"type": "number"}, "SolveTime": {"type": "number"}, "PrimalStatus": {"type": "string"}, "InstanceName": {"type": "string"}, "SolveTimeRaw": {"type": "number"}, "CompletedSolveTime": {"type": "number"}, "ObjValue": {"type": "number"}, "Erro...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "base": {"type": "string"}, "idInjection": {"type": "boolean"}, "validations": {"type": "array", "items": {}}, "relations": {"type": "object", "properties": {}, "required": []}, "strict": {"type": "boo...
{"name" : "BaseActorEntity", "base" : "BaseEntity", "idInjection" : true, "validations" : [], "relations" : {}, "strict" : false, "disableInstanceCache" : false, "properties" : {"stateId" : {"type" : "String"}, "noBackgroundProcess" : false, "noCacheTime" : 30000}, "options" : {"disableManualPersonalization" : true, "i...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "base": {"type": "string"}, "idInjection": {"type": "boolean"}, "validations": {"type": "array", "items": {}}, "relations": {"type": "object", "properties": {}, "required": []}, "strict": {"type": "boolean"}, "disableInstanceCache": {"type": "boolean"}, "pro...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "indexable": {"type": "boolean"}, "names": {"type": "array", "items": {"ty...
{"citations" : [{"textCitation" : "[See lgsquad on Metamath](http://us.metamath.org/mpegif/lgsquad.html)"}], "indexable" : true, "names" : ["Law of Quadratic Reciprocity", "lgsquad"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cP", "#T_wcel", "#T_cprime", "#T_cdif", "#T_csn--1", "#T_c2", "#T_csn--2", "#T_w3a-...
json_instruct
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "indexable": {"type": "boolean"}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"typ...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author"...
{"name" : "ns-uploader", "version" : "0.0.3", "description" : "", "main" : "./src/index.js", "scripts" : {"test" : "node node_modules/jasmine/bin/jasmine.js"}, "author" : "", "license" : "ISC", "dependencies" : {"async" : "2.5.0", "jasmine" : "^2.8.0", "q" : "1.5.1", "shelljs" : "0.7.8", "suitetalk" : "file:../suitetal...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "depen...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"testColor": {"type": "string"}, "testEvents": {"type": "string"}, "testFrom": {"type": "string"}, "testId...
{"class" : {}, "instance" : {"testColor" : "MarianoMartinezPeck 12/31/2013 13:03", "testEvents" : "MarianoMartinezPeck 12/31/2013 13:03", "testFrom" : "MarianoMartinezPeck 12/31/2013 13:03", "testId" : "MarianoMartinezPeck 12/31/2013 13:03", "testInnerRadius" : "MarianoMartinezPeck 12/31/2013 13:03", "testOuterRadius" ...
json_instruct
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"testColor": {"type": "string"}, "testEvents": {"type": "string"}, "testFrom": {"type": "string"}, "testId": {"type": "string"}, "testInnerRadius": {"type": "string"}, "testOute...
Create an example JSON object that satisfies this 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"}}}}}, "requ...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[139.25, 44.833333333333336], [139.25, 44.916666666666664], [139.375, 44.916666666666664], [139.375, 44.833333333333336], [139.25, 44.833333333333336]]]}, "properties" : {"code" : 673922, "url" : "http://madefor.github.io/0410/api/v1/673922.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...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"lrc": {"type": "string"}}, "required": ["lrc"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"lrc" : "[ti:\u544a\u767d\u6c14\u7403]\n[ar:\u53f6\u6d1b\u6d1b/Vk]\n[al:\u544a\u767d\u6c14\u7403]\n[by:]\n[offset:0]\n[00:00.86]\u544a\u767d\u6c14\u7403 - \u53f6\u6d1b\u6d1b/Vk\n[00:01.70]\u8bcd\uff1a\u65b9\u6587\u5c71\n[00:01.88]\u66f2\uff1a\u5468\u6770\u4f26\n[00:02.07]\u6df7\u97f3\uff1a\u7ef4\u4ed6\u547d\n[00:02.29...
json_instruct
{"type": "object", "properties": {"lrc": {"type": "string"}}, "required": ["lrc"], "$schema": "http://json-schema.org/draft-07/schema#"}
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" : ["Cook the pasta according to package directions; drain and rinse under cold water.", "Mix together the pasta, shrimp, green onions and ranch dressing, then carefully work the shrimp into the pasta with your hands. (Note: As the salad sits, it will absorb some of the dressing; add a little dressing righ...
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "r...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"...
{"name" : "JMStaticLibrary", "version" : "0.1.0", "summary" : "A short description of JMStaticLibrary.", "description" : "TODO: Add long description of the pod here.", "homepage" : "https://github.com/jiemingdev/JMStaticLibrary", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"jieming" : "307113345@qq.c...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"431122100": {"type": "string"}, "431122101": {"type": "string"}, "431122102": {"type": "string"}, "431122103": {"type": "string"}, "431122104": {"type": "string"}, "431122105": {"type": "string"}, "431122106": {"ty...
{"431122100" : "\u767d\u7259\u5e02\u9547", "431122101" : "\u5927\u5e99\u53e3\u9547", "431122102" : "\u7d2b\u6eaa\u5e02\u9547", "431122103" : "\u6a2a\u5858\u9547", "431122104" : "\u77f3\u671f\u5e02\u9547", "431122105" : "\u4e95\u5934\u5729\u9547", "431122106" : "\u7aef\u6865\u94fa\u9547", "431122107" : "\u9e7f\u9a6c\u68...
json_instruct
{"type": "object", "properties": {"431122100": {"type": "string"}, "431122101": {"type": "string"}, "431122102": {"type": "string"}, "431122103": {"type": "string"}, "431122104": {"type": "string"}, "431122105": {"type": "string"}, "431122106": {"type": "string"}, "431122107": {"type": "string"}, "431122108": {"type": ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"viewer.css": {"type": "string"}, "viewer.js": {"type": "string"}, "viewer.min.css": {"type": "string"}, "viewer.min.js": {"type": "string"}}, "required": ["viewer.css", "viewer.js", "viewer.min.css", "viewer....
{"viewer.css" : "sha512-qkuLQJqHtgx+nJjTBxh4B/WcVScIf+oKjFIsu2EMcyua+Ae/iZOhiAeHZYdgzvENismcM/QsgdVZXB65AmlD7Q==", "viewer.js" : "sha512-Je4s9cDCq4cJ3xTCt0XepmNIezLSD1nZ+j747BrKR9jyyoica9SxnWKCDkbc9gufx3KtxFrjQUY1d/RxZFQXQA==", "viewer.min.css" : "sha512-1vwlbrM9OcsnvkPqvwKXukgVB6gPdRBgxugINAiOFWEeKNSYEdqH9zGw3JyetmlPa...
json_instruct
{"type": "object", "properties": {"viewer.css": {"type": "string"}, "viewer.js": {"type": "string"}, "viewer.min.css": {"type": "string"}, "viewer.min.js": {"type": "string"}}, "required": ["viewer.css", "viewer.js", "viewer.min.css", "viewer.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"canvas": {"type": "string"}, "js": {"type": "string"}}, "required": ["canvas", "js"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"dependencies" : {"canvas" : "^2.8.0", "js" : "^0.1.0"}}
json_instruct
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"canvas": {"type": "string"}, "js": {"type": "string"}}, "required": ["canvas", "js"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s"...
{"h" : [{"d" : [{"s" : ["`rarar~"], "f" : "\ufff9\ufffaa kind of hoe that is small and lightweight * formerly made of stone now no longer in existence\ufffb\u5c0f\u92e4\u982d\uff0c\u65e9\u671f\u662f\u7528\u77f3\u7247\u505a\u7684\uff0c\u73fe\u5df2\u4e0d\u5b58\u5728\u4e86"}]}], "t" : "lalal"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "anomural", "definition" : "Irregular in the character of the tail or abdomen; as, the anomural crustaceans. [Written also anomoural, anomouran.]"}
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": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"values" : ["luigis_mansion:room/normal/hallway_7/interactions/gameboy_horror_scan/lamp_1", "luigis_mansion:room/normal/hallway_7/interactions/gameboy_horror_scan/lamp_2"]}
json_instruct
{"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "firstName": {"type": "string"}, "lastName": {"type": "string"}, "email": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "organisations": {"type": "arra...
{"id" : "e59df71e-f8ed-4620-a3b6-658be2aebe3a", "firstName" : "Jovanny", "lastName" : "Cormier", "email" : "jovanny.cormier-8177@example.com", "username" : "jovanny.cormier-8177@example.com", "password" : "bat", "organisations" : [{"id" : "b0661fea-19bc-4a44-b3a1-d521ca9a7608", "code" : "1GB", "name" : "Catholic Teachi...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "firstName": {"type": "string"}, "lastName": {"type": "string"}, "email": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "organisations": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"slug": {"type": "string"}, "relevant-countries": {"type": "array", "items": {"type": "string"}}, "categories": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "address": {"type": "strin...
{"slug" : "cifas", "relevant-countries" : ["gb"], "categories" : ["credit agency"], "name" : "Cifas", "address" : "6th Floor\nLynton House\n7\u201412 Tavistock Square\nLondon\nWC1H 9LT\nUnited Kingdom", "email" : "compliance@cifas.org.uk", "web" : "https://www.cifas.org.uk/", "sources" : ["https://www.cifas.org.uk/priv...
json_instruct
{"type": "object", "properties": {"slug": {"type": "string"}, "relevant-countries": {"type": "array", "items": {"type": "string"}}, "categories": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "address": {"type": "string"}, "email": {"type": "string"}, "web": {"type": "string"}, "sources": ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"SimFN": {"type": "object", "properties": {"version": {"type": "string"}, "network": {"type": "string"}, "duration": {"type": "number"}, "dt": {"type": "number"}, "seed": {"type": "integer"}, "recordVariables": {"type...
{"SimFN" : {"version" : "NeuroMLlite v0.4.3", "network" : "FN.json", "duration" : 100.0, "dt" : 0.05, "seed" : 123, "recordVariables" : {"V" : {"all" : "*"}, "W" : {"all" : "*"}}, "plots2D" : {"VW" : {"x_axis" : "FNpop/0/fn/V", "y_axis" : "FNpop/0/fn/W"}}}}
json_instruct
{"type": "object", "properties": {"SimFN": {"type": "object", "properties": {"version": {"type": "string"}, "network": {"type": "string"}, "duration": {"type": "number"}, "dt": {"type": "number"}, "seed": {"type": "integer"}, "recordVariables": {"type": "object", "properties": {"V": {"type": "object", "properties": {"a...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": ...
{"name" : "buddyup-firebase-server", "version" : "0.1.0", "description" : "A mock firebase server for unit tests and dev", "dependencies" : {}, "devDependencies" : {"firebase" : "^2.4.2", "firebase-server" : "^0.5.4"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"firebase": {"type": "string"}, "firebase-server": {"type": "string"}...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"@vuepress/theme-blog": {"type": "string"}, "vuepress": {"type": "string"}}, "required": ["@vuepress/theme-blog", "vuepress"]}}, "required": ["devDependencies"], "$schema"...
{"devDependencies" : {"@vuepress/theme-blog" : "^2.2.0", "vuepress" : "^1.5.2"}}
json_instruct
{"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"@vuepress/theme-blog": {"type": "string"}, "vuepress": {"type": "string"}}, "required": ["@vuepress/theme-blog", "vuepress"]}}, "required": ["devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required": ["d"]}}, "stem": {"type...
{"h" : [{"d" : [{"f" : "\u66ec\u9e7d\u7684\u5730\u65b9\u3001\u6642\u9593\u3001\u66ec\u9e7d\u5834\u3002"}]}], "stem" : "cinah", "t" : "pisacinahan"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"],...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"configuration": {"type": "array", "items": {"type": "string"}}, "regionsToProcessedPerformance": {"type": "object", "properties": {"cf0973a4-2ff7-4a05-9c80-db66fb4f5943": {"type": "integer"}, "program": {"type": "integer"}}, "...
{"configuration" : ["IGNORELEADINGBLANKS", "MERGE", "REVERSE"], "regionsToProcessedPerformance" : {"cf0973a4-2ff7-4a05-9c80-db66fb4f5943" : 21452496421, "program" : 938544}}
json_instruct
{"type": "object", "properties": {"configuration": {"type": "array", "items": {"type": "string"}}, "regionsToProcessedPerformance": {"type": "object", "properties": {"cf0973a4-2ff7-4a05-9c80-db66fb4f5943": {"type": "integer"}, "program": {"type": "integer"}}, "required": ["cf0973a4-2ff7-4a05-9c80-db66fb4f5943", "progra...
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": "null"}}, "required": ["contract", "tool",...
{"contract" : "0xaa0ae3459f9f3472d1237015cafc1aafc6f03c63", "tool" : "securify", "start" : 1563524500.4974148, "end" : 1563524503.268996, "duration" : 2.7715811729431152, "analysis" : null}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.or...
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"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"typ...
{"name" : "WebChordsBook", "version" : "1.0.0", "description" : "Web app to make pdf book from urls ", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "node index.js", "build" : "webpack", "electron" : "electron .", "package" : "electron-packager . DeLaCuerdaAlPdf "},...
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"}, "build": {"type": "string"}, "electron": {"type": "string"}, "...
Construct a JSON document that adheres to this schema specification: {"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-schem...
{"word" : "Lark", "definitions" : ["Enjoy oneself by behaving in a playful and mischievous way."], "parts-of-speech" : "Verb"}
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": "object", "properties": {"config": {"type": "object", "properties": {"id": {"type": "string"}, "label": {"type": "string"}, "localeDateOrder": {"type": "string"}, "options": {"type": "object", "properties": {"exportNotes": {"type": "boolean...
{"config" : {"id" : "36a3b0b5-bad0-4a04-b79b-441c7cef77db", "label" : "BetterBibTeX JSON", "localeDateOrder" : "mdy", "options" : {"exportNotes" : true}, "preferences" : {"auxImport" : true, "bibtexURL" : "url", "citekeyFormat" : "[auth][shorttitle3_3]", "keyConflictPolicy" : "change"}}, "items" : [{"accessDate" : "202...
json_instruct
{"type": "object", "properties": {"config": {"type": "object", "properties": {"id": {"type": "string"}, "label": {"type": "string"}, "localeDateOrder": {"type": "string"}, "options": {"type": "object", "properties": {"exportNotes": {"type": "boolean"}}, "required": ["exportNotes"]}, "preferences": {"type": "object", "p...
The schema below describes a JSON structure. Generate a valid example: {"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" : "Discovering Experts across Multiple Domains.", "fields" : ["ranking", "expertise finding", "microblogging", "social media", "question answering"], "abstract" : "Researchers have focused on finding experts in individual domains, such as emails, forums, question answering, blogs, and microblogs. In this paper...
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...
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"engine": {"type": "string"}, "model": {"type": "string"}, "type": {"type": "string"}}, "required": ["engine", "model", "type"]}, "$schema": "http://json-schema.org/draft-07/schema#"} ...
[{"engine" : "Gasoline", "model" : "GTA Motor Spano", "type" : "coupes"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"engine": {"type": "string"}, "model": {"type": "string"}, "type": {"type": "string"}}, "required": ["engine", "model", "type"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"lyrics": {"type": "string"}, "album": {"type": "string"}, "year": {"type": "string"}, "title": {"type": "string"}}, "required": ["lyrics", "album", "year", "title"], "$schema": "http://json-schema.org/draft-07/sch...
{"lyrics" : "He is sensible and so incredible\nAnd all my single friends are jealous\nHe says everything I need to hear and it's like\nI couldn't ask for anything better\nHe opens up my door and I get into his car\nAnd he says you look beautiful tonight\nAnd I feel perfectly fine\nBut I miss screaming and fighting and ...
json_instruct
{"type": "object", "properties": {"lyrics": {"type": "string"}, "album": {"type": "string"}, "year": {"type": "string"}, "title": {"type": "string"}}, "required": ["lyrics", "album", "year", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": {"type": "str...
{"type" : "Feature", "properties" : {"name" : "S\u00fckhbaatar", "iso2" : "MN-051", "admin_level" : 4, "osm_id" : 269874, "wikidata_id" : "Q244804", "wikipedia_id" : null, "population" : 59034, "countrylevel_id" : "iso2:MN-051", "osm_data" : {"localname" : "\u0421\u04af\u0445\u0431\u0430\u0430\u0442\u0430\u0440", "offi...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "null"}, "population": {"ty...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "unpkg": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "s...
{"name" : "vue-copy-clipboard-btn", "version" : "1.0.18", "main" : "dist/copy-clipboard-btn.umd.js", "module" : "dist/copy-clipboard-btn.umd.js", "unpkg" : "dist/copy-clipboard-btn.umd.js", "scripts" : {"build" : "npm run build:umd & npm run build:es & npm run build:unpkg", "build:umd" : "rollup --config build/rollup.c...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "unpkg": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "build:umd": {"type": "string"}, "build:es": {"type": "string"}, "...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "displayName": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "publisher": {"type": "string"}, "license": {"type": "st...
{"name" : "typescript-basics", "description" : "%description%", "displayName" : "%displayName%", "version" : "0.10.1", "author" : "vscode", "publisher" : "vscode", "license" : "MIT", "engines" : {"vscode" : "*"}, "scripts" : {"update-grammar" : "node ./build/update-grammars.js"}, "contributes" : {"languages" : [{"id" :...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "displayName": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "publisher": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"vscode": {"type":...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "p...
{"template" : {"small" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/1.0", "medium" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/2.0", "large" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/3.0"}, "channels" : {"mrstunder" : {"title" : "MrStunder", "channel_id" : 42649283, "link" : "http:/...
json_instruct
{"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"mrstunder": {"type": "object", "properties": {"title": {"type...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}, "icon64": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "...
{"name" : "luckyflix", "title" : "Lucky Flix", "id" : "jid1-D6ZpMppBs33mYw", "description" : "Adds a Get Lucky button to Netflix.com, which plays a random film", "icon" : "data/icon48.png", "icon64" : "data/icon64.png", "author" : "Tom Pierce", "license" : "MPL 2.0", "version" : "0.0.2"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}, "icon64": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}}, "required": ["nam...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "typings": {"type": "string"}, "scripts": {"type": "object", "properties": ...
{"name" : "@start-app/form-builder-model", "version" : "1.0.4", "description" : "The Startapp.Studio FormBuilder model", "main" : "dist/form-model.esm", "module" : "dist/form-model.esm", "typings" : "dist/index.d.ts", "scripts" : {"build:package" : "npx rollup -c", "build:test" : "npx typescript -p ./tsconfig-spec.json...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "typings": {"type": "string"}, "scripts": {"type": "object", "properties": {"build:package": {"type": "string"}, "build:test": {"type"...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"className": {"type": "string"}, "classAnnotations": {"type": "array", "items": {}}, "interfaces": {"type": "array", "items": {"type": "string"}}, "superClasses": {"type": "array", "items": {"type": "string"}}}, "required": ["cla...
{"className" : "org.wikipedia.navtab.NavTabLayout", "classAnnotations" : [], "interfaces" : ["android.graphics.drawable.Drawable$Callback", "android.view.KeyEvent$Callback", "android.view.ViewManager", "android.view.ViewParent", "android.view.accessibility.AccessibilityEventSource"], "superClasses" : ["com.google.andro...
json_instruct
{"type": "object", "properties": {"className": {"type": "string"}, "classAnnotations": {"type": "array", "items": {}}, "interfaces": {"type": "array", "items": {"type": "string"}}, "superClasses": {"type": "array", "items": {"type": "string"}}}, "required": ["className", "classAnnotations", "interfaces", "superClasses"...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "IWantMyName", "description" : "A domain name registrar.", "url" : "https://iwantmyname.com/"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"mm0": {"type": "object", "properties": {"write": {"type": "object", "properties": {"device_start": {"type": "number"}, "host_queued_start": {"type": "number"}, "device_queued": {"type": "number"}, "device_end":...
{"mm0" : {"write" : {"device_start" : 1586199223.8658547, "host_queued_start" : 1586199306.888103, "device_queued" : 1586199223.8658366, "device_end" : 1586199223.8658712, "host_queued_end" : 1586199306.888448}, "device" : "gpu", "nd_range" : {"device_start" : 1586199223.8658783, "device_end" : 1586199223.8659008}, "cm...
json_instruct
{"type": "object", "properties": {"mm0": {"type": "object", "properties": {"write": {"type": "object", "properties": {"device_start": {"type": "number"}, "host_queued_start": {"type": "number"}, "device_queued": {"type": "number"}, "device_end": {"type": "number"}, "host_queued_end": {"type": "number"}}, "required": ["...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"customer_id": {"type": "string"}, "checking_account_number": {"type": "string"}}, "required": ["customer_id", "checking_account_number"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"customer_id" : "c6157cb9-92c3-4c54-a1bb-ecf9a4a2a8ff", "checking_account_number" : "c0b87604-2442-4d19-96d8-e44e026d3481"}
json_instruct
{"type": "object", "properties": {"customer_id": {"type": "string"}, "checking_account_number": {"type": "string"}}, "required": ["customer_id", "checking_account_number"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"image_name": {"type": "string"}, "image_height": {"type": "integer"}, "camera_gps": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "object", "properties": {"score": {"type": "number"}, "frontview": {"type": "b...
{"image_name" : "lesion2218.png", "image_height" : 512, "camera_gps" : "", "bbox" : [{"score" : 1.0, "frontview" : true, "other" : {"region_attributes" : {"id" : 1.0, "type" : "car"}}, "category_id" : "car", "segmentation" : "137.0,292.0,137.0,300.0,136.0,312.0,138.0,321.0,142.0,329.0,147.0,334.0,157.0,333.0,165.0,330....
json_instruct
{"type": "object", "properties": {"image_name": {"type": "string"}, "image_height": {"type": "integer"}, "camera_gps": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "object", "properties": {"score": {"type": "number"}, "frontview": {"type": "boolean"}, "other": {"type": "object", "properties": {"regio...
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "brand": {"type": "string"}}, "required": ["id", "name", "brand"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "0ec9fded-01ea-4718-8f52-7bc1e0fe7993", "name" : "Murvi", "brand" : "e93302a8-9f09-44b0-9971-3834801ad800"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "brand": {"type": "string"}}, "required": ["id", "name", "brand"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"connection": {"type": "object", "properties": {"url": {"type": "string"}, "dbName": {"type": "string"}, "user": {"type": "string"}, "pass": {"type": "string"}}, "required": ["url", "dbName", "user", "pass"]}, "filters": {"type...
{"connection" : {"url" : "mongodb://192.168.0.62:27667", "dbName" : "locations-dev-db", "user" : "ms-locations", "pass" : "M5-l0c4t10n5-0l1mpO"}, "filters" : {"limit" : 20, "maxDistance" : 1000, "page" : 1}}
json_instruct
{"type": "object", "properties": {"connection": {"type": "object", "properties": {"url": {"type": "string"}, "dbName": {"type": "string"}, "user": {"type": "string"}, "pass": {"type": "string"}}, "required": ["url", "dbName", "user", "pass"]}, "filters": {"type": "object", "properties": {"limit": {"type": "integer"}, "...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"count": {"type": "integer"}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "352021": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ...
{"count" : 14, "N.A.//" : {"count" : 9}, "352021" : {"count" : 1}, "371011" : {"count" : 1}, "412010" : {"count" : 1}, "436010" : {"count" : 1}, "439061" : {"count" : 1}}
json_instruct
{"type": "object", "properties": {"count": {"type": "integer"}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "352021": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "371011": {"type": "object", "properties": {"count": {"typ...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"label": {"type": "string"}, "position": {"type": "integer"}}, "required": ["label", "position"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"label" : "Using the Pull Request Body", "position" : 3}
json_instruct
{"type": "object", "properties": {"label": {"type": "string"}, "position": {"type": "integer"}}, "required": ["label", "position"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {"id": {"type": "string"}, "slug": {"type": "string"}...
{"componentChunkName" : "component---src-templates-category-index-js", "path" : "/vi/category/vo-thuat", "result" : {"pageContext" : {"id" : "2paqA6ThH7xLjwdb0Sipw3", "slug" : "/category/vo-thuat", "params" : {"id" : "2paqA6ThH7xLjwdb0Sipw3", "displayName" : "V\u00f5 Thu\u1eadt", "avatarUrl" : null, "slug" : "vo-thuat"...
json_instruct
{"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {"id": {"type": "string"}, "slug": {"type": "string"}, "params": {"type": "object", "properties": {"id": {"type": "string"},...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "OperatorID": {"type": "integer"},...
{"IsRecentlyVerified" : false, "ID" : 13745, "UUID" : "29B2299E-D292-4F40-8C9E-FF116D6A4A06", "DataProviderID" : 15, "DataProvidersReference" : "23558", "OperatorID" : 5, "AddressInfo" : {"ID" : 13642, "Title" : "1710 Saic Dr", "AddressLine1" : "1710 Saic Dr", "Town" : "McLean", "StateOrProvince" : "Virginia", "Postcod...
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "OperatorID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "int...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"},...
{"name" : "lostark", "version" : "1.0.0", "description" : "Lost Ark KOR server queue checking site", "author" : "RubystarAshe", "private" : true, "scripts" : {"dev" : "nuxt", "build" : "nuxt build", "start" : "nuxt start", "generate" : "nuxt generate", "deploy" : "push-dir --dir=dist --branch=gh-pages --cleanup", "publ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}, ...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/schema...
[{"Similarity" : "0.987", "Title" : "Unreliable Sources and the Conjunction Fallacy", "Year" : 2009}, {"Similarity" : "0.974", "Title" : "Interpretation and Processing Time of Generalized Quantifiers Why your Mental Space Matters", "Year" : 2017}, {"Similarity" : "0.967", "Title" : "Logical Patterns in Individual and G...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "propert...
{"nft" : {"id" : "7347", "name" : "PixelFreak #07347", "description" : "They call us ugly, and misfits, but we prefer to call ourselves freaks", "image" : "ipfs://QmYGj33ggMHBqQ4HNGf6qKKmyr5Y9o4CQgyRf6dQZ89LVy", "attributes" : [{"trait_type" : "pet", "value" : "None"}, {"trait_type" : "body", "value" : "Butcher"}, {"tr...
json_instruct
{"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {...
{"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "CONDITIONS_BY_TYPE" : {"CONCEPT_NAME" : "Observation recorded from EHR", "COUNT_VALUE" : 34}, "AGE_AT_FIRST_DI...
json_instruct
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRE...
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
[29.237191369197237, 29.750917799877584, 31.120854948358513, 31.634581379038863]
json_instruct
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "barometrical", "definition" : "Pertaining to the barometer; made or indicated by a barometer; as, barometric changes; barometrical observations."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@babel/runtime": {"type": "string"}, "@material-ui/core": {"type": "string"}, "@material-ui/icons": {...
{"name" : "tichu-counter", "version" : "0.3.0", "dependencies" : {"@babel/runtime" : "^7.13.10", "@material-ui/core" : "^4.11.3", "@material-ui/icons" : "^4.11.2", "@types/lodash" : "^4.14.168", "axios" : "^0.21.1", "dotenv" : "^8.2.0", "lodash" : "^4.17.21", "react" : "^17.0.2", "react-dom" : "^17.0.2", "react-router-...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@babel/runtime": {"type": "string"}, "@material-ui/core": {"type": "string"}, "@material-ui/icons": {"type": "string"}, "@types/lodash": {"type": "string"}, "axios": {"type": "...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properti...
{"contract" : "0xf2b87ce9c2ce65e786d6ffee0fdb9629ceff05f2", "tool" : "osiris", "start" : 1564577255.4905968, "end" : 1564577313.9224515, "duration" : 58.43185472488403, "analysis" : [{"errors" : [], "file" : "/unique_chucks/4/0xf2b87ce9c2ce65e786d6ffee0fdb9629ceff05f2.sol", "name" : "BasicToken"}, {"errors" : [], "file...
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "strin...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "sort-name": {"type": "string"}}, "required": ["id", "name", "sort-name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "47d3ce46-7089-44d1-ab6f-13b82f31e49a", "name" : "The Age of Steam", "sort-name" : "Age of Steam, The"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "sort-name": {"type": "string"}}, "required": ["id", "name", "sort-name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "schema": {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "object", "propert...
{"title" : "Level-Ups", "schema" : {"title" : "Level-Up", "type" : "object", "properties" : {"id" : {"title" : "Level", "type" : "integer"}, "unlockAbilities" : {"title" : "Unlock Abilities", "type" : "array", "minItems" : 1, "items" : {"type" : "string", "enum" : ["blockHardAttacks", "doubleAttack", "doubleJump", "eva...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "schema": {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}}, "required"...
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"}, "format": {"type": "string"}, "accepts": {"type": "string"}, "nickname": {"type": "string"}, "dependencies"...
{"name" : "LA-Fitness", "version" : "0.0.0", "description" : "First stab at an awesome bot for random battles", "main" : "lib/main.js", "format" : "randombattle", "accepts" : "ALL", "nickname" : "LA-Fitness8735", "dependencies" : {"babel-cli" : "*", "babel-plugin-module-resolver" : "^3.0.0-beta.1", "babel-preset-es2015...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "format": {"type": "string"}, "accepts": {"type": "string"}, "nickname": {"type": "string"}, "dependencies": {"type": "object", "properties": {"babel-cli": {"type":...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"wards": {"type": "array", "items": {"type": "object", "properties": {"ward_no": {"type": "integer"}, "ward_name": {"type": "string"}, "ward_id": {"type": "string"}}, "required": ["ward_no", "ward_name", "ward_id"]...
{"wards" : [{"ward_no" : 1, "ward_name" : "Chhitarpah", "ward_id" : "199875"}, {"ward_no" : 2, "ward_name" : "Khanpur Taluk Bansdeeh", "ward_id" : "199867"}], "no_of_wards" : 2, "name" : "KHANPUR", "lsg_code" : "50333", "district" : "Ballia", "state" : "Uttar Pradesh", "block_no" : "922"}
json_instruct
{"type": "object", "properties": {"wards": {"type": "array", "items": {"type": "object", "properties": {"ward_no": {"type": "integer"}, "ward_name": {"type": "string"}, "ward_id": {"type": "string"}}, "required": ["ward_no", "ward_name", "ward_id"]}}, "no_of_wards": {"type": "integer"}, "name": {"type": "string"}, "lsg...
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" : "Barneville-la-Bertran", "circ" : "4\u00e8me circonscription", "dpt" : "Calvados", "inscrits" : 110, "abs" : 49, "votants" : 61, "blancs" : 3, "nuls" : 0, "exp" : 58, "res" : [{"nuance" : "REM", "nom" : "M. Christophe BLANCHET", "voix" : 34}, {"nuance" : "LR", "nom" : "Mme Nicole AMELINE", "voix" : 24}]}
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"...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"getUserInfo": {"type": "object", "properties": {"Output": {"type": "object", "properties": {"staffid": {"type": "string"}, "imid": {"type": "string"}}, "required": ["staffid", "imid"]}, "Resources": {"type": "objec...
{"getUserInfo" : {"Output" : {"staffid" : "<<staffInfo.Id>>", "imid" : "<<imUserInfo.Id>>"}, "Resources" : {"imUserInfo" : {"Url" : "im/getUserInfo?mid=1&uid=<<uid>>&token=<<login.SessionToken>>", "Header" : {"Content-type" : "application/json", "token" : "<<login.SessionToken>>"}, "Method" : "POST", "Input" : {"uid" :...
json_instruct
{"type": "object", "properties": {"getUserInfo": {"type": "object", "properties": {"Output": {"type": "object", "properties": {"staffid": {"type": "string"}, "imid": {"type": "string"}}, "required": ["staffid", "imid"]}, "Resources": {"type": "object", "properties": {"imUserInfo": {"type": "object", "properties": {"Url...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "282177178fdcee5f6cf8b75fbc3fb12e8db3b573"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "s": {"type": "array", "items": {"...
{"t" : "mahelip", "h" : [{"d" : [{"f" : "\u88ab\u542e\u5438\uff0c\u88ab\u5438\u3002", "s" : ["`ma~`cepcep~"]}]}], "stem" : "helip"}
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"}, "s": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "s"]}}}, "required": ["d"]}}, "s...
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" : "Saint-Sulpice-sur-L\u00e8ze", "dpt" : "Haute-Garonne", "inscrits" : 1546, "abs" : 215, "votants" : 1331, "blancs" : 27, "nuls" : 10, "exp" : 1294, "res" : [{"panneau" : "2", "voix" : 353}, {"panneau" : "9", "voix" : 317}, {"panneau" : "3", "voix" : 277}, {"panneau" : "11", "voix" : 130}, {"panneau" : "4", "vo...
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": {"name": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["dev"...
{"name" : "optimize-missing-deps", "private" : true, "version" : "0.0.0", "scripts" : {"dev" : "node server", "postinstall" : "ts-node ../../../scripts/patchFileDeps.ts"}, "dependencies" : {"missing-dep" : "file:./missing-dep", "multi-entry-dep" : "file:./multi-entry-dep"}, "devDependencies" : {"express" : "^4.17.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["dev", "postinstall"]}, "dependencies": {"type": "object", "properties": {...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"directive": {"type": "object", "properties": {"header": {"type": "object", "properties": {"namespace": {"type": "string"}, "name": {"type": "string"}, "payloadVersion": {"type": "string"}, "messageId": {"type": "string"}, "cor...
{"directive" : {"header" : {"namespace" : "Alexa.LockController", "name" : "Lock", "payloadVersion" : "3", "messageId" : "fa5c1080-dd59-48f9-b79f-c73190834071", "correlationToken" : "AAAAAAAAAAAY+b"}, "endpoint" : {"scope" : {"type" : "BearerToken", "token" : "Atza|IwEBI"}, "endpointId" : "garage-lock-01", "cookie" : {...
json_instruct
{"type": "object", "properties": {"directive": {"type": "object", "properties": {"header": {"type": "object", "properties": {"namespace": {"type": "string"}, "name": {"type": "string"}, "payloadVersion": {"type": "string"}, "messageId": {"type": "string"}, "correlationToken": {"type": "string"}}, "required": ["namespac...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"field_masking_span": {"type": "object", "properties": {"query": {"type": "object", "properties": {"span_term": {"type": "object", "properties": {"value": {"type": "object", "properties": {"value": {"type": "number"}, "boost...
{"field_masking_span" : {"query" : {"span_term" : {"value" : {"value" : 0.5, "boost" : 0.23}}}, "field" : "mapped_geo_shape", "boost" : 42.0, "_name" : "KPI"}}
json_instruct
{"type": "object", "properties": {"field_masking_span": {"type": "object", "properties": {"query": {"type": "object", "properties": {"span_term": {"type": "object", "properties": {"value": {"type": "object", "properties": {"value": {"type": "number"}, "boost": {"type": "number"}}, "required": ["value", "boost"]}}, "req...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"textures": {"type": "object", "properties": {"bottom": {"type": "string"}, "top": {"type": "string"}, "overlay": {"type": "string"}, "side": {"type": "string"}, "particle": {"type": "string"}}, "required": ["bottom", "top", "o...
{"textures" : {"bottom" : "minecraft:blocks/iron_block", "top" : "roboticraft:blocks/dyn_robot_magnet_top", "overlay" : "roboticraft:blocks/overlay/dyn_robot_magnet_top", "side" : "minecraft:blocks/iron_block", "particle" : "minecraft:blocks/iron_block"}, "elements" : [{"from" : [2, 15, 2], "to" : [14, 16, 14], "faces"...
json_instruct
{"type": "object", "properties": {"textures": {"type": "object", "properties": {"bottom": {"type": "string"}, "top": {"type": "string"}, "overlay": {"type": "string"}, "side": {"type": "string"}, "particle": {"type": "string"}}, "required": ["bottom", "top", "overlay", "side", "particle"]}, "elements": {"type": "array"...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, ...
{"IsRecentlyVerified" : false, "ID" : 105559, "UUID" : "415C07CB-D6B4-4D2F-AD5E-9E2BE1F959F6", "DataProviderID" : 1, "OperatorID" : 23, "OperatorsReference" : "44121", "UsageTypeID" : 4, "AddressInfo" : {"ID" : 105905, "Title" : "Doubletree By Hilton Hotel Akron - Fairlawn", "AddressLine1" : "3150 W Market St", "Town" ...
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "p...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"file": {"type": "object", "properties": {"_constructor": {"type": "string"}, "id": {"type": "integer"}, "parts": {"type": "integer"}, "name": {"type": "string"}}, "required": ["_constructor", "id", "parts", "name"]}, "_construct...
{"file" : {"_constructor" : "inputFileBig#fa4f0bb5", "id" : 0, "parts" : 0, "name" : "fyZuSxlyCFn5"}, "_constructor" : "inputChatUploadedPhoto#927c55b4"}
json_instruct
{"type": "object", "properties": {"file": {"type": "object", "properties": {"_constructor": {"type": "string"}, "id": {"type": "integer"}, "parts": {"type": "integer"}, "name": {"type": "string"}}, "required": ["_constructor", "id", "parts", "name"]}, "_constructor": {"type": "string"}}, "required": ["file", "_construc...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"typ...
{"text" : {"0" : {"m1" : "\u06af\u0646\u062c\u062a \u0628\u0627\u06cc\u062f \u0628\u0647 \u0631\u0646\u062c \u062e\u0648 \u0628\u0627\u06cc\u062f \u06a9\u0631\u062f", "m2" : "\u062c\u0627\u0646 \u0648\u0642\u0641 \u0628\u0644\u0627\u06cc \u0639\u0634\u0642 \u0627\u0648 \u0628\u0627\u06cc\u062f \u06a9\u0631\u062f"}, "1"...
json_instruct
{"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "requ...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"created_at": {"type": "integer"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "updated_at": {"type": "integer"}, "uuid": {"type": "string"}}, "required": ["created_at", "tags", "title", "up...
{"created_at" : 1510501907, "tags" : [], "title" : "Apache Maven \u5de5\u7a0b\u6a21\u7248", "updated_at" : 1510502008, "uuid" : "386C58EC-1B58-4434-9FBD-5B51BBF3CD96"}
json_instruct
{"type": "object", "properties": {"created_at": {"type": "integer"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "updated_at": {"type": "integer"}, "uuid": {"type": "string"}}, "required": ["created_at", "tags", "title", "updated_at", "uuid"], "$schema": "http://json-schema.org/draft-07/schema#...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"copyright": {"type": "string"}, "url": {"type": "string"}, "email": {"type": "string"}, "format": {"type": "string"}, "theme": {"type": "string"}}, "required": ["copyright", "url", "email", "format", "theme"]...
{"copyright" : "Thomas Farr, http://xtansia.github.com", "url" : "http://xtansia.github.com", "email" : "farr.thomas@gmail.com", "format" : "html", "theme" : "xtansia"}
json_instruct
{"type": "object", "properties": {"copyright": {"type": "string"}, "url": {"type": "string"}, "email": {"type": "string"}, "format": {"type": "string"}, "theme": {"type": "string"}}, "required": ["copyright", "url", "email", "format", "theme"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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"...
{"schema_version" : "1.2.0", "id" : "GHSA-6xvm-9875-gvqp", "modified" : "2022-05-13T01:01:40Z", "published" : "2022-05-13T01:01:40Z", "aliases" : ["CVE-2017-12093"], "details" : "An exploitable insufficient resource pool vulnerability exists in the session communication functionality of Allen Bradley Micrologix 1400 Se...
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": {"type": "object", "properti...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "directo...
{"name" : "roots-scheduler", "version" : "0.1.6", "description" : "A scheduler using RootsDB for its storage.", "main" : "lib/Scheduler.js", "engines" : {"node" : ">=14.15.0"}, "directories" : {"test" : "test"}, "dependencies" : {"logfella" : "^1.3.12", "nextgen-events" : "^1.4.0", "roots-db" : "^0.36.5", "seventh" : "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "directories": {"type": "object", "properties": {"test": {"type": "...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"languages": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}}, "required": ["key", "name"]}}}, "required": ["languages"], "$schema": "http://json-sche...
{"languages" : [{"key" : "cs", "name" : "C#"}, {"key" : "css", "name" : "CSS"}, {"key" : "go", "name" : "Go"}, {"key" : "web", "name" : "HTML"}, {"key" : "jsp", "name" : "JSP"}, {"key" : "java", "name" : "Java"}, {"key" : "js", "name" : "JavaScript"}, {"key" : "kotlin", "name" : "Kotlin"}, {"key" : "py", "name" : "Pyth...
json_instruct
{"type": "object", "properties": {"languages": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}}, "required": ["key", "name"]}}}, "required": ["languages"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "autho...
{"title" : "\u3010MMD\u3011\u99c6\u9010\u8266 \u795e\u98a8\u3000Girls", "author" : "EmSykes", "description" : "\u67d0\u6240\u306b\u4e0a\u3052\u305f\u3082\u306e\u306e720p\u7248\u3067\u3059", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thumbnails/68068/thumbnail-68068_0005.jpg?itok=s4inG2my...
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...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "320706006001", "text" : "\u5e78\u798f\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "320706006002", "text" : "\u897f\u82d1\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "320706006003", "text" : "\u9547\u6d77\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "320706006004", "text" : "\u65b0\u5b54\u793e\u533a\u5c45\u59d4\u4f1a"},...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1946, 6]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}