input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"Version": {"type": "string"}, "Statement": {"type": "array", "items": {"type": "object", "properties": {"Sid": {"type": "string"}, "Effect": {"type": "string"}, "NotAction": {"type": "array", "items": {"type": "string"}}, "Resource": {"type": "string"}}, "required": ["Sid", "Effect", "NotAction", "Resource"]}}}, "required": ["Version", "Statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Version" : "2012-10-17", "Statement" : [{"Sid" : "AllowAllPermissions", "Effect" : "Allow", "NotAction" : ["lightsail:*", "sagemaker:*"], "Resource" : "*"}]}
json_instruct
{"type": "object", "properties": {"Version": {"type": "string"}, "Statement": {"type": "array", "items": {"type": "object", "properties": {"Sid": {"type": "string"}, "Effect": {"type": "string"}, "NotAction": {"type": "array", "items": {"type": "string"}}, "Resource": {"type": "string"}}, "required": ["Sid", "Effect", "NotAction", "Resource"]}}}, "required": ["Version", "Statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"testEmptySimulatorCanCloneSimulation": {"type": "string"}, "testEmptySimulatorCloneCanLoadImage": {"type": "string"}, "testSimulatorCanReloadImage": {"type": "string"}}, "required": ["testEmptySimulatorCanCloneSimulation", "testEmptySimulatorCloneCanLoadImage", "testSimulatorCanReloadImage"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"class" : {}, "instance" : {"testEmptySimulatorCanCloneSimulation" : "eem 1/10/2017 11:38", "testEmptySimulatorCloneCanLoadImage" : "eem 6/29/2017 12:37", "testSimulatorCanReloadImage" : "eem 6/29/2017 12:38"}}
json_instruct
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"testEmptySimulatorCanCloneSimulation": {"type": "string"}, "testEmptySimulatorCloneCanLoadImage": {"type": "string"}, "testSimulatorCanReloadImage": {"type": "string"}}, "required": ["testEmptySimulatorCanCloneSimulation", "testEmptySimulatorCloneCanLoadImage", "testSimulatorCanReloadImage"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"moniker": {"type": "string"}, "valopr_address": {"type": "string"}, "addedPeer": {"type": "string"}}, "required": ["moniker", "valopr_address", "addedPeer"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"moniker" : "entropic.nodes", "valopr_address" : "cohovaloper1pzycsvjg4xvpl8wengp7quqz247njcuth2npjc", "addedPeer" : "98718B9635D299087D3C4B19301EBE2AABF930956DE5C3FA240237D384B5901A"}
json_instruct
{"type": "object", "properties": {"moniker": {"type": "string"}, "valopr_address": {"type": "string"}, "addedPeer": {"type": "string"}}, "required": ["moniker", "valopr_address", "addedPeer"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 101807075, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "40306890eade1897e532d197ce46e0b1", "wof:id" : 101807075, "wof:repo" : "whosonfirst-data-admin-nl"}, "bbox" : [5.48611, 52.22, 5.48611, 52.22], "geometry" : {"coordinates" : [5.48611, 52.22], "type" : "Point"}}
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": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"address_components": {"type": "array", "items": {"type": "object", "properties": {"long_name": {"type": "string"}, "short_name": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}}, "required": ["long_name", "short_name", "types"]}}, "formatted_address": {"type": "string"}, "geometry": {"type": "object", "properties": {"location": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "location_type": {"type": "string"}, "viewport": {"type": "object", "properties": {"northeast": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "southwest": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}, "required": ["northeast", "southwest"]}}, "required": ["location", "location_type", "viewport"]}, "place_id": {"type": "string"}, "plus_code": {"type": "object", "properties": {"compound_code": {"type": "string"}, "global_code": {"type": "string"}}, "required": ["compound_code", "global_code"]}, "types": {"type": "array", "items": {"type": "string"}}}, "required": ["address_components", "formatted_address", "geometry", "place_id", "plus_code", "types"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"address_components" : [{"long_name" : "1", "short_name" : "1", "types" : ["street_number"]}, {"long_name" : "3. Kaya Sokak", "short_name" : "3. Kaya Sk.", "types" : ["route"]}, {"long_name" : "Hac\u0131 Mahmut Mahallesi", "short_name" : "Hac\u0131 Mahmut", "types" : ["administrative_area_level_4", "political"]}, {"long_name" : "Afyonkarahisar Merkez", "short_name" : "Afyonkarahisar Merkez", "types" : ["administrative_area_level_2", "political"]}, {"long_name" : "Afyonkarahisar", "short_name" : "Afyonkarahisar", "types" : ["administrative_area_level_1", "political"]}, {"long_name" : "Turkey", "short_name" : "TR", "types" : ["country", "political"]}, {"long_name" : "03100", "short_name" : "03100", "types" : ["postal_code"]}], "formatted_address" : "Hac\u0131 Mahmut, 3. Kaya Sk. No:1, 03100 Afyonkarahisar Merkez/Afyonkarahisar, Turkey", "geometry" : {"location" : {"lat" : 38.757046, "lng" : 30.5384929}, "location_type" : "ROOFTOP", "viewport" : {"northeast" : {"lat" : 38.7583949802915, "lng" : 30.5398418802915}, "southwest" : {"lat" : 38.7556970197085, "lng" : 30.5371439197085}}}, "place_id" : "ChIJjQ-x6dEXzxQRK4eqAOl9jdk", "plus_code" : {"compound_code" : "QG4Q+R9 Afyonkarahisar, Afyonkarahisar Merkez/Afyonkarahisar, Turkey", "global_code" : "8GCGQG4Q+R9"}, "types" : ["establishment", "point_of_interest"]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"address_components": {"type": "array", "items": {"type": "object", "properties": {"long_name": {"type": "string"}, "short_name": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}}, "required": ["long_name", "short_name", "types"]}}, "formatted_address": {"type": "string"}, "geometry": {"type": "object", "properties": {"location": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "location_type": {"type": "string"}, "viewport": {"type": "object", "properties": {"northeast": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "southwest": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}, "required": ["northeast", "southwest"]}}, "required": ["location", "location_type", "viewport"]}, "place_id": {"type": "string"}, "plus_code": {"type": "object", "properties": {"compound_code": {"type": "string"}, "global_code": {"type": "string"}}, "required": ["compound_code", "global_code"]}, "types": {"type": "array", "items": {"type": "string"}}}, "required": ["address_components", "formatted_address", "geometry", "place_id", "plus_code", "types"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"PolicyName": {"type": "string"}, "PolicyId": {"type": "string"}, "Arn": {"type": "string"}, "Path": {"type": "string"}, "DefaultVersionId": {"type": "string"}, "AttachmentCount": {"type": "integer"}, "PermissionsBoundaryUsageCount": {"type": "integer"}, "IsAttachable": {"type": "boolean"}, "CreateDate": {"type": "string"}, "UpdateDate": {"type": "string"}}, "required": ["PolicyName", "PolicyId", "Arn", "Path", "DefaultVersionId", "AttachmentCount", "PermissionsBoundaryUsageCount", "IsAttachable", "CreateDate", "UpdateDate"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"PolicyName" : "AmazonFreeRTOSOTAUpdate", "PolicyId" : "ANPAINC2TXHAYDOK3SWMU", "Arn" : "arn:aws:iam::aws:policy/service-role/AmazonFreeRTOSOTAUpdate", "Path" : "/service-role/", "DefaultVersionId" : "v3", "AttachmentCount" : 0, "PermissionsBoundaryUsageCount" : 0, "IsAttachable" : true, "CreateDate" : "2018-08-27T22:43:07+00:00", "UpdateDate" : "2020-12-18T17:47:30+00:00"}
json_instruct
{"type": "object", "properties": {"PolicyName": {"type": "string"}, "PolicyId": {"type": "string"}, "Arn": {"type": "string"}, "Path": {"type": "string"}, "DefaultVersionId": {"type": "string"}, "AttachmentCount": {"type": "integer"}, "PermissionsBoundaryUsageCount": {"type": "integer"}, "IsAttachable": {"type": "boolean"}, "CreateDate": {"type": "string"}, "UpdateDate": {"type": "string"}}, "required": ["PolicyName", "PolicyId", "Arn", "Path", "DefaultVersionId", "AttachmentCount", "PermissionsBoundaryUsageCount", "IsAttachable", "CreateDate", "UpdateDate"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "module": {"type": "string"}, "scripts": {"type": "object", "properties": {"type-check": {"type": "string"}, "type-check:watch": {"type": "string"}, "start": {"type": "string"}, "build": {"type": "string"}}, "required": ["type-check", "type-check:watch", "start", "build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@granite-elements/granite-lit-bootstrap": {"type": "string"}, "@vaadin/router": {"type": "string"}, "codemirror": {"type": "string"}, "idb": {"type": "string"}, "immer": {"type": "string"}, "lit": {"type": "string"}, "redux": {"type": "string"}, "redux-thunk": {"type": "string"}}, "required": ["@granite-elements/granite-lit-bootstrap", "@vaadin/router", "codemirror", "idb", "immer", "lit", "redux", "redux-thunk"]}, "devDependencies": {"type": "object", "properties": {"@snowpack/plugin-typescript": {"type": "string"}, "@types/codemirror": {"type": "string"}, "http-proxy": {"type": "string"}, "redux-devtools-extension": {"type": "string"}, "snowpack": {"type": "string"}, "tslib": {"type": "string"}, "typescript": {"type": "string"}, "typescript-lit-html-plugin": {"type": "string"}}, "required": ["@snowpack/plugin-typescript", "@types/codemirror", "http-proxy", "redux-devtools-extension", "snowpack", "tslib", "typescript", "typescript-lit-html-plugin"]}}, "required": ["name", "version", "description", "module", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@aaronanderson/groovy-cloud-editor", "version" : "1.0.0", "description" : "Groovy Cloud Editor Demo", "module" : "index.js", "scripts" : {"type-check" : "tsc --noEmit", "type-check:watch" : "npm run type-check -- --watch", "start" : "snowpack dev", "build" : "snowpack build"}, "author" : "Aaron Anderson", "license" : "Apache-2.0", "dependencies" : {"@granite-elements/granite-lit-bootstrap" : "^4.6.0-0", "@vaadin/router" : "^1.7.4", "codemirror" : "^5.61.0", "idb" : "^6.0.0", "immer" : "^8.0.1", "lit" : "^2.0.0-rc.2", "redux" : "^4.1.0", "redux-thunk" : "^2.3.0"}, "devDependencies" : {"@snowpack/plugin-typescript" : "^1.2.1", "@types/codemirror" : "^5.60.0", "http-proxy" : "^1.18.1", "redux-devtools-extension" : "^2.13.9", "snowpack" : "^3.3.7", "tslib" : "^2.2.0", "typescript" : "^4.2.4", "typescript-lit-html-plugin" : "^0.9.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "module": {"type": "string"}, "scripts": {"type": "object", "properties": {"type-check": {"type": "string"}, "type-check:watch": {"type": "string"}, "start": {"type": "string"}, "build": {"type": "string"}}, "required": ["type-check", "type-check:watch", "start", "build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@granite-elements/granite-lit-bootstrap": {"type": "string"}, "@vaadin/router": {"type": "string"}, "codemirror": {"type": "string"}, "idb": {"type": "string"}, "immer": {"type": "string"}, "lit": {"type": "string"}, "redux": {"type": "string"}, "redux-thunk": {"type": "string"}}, "required": ["@granite-elements/granite-lit-bootstrap", "@vaadin/router", "codemirror", "idb", "immer", "lit", "redux", "redux-thunk"]}, "devDependencies": {"type": "object", "properties": {"@snowpack/plugin-typescript": {"type": "string"}, "@types/codemirror": {"type": "string"}, "http-proxy": {"type": "string"}, "redux-devtools-extension": {"type": "string"}, "snowpack": {"type": "string"}, "tslib": {"type": "string"}, "typescript": {"type": "string"}, "typescript-lit-html-plugin": {"type": "string"}}, "required": ["@snowpack/plugin-typescript", "@types/codemirror", "http-proxy", "redux-devtools-extension", "snowpack", "tslib", "typescript", "typescript-lit-html-plugin"]}}, "required": ["name", "version", "description", "module", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"/js/app.js" : "/js/app.js?id=833995565259a67fd026", "/css/app.css" : "/css/app.css?id=6e5d016b9ebfe2f27804"}
json_instruct
{"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "licence": {"type": "string"}, "readmeFilename": {"type": "string"}, "dependencies": {"type": "object", "properties": {"buffer": {"type": "string"}, "jsbn": {"type": "string"}}, "required": ["buffer", "jsbn"]}, "devDependencies": {"type": "object", "properties": {"vows": {"type": "string"}}, "required": ["vows"]}}, "required": ["name", "description", "version", "main", "scripts", "repository", "author", "licence", "readmeFilename", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "srp-js", "description" : "Secure Remote Password (SRP)", "version" : "0.2.1", "main" : "index.js", "scripts" : {"test" : "vows test/test*.js --spec"}, "repository" : {"type" : "git", "url" : "https://github.com/getinsomnia/srp-js"}, "author" : "Gregory Schier <greg@schier.co>", "licence" : "MIT", "readmeFilename" : "README.md", "dependencies" : {"buffer" : "^5.0.0", "jsbn" : "^0.1.0"}, "devDependencies" : {"vows" : "0.7.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "licence": {"type": "string"}, "readmeFilename": {"type": "string"}, "dependencies": {"type": "object", "properties": {"buffer": {"type": "string"}, "jsbn": {"type": "string"}}, "required": ["buffer", "jsbn"]}, "devDependencies": {"type": "object", "properties": {"vows": {"type": "string"}}, "required": ["vows"]}}, "required": ["name", "description", "version", "main", "scripts", "repository", "author", "licence", "readmeFilename", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "2025", "provinceId" : "53", "regencyId" : "09", "districtId" : "02", "name" : "Were"}
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#"}
The schema below describes a JSON structure. Generate a valid example: {"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": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 101892145, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "05d9119fe347bbe4372d91941ec4966d", "wof:id" : 101892145, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [6.03723430296469, 46.06086381927832, 6.05445816422429, 46.0696654767969], "geometry" : {"coordinates" : [[[6.04103695641624, 46.0696654767969], [6.04110288029165, 46.06876616478468], [6.04755055050697, 46.06900552659806], [6.0476163646984, 46.06810620942832], [6.05019540450093, 46.06820184317888], [6.05026117311724, 46.06730252361677], [6.054129684185, 46.06744585455624], [6.05445816422429, 46.06294923467215], [6.05187936843419, 46.06285370549199], [6.0519450986622, 46.06195438169544], [6.04936635384081, 46.06185879199893], [6.0494321239546, 46.06095946948824], [6.04685343010362, 46.06086381927832], [6.04672180159252, 46.06266246006663], [6.04801119020902, 46.06271029480604], [6.04794539305641, 46.06360961529128], [6.04923480509859, 46.06365743536185], [6.04903746069681, 46.06635539626154], [6.04774798456077, 46.06630757343123], [6.04768217604982, 46.06720689170601], [6.04381369592795, 46.06706332691397], [6.04387956853736, 46.06616401140104], [6.04130063484854, 46.06606822543239], [6.04123471950743, 46.06696753910251], [6.03865575135552, 46.06687168893149], [6.03858979043702, 46.06777100020474], [6.0373002880969, 46.06772305081188], [6.03723430296469, 46.06862236061022], [6.03981335244765, 46.06871824565042], [6.03974740720389, 46.06961755674052], [6.04103695641624, 46.0696654767969]]], "type" : "Polygon"}}
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": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"applicant": {"type": "string"}, "authorizer": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "member": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "member"]}}}, "required": ["applicant", "authorizer"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"applicant" : "admin@contoso.onmicrosoft.com", "authorizer" : [{"type" : "everyone", "member" : ["AdeleV@contoso.onmicrosoft.com", "AlexW@contoso.onmicrosoft.com"]}, {"type" : "first", "member" : ["AdeleV@contoso.onmicrosoft.com", "AlexW@contoso.onmicrosoft.com"]}, {"type" : "all", "member" : ["AdeleV@contoso.onmicrosoft.com", "AlexW@contoso.onmicrosoft.com"]}, {"type" : "one", "member" : ["AdeleV@contoso.onmicrosoft.com", "AlexW@contoso.onmicrosoft.com"]}]}
json_instruct
{"type": "object", "properties": {"applicant": {"type": "string"}, "authorizer": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "member": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "member"]}}}, "required": ["applicant", "authorizer"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"gyldighetsperiode": {"type": "object", "properties": {"beskrivelse": {"type": "string"}, "slutt": {"type": "integer"}, "start": {"type": "integer"}}, "required": ["beskrivelse", "slutt", "start"]}, "kode": {"type": "string"}, "navn": {"type": "string"}, "passiv": {"type": "boolean"}, "systemId": {"type": "object", "properties": {"gyldighetsperiode": {"type": "object", "properties": {"beskrivelse": {"type": "string"}, "slutt": {"type": "integer"}, "start": {"type": "integer"}}, "required": ["beskrivelse", "slutt", "start"]}, "identifikatorverdi": {"type": "string"}}, "required": ["gyldighetsperiode", "identifikatorverdi"]}}, "required": ["gyldighetsperiode", "kode", "navn", "passiv", "systemId"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"gyldighetsperiode" : {"beskrivelse" : "hZzEA", "slutt" : 1350456324185, "start" : 1539174344994}, "kode" : "TXvDOGxVeWlHLAVyZLfOuvGiPfSnjMBc", "navn" : "OZflxfdAEbWylXL", "passiv" : false, "systemId" : {"gyldighetsperiode" : {"beskrivelse" : "fvapAgz", "slutt" : 1783141784588, "start" : 1687408450896}, "identifikatorverdi" : "umPcoIKiGnQhZJLHaHuyrNCZjcr"}}
json_instruct
{"type": "object", "properties": {"gyldighetsperiode": {"type": "object", "properties": {"beskrivelse": {"type": "string"}, "slutt": {"type": "integer"}, "start": {"type": "integer"}}, "required": ["beskrivelse", "slutt", "start"]}, "kode": {"type": "string"}, "navn": {"type": "string"}, "passiv": {"type": "boolean"}, "systemId": {"type": "object", "properties": {"gyldighetsperiode": {"type": "object", "properties": {"beskrivelse": {"type": "string"}, "slutt": {"type": "integer"}, "start": {"type": "integer"}}, "required": ["beskrivelse", "slutt", "start"]}, "identifikatorverdi": {"type": "string"}}, "required": ["gyldighetsperiode", "identifikatorverdi"]}}, "required": ["gyldighetsperiode", "kode", "navn", "passiv", "systemId"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"copy": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "cut": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "paste": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}}, "required": ["copy", "cut", "paste"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"copy" : {"value" : "Copy"}, "cut" : {"value" : "Cut"}, "paste" : {"value" : "Paste"}}
json_instruct
{"type": "object", "properties": {"copy": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "cut": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "paste": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}}, "required": ["copy", "cut", "paste"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01016996": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01016996"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Topology", "objects" : {"E01016996" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00085808", "LAD11CD" : "E06000043"}, "arcs" : [[0, 1, 2, 3, 4, 5]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00085811", "LAD11CD" : "E06000043"}, "arcs" : [[-4, 6, 7, 8]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00085812", "LAD11CD" : "E06000043"}, "arcs" : [[-2, 9]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00085815", "LAD11CD" : "E06000043"}, "arcs" : [[-5, -9, 10]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00085825", "LAD11CD" : "E06000043"}, "arcs" : [[-6, -11, -8, 11]]}]}}, "arcs" : [[[2792, 3504], [155, 1142], [-603, -208]], [[2344, 4438], [1044, 3373], [-2508, 1433]], [[880, 9244], [95, 711], [3453, 44], [2106, -41]], [[6534, 9958], [281, -1802]], [[6815, 8156], [-1491, -28], [-274, -2694], [-503, -55], [-120, -1288], [1392, -380]], [[5819, 3711], [1955, -619], [-175, -911], [-4807, 1323]], [[6534, 9958], [3465, -194], [-560, -4049], [-186, -1492]], [[9253, 4223], [-1276, 1422]], [[7977, 5645], [266, 2366], [-1428, 145]], [[2344, 4438], [-625, -1989], [-1719, 589], [880, 6206]], [[7977, 5645], [-1461, -123], [49, -1425], [-746, -386]], [[9253, 4223], [-590, -4223], [-5169, 1112], [-1117, -915], [-758, 551], [120, 893], [750, -235], [303, 2098]]], "transform" : {"scale" : [7.725503883569352e-07, 3.060347413721233e-07], "translate" : [-0.19191957699741, 50.83344882562434]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01016996": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01016996"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"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": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 85910115, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "cf577173f004a79a87246506a2b33123", "wof:id" : 85910115, "wof:repo" : "whosonfirst-data-admin-jp"}, "bbox" : [139.766693, 35.69411, 139.770813, 35.699129], "geometry" : {"coordinates" : [[[139.768066, 35.699129], [139.768066, 35.698571], [139.768753, 35.698571], [139.76944, 35.698571], [139.76944, 35.69822], [139.76944, 35.697456], [139.770528, 35.697456], [139.770813, 35.697456], [139.770813, 35.696341], [139.770813, 35.69599], [139.770813, 35.695225], [139.770813, 35.694461], [139.770813, 35.69411], [139.770528, 35.69411], [139.76944, 35.69411], [139.768066, 35.69411], [139.768066, 35.695225], [139.766693, 35.695225], [139.766693, 35.696341], [139.766693, 35.697456], [139.766693, 35.69822], [139.766693, 35.698571], [139.76738, 35.698571], [139.76738, 35.699129], [139.768066, 35.699129]]], "type" : "Polygon"}}
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": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "website": {"type": "string"}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"OAUTH_CLIENT_ID": {"type": "string"}, "OAUTH_CLIENT_SECRET": {"type": "string"}, "OAUTH_HOST": {"type": "string"}, "OAUTH_PORT": {"type": "string"}, "OAUTH_PATH": {"type": "string"}, "OAUTH_METHOD": {"type": "string"}, "CODACY_HOST": {"type": "string"}, "CODACY_METHOD": {"type": "string"}, "CODACY_KEY": {"type": "string"}}, "required": ["OAUTH_CLIENT_ID", "OAUTH_CLIENT_SECRET", "OAUTH_HOST", "OAUTH_PORT", "OAUTH_PATH", "OAUTH_METHOD", "CODACY_HOST", "CODACY_METHOD", "CODACY_KEY"]}}, "required": ["name", "description", "website", "repository", "keywords", "env"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Gatekeeper", "description" : "Enables client-side applications to dance OAuth with GitHub.", "website" : "https://github.com/prose/gatekeeper", "repository" : "https://github.com/prose/gatekeeper", "keywords" : ["node", "github", "oauth"], "env" : {"OAUTH_CLIENT_ID" : "", "OAUTH_CLIENT_SECRET" : "", "OAUTH_HOST" : "github.com", "OAUTH_PORT" : "443", "OAUTH_PATH" : "/login/oauth/access_token", "OAUTH_METHOD" : "POST", "CODACY_HOST" : "api.codacy.com", "CODACY_METHOD" : "GET", "CODACY_KEY" : ""}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "website": {"type": "string"}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"OAUTH_CLIENT_ID": {"type": "string"}, "OAUTH_CLIENT_SECRET": {"type": "string"}, "OAUTH_HOST": {"type": "string"}, "OAUTH_PORT": {"type": "string"}, "OAUTH_PATH": {"type": "string"}, "OAUTH_METHOD": {"type": "string"}, "CODACY_HOST": {"type": "string"}, "CODACY_METHOD": {"type": "string"}, "CODACY_KEY": {"type": "string"}}, "required": ["OAUTH_CLIENT_ID", "OAUTH_CLIENT_SECRET", "OAUTH_HOST", "OAUTH_PORT", "OAUTH_PATH", "OAUTH_METHOD", "CODACY_HOST", "CODACY_METHOD", "CODACY_KEY"]}}, "required": ["name", "description", "website", "repository", "keywords", "env"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "devDependencies": {"type": "object", "properties": {"browserify": {"type": "string"}, "jasmine": {"type": "string"}, "jasmine-core": {"type": "string"}, "karma": {"type": "string"}, "karma-browserify": {"type": "string"}, "karma-chrome-launcher": {"type": "string"}, "karma-jasmine": {"type": "string"}, "karma-jasmine-html-reporter": {"type": "string"}, "karma-spec-reporter": {"type": "string"}, "watchify": {"type": "string"}}, "required": ["browserify", "jasmine", "jasmine-core", "karma", "karma-browserify", "karma-chrome-launcher", "karma-jasmine", "karma-jasmine-html-reporter", "karma-spec-reporter", "watchify"]}}, "required": ["name", "version", "author", "license", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "mrr-simple-inject-library", "version" : "1.0.0", "author" : "Miguel Rivera Rios <miguel.e.rivera.rios@gmail.com>", "license" : "MIT", "scripts" : {"test" : "karma start"}, "devDependencies" : {"browserify" : "^17.0.0", "jasmine" : "^3.6.4", "jasmine-core" : "^3.6.0", "karma" : "^6.1.1", "karma-browserify" : "^8.0.0", "karma-chrome-launcher" : "^3.1.0", "karma-jasmine" : "^4.0.1", "karma-jasmine-html-reporter" : "^1.5.4", "karma-spec-reporter" : "^0.0.32", "watchify" : "^4.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "devDependencies": {"type": "object", "properties": {"browserify": {"type": "string"}, "jasmine": {"type": "string"}, "jasmine-core": {"type": "string"}, "karma": {"type": "string"}, "karma-browserify": {"type": "string"}, "karma-chrome-launcher": {"type": "string"}, "karma-jasmine": {"type": "string"}, "karma-jasmine-html-reporter": {"type": "string"}, "karma-spec-reporter": {"type": "string"}, "watchify": {"type": "string"}}, "required": ["browserify", "jasmine", "jasmine-core", "karma", "karma-browserify", "karma-chrome-launcher", "karma-jasmine", "karma-jasmine-html-reporter", "karma-spec-reporter", "watchify"]}}, "required": ["name", "version", "author", "license", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "null"}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 4353, "citation_title" : "The Political Economy of Capital Controls", "citation_author" : ["Alberto Alesina", "Vittorio Grilli", "Gian Maria Milesi-Ferrett"], "citation_publication_date" : "1993-05-01", "issue_date" : "1993-05-01", "revision_date" : "None", "topics" : null, "program" : ["International Finance and Macroeconomics"], "projects" : null, "working_groups" : null, "abstract" : "\n\nThis paper calculates international income transfers which implement a Pareto optimal trade equilibrium in a world where many countries trade many goods.\n\n", "acknowledgement" : "\n"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "null"}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"manufacturer": {"type": "string"}, "devices": {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}}}, "required": ["manufacturer", "devices"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"manufacturer" : "Mantra", "devices" : [{"manufacturer" : "", "market_name" : "MFSTAB", "codename" : "MFSTAB", "model" : "MFSTAB"}, {"manufacturer" : "", "market_name" : "MFSTABII", "codename" : "MFSTABII", "model" : "MFSTABII"}, {"manufacturer" : "", "market_name" : "MFSTABIV", "codename" : "MFSTABIV", "model" : "MFSTABIV"}, {"manufacturer" : "", "market_name" : "MFSTAB_74G", "codename" : "MFSTAB_74G", "model" : "MFSTAB_74G"}, {"manufacturer" : "", "market_name" : "MISTAB_74G", "codename" : "MISTAB_74G", "model" : "MISTAB_74G"}, {"manufacturer" : "", "market_name" : "MOXA7", "codename" : "MOXA7", "model" : "MOXA7"}, {"manufacturer" : "", "market_name" : "MOXA71", "codename" : "MOXA71", "model" : "MOXA71"}, {"manufacturer" : "", "market_name" : "mDESK", "codename" : "mDESK", "model" : "mDESK"}, {"manufacturer" : "", "market_name" : "mTerminal100", "codename" : "Start", "model" : "Start"}]}
json_instruct
{"type": "object", "properties": {"manufacturer": {"type": "string"}, "devices": {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}}}, "required": ["manufacturer", "devices"], "$schema": "http://json-schema.org/draft-07/schema#"}
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" : "ilikewood:block/bed/inventory/black/zelkova"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-typescript": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-babel": {"type": "string"}, "rollup-plugin-typescript2": {"type": "string"}, "typescript": {"type": "string"}, "vue": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-typescript", "rollup", "rollup-plugin-babel", "rollup-plugin-typescript2", "typescript", "vue"]}, "dependencies": {"type": "object", "properties": {"perfect-scrollbar": {"type": "string"}, "rxjs": {"type": "string"}}, "required": ["perfect-scrollbar", "rxjs"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "kb-pretty-scroll", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"build" : "rollup -c"}, "repository" : {"type" : "git", "url" : "git+https://github.com/keuby/kb-pretty-scroll.git"}, "keywords" : ["vue", "scroll"], "author" : "Knight Chen", "license" : "MIT", "bugs" : {"url" : "https://github.com/keuby/kb-pretty-scroll/issues"}, "homepage" : "https://github.com/keuby/kb-pretty-scroll#readme", "devDependencies" : {"@babel/core" : "^7.10.5", "@babel/preset-typescript" : "^7.10.4", "rollup" : "^2.23.0", "rollup-plugin-babel" : "^4.4.0", "rollup-plugin-typescript2" : "^0.27.1", "typescript" : "^3.9.7", "vue" : "^2.6.11"}, "dependencies" : {"perfect-scrollbar" : "^1.5.0", "rxjs" : "^6.6.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-typescript": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-babel": {"type": "string"}, "rollup-plugin-typescript2": {"type": "string"}, "typescript": {"type": "string"}, "vue": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-typescript", "rollup", "rollup-plugin-babel", "rollup-plugin-typescript2", "typescript", "vue"]}, "dependencies": {"type": "object", "properties": {"perfect-scrollbar": {"type": "string"}, "rxjs": {"type": "string"}}, "required": ["perfect-scrollbar", "rxjs"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"AB": {"type": "array", "items": {"type": "string"}}, "AW": {"type": "array", "items": {"type": "string"}}, "SZ": {"type": "string"}, "C": {"type": "string"}, "SOL": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["AB", "AW", "SZ", "C", "SOL"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"AB" : ["jq", "ip", "hp", "fr", "fq", "fp", "ep", "dp", "cq", "bq", "cn", "jr"], "AW" : ["cr", "er", "eq", "fs", "gr", "hq", "ir", "is", "br"], "SZ" : "19", "C" : "Black to play", "SOL" : [["B", "ds", "", ""]]}
json_instruct
{"type": "object", "properties": {"AB": {"type": "array", "items": {"type": "string"}}, "AW": {"type": "array", "items": {"type": "string"}}, "SZ": {"type": "string"}, "C": {"type": "string"}, "SOL": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["AB", "AW", "SZ", "C", "SOL"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01011160": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01011160"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Topology", "objects" : {"E01011160" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00056214", "LAD11CD" : "E08000034"}, "arcs" : [[0, 1, 2]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00056216", "LAD11CD" : "E08000034"}, "arcs" : [[3, 4, 5]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00056256", "LAD11CD" : "E08000034"}, "arcs" : [[-6, 6, -2, 7]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00056260", "LAD11CD" : "E08000034"}, "arcs" : [[-4, -8, -1, 8]]}]}}, "arcs" : [[[1268, 9333], [67, -364], [555, -118], [-47, -257], [210, -138], [-412, -495], [-313, 57], [-164, -375], [175, -359], [436, 162], [403, -862]], [[2178, 6584], [227, -378], [-434, -540], [-170, -634], [-769, -334]], [[1032, 4698], [-86, 651], [-419, 723], [613, 214], [-468, 244], [26, 840], [359, 468], [-179, 512], [-51, 674], [333, 296], [108, 13]], [[2322, 7099], [-195, 415], [77, 476], [394, -363], [537, 883]], [[3135, 8510], [464, -655], [96, -547], [299, -414]], [[3994, 6894], [-125, 109], [-316, -564], [97, -392], [-556, -125], [-772, 1177]], [[3994, 6894], [185, -423], [678, 76], [709, -253], [-392, 846], [48, 345], [148, -15], [278, -2], [687, 1198], [625, -411], [-144, -1648], [580, -332], [960, 559], [699, -275], [944, -1756], [-484, -11], [-139, -346], [-68, -1756], [357, -1995], [60, -404], [-271, 129], [-1010, -420], [-550, 26], [-1553, 1106], [-966, -143], [-1786, 633], [-1309, -425], [-655, 129], [-437, -284], [-805, -105], [-383, -383], [89, 1412], [663, 2503], [280, 229]], [[2178, 6584], [144, 515]], [[1268, 9333], [751, 626], [529, -203], [138, 243], [462, -118], [39, -236], [-532, -749], [480, -386]]], "transform" : {"scale" : [2.7736524402834364e-06, 1.1508692966964719e-06], "translate" : [-1.69311380631939, 53.69337848864359]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01011160": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01011160"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"model-name": {"type": "string"}, "resource-file": {"type": "string"}}, "required": ["model-name", "resource-file"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"model-name" : "orders", "resource-file" : "orders.json"}, {"model-name" : "order_items", "resource-file" : "order_items.json"}, {"model-name" : "category", "resource-file" : "categories.json"}, {"model-name" : "category_items", "resource-file" : "category_items.json"}, {"model-name" : "Items", "resource-file" : "items.json"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"model-name": {"type": "string"}, "resource-file": {"type": "string"}}, "required": ["model-name", "resource-file"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "description"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"title" : "Comentario de pruebas", "description" : "Notas nuevas"}, {"title" : "Hoy es sabado", "description" : "Datos aleatorios"}, {"title" : "Conexion con Axios", "description" : "Como eliminar la dependencia a Jquery"}, {"title" : "No son datos random :(", "description" : "Adios !"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "description"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"date": {"type": "string"}, "area_de_concentracao": {"type": "string"}, "doutorado": {"type": "boolean"}, "author": {"type": "string"}, "anexos": {"type": "boolean"}, "instituicao": {"type": "string"}, "programa": {"type": "string"}, "title": {"type": "string"}, "orientador": {"type": "string"}, "local": {"type": "string"}, "referencias_caminho": {"type": "string"}, "titulacao": {"type": "string"}, "projeto": {"type": "boolean"}, "coorientador": {"type": "string"}, "referencias_sistema": {"type": "string"}, "linha_de_pesquisa": {"type": "string"}, "curso": {"type": "string"}, "graduacao": {"type": "boolean"}, "especializacao": {"type": "boolean"}, "mestrado": {"type": "boolean"}, "apendices": {"type": "boolean"}}, "required": ["date", "area_de_concentracao", "doutorado", "author", "anexos", "instituicao", "programa", "title", "orientador", "local", "referencias_caminho", "titulacao", "projeto", "coorientador", "referencias_sistema", "linha_de_pesquisa", "curso", "graduacao", "especializacao", "mestrado", "apendices"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"date" : " 2019", "area_de_concentracao" : "", "doutorado" : false, "author" : "William", "anexos" : false, "instituicao" : " IFPB", "programa" : "", "title" : "Design para a vida", "orientador" : "Eduardo", "local" : "Santa Rita", "referencias_caminho" : "referencias.bib", "titulacao" : "T\u00e9cnico em inform\u00e1tica", "projeto" : true, "coorientador" : "Cassimiro", "referencias_sistema" : "alf", "linha_de_pesquisa" : "", "curso" : "T\u00e9cnico em inform\u00e1tica", "graduacao" : true, "especializacao" : false, "mestrado" : false, "apendices" : false}
json_instruct
{"type": "object", "properties": {"date": {"type": "string"}, "area_de_concentracao": {"type": "string"}, "doutorado": {"type": "boolean"}, "author": {"type": "string"}, "anexos": {"type": "boolean"}, "instituicao": {"type": "string"}, "programa": {"type": "string"}, "title": {"type": "string"}, "orientador": {"type": "string"}, "local": {"type": "string"}, "referencias_caminho": {"type": "string"}, "titulacao": {"type": "string"}, "projeto": {"type": "boolean"}, "coorientador": {"type": "string"}, "referencias_sistema": {"type": "string"}, "linha_de_pesquisa": {"type": "string"}, "curso": {"type": "string"}, "graduacao": {"type": "boolean"}, "especializacao": {"type": "boolean"}, "mestrado": {"type": "boolean"}, "apendices": {"type": "boolean"}}, "required": ["date", "area_de_concentracao", "doutorado", "author", "anexos", "instituicao", "programa", "title", "orientador", "local", "referencias_caminho", "titulacao", "projeto", "coorientador", "referencias_sistema", "linha_de_pesquisa", "curso", "graduacao", "especializacao", "mestrado", "apendices"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"filename": {"type": "string"}, "timestamp": {"type": "integer"}}, "required": ["filename", "timestamp"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"filename" : "", "timestamp" : 0}
json_instruct
{"type": "object", "properties": {"filename": {"type": "string"}, "timestamp": {"type": "integer"}}, "required": ["filename", "timestamp"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 86653, "cartId" : "052f5eef-b2b6-405d-9fcf-db23c3599473", "preferredProducts" : [4502, 3439, 4844], "productReviews" : [{"productId" : 3323, "reviewText" : "one of my hobbies is toy collecting. and when i'm collecting toys this works great.", "reviewDate" : "2019-04-26T08:28:06.6207046+03:00"}, {"productId" : 2888, "reviewText" : "talk about contempt!!!", "reviewDate" : "2016-07-23T15:12:20.0567876+03:00"}, {"productId" : 1414, "reviewText" : "I tried to impale it but got fudge all over it.", "reviewDate" : "2016-10-02T08:36:24.1768626+03:00"}, {"productId" : 1433, "reviewText" : "My co-worker Knute has one of these. He says it looks smoky.", "reviewDate" : "2017-02-13T02:22:18.0321387+02:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "7107040", "regency_id" : "7107", "name" : "BOLANG ITANG BARAT"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["https://assets.mixkit.co/videos/302/302-720.mp4", "https://assets.mixkit.co/videos/303/303-720.mp4", "https://assets.mixkit.co/videos/334/334-720.mp4", "https://assets.mixkit.co/videos/337/337-720.mp4", "https://assets.mixkit.co/videos/341/341-720.mp4", "https://assets.mixkit.co/videos/343/343-720.mp4", "https://assets.mixkit.co/videos/344/344-720.mp4", "https://assets.mixkit.co/videos/348/348-720.mp4", "https://assets.mixkit.co/videos/350/350-720.mp4", "https://assets.mixkit.co/videos/351/351-720.mp4", "https://assets.mixkit.co/videos/353/353-720.mp4", "https://assets.mixkit.co/videos/424/424-720.mp4", "https://assets.mixkit.co/videos/425/425-720.mp4", "https://assets.mixkit.co/videos/427/427-720.mp4", "https://assets.mixkit.co/videos/431/431-720.mp4", "https://assets.mixkit.co/videos/432/432-720.mp4", "https://assets.mixkit.co/videos/442/442-720.mp4", "https://assets.mixkit.co/videos/448/448-720.mp4", "https://assets.mixkit.co/videos/449/449-720.mp4", "https://assets.mixkit.co/videos/453/453-720.mp4", "https://assets.mixkit.co/videos/457/457-720.mp4", "https://assets.mixkit.co/videos/463/463-720.mp4", "https://assets.mixkit.co/videos/467/467-720.mp4", "https://assets.mixkit.co/videos/471/471-720.mp4", "https://assets.mixkit.co/videos/472/472-720.mp4", "https://assets.mixkit.co/videos/475/475-720.mp4", "https://assets.mixkit.co/videos/477/477-720.mp4", "https://assets.mixkit.co/videos/484/484-720.mp4", "https://assets.mixkit.co/videos/628/628-720.mp4", "https://assets.mixkit.co/videos/629/629-720.mp4", "https://assets.mixkit.co/videos/638/638-720.mp4", "https://assets.mixkit.co/videos/642/642-720.mp4", "https://assets.mixkit.co/videos/646/646-720.mp4", "https://assets.mixkit.co/videos/652/652-720.mp4", "https://assets.mixkit.co/videos/653/653-720.mp4", "https://assets.mixkit.co/videos/659/659-720.mp4", "https://assets.mixkit.co/videos/662/662-720.mp4", "https://assets.mixkit.co/videos/664/664-720.mp4"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"\u5de5\u5ee0\u540d\u7a31" : "\u6210\u5bcc\u4f01\u696d\u6709\u9650\u516c\u53f8\u5317\u6597\u5de5\u5ee0", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99650834", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "08110000086266", "\u5de5\u5ee0\u5730\u5740" : "\u5f70\u5316\u7e23\u5317\u6597\u93ae\u5927\u65b0\u91cc\u65b0\u5de5\u8def\u56db\u4e8c\u865f", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u5f70\u5316\u7e23\u5317\u6597\u93ae", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u9ec3\u3000\u61c9\u3000\u5236\u3000", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "86550334", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "0811022", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "0820716", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["11\u7d21\u7e54\u696d", "21\u6a61\u81a0\u88fd\u54c1\u88fd\u9020\u696d", "22\u5851\u81a0\u88fd\u54c1\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["111\u7d21\u7d17", "210\u6a61\u81a0\u88fd\u54c1", "220\u5851\u81a0\u88fd\u54c1"]}
json_instruct
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "refs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "href", "description"]}}}, "required": ["kind", "name", "href", "description", "refs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"kind" : "Property", "name" : "NotificationEvent.notification", "href" : "https://developer.mozilla.org/en-US/docs/Web/API/NotificationEvent/notification", "description" : "The notification read-only property of the NotificationEvent interface returns the instance of the Notification that was clicked to fire the event. The Notification provides read-only access to many properties that were set at the instantiation time of the Notification such as tag and data attributes that allow you to store information for defered use in the notificationclick event.", "refs" : [{"name" : "Notifications API", "href" : "https://notifications.spec.whatwg.org/#dom-notificationevent-notification", "description" : "notification - Notifications API"}]}
json_instruct
{"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "refs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "href", "description"]}}}, "required": ["kind", "name", "href", "description", "refs"], "$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#"}
["3x3 basketball", "Archery", "Artistic gymnastics", "Artistic swimming", "Athletics", "Badminton", "Baseball", "Basketball", "Beach volleyball", "BMX freestyle", "BMX racing", "Boxing", "Canoe/kayak flatwater", "Canoe/kayak slalom", "Diving", "Equestrian", "Fencing", "Football", "Golf", "Handball", "Hockey", "Judo", "Karate", "Marathon swimming", "Modern pentathlon", "Mountain bike", "Rhythmic gymnastics", "Road cycling", "Rowing", "Rugby", "Sailing", "Shooting", "Skateboarding", "Softball", "Sport climbing", "Surfing", "Swimming", "Table tennis", "Taekwondo", "Tennis", "Track cycling", "Trampoline", "Triathlon", "Volleyball", "Water polo", "Weight lifting", "Wrestling"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["dbghost", "exceljs", "exceljs2", "grunt-cordova-config", "gulp-tslint-jenkins-reporter", "gulp-tslint-jenkins-reporter-kruczjak", "gulp-typescript-jenkins-reporter", "mocha-junit-and-console-reporter", "mocha-junit-reporter", "mscgenjs", "mscgenjs-cli", "sheet-db", "sl-api", "state-machine-cat"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"quality": {"type": "integer"}, "model": {"type": "string"}, "elapsed": {"type": "number"}, "tp": {"type": "integer"}, "fp": {"type": "integer"}, "precision": {"type": "number"}, "recall": {"type": "number"}, "f1": {"type": "number"}, "min_score": {"type": "number"}, "AP": {"type": "number"}, "AP50": {"type": "number"}, "AP75": {"type": "number"}, "APs": {"type": "number"}, "APm": {"type": "number"}, "APl": {"type": "number"}}, "required": ["quality", "model", "elapsed", "tp", "fp", "precision", "recall", "f1", "min_score", "AP", "AP50", "AP75", "APs", "APm", "APl"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"quality" : 51, "model" : "R101", "elapsed" : 668.4101252555847, "tp" : 44421, "fp" : 338741, "precision" : 0.11593268643550247, "recall" : 1.2225402504472271, "f1" : 0.2117822058322229, "min_score" : 0.05000027269124985, "AP" : 37.330098896478546, "AP50" : 56.42239816764708, "AP75" : 39.44215538490612, "APs" : 19.377745122368964, "APm" : 40.99997100118251, "APl" : 49.42164804887193}
json_instruct
{"type": "object", "properties": {"quality": {"type": "integer"}, "model": {"type": "string"}, "elapsed": {"type": "number"}, "tp": {"type": "integer"}, "fp": {"type": "integer"}, "precision": {"type": "number"}, "recall": {"type": "number"}, "f1": {"type": "number"}, "min_score": {"type": "number"}, "AP": {"type": "number"}, "AP50": {"type": "number"}, "AP75": {"type": "number"}, "APs": {"type": "number"}, "APm": {"type": "number"}, "APl": {"type": "number"}}, "required": ["quality", "model", "elapsed", "tp", "fp", "precision", "recall", "f1", "min_score", "AP", "AP50", "AP75", "APs", "APm", "APl"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "mythicmetals:block/steel_anvil"}
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"}, "description": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "author": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "description", "version", "private", "main", "author", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Crawler", "description" : "Crawler for CourseShark to crawl courses from Banner Websites", "version" : "0.2.0", "private" : true, "main" : "./index.js", "author" : "James Rundquist (http://github.com/jrundquist)", "engines" : {"node" : ">= 0.6.14"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "author": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "description", "version", "private", "main", "author", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"authority": {"type": "string"}, "mintWrapper": {"type": "string"}, "quarries": {"type": "array", "items": {"type": "object", "properties": {"cached": {"type": "object", "properties": {"famineTs": {"type": "string"}, "index": {"type": "integer"}, "lastUpdateTs": {"type": "string"}, "numMiners": {"type": "string"}, "rewardsPerTokenStored": {"type": "string"}, "rewardsShare": {"type": "string"}, "totalTokensDeposited": {"type": "string"}}, "required": ["famineTs", "index", "lastUpdateTs", "numMiners", "rewardsPerTokenStored", "rewardsShare", "totalTokensDeposited"]}, "index": {"type": "integer"}, "quarry": {"type": "string"}, "slug": {"type": "string"}, "stakedToken": {"type": "object", "properties": {"decimals": {"type": "integer"}, "mint": {"type": "string"}}, "required": ["decimals", "mint"]}}, "required": ["cached", "index", "quarry", "slug", "stakedToken"]}}, "rewardsToken": {"type": "object", "properties": {"decimals": {"type": "integer"}, "mint": {"type": "string"}}, "required": ["decimals", "mint"]}, "rewardsTokenInfo": {"type": "object", "properties": {"address": {"type": "string"}, "chainId": {"type": "integer"}, "decimals": {"type": "integer"}, "name": {"type": "string"}, "symbol": {"type": "string"}}, "required": ["address", "chainId", "decimals", "name", "symbol"]}}, "required": ["authority", "mintWrapper", "quarries", "rewardsToken", "rewardsTokenInfo"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"authority" : "7fi4w6ErjyTXWdyne7pdFCgjsBRFNYQyUVwcPrea6fCY", "mintWrapper" : "BPmtX7P3nh8RdFpCeksj1gYxbvWyhJpeZSDM6neEaw4A", "quarries" : [{"cached" : {"famineTs" : "9223372036854775807", "index" : 0, "lastUpdateTs" : "1644899649", "numMiners" : "2", "rewardsPerTokenStored" : "0", "rewardsShare" : "0", "totalTokensDeposited" : "47126677535"}, "index" : 0, "quarry" : "EwJNCJvh7KrUJbMzfsj11Jtf5cunUNhCRLjPggjJKrjh", "slug" : "crfnv", "stakedToken" : {"decimals" : 6, "mint" : "CrfnVNc6uBta8WMJDUWycS6cfRCVHKDLqJmcsCtPAAtu"}}, {"cached" : {"famineTs" : "9223372036854775807", "index" : 1, "lastUpdateTs" : "0", "numMiners" : "1", "rewardsPerTokenStored" : "0", "rewardsShare" : "0", "totalTokensDeposited" : "0"}, "index" : 1, "quarry" : "G6u1rvsomwR1BhqkWzyFG9Kzvk1SSLtzvZCoLc4W3HGw", "slug" : "9kao1", "stakedToken" : {"decimals" : 6, "mint" : "9KAo14XNzdUEya3iZnyt2DvuKQ6Bw4UTMdwnJ5j1CCkm"}}], "rewardsToken" : {"decimals" : 6, "mint" : "6CL8kCf3D8a3o2SPh3u9WtZSh4WqzNsuHpMRSg2aN2Wo"}, "rewardsTokenInfo" : {"address" : "6CL8kCf3D8a3o2SPh3u9WtZSh4WqzNsuHpMRSg2aN2Wo", "chainId" : 103, "decimals" : 6, "name" : "Token 6CL8", "symbol" : "6CL8k"}}
json_instruct
{"type": "object", "properties": {"authority": {"type": "string"}, "mintWrapper": {"type": "string"}, "quarries": {"type": "array", "items": {"type": "object", "properties": {"cached": {"type": "object", "properties": {"famineTs": {"type": "string"}, "index": {"type": "integer"}, "lastUpdateTs": {"type": "string"}, "numMiners": {"type": "string"}, "rewardsPerTokenStored": {"type": "string"}, "rewardsShare": {"type": "string"}, "totalTokensDeposited": {"type": "string"}}, "required": ["famineTs", "index", "lastUpdateTs", "numMiners", "rewardsPerTokenStored", "rewardsShare", "totalTokensDeposited"]}, "index": {"type": "integer"}, "quarry": {"type": "string"}, "slug": {"type": "string"}, "stakedToken": {"type": "object", "properties": {"decimals": {"type": "integer"}, "mint": {"type": "string"}}, "required": ["decimals", "mint"]}}, "required": ["cached", "index", "quarry", "slug", "stakedToken"]}}, "rewardsToken": {"type": "object", "properties": {"decimals": {"type": "integer"}, "mint": {"type": "string"}}, "required": ["decimals", "mint"]}, "rewardsTokenInfo": {"type": "object", "properties": {"address": {"type": "string"}, "chainId": {"type": "integer"}, "decimals": {"type": "integer"}, "name": {"type": "string"}, "symbol": {"type": "string"}}, "required": ["address", "chainId", "decimals", "name", "symbol"]}}, "required": ["authority", "mintWrapper", "quarries", "rewardsToken", "rewardsTokenInfo"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "null"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "adcode": {"type": "string"}, "telecode": {"type": "string"}, "level": {"type": "string"}, "center": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}, "required": ["name", "adcode", "telecode", "level", "center"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"type" : "Feature", "geometry" : null, "properties" : {"name" : "\u5eb7\u5b9a\u5e02", "adcode" : "513301", "telecode" : "0836", "level" : "district", "center" : {"lat" : 101.964057, "lng" : 30.050738}}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "null"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "adcode": {"type": "string"}, "telecode": {"type": "string"}, "level": {"type": "string"}, "center": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}, "required": ["name", "adcode", "telecode", "level", "center"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"border_type": {"type": "string"}}, "required": ["border_type"]}}, "required": ["localname", "official_name", "alltags"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}}, "required": ["name", "iso2", "admin_level", "osm_id", "countrylevel_id", "osm_data", "center_lat", "center_lon", "area_m2", "timezone", "wikidata_id", "wikipedia_id"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[32.894, 2.074], [32.928, 2.072], [32.951, 2.062], [32.974, 2.07], [32.99, 2.049], [33.033, 2.015], [33.053, 2.018], [33.058, 2.039], [33.084, 2.068], [33.117, 2.072], [33.134, 2.087], [33.135, 2.111], [33.173, 2.11], [33.185, 2.097], [33.241, 2.084], [33.289, 2.042], [33.274, 1.989], [33.271, 1.96], [33.25, 1.956], [33.239, 1.925], [33.207, 1.911], [33.141, 1.86], [33.117, 1.861], [33.114, 1.824], [33.103, 1.78], [33.083, 1.751], [33.083, 1.735], [33.048, 1.711], [32.999, 1.715], [32.971, 1.791], [32.94, 1.816], [32.938, 1.85], [32.954, 1.877], [32.951, 1.906], [32.958, 1.943], [32.933, 1.975], [32.906, 1.983], [32.889, 1.958], [32.86, 1.99], [32.893, 2.018], [32.887, 2.048], [32.894, 2.074]]]}, "properties" : {"name" : "Dokolo", "iso2" : "UG-317", "admin_level" : 4, "osm_id" : 3497127, "countrylevel_id" : "iso2:UG-317", "osm_data" : {"localname" : "Dokolo", "official_name" : "", "alltags" : {"border_type" : "district"}}, "center_lat" : 1.94, "center_lon" : 33.08, "area_m2" : 1081376307, "timezone" : "Africa/Kampala", "wikidata_id" : "Q1318872", "wikipedia_id" : "en:Dokolo District"}}
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": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"border_type": {"type": "string"}}, "required": ["border_type"]}}, "required": ["localname", "official_name", "alltags"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}}, "required": ["name", "iso2", "admin_level", "osm_id", "countrylevel_id", "osm_data", "center_lat", "center_lon", "area_m2", "timezone", "wikidata_id", "wikipedia_id"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"rules": {"type": "array", "items": {"type": "object", "properties": {"validation": {"type": "string"}, "patterns": {"type": "array", "items": {"type": "string"}}}, "required": ["validation", "patterns"]}}}, "required": ["rules"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"rules" : [{"validation" : "camelCase", "patterns" : ["**/*"]}, {"validation" : "PascalCase", "patterns" : []}, {"validation" : "ignore", "patterns" : ["**/typings/**/*", "**/__tests__/**/*", "**/__mocks__/**/*", "**/__snapshots__/**/*", "**/docker-compose.yml", "**/Dockerfile*", "**/LICENSE", "**/README.md", "**/clownOverrides/c__*"]}]}
json_instruct
{"type": "object", "properties": {"rules": {"type": "array", "items": {"type": "object", "properties": {"validation": {"type": "string"}, "patterns": {"type": "array", "items": {"type": "string"}}}, "required": ["validation", "patterns"]}}}, "required": ["rules"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : 7311160004, "parent" : 7311160, "name" : "SAPPE WALIE", "latitude" : null, "longitude" : null, "postal" : [92762], "children" : []}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"keys": {"type": "array", "items": {"type": "string"}}, "values": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["keys", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"keys" : ["actor"], "values" : [["Russel+Bernhard+Jr."], ["Eveline+Harvey"], ["Erna+Windler"], ["Israel+Cronin"], ["Dayna+O'Reilly+V"], ["Franco+Rodriguez"], ["Earline+Trantow"], ["Gerda+Osinski"], ["Mrs.+Ashtyn+Johns"], ["Alycia+Bashirian"], ["Theresa+Wunsch"], ["Taya+Raynor"], ["Monica+Cartwright+V"], ["Abagail+Marvin"], ["Lilliana+Batz+Sr."], ["Maureen+Goldner"], ["Ofelia+Berge"]]}
json_instruct
{"type": "object", "properties": {"keys": {"type": "array", "items": {"type": "string"}}, "values": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["keys", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"last_check": {"type": "string"}, "pypi_version": {"type": "string"}}, "required": ["last_check", "pypi_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"last_check" : "2021-07-11T06:20:14Z", "pypi_version" : "21.1.3"}
json_instruct
{"type": "object", "properties": {"last_check": {"type": "string"}, "pypi_version": {"type": "string"}}, "required": ["last_check", "pypi_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"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", "properties": {"type": {"type": "string"}, "score": {"type": "string"}}, "required": ["type", "score"]}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-wx9c-8pc3-wpmm", "modified" : "2022-05-13T01:45:53Z", "published" : "2022-05-13T01:45:53Z", "aliases" : ["CVE-2017-3767"], "details" : "A local privilege escalation vulnerability was identified in the Realtek audio driver versions prior to 6.0.1.8224 in some Lenovo ThinkPad products. An attacker with local privileges could execute code with administrative privileges.", "severity" : [{"type" : "CVSS_V3", "score" : "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"}], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2017-3767"}, {"type" : "WEB", "url" : "https://support.lenovo.com/us/en/product_security/LEN-15759"}], "database_specific" : {"cwe_ids" : [], "severity" : "HIGH", "github_reviewed" : false}}
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", "properties": {"type": {"type": "string"}, "score": {"type": "string"}}, "required": ["type", "score"]}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"lastUpdated" : 1655019279666, "username" : "PlainShayne", "scores" : [{"xp" : 434, "rank" : 461, "cardId" : 666}, {"xp" : 7512, "rank" : 149, "cardId" : 626}, {"xp" : 6137, "rank" : 266, "cardId" : 591}]}
json_instruct
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"antd-with-locales.js": {"type": "string"}, "antd-with-locales.min.js": {"type": "string"}, "antd.css": {"type": "string"}, "antd.js": {"type": "string"}, "antd.min.css": {"type": "string"}, "antd.min.js": {"type": "string"}}, "required": ["antd-with-locales.js", "antd-with-locales.min.js", "antd.css", "antd.js", "antd.min.css", "antd.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"antd-with-locales.js" : "sha256-wzJ1OQ0EH2dijyZ3fX8MSIN+EaSIQd0cfdmjVRCRGus=", "antd-with-locales.min.js" : "sha256-L9+ZXeye7D77opjYtxYqYMeXOcW+9Br7aMjT3eOocX4=", "antd.css" : "sha256-Ua40HiNsjl+Hg8Lhh6VZeiZIKbTUzgvoTuT7fZKQn/E=", "antd.js" : "sha256-mfJIVrScgQ7t23k7NCf0D4CI2wbhF6mhxVsZjqp7T5E=", "antd.min.css" : "sha256-JlI+xFXWo9Qd9mUE9Ck5rAgKYl2v4oK7D5bTfhMFXow=", "antd.min.js" : "sha256-d65etpiqH4Y19MYV25pIfu+qJJKB/dPc3yqZ7wTuyAM="}
json_instruct
{"type": "object", "properties": {"antd-with-locales.js": {"type": "string"}, "antd-with-locales.min.js": {"type": "string"}, "antd.css": {"type": "string"}, "antd.js": {"type": "string"}, "antd.min.css": {"type": "string"}, "antd.min.js": {"type": "string"}}, "required": ["antd-with-locales.js", "antd-with-locales.min.js", "antd.css", "antd.js", "antd.min.css", "antd.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "devDependencies": {"type": "object", "properties": {"favicons-webpack-plugin": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "zip-webpack-plugin": {"type": "string"}}, "required": ["favicons-webpack-plugin", "html-webpack-plugin", "webpack", "webpack-cli", "zip-webpack-plugin"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "quick-favicons", "version" : "0.0.1", "description" : "quickly make favicons for projects using favicons-webpack-plugin", "main" : "index.js", "repository" : "git@github.com:lisaross/quick-favicons.git", "author" : "Lisa Ross <lisa@thisisbroad.com> (https://www.thisisbroad.com)", "license" : "MIT", "scripts" : {"build" : "webpack --config webpack.config.js"}, "devDependencies" : {"favicons-webpack-plugin" : "^0.0.9", "html-webpack-plugin" : "^3.2.0", "webpack" : "^4.8.3", "webpack-cli" : "^2.1.3", "zip-webpack-plugin" : "^3.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "devDependencies": {"type": "object", "properties": {"favicons-webpack-plugin": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "zip-webpack-plugin": {"type": "string"}}, "required": ["favicons-webpack-plugin", "html-webpack-plugin", "webpack", "webpack-cli", "zip-webpack-plugin"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"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"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 52395, "cartId" : "b577d8bd-4152-4ba7-8163-8ec92bcff70d", "preferredProducts" : [248, 4631, 415, 2629, 1653, 1720], "productReviews" : [{"productId" : 2153, "reviewText" : "I tried to belly-flop it but got Turkish Delight all over it.", "reviewDate" : "2019-11-13T13:13:28.5937427+02:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"\u6797\u6ea2\u6cfd": {"type": "string"}}, "required": ["\u6797\u6ea2\u6cfd"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "frameworks": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "frameworks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "HTY360PlayerLite", "version" : "0.1.2", "summary" : "\u5168\u666f\u89c6\u9891\u64ad\u653e", "description" : "\u5168\u666f\u89c6\u9891\u64ad\u653e clone from https://github.com/hanton/HTY360Player", "homepage" : "https://github.com/islate/HTY360PlayerLite", "license" : "MIT", "authors" : {"\u6797\u6ea2\u6cfd" : "linyize@gmail.com"}, "source" : {"git" : "https://github.com/islate/HTY360PlayerLite.git", "tag" : "0.1.2"}, "platforms" : {"ios" : "7.0"}, "source_files" : "HTY360Player/*.{h,m}", "frameworks" : ["AVFoundation", "GLKit", "CoreMotion"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"\u6797\u6ea2\u6cfd": {"type": "string"}}, "required": ["\u6797\u6ea2\u6cfd"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "frameworks": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "frameworks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"rythm.js": {"type": "string"}, "rythm.min.js": {"type": "string"}}, "required": ["rythm.js", "rythm.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"rythm.js" : "sha512-Wluh3mtBSzsHNu4AyTZ0DIpPXO2fGhHKp8mxexEkvNn3XsE9I3QnYeabnqR04EA7USXJ1ohoOxiB2Vj7CWgEkA==", "rythm.min.js" : "sha512-ze7DLGnVF16Pjgv6/zZHY8WBrYXfTofGe4WW9NtskuKPM580/bCxx7gNBivvYNWCt2Yz92oNmzqAN9YGxDNelw=="}
json_instruct
{"type": "object", "properties": {"rythm.js": {"type": "string"}, "rythm.min.js": {"type": "string"}}, "required": ["rythm.js", "rythm.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "createdAt": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["id", "title", "createdAt", "author"]}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 147806, "info" : {"name" : "2015 ROBLOX Logo", "description" : "Let's go back into the time to see how the ROBLOX logo was in 2015.", "additionalInfo" : "2015 ROBLOX Logo", "format" : "uso", "category" : "roblox", "createdAt" : "2017-09-07T02:56:19.000Z", "updatedAt" : "2017-09-07T02:56:19.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 501793, "name" : "Sans The Bhoper"}}, "stats" : {"installs" : {"total" : 2207, "weekly" : 5}}, "screenshots" : {"main" : {"name" : "147806_after.png", "archived" : true}}, "discussions" : {"stats" : {"discussionsCount" : 2, "commentsCount" : 0}, "data" : [{"id" : 60344, "title" : "i like this style!", "createdAt" : "2017-10-09T00:09:45.000Z", "author" : {"id" : 518300, "name" : "The Roblox Gamer"}}, {"id" : 61523, "title" : ":)", "createdAt" : "2017-11-17T07:00:26.000Z", "author" : {"id" : 551737, "name" : "bacon man for lyfe"}}]}, "style" : {"css" : "@-moz-document domain(roblox.com)\r\n{\r\n /* 2015 ROBLOX Logo */\r\n \r\n .icon-logo\r\n {\r\n background-image: url(\"https://image.prntscr.com/image/5qCeCfPHTC2zLdYEIbQRVg.png\");\r\n }\r\n\r\n .icon-logo-r\r\n {\r\n background-image: url(\"https://image.prntscr.com/image/5qCeCfPHTC2zLdYEIbQRVg.png\");\r\n }\r\n}"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "createdAt": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["id", "title", "createdAt", "author"]}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"message": {"type": "string"}, "override": {"type": "string"}}, "required": ["message", "override"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"message" : "config-loaded-successfully", "override" : "overriding-works"}
json_instruct
{"type": "object", "properties": {"message": {"type": "string"}, "override": {"type": "string"}}, "required": ["message", "override"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"disk": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "rx": {"type": "number"}, "ry": {"type": "number"}, "angle": {"type": "number"}, "i0": {"type": "number"}, "n": {"type": "integer"}, "c": {"type": "integer"}}, "required": ["x", "y", "rx", "ry", "angle", "i0", "n", "c"]}, "bulge": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "rx": {"type": "number"}, "ry": {"type": "number"}, "angle": {"type": "number"}, "i0": {"type": "number"}, "n": {"type": "number"}, "c": {"type": "integer"}}, "required": ["x", "y", "rx", "ry", "angle", "i0", "n", "c"]}, "bar": {"type": "null"}}, "required": ["disk", "bulge", "bar"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"disk" : {"x" : 257.1324228922526, "y" : 254.26360982259115, "rx" : 130.4385797754943, "ry" : 110.86445966245469, "angle" : 106.092, "i0" : 1.0346666666666666, "n" : 1, "c" : 2}, "bulge" : {"x" : 257.633289882115, "y" : 254.7524675641741, "rx" : 13.024233727879126, "ry" : 8.938940158077397, "angle" : 81.188, "i0" : 1.072857142857143, "n" : 0.5828571428571429, "c" : 2}, "bar" : null}
json_instruct
{"type": "object", "properties": {"disk": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "rx": {"type": "number"}, "ry": {"type": "number"}, "angle": {"type": "number"}, "i0": {"type": "number"}, "n": {"type": "integer"}, "c": {"type": "integer"}}, "required": ["x", "y", "rx", "ry", "angle", "i0", "n", "c"]}, "bulge": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "rx": {"type": "number"}, "ry": {"type": "number"}, "angle": {"type": "number"}, "i0": {"type": "number"}, "n": {"type": "number"}, "c": {"type": "integer"}}, "required": ["x", "y", "rx", "ry", "angle", "i0", "n", "c"]}, "bar": {"type": "null"}}, "required": ["disk", "bulge", "bar"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"none": {"type": "boolean"}}, "required": ["none"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"none" : true}
json_instruct
{"type": "object", "properties": {"none": {"type": "boolean"}}, "required": ["none"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"GemFormatVersion": {"type": "integer"}, "Uuid": {"type": "string"}, "Name": {"type": "string"}, "DisplayName": {"type": "string"}, "Version": {"type": "string"}, "LinkType": {"type": "string"}, "Summary": {"type": "string"}, "Tags": {"type": "array", "items": {"type": "string"}}, "IconPath": {"type": "string"}}, "required": ["GemFormatVersion", "Uuid", "Name", "DisplayName", "Version", "LinkType", "Summary", "Tags", "IconPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"GemFormatVersion" : 3, "Uuid" : "102e23cf4c4c4b748585edbce2bbdc65", "Name" : "CloudCanvasCommon", "DisplayName" : "Cloud Canvas Common [PREVIEW]", "Version" : "0.1.0", "LinkType" : "Dynamic", "Summary" : "Provides functionality used by other Cloud Canvas Gems.", "Tags" : ["AWS", "API", "Cloud", "Canvas", "CloudCanvas", "Connected"], "IconPath" : "CloudCanvasCommon.png"}
json_instruct
{"type": "object", "properties": {"GemFormatVersion": {"type": "integer"}, "Uuid": {"type": "string"}, "Name": {"type": "string"}, "DisplayName": {"type": "string"}, "Version": {"type": "string"}, "LinkType": {"type": "string"}, "Summary": {"type": "string"}, "Tags": {"type": "array", "items": {"type": "string"}}, "IconPath": {"type": "string"}}, "required": ["GemFormatVersion", "Uuid", "Name", "DisplayName", "Version", "LinkType", "Summary", "Tags", "IconPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "CountryID", "Latitude", "Longitude", "AccessComments", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID"]}}, "GeneralComments": {"type": "string"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "GeneralComments", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IsRecentlyVerified" : false, "ID" : 166409, "UUID" : "88D55F8D-3FFF-4122-9489-3083F6DD31B6", "DataProviderID" : 28, "DataProvidersReference" : "FR*S44*P44050A", "OperatorID" : 3412, "UsageTypeID" : 5, "AddressInfo" : {"ID" : 166768, "Title" : "Crossac | Rue de l'Ancienne Gare", "AddressLine1" : "Rue de l'Ancienne Gare 44160 Crossac", "CountryID" : 80, "Latitude" : 47.411584, "Longitude" : -2.167744, "AccessComments" : "24/24 7/7", "DistanceUnit" : 0}, "Connections" : [{"ID" : 247101, "ConnectionTypeID" : 25, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 18, "CurrentTypeID" : 20}, {"ID" : 247102, "ConnectionTypeID" : 28, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 18, "CurrentTypeID" : 10}, {"ID" : 247103, "ConnectionTypeID" : 25, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 18, "CurrentTypeID" : 20}, {"ID" : 247104, "ConnectionTypeID" : 28, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 18, "CurrentTypeID" : 10}], "GeneralComments" : "", "StatusTypeID" : 50, "DateLastStatusUpdate" : "2020-08-27T05:13:00Z", "DataQualityLevel" : 2, "DateCreated" : "2020-08-27T05:13:00Z", "SubmissionStatusTypeID" : 100}
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", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "CountryID", "Latitude", "Longitude", "AccessComments", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID"]}}, "GeneralComments": {"type": "string"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "GeneralComments", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d466-52", "text" : "our hoped for $25,000 budget we will obviously need $13*500 from assessment\nfees. This is slightly less than double the anticipated 1952\u00ab\u00b053 receiptso\nFor the 195U\u201c1955 fiscal year the Kellogg budget provides $6,500\u00ab After\nJuly 1, 1955* we are on our own\u00a9\nObviously there will be some fluctuation in the number of stations and\nthus in the revenues receivedQ This is submitted to inform you of the situation\nas it now is and to begin the projection of dollar figures for future yearso\nCordially,\nDick Rider"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"description": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "name": {"type": "string"}, "options_page": {"type": "string"}, "background": {"type": "object", "properties": {"service_worker": {"type": "string"}}, "required": ["service_worker"]}, "action": {"type": "object", "properties": {"default_popup": {"type": "string"}, "default_icon": {"type": "string"}}, "required": ["default_popup", "default_icon"]}, "icons": {"type": "object", "properties": {"128": {"type": "string"}}, "required": ["128"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}, "css": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js", "css"]}}, "devtools_page": {"type": "string"}, "web_accessible_resources": {"type": "array", "items": {"type": "object", "properties": {"resources": {"type": "array", "items": {"type": "string"}}, "matches": {"type": "array", "items": {}}}, "required": ["resources", "matches"]}}, "permissions": {"type": "array", "items": {"type": "string"}}}, "required": ["description", "version", "manifest_version", "name", "options_page", "background", "action", "icons", "content_scripts", "devtools_page", "web_accessible_resources", "permissions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "Loopro is a video looper that lets you loop videos for musical practice, giving users an easy way to loop various parts of videos at various speeds for various number of times.", "version" : "4.0.1", "manifest_version" : 3, "name" : "Loopro", "options_page" : "options.html", "background" : {"service_worker" : "background.bundle.js"}, "action" : {"default_popup" : "popup.html", "default_icon" : "icon-34.png"}, "icons" : {"128" : "icon-128.png"}, "content_scripts" : [{"matches" : ["http://*/*", "https://*/*", "<all_urls>"], "js" : ["contentScript.bundle.js"], "css" : ["content.styles.css"]}], "devtools_page" : "devtools.html", "web_accessible_resources" : [{"resources" : ["content.styles.css", "icon-128.png", "icon-34.png"], "matches" : []}], "permissions" : ["tabs"]}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "name": {"type": "string"}, "options_page": {"type": "string"}, "background": {"type": "object", "properties": {"service_worker": {"type": "string"}}, "required": ["service_worker"]}, "action": {"type": "object", "properties": {"default_popup": {"type": "string"}, "default_icon": {"type": "string"}}, "required": ["default_popup", "default_icon"]}, "icons": {"type": "object", "properties": {"128": {"type": "string"}}, "required": ["128"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}, "css": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js", "css"]}}, "devtools_page": {"type": "string"}, "web_accessible_resources": {"type": "array", "items": {"type": "object", "properties": {"resources": {"type": "array", "items": {"type": "string"}}, "matches": {"type": "array", "items": {}}}, "required": ["resources", "matches"]}}, "permissions": {"type": "array", "items": {"type": "string"}}}, "required": ["description", "version", "manifest_version", "name", "options_page", "background", "action", "icons", "content_scripts", "devtools_page", "web_accessible_resources", "permissions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"php": {"type": "string"}, "tracy/tracy": {"type": "string"}, "phpunit/phpunit": {"type": "string"}, "phpunit/php-code-coverage": {"type": "string"}, "tacoberu/phpcs-coding-standard": {"type": "string"}, "sstalle/php7cc": {"type": "string"}}, "required": ["php", "tracy/tracy", "phpunit/phpunit", "phpunit/php-code-coverage", "tacoberu/phpcs-coding-standard", "sstalle/php7cc"]}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"classmap": {"type": "array", "items": {"type": "string"}}}, "required": ["classmap"]}, "license": {"type": "string"}}, "required": ["name", "description", "type", "require", "require-dev", "repositories", "authors", "autoload", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "tacoberu/php-json", "description" : "De/Serialization object from/to JSON string, similar as json_encode()/json_decode().", "type" : "library", "require" : {"php" : ">=5.3.0"}, "require-dev" : {"php" : ">=5.3.0", "tracy/tracy" : "@dev", "phpunit/phpunit" : "^4", "phpunit/php-code-coverage" : "^2", "tacoberu/phpcs-coding-standard" : "@dev", "sstalle/php7cc" : "^1.1"}, "repositories" : [{"type" : "vcs", "url" : "git://github.com/tacoberu/phpcs-coding-standard"}], "authors" : [{"name" : "Martin Tak\u00e1\u010d", "email" : "martin@takac.name"}], "autoload" : {"classmap" : ["libs/"]}, "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"php": {"type": "string"}, "tracy/tracy": {"type": "string"}, "phpunit/phpunit": {"type": "string"}, "phpunit/php-code-coverage": {"type": "string"}, "tacoberu/phpcs-coding-standard": {"type": "string"}, "sstalle/php7cc": {"type": "string"}}, "required": ["php", "tracy/tracy", "phpunit/phpunit", "phpunit/php-code-coverage", "tacoberu/phpcs-coding-standard", "sstalle/php7cc"]}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"classmap": {"type": "array", "items": {"type": "string"}}}, "required": ["classmap"]}, "license": {"type": "string"}}, "required": ["name", "description", "type", "require", "require-dev", "repositories", "authors", "autoload", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "mmzreborn:block/block_of_death"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid 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": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 101895565, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "4858e49b4c9a76d74c6dc1a4e2e9a1dd", "wof:id" : 101895565, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [1.08326, 43.93119, 1.08326, 43.93119], "geometry" : {"coordinates" : [1.08326, 43.93119], "type" : "Point"}}
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": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "511803108001", "text" : "\u5174\u5e73\u793e\u533a"}, {"id" : "511803108201", "text" : "\u592a\u5e73\u6751\u6751\u59d4\u4f1a"}, {"id" : "511803108202", "text" : "\u4f59\u575d\u6751\u6751\u59d4\u4f1a"}, {"id" : "511803108203", "text" : "\u7f57\u6e7e\u6751\u6751\u59d4\u4f1a"}, {"id" : "511803108204", "text" : "\u767d\u5899\u6751\u6751\u59d4\u4f1a"}, {"id" : "511803108205", "text" : "\u4e0a\u9a6c\u6751\u6751\u59d4\u4f1a"}, {"id" : "511803108206", "text" : "\u9f9a\u5e97\u6751\u6751\u59d4\u4f1a"}, {"id" : "511803108207", "text" : "\u5929\u738b\u6751\u6751\u59d4\u4f1a"}, {"id" : "511803108208", "text" : "\u534e\u5149\u6751\u6751\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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"clientID": {"type": "string"}, "serverToken": {"type": "string"}, "clientToken": {"type": "string"}, "encKey": {"type": "string"}, "macKey": {"type": "string"}}, "required": ["clientID", "serverToken", "clientToken", "encKey", "macKey"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"clientID" : "iI4AGYrmMqvF4IqJb03zFQ==", "serverToken" : "1@hEvDNkXEio18FGpwAWR+N+SCsg93tREItG9TJLK9vhKCc7XKtRXB8/J2TPZC5pG6PsXO+9jTHW8++g==", "clientToken" : "AWE8C8zIKXmwrJarDCtp0A0yI7+kmQjrrYbpjwkUmVs=", "encKey" : "f4uDNaJQjMZ5FPcXgkL11YxVVcD//UQPLNV3WmN5Dkg=", "macKey" : "ovSEo2El+u2TZKV+DvA9MKzQkqi2pI9tAlPp1TbRJYU="}
json_instruct
{"type": "object", "properties": {"clientID": {"type": "string"}, "serverToken": {"type": "string"}, "clientToken": {"type": "string"}, "encKey": {"type": "string"}, "macKey": {"type": "string"}}, "required": ["clientID", "serverToken", "clientToken", "encKey", "macKey"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "tagline": {"type": "string"}, "body": {"type": "string"}, "google": {"type": "string"}, "note": {"type": "string"}}, "required": ["name", "tagline", "body", "google", "note"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Htmlaudio", "tagline" : "", "body" : "htmlAudio\r\n=========\r\n\r\n##todo:\r\n\r\n###Testpage\r\n1. Two containers - sounds and music.\r\n2. Ul with 20 li's and span (progress) in sounds container.\r\n3. 3 radiobuttons and 4 buttons (play, pause, next, prev) in music container.\r\n4. CSS.\r\n\r\n###Sounds\r\n1. SoundUrls object with 20 parameters and 5 urls in each parameter.\r\n2. 100 html audio objects.\r\n3. Play random sound on click on li.\r\n4. Preload indication.\r\n5. Sounds from free sound banks.\r\n\r\n###Music\r\n1. 3 html audio objects.\r\n2. MusicUrls object with 3 parameters and 10 urls in each parameter.\r\n3. Play with fade-in on click on play, pause with fade-out on click on pause.\r\n4. First tracknumber is random, others cycle on playbackEnd, pause, or nextTrack/prevTrack.\r\n5. Music from youtube.\r\n", "google" : "", "note" : "Don't delete this file! It's used internally to help with page regeneration."}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "tagline": {"type": "string"}, "body": {"type": "string"}, "google": {"type": "string"}, "note": {"type": "string"}}, "required": ["name", "tagline", "body", "google", "note"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"WebSockets": {"type": "string"}, "websockets_": {"type": "object", "properties": {"security_key": {"type": "string"}, "security_key_info": {"type": "string"}, "listen_port": {"type": "string"}, "listen_port_info": {"type": "string"}, "listen_on": {"type": "string"}, "listen_on_info": {"type": "string"}, "dns_server": {"type": "string"}, "dns_server_info": {"type": "string"}, "server_is_running": {"type": "string"}, "server_is_not_running": {"type": "string"}, "start_server": {"type": "string"}, "save": {"type": "string"}, "save_info": {"type": "string"}, "changes_saved": {"type": "string"}, "changes_save_error": {"type": "string"}}, "required": ["security_key", "security_key_info", "listen_port", "listen_port_info", "listen_on", "listen_on_info", "dns_server", "dns_server_info", "server_is_running", "server_is_not_running", "start_server", "save", "save_info", "changes_saved", "changes_save_error"]}}, "required": ["WebSockets", "websockets_"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"WebSockets" : "WebSockets", "websockets_" : {"security_key" : "Security key", "security_key_info" : "Security key is used in order to generate urls that can't be guessed. String should be random.", "listen_port" : "Listen port", "listen_port_info" : "Port where WebSockets server will listen for incoming connection. Should not be taking by anything else, otherwise server will not start", "listen_on" : "Listen on", "listen_on_info" : "Address on which server will listen for incoming connections. Since usually some reverse proxy stands in front (like Nginx) it is better to choose 127.0.0.1", "dns_server" : "DNS server", "dns_server_info" : "IP of DNS server that will be used for resolving of IP of master WebSockets server from its domain name", "server_is_running" : "WebSockets server is running", "server_is_not_running" : "WebSockets server is not running", "start_server" : "Start WebSockets server", "save" : "Save", "save_info" : "Save changes", "changes_saved" : "Changes saved", "changes_save_error" : "Unable to save changes"}}
json_instruct
{"type": "object", "properties": {"WebSockets": {"type": "string"}, "websockets_": {"type": "object", "properties": {"security_key": {"type": "string"}, "security_key_info": {"type": "string"}, "listen_port": {"type": "string"}, "listen_port_info": {"type": "string"}, "listen_on": {"type": "string"}, "listen_on_info": {"type": "string"}, "dns_server": {"type": "string"}, "dns_server_info": {"type": "string"}, "server_is_running": {"type": "string"}, "server_is_not_running": {"type": "string"}, "start_server": {"type": "string"}, "save": {"type": "string"}, "save_info": {"type": "string"}, "changes_saved": {"type": "string"}, "changes_save_error": {"type": "string"}}, "required": ["security_key", "security_key_info", "listen_port", "listen_port_info", "listen_on", "listen_on_info", "dns_server", "dns_server_info", "server_is_running", "server_is_not_running", "start_server", "save", "save_info", "changes_saved", "changes_save_error"]}}, "required": ["WebSockets", "websockets_"], "$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"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"ext-amqp": {"type": "string"}, "league/tactician": {"type": "string"}}, "required": ["ext-amqp", "league/tactician"]}, "require-dev": {"type": "object", "properties": {"mockery/mockery": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["mockery/mockery", "phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Boekkooi\\Tactician\\AMQP\\": {"type": "string"}}, "required": ["Boekkooi\\Tactician\\AMQP\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tests\\Boekkooi\\Tactician\\AMQP\\": {"type": "string"}}, "required": ["Tests\\Boekkooi\\Tactician\\AMQP\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["branch-alias"]}, "prefer-stable": {"type": "boolean"}, "minimum-stability": {"type": "string"}}, "required": ["name", "description", "license", "keywords", "homepage", "authors", "require", "require-dev", "autoload", "autoload-dev", "extra", "prefer-stable", "minimum-stability"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "boekkooi/tactician-amqp", "description" : "Queueing command bus plugin for Tactician using the php-amqp extension", "license" : "MIT", "keywords" : ["amqp", "tactician", "command-bus"], "homepage" : "http://tactician.thephpleague.com", "authors" : [{"name" : "Warnar Boekkooi", "email" : "warnar@boekkooi.net"}], "require" : {"ext-amqp" : "*", "league/tactician" : "^0.6|~1.0"}, "require-dev" : {"mockery/mockery" : "~0.9, >= 0.9.4", "phpunit/phpunit" : "~4.8@stable"}, "autoload" : {"psr-4" : {"Boekkooi\\Tactician\\AMQP\\" : "src/"}}, "autoload-dev" : {"psr-4" : {"Tests\\Boekkooi\\Tactician\\AMQP\\" : "tests/"}}, "extra" : {"branch-alias" : {"dev-master" : "0.3-dev"}}, "prefer-stable" : true, "minimum-stability" : "dev"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"ext-amqp": {"type": "string"}, "league/tactician": {"type": "string"}}, "required": ["ext-amqp", "league/tactician"]}, "require-dev": {"type": "object", "properties": {"mockery/mockery": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["mockery/mockery", "phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Boekkooi\\Tactician\\AMQP\\": {"type": "string"}}, "required": ["Boekkooi\\Tactician\\AMQP\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tests\\Boekkooi\\Tactician\\AMQP\\": {"type": "string"}}, "required": ["Tests\\Boekkooi\\Tactician\\AMQP\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["branch-alias"]}, "prefer-stable": {"type": "boolean"}, "minimum-stability": {"type": "string"}}, "required": ["name", "description", "license", "keywords", "homepage", "authors", "require", "require-dev", "autoload", "autoload-dev", "extra", "prefer-stable", "minimum-stability"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"\u5de5\u5ee0\u540d\u7a31" : "\u754c\u5b8f\u79d1\u6280\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "03002331", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u6843\u5712\u5e02\u694a\u6885\u5340\u6c38\u5e73\u91cc\u65b0\u8fb2\u8857\u4e8c\u6bb5209\u5df7118\u865f2\u6a13", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u6843\u5712\u5e02\u694a\u6885\u5340\u6c38\u5e73\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u8521\u4e0a\u6c11", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "80710539", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "1030716", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["29\u6a5f\u68b0\u8a2d\u5099\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["292\u5176\u4ed6\u5c08\u7528\u6a5f\u68b0\u8a2d\u5099"]}
json_instruct
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"wire-plugin": {"type": "array", "items": {"type": "object", "properties": {"target": {"type": "string"}, "source": {"type": "string"}}, "required": ["target", "source"]}}}, "required": ["wire-plugin"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"wire-plugin" : [{"target" : "\\Spryker\\Zed\\Sales\\SalesDependencyProvider::getSearchOrderExpanderPlugins", "source" : "\\Spryker\\Zed\\SalesProductConnector\\Communication\\Plugin\\Sales\\ItemMetadataSearchOrderExpanderPlugin"}]}
json_instruct
{"type": "object", "properties": {"wire-plugin": {"type": "array", "items": {"type": "object", "properties": {"target": {"type": "string"}, "source": {"type": "string"}}, "required": ["target", "source"]}}}, "required": ["wire-plugin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"origin": {"type": "string"}, "download_link": {"type": "string"}, "views": {"type": "integer"}, "x_resolution": {"type": "integer"}, "filetype": {"type": "string"}, "site": {"type": "string"}, "y_resolution": {"type": "integer"}, "colors": {"type": "array", "items": {"type": "string"}}, "comments": {"type": "array", "items": {"type": "string"}}, "favorites": {"type": "integer"}, "descriptors": {"type": "array", "items": {"type": "string"}}, "uploader": {"type": "string"}}, "required": ["origin", "download_link", "views", "x_resolution", "filetype", "site", "y_resolution", "colors", "comments", "favorites", "descriptors", "uploader"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"origin" : "http://wallbase.cc/wallpaper/571885", "download_link" : "http://wallpapers.wallbase.cc/rozne/wallpaper-571885.jpg", "views" : 918, "x_resolution" : 1280, "filetype" : "jpg", "site" : "wallbase.cc", "y_resolution" : 800, "colors" : ["#fecde9", "#d3666d", "#cb5407", "#881900", "#742ec9"], "comments" : [""], "favorites" : 8, "descriptors" : ["food", "donuts", "sprinkles"], "uploader" : " 4chan"}
json_instruct
{"type": "object", "properties": {"origin": {"type": "string"}, "download_link": {"type": "string"}, "views": {"type": "integer"}, "x_resolution": {"type": "integer"}, "filetype": {"type": "string"}, "site": {"type": "string"}, "y_resolution": {"type": "integer"}, "colors": {"type": "array", "items": {"type": "string"}}, "comments": {"type": "array", "items": {"type": "string"}}, "favorites": {"type": "integer"}, "descriptors": {"type": "array", "items": {"type": "string"}}, "uploader": {"type": "string"}}, "required": ["origin", "download_link", "views", "x_resolution", "filetype", "site", "y_resolution", "colors", "comments", "favorites", "descriptors", "uploader"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"title": {"type": "string"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"update_date": {"type": "string"}, "link": {"type": "string"}}, "required": ["update_date", "link"]}}}, "required": ["title", "downloads", "tags", "hxl", "org", "id", "resources"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Argentina - Food Prices", "downloads" : 337, "tags" : ["commodities", "hxl", "markets", "prices", "Argentina"], "hxl" : 1, "org" : "WFP - World Food Programme", "id" : "49dc23aa-dd97-4985-adaf-b79f1c6ec0f4", "resources" : [{"update_date" : "2021-01-31T08:01:23.673834", "link" : "https://data.humdata.org/dataset/49dc23aa-dd97-4985-adaf-b79f1c6ec0f4/resource/ea099434-3274-4314-800b-41458d1e9746/download/wfp_food_prices_argentina.csv"}, {"update_date" : "2021-01-31T08:01:23.673834", "link" : "https://data.humdata.org/dataset/49dc23aa-dd97-4985-adaf-b79f1c6ec0f4/resource/b5d4317f-0247-4baa-893e-c77a905c9d56/download/wfp_food_median_prices_argentina.csv"}]}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"update_date": {"type": "string"}, "link": {"type": "string"}}, "required": ["update_date", "link"]}}}, "required": ["title", "downloads", "tags", "hxl", "org", "id", "resources"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"MD5 (dash_renderer.dev.js)": {"type": "string"}, "MD5 (dash_renderer.min.js)": {"type": "string"}, "MD5 (polyfill@7.8.7.min.js)": {"type": "string"}, "MD5 (prop-types@15.7.2.js)": {"type": "string"}, "MD5 (prop-types@15.7.2.min.js)": {"type": "string"}, "MD5 (react-dom@16.13.0.js)": {"type": "string"}, "MD5 (react-dom@16.13.0.min.js)": {"type": "string"}, "MD5 (react@16.13.0.js)": {"type": "string"}, "MD5 (react@16.13.0.min.js)": {"type": "string"}, "dash-renderer": {"type": "string"}}, "required": ["MD5 (dash_renderer.dev.js)", "MD5 (dash_renderer.min.js)", "MD5 (polyfill@7.8.7.min.js)", "MD5 (prop-types@15.7.2.js)", "MD5 (prop-types@15.7.2.min.js)", "MD5 (react-dom@16.13.0.js)", "MD5 (react-dom@16.13.0.min.js)", "MD5 (react@16.13.0.js)", "MD5 (react@16.13.0.min.js)", "dash-renderer"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"MD5 (dash_renderer.dev.js)" : "30602a07348df1c7246724bf9cf88198", "MD5 (dash_renderer.min.js)" : "d053ebed9b46eaff88ed8aaccdc3e2de", "MD5 (polyfill@7.8.7.min.js)" : "5090bae2c114802440412e301bdf5174", "MD5 (prop-types@15.7.2.js)" : "85947944e396a28895fad5f553eee36f", "MD5 (prop-types@15.7.2.min.js)" : "e3053393609bd2744010498629a43597", "MD5 (react-dom@16.13.0.js)" : "b6ce9c17ff84a6d80ff79dd47c7adb9a", "MD5 (react-dom@16.13.0.min.js)" : "a5a4de9578054f7fb44dd553574d0931", "MD5 (react@16.13.0.js)" : "c0f26206f3dc7a9ec41f1608da1245cc", "MD5 (react@16.13.0.min.js)" : "0a82f766cc2d7330a971407e82c4e4a1", "dash-renderer" : "1.4.1"}
json_instruct
{"type": "object", "properties": {"MD5 (dash_renderer.dev.js)": {"type": "string"}, "MD5 (dash_renderer.min.js)": {"type": "string"}, "MD5 (polyfill@7.8.7.min.js)": {"type": "string"}, "MD5 (prop-types@15.7.2.js)": {"type": "string"}, "MD5 (prop-types@15.7.2.min.js)": {"type": "string"}, "MD5 (react-dom@16.13.0.js)": {"type": "string"}, "MD5 (react-dom@16.13.0.min.js)": {"type": "string"}, "MD5 (react@16.13.0.js)": {"type": "string"}, "MD5 (react@16.13.0.min.js)": {"type": "string"}, "dash-renderer": {"type": "string"}}, "required": ["MD5 (dash_renderer.dev.js)", "MD5 (dash_renderer.min.js)", "MD5 (polyfill@7.8.7.min.js)", "MD5 (prop-types@15.7.2.js)", "MD5 (prop-types@15.7.2.min.js)", "MD5 (react-dom@16.13.0.js)", "MD5 (react-dom@16.13.0.min.js)", "MD5 (react@16.13.0.js)", "MD5 (react@16.13.0.min.js)", "dash-renderer"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"appid" : 257260, "name" : "Inherit the Earth: Quest for the Orb", "windows" : true, "mac" : true, "linux" : true, "early_access" : false, "lookup_time" : 1490973257}
json_instruct
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ast" : null, "code" : "var _jsxFileName = \"/home/pburgos/PycharmProjects/onu.sdg.front/pages/page-footer.js\";\nvar __jsx = React.createElement;\nimport React from \"react\";\nimport FooterV2 from \"../components/FooterV2\";\n\nvar FooterPage = function FooterPage() {\n return __jsx(FooterV2, {\n __source: {\n fileName: _jsxFileName,\n lineNumber: 3\n },\n __self: this\n });\n};\n\nexport default FooterPage;", "map" : {"version" : 3, "sources" : ["/home/pburgos/PycharmProjects/onu.sdg.front/pages/page-footer.js"], "names" : ["React", "FooterV2", "FooterPage"], "mappings" : ";;AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,OAAOC,QAAP,MAAqB,wBAArB;;AACA,IAAMC,UAAU,GAAG,SAAbA,UAAa;AAAA,SAAM,MAAC,QAAD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,IAAN;AAAA,CAAnB;;AAEA,eAAeA,UAAf", "sourcesContent" : ["import React from \"react\";\nimport FooterV2 from \"../components/FooterV2\";\nconst FooterPage = () => <FooterV2 />;\n\nexport default FooterPage;\n"]}, "metadata" : {}, "sourceType" : "module"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"cda.css": {"type": "string"}, "main.js": {"type": "string"}}, "required": ["cda.css", "main.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cda.css" : "cda-54b15496.css", "main.js" : "main-83793cfc.js"}
json_instruct
{"type": "object", "properties": {"cda.css": {"type": "string"}, "main.js": {"type": "string"}}, "required": ["cda.css", "main.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "integer"}, "username": {"type": "string"}, "resource_state": {"type": "integer"}, "firstname": {"type": "string"}, "lastname": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "country": {"type": "string"}, "sex": {"type": "string"}, "premium": {"type": "boolean"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "badge_type_id": {"type": "integer"}, "profile_medium": {"type": "string"}, "profile": {"type": "string"}, "friend": {"type": "null"}, "follower": {"type": "null"}, "follower_count": {"type": "integer"}, "friend_count": {"type": "integer"}, "mutual_friend_count": {"type": "integer"}, "athlete_type": {"type": "integer"}, "date_preference": {"type": "string"}, "measurement_preference": {"type": "string"}, "clubs": {"type": "array", "items": {}}, "ftp": {"type": "null"}, "weight": {"type": "integer"}, "bikes": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "primary": {"type": "boolean"}, "name": {"type": "string"}, "resource_state": {"type": "integer"}, "distance": {"type": "integer"}}, "required": ["id", "primary", "name", "resource_state", "distance"]}}, "shoes": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "primary": {"type": "boolean"}, "name": {"type": "string"}, "resource_state": {"type": "integer"}, "distance": {"type": "integer"}}, "required": ["id", "primary", "name", "resource_state", "distance"]}}}, "required": ["id", "username", "resource_state", "firstname", "lastname", "city", "state", "country", "sex", "premium", "created_at", "updated_at", "badge_type_id", "profile_medium", "profile", "friend", "follower", "follower_count", "friend_count", "mutual_friend_count", "athlete_type", "date_preference", "measurement_preference", "clubs", "ftp", "weight", "bikes", "shoes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 1234567890987654321, "username" : "marianne_v", "resource_state" : 3, "firstname" : "Marianne", "lastname" : "V.", "city" : "San Francisco", "state" : "CA", "country" : "US", "sex" : "F", "premium" : true, "created_at" : "2017-11-14T02:30:05Z", "updated_at" : "2018-02-06T19:32:20Z", "badge_type_id" : 4, "profile_medium" : "https://xxxxxx.cloudfront.net/pictures/athletes/123456789/123456789/2/medium.jpg", "profile" : "https://xxxxx.cloudfront.net/pictures/athletes/123456789/123456789/2/large.jpg", "friend" : null, "follower" : null, "follower_count" : 5, "friend_count" : 5, "mutual_friend_count" : 0, "athlete_type" : 1, "date_preference" : "%m/%d/%Y", "measurement_preference" : "feet", "clubs" : [], "ftp" : null, "weight" : 0, "bikes" : [{"id" : "b12345678987655", "primary" : true, "name" : "EMC", "resource_state" : 2, "distance" : 0}], "shoes" : [{"id" : "g12345678987655", "primary" : true, "name" : "adidas", "resource_state" : 2, "distance" : 4904}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "username": {"type": "string"}, "resource_state": {"type": "integer"}, "firstname": {"type": "string"}, "lastname": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "country": {"type": "string"}, "sex": {"type": "string"}, "premium": {"type": "boolean"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "badge_type_id": {"type": "integer"}, "profile_medium": {"type": "string"}, "profile": {"type": "string"}, "friend": {"type": "null"}, "follower": {"type": "null"}, "follower_count": {"type": "integer"}, "friend_count": {"type": "integer"}, "mutual_friend_count": {"type": "integer"}, "athlete_type": {"type": "integer"}, "date_preference": {"type": "string"}, "measurement_preference": {"type": "string"}, "clubs": {"type": "array", "items": {}}, "ftp": {"type": "null"}, "weight": {"type": "integer"}, "bikes": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "primary": {"type": "boolean"}, "name": {"type": "string"}, "resource_state": {"type": "integer"}, "distance": {"type": "integer"}}, "required": ["id", "primary", "name", "resource_state", "distance"]}}, "shoes": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "primary": {"type": "boolean"}, "name": {"type": "string"}, "resource_state": {"type": "integer"}, "distance": {"type": "integer"}}, "required": ["id", "primary", "name", "resource_state", "distance"]}}}, "required": ["id", "username", "resource_state", "firstname", "lastname", "city", "state", "country", "sex", "premium", "created_at", "updated_at", "badge_type_id", "profile_medium", "profile", "friend", "follower", "follower_count", "friend_count", "mutual_friend_count", "athlete_type", "date_preference", "measurement_preference", "clubs", "ftp", "weight", "bikes", "shoes"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ast" : null, "code" : "import { React } from 'react'; //export const userContext = createContext([{name: 'username', balance:0}]);\n//const DataContext = (props) => {\n// const [users, setUsers] = useState([]);\n// return (\n// <userContext.Provider value={{users, setUsers}}>\n// {props.children}\n// </userContext.Provider>\n// );\n//}\n//export default DataContext;\n\nconst UserContext = React.createContext([\"peter\"]);\nexport default UserContext;", "map" : {"version" : 3, "sources" : ["/Users/ErinsMac/Desktop/BadBank/bank/src/userContext.js"], "names" : ["React", "UserContext", "createContext"], "mappings" : "AAAA,SAASA,KAAT,QAAqB,OAArB,C,CAEA;AAEA;AACA;AACA;AACA;AACA;AACC;AACA;AACD;AACA;;AAEA,MAAMC,WAAW,GAAGD,KAAK,CAACE,aAAN,CAAoB,CAAC,OAAD,CAApB,CAApB;AACA,eAAeD,WAAf", "sourcesContent" : ["import { React} from 'react';\n\n//export const userContext = createContext([{name: 'username', balance:0}]);\n\n//const DataContext = (props) => {\n// const [users, setUsers] = useState([]);\n// return (\n// <userContext.Provider value={{users, setUsers}}>\n// {props.children}\n // </userContext.Provider>\n // );\n//}\n//export default DataContext;\n\nconst UserContext = React.createContext([\"peter\"]);\nexport default UserContext;\n\n\n\n\n\n\n"]}, "metadata" : {}, "sourceType" : "module"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"Skip": {"type": "string"}, "Start_Chat": {"type": "string"}, "Survey": {"type": "string"}}, "required": ["Skip", "Start_Chat", "Survey"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Skip" : "Pomi\u0144", "Start_Chat" : "Rozpocznij czat", "Survey" : "Ankieta"}
json_instruct
{"type": "object", "properties": {"Skip": {"type": "string"}, "Start_Chat": {"type": "string"}, "Survey": {"type": "string"}}, "required": ["Skip", "Start_Chat", "Survey"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "integer"}, "username": {"type": "string"}, "profilPic": {"type": "string"}, "message": {"type": "string"}}, "required": ["id", "username", "profilPic", "message"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 204, "username" : "rigwild_modified", "profilPic" : "http://via.placeholder.com/350x350", "message" : "The username was updated successfully."}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "username": {"type": "string"}, "profilPic": {"type": "string"}, "message": {"type": "string"}}, "required": ["id", "username", "profilPic", "message"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"5004": {"type": "string"}, "5007": {"type": "string"}, "5008": {"type": "string"}, "5009": {"type": "string"}}, "required": ["5004", "5007", "5008", "5009"]}, "timeto": {"type": "object", "properties": {"5004": {"type": "number"}, "5007": {"type": "number"}, "5008": {"type": "number"}, "5009": {"type": "number"}}, "required": ["5004", "5007", "5008", "5009"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 5006, "title" : ["[Yegharren Valley, Wooded Slope]"], "description" : ["A wide trail winds eastward between the trees, zigzagging up a steep slope that rises out of the forest to a grassy plateau. Thick patches of fiddlehead ferns thrive beneath the spreading branches of the older maples and oaks, competing with saplings born of falling seeds and acorns for the space between the roots.", "A wide trail winds eastward between the trees, zigzagging up a steep slope that rises out of the forest to a grassy plateau. Thick patches of fiddlehead ferns thrive beneath the spreading branches of the older maples and oaks, competing with saplings born of falling seeds and acorns for the remaining sunlight."], "paths" : ["Obvious paths: north, northeast, west"], "location" : "the Yegharren Plains", "wayto" : {"5004" : "west", "5007" : "north", "5008" : "northeast", "5009" : "go trail"}, "timeto" : {"5004" : 0.2, "5007" : 0.2, "5008" : 0.2, "5009" : 0.2}, "image" : "en-sylvarraend-1264234799.png", "image_coords" : [944, 528, 954, 538], "tags" : ["some basal moss", "some torban leaf", "some haphip root", "fiddlehead fern", "handful of elderberries", "wild orchid", "stalk of bluebells", "some tree bark", "some acantha leaf", "bunch of wild grapes", "small wild rose", "dark pink rain lily", "blue whortleberry", "tkaro root", "coppery rain lily"]}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"5004": {"type": "string"}, "5007": {"type": "string"}, "5008": {"type": "string"}, "5009": {"type": "string"}}, "required": ["5004", "5007", "5008", "5009"]}, "timeto": {"type": "object", "properties": {"5004": {"type": "number"}, "5007": {"type": "number"}, "5008": {"type": "number"}, "5009": {"type": "number"}}, "required": ["5004", "5007", "5008", "5009"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"towns" : [{"name" : "Mangalore", "url" : "mangalore"}]}
json_instruct
{"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "supercilious", "definition" : "Lofty with pride; haughty; dictatorial; overbearing; arrogant; as, a supercilious officer; asupercilious air; supercilious behavior. -- Su`per*cil\"i*ous*ly, adv. -- Su`per*cil\"i*ous*ness, n."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"nbStatement": {"type": "integer"}, "executionTime": {"type": "integer"}, "date": {"type": "string"}, "nb_methods": {"type": "integer"}, "nb_classes": {"type": "integer"}, "nbAngelicValue": {"type": "integer"}}, "required": ["nbStatement", "executionTime", "date", "nb_methods", "nb_classes", "nbAngelicValue"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nbStatement" : 0, "executionTime" : 11952, "date" : "Sun Jul 28 08:38:09 EDT 2019", "nb_methods" : 789, "nb_classes" : 240, "nbAngelicValue" : 0}
json_instruct
{"type": "object", "properties": {"nbStatement": {"type": "integer"}, "executionTime": {"type": "integer"}, "date": {"type": "string"}, "nb_methods": {"type": "integer"}, "nb_classes": {"type": "integer"}, "nbAngelicValue": {"type": "integer"}}, "required": ["nbStatement", "executionTime", "date", "nb_methods", "nb_classes", "nbAngelicValue"], "$schema": "http://json-schema.org/draft-07/schema#"}
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_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.2, "people" : [{"pose_keypoints_2d" : [470.375, 231.525, 0.78603, 506.945, 266.739, 0.872395, 527.838, 275.863, 0.765642, 548.636, 328.046, 0.91462, 514.703, 328.128, 0.465156, 486.048, 257.612, 0.830116, 472.995, 305.894, 0.80446, 432.518, 307.229, 0.909058, 506.978, 378.999, 0.590052, 487.362, 467.761, 0.538948, 485.939, 476.951, 0.0530758, 467.776, 369.847, 0.560067, 423.345, 454.668, 0.694353, 0, 0, 0, 472.967, 223.75, 0.235307, 476.867, 224.966, 0.824848, 0, 0, 0, 496.439, 231.525, 0.773711], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}, {"pose_keypoints_2d" : [157.096, 235.398, 0.850943, 123.197, 256.381, 0.648514, 137.524, 254.96, 0.761247, 150.531, 319.003, 0.73897, 171.525, 372.487, 0.855363, 111.434, 261.531, 0.579147, 0, 0, 0, 0, 0, 0, 134.952, 392.047, 0.476247, 154.506, 476.893, 0.116372, 0, 0, 0, 110.1, 388.148, 0.452039, 121.879, 467.772, 0.131311, 0, 0, 0, 151.911, 226.272, 0.892539, 0, 0, 0, 132.357, 223.69, 0.899192, 0, 0, 0], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]}
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": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$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"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "docs": {"type": "string"}, "prepublishOnly": {"type": "string"}, "run-checks": {"type": "string"}, "sonar": {"type": "string"}, "test": {"type": "string"}, "test-ratchet": {"type": "string"}}, "required": ["build", "docs", "prepublishOnly", "run-checks", "sonar", "test", "test-ratchet"]}, "peerDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}}, "required": ["eslint"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "jsdoc-to-markdown": {"type": "string"}}, "required": ["eslint", "jsdoc-to-markdown"]}, "dependencies": {"type": "object", "properties": {"@bash-utils/parser": {"type": "string"}}, "required": ["@bash-utils/parser"]}, "jest": {"type": "object", "properties": {"coverageThreshold": {"type": "object", "properties": {"global": {"type": "object", "properties": {"lines": {"type": "number"}, "statements": {"type": "number"}, "functions": {"type": "number"}, "branches": {"type": "number"}}, "required": ["lines", "statements", "functions", "branches"]}}, "required": ["global"]}}, "required": ["coverageThreshold"]}}, "required": ["name", "private", "version", "description", "author", "license", "main", "files", "publishConfig", "scripts", "peerDependencies", "devDependencies", "dependencies", "jest"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "eslint-plugin-bashutils", "private" : true, "version" : "0.0.5", "description" : "ESLint plugin to parse bash files", "author" : "Ignacio Carbajo <icarbajop@gmail.com>", "license" : "MIT", "main" : "lib/index.js", "files" : ["lib"], "publishConfig" : {"access" : "public"}, "scripts" : {"build" : "rm -rf lib; ../../node_modules/.bin/babel --config ../../.babelrc.js -d lib --ignore **/__tests__/** src", "docs" : "sh helpers/docs.sh", "prepublishOnly" : "npm run test && npm run build", "run-checks" : "find helpers/checks -type f | xargs -I {} bash {}", "sonar" : "npm run test; node helpers/sonar.js", "test" : "sh helpers/test.sh", "test-ratchet" : "../../node_modules/.bin/jest-coverage-ratchet && git add -A package.json"}, "peerDependencies" : {"eslint" : "^5.6.0"}, "devDependencies" : {"eslint" : "^5.6.0", "jsdoc-to-markdown" : "^4.0.1"}, "dependencies" : {"@bash-utils/parser" : "^0.0.5"}, "jest" : {"coverageThreshold" : {"global" : {"lines" : 92.41, "statements" : 92.62, "functions" : 92.59, "branches" : 85.87}}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "docs": {"type": "string"}, "prepublishOnly": {"type": "string"}, "run-checks": {"type": "string"}, "sonar": {"type": "string"}, "test": {"type": "string"}, "test-ratchet": {"type": "string"}}, "required": ["build", "docs", "prepublishOnly", "run-checks", "sonar", "test", "test-ratchet"]}, "peerDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}}, "required": ["eslint"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "jsdoc-to-markdown": {"type": "string"}}, "required": ["eslint", "jsdoc-to-markdown"]}, "dependencies": {"type": "object", "properties": {"@bash-utils/parser": {"type": "string"}}, "required": ["@bash-utils/parser"]}, "jest": {"type": "object", "properties": {"coverageThreshold": {"type": "object", "properties": {"global": {"type": "object", "properties": {"lines": {"type": "number"}, "statements": {"type": "number"}, "functions": {"type": "number"}, "branches": {"type": "number"}}, "required": ["lines", "statements", "functions", "branches"]}}, "required": ["global"]}}, "required": ["coverageThreshold"]}}, "required": ["name", "private", "version", "description", "author", "license", "main", "files", "publishConfig", "scripts", "peerDependencies", "devDependencies", "dependencies", "jest"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"schema": {"type": "string"}, "comment": {"type": "string"}, "language": {"type": "string"}, "protoPackage": {"type": "string"}, "libraryPackage": {"type": "string"}, "services": {"type": "object", "properties": {"Spanner": {"type": "object", "properties": {"clients": {"type": "object", "properties": {"grpc": {"type": "object", "properties": {"libraryClient": {"type": "string"}, "methods": {"type": "object", "properties": {"CreateSession": {"type": "array", "items": {"type": "string"}}, "BatchCreateSessions": {"type": "array", "items": {"type": "string"}}, "GetSession": {"type": "array", "items": {"type": "string"}}, "ListSessions": {"type": "array", "items": {"type": "string"}}, "DeleteSession": {"type": "array", "items": {"type": "string"}}, "ExecuteSql": {"type": "array", "items": {"type": "string"}}, "ExecuteStreamingSql": {"type": "array", "items": {"type": "string"}}, "ExecuteBatchDml": {"type": "array", "items": {"type": "string"}}, "Read": {"type": "array", "items": {"type": "string"}}, "StreamingRead": {"type": "array", "items": {"type": "string"}}, "BeginTransaction": {"type": "array", "items": {"type": "string"}}, "Commit": {"type": "array", "items": {"type": "string"}}, "Rollback": {"type": "array", "items": {"type": "string"}}, "PartitionQuery": {"type": "array", "items": {"type": "string"}}, "PartitionRead": {"type": "array", "items": {"type": "string"}}}, "required": ["CreateSession", "BatchCreateSessions", "GetSession", "ListSessions", "DeleteSession", "ExecuteSql", "ExecuteStreamingSql", "ExecuteBatchDml", "Read", "StreamingRead", "BeginTransaction", "Commit", "Rollback", "PartitionQuery", "PartitionRead"]}}, "required": ["libraryClient", "methods"]}}, "required": ["grpc"]}}, "required": ["clients"]}}, "required": ["Spanner"]}}, "required": ["schema", "comment", "language", "protoPackage", "libraryPackage", "services"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema" : "1.0", "comment" : "This file maps proto services/RPCs to the corresponding library clients/methods", "language" : "ruby", "protoPackage" : "google.spanner.v1", "libraryPackage" : "::Google::Cloud::Spanner::V1", "services" : {"Spanner" : {"clients" : {"grpc" : {"libraryClient" : "::Google::Cloud::Spanner::V1::Spanner::Client", "methods" : {"CreateSession" : ["create_session"], "BatchCreateSessions" : ["batch_create_sessions"], "GetSession" : ["get_session"], "ListSessions" : ["list_sessions"], "DeleteSession" : ["delete_session"], "ExecuteSql" : ["execute_sql"], "ExecuteStreamingSql" : ["execute_streaming_sql"], "ExecuteBatchDml" : ["execute_batch_dml"], "Read" : ["read"], "StreamingRead" : ["streaming_read"], "BeginTransaction" : ["begin_transaction"], "Commit" : ["commit"], "Rollback" : ["rollback"], "PartitionQuery" : ["partition_query"], "PartitionRead" : ["partition_read"]}}}}}}
json_instruct
{"type": "object", "properties": {"schema": {"type": "string"}, "comment": {"type": "string"}, "language": {"type": "string"}, "protoPackage": {"type": "string"}, "libraryPackage": {"type": "string"}, "services": {"type": "object", "properties": {"Spanner": {"type": "object", "properties": {"clients": {"type": "object", "properties": {"grpc": {"type": "object", "properties": {"libraryClient": {"type": "string"}, "methods": {"type": "object", "properties": {"CreateSession": {"type": "array", "items": {"type": "string"}}, "BatchCreateSessions": {"type": "array", "items": {"type": "string"}}, "GetSession": {"type": "array", "items": {"type": "string"}}, "ListSessions": {"type": "array", "items": {"type": "string"}}, "DeleteSession": {"type": "array", "items": {"type": "string"}}, "ExecuteSql": {"type": "array", "items": {"type": "string"}}, "ExecuteStreamingSql": {"type": "array", "items": {"type": "string"}}, "ExecuteBatchDml": {"type": "array", "items": {"type": "string"}}, "Read": {"type": "array", "items": {"type": "string"}}, "StreamingRead": {"type": "array", "items": {"type": "string"}}, "BeginTransaction": {"type": "array", "items": {"type": "string"}}, "Commit": {"type": "array", "items": {"type": "string"}}, "Rollback": {"type": "array", "items": {"type": "string"}}, "PartitionQuery": {"type": "array", "items": {"type": "string"}}, "PartitionRead": {"type": "array", "items": {"type": "string"}}}, "required": ["CreateSession", "BatchCreateSessions", "GetSession", "ListSessions", "DeleteSession", "ExecuteSql", "ExecuteStreamingSql", "ExecuteBatchDml", "Read", "StreamingRead", "BeginTransaction", "Commit", "Rollback", "PartitionQuery", "PartitionRead"]}}, "required": ["libraryClient", "methods"]}}, "required": ["grpc"]}}, "required": ["clients"]}}, "required": ["Spanner"]}}, "required": ["schema", "comment", "language", "protoPackage", "libraryPackage", "services"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 85932559, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "5ff0e0356e66772b92d9e917a3611e6b", "wof:id" : 85932559, "wof:repo" : "whosonfirst-data-admin-kw"}, "bbox" : [48.092308, 29.2566, 48.092308, 29.2566], "geometry" : {"coordinates" : [48.092308, 29.2566], "type" : "Point"}}
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": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "publisher": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required": ["vscode"]}, "categories": {"type": "array", "items": {"type": "string"}}, "extensionPack": {"type": "array", "items": {"type": "string"}}, "deprecatedExtensions": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "displayName", "description", "version", "publisher", "repository", "engines", "categories", "extensionPack", "deprecatedExtensions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "history-hack-pack", "displayName" : "History Hack Pack", "description" : "Extensions for use in Digital History classes at University of Toronto", "version" : "0.0.5", "publisher" : "digital-history", "repository" : {"type" : "git", "url" : "https://github.com/DigitalHistory/history-hack-pack-vscode"}, "engines" : {"vscode" : "^1.30.0"}, "categories" : ["Extension Packs"], "extensionPack" : ["dbaeumer.vscode-eslint", "GitHub.vscode-pull-request-github", "hbenl.vscode-mocha-test-adapter", "HookyQR.beautify", "ms-vsliveshare.vsliveshare", "negokaz.live-server-preview", "eg2.vscode-npm-script", "mdickin.markdown-shortcuts", "vscode-org-mode.org-mode", "WallabyJs.quokka-vscode", "JounQin.vscode-mdx"], "deprecatedExtensions" : ["maty.vscode-mocha-sidebar"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "publisher": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required": ["vscode"]}, "categories": {"type": "array", "items": {"type": "string"}}, "extensionPack": {"type": "array", "items": {"type": "string"}}, "deprecatedExtensions": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "displayName", "description", "version", "publisher", "repository", "engines", "categories", "extensionPack", "deprecatedExtensions"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"editor.js": {"type": "string"}}, "required": ["editor.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"editor.js" : "sha256-FqcR6qdL0/50fwmrM5LxJDrMUxL2M5gS7lH9c6gXOuA="}
json_instruct
{"type": "object", "properties": {"editor.js": {"type": "string"}}, "required": ["editor.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"html-to-css-autocompletion.triggerCharacters": {"type": "boolean"}, "html-to-css-autocompletion.autocompletionFilesScope": {"type": "string"}, "html-to-css-autocompletion.getSelectorsFromFileTypes": {"type": "array", "items": {"type": "string"}}, "html-to-css-autocompletion.folderNamesToBeIncluded": {"type": "array", "items": {"type": "string"}}, "html-to-css-autocompletion.folderNamesToBeExcluded": {"type": "array", "items": {"type": "string"}}, "html-to-css-autocompletion.includePattern": {"type": "string"}, "html-to-css-autocompletion.excludePattern": {"type": "string"}}, "required": ["html-to-css-autocompletion.triggerCharacters", "html-to-css-autocompletion.autocompletionFilesScope", "html-to-css-autocompletion.getSelectorsFromFileTypes", "html-to-css-autocompletion.folderNamesToBeIncluded", "html-to-css-autocompletion.folderNamesToBeExcluded", "html-to-css-autocompletion.includePattern", "html-to-css-autocompletion.excludePattern"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"html-to-css-autocompletion.triggerCharacters" : false, "html-to-css-autocompletion.autocompletionFilesScope" : "multi-root", "html-to-css-autocompletion.getSelectorsFromFileTypes" : ["html", "php"], "html-to-css-autocompletion.folderNamesToBeIncluded" : [""], "html-to-css-autocompletion.folderNamesToBeExcluded" : ["node_modules"], "html-to-css-autocompletion.includePattern" : "", "html-to-css-autocompletion.excludePattern" : ""}
json_instruct
{"type": "object", "properties": {"html-to-css-autocompletion.triggerCharacters": {"type": "boolean"}, "html-to-css-autocompletion.autocompletionFilesScope": {"type": "string"}, "html-to-css-autocompletion.getSelectorsFromFileTypes": {"type": "array", "items": {"type": "string"}}, "html-to-css-autocompletion.folderNamesToBeIncluded": {"type": "array", "items": {"type": "string"}}, "html-to-css-autocompletion.folderNamesToBeExcluded": {"type": "array", "items": {"type": "string"}}, "html-to-css-autocompletion.includePattern": {"type": "string"}, "html-to-css-autocompletion.excludePattern": {"type": "string"}}, "required": ["html-to-css-autocompletion.triggerCharacters", "html-to-css-autocompletion.autocompletionFilesScope", "html-to-css-autocompletion.getSelectorsFromFileTypes", "html-to-css-autocompletion.folderNamesToBeIncluded", "html-to-css-autocompletion.folderNamesToBeExcluded", "html-to-css-autocompletion.includePattern", "html-to-css-autocompletion.excludePattern"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {}}}, "required": ["e_id", "title", "content", "picNo", "picUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"e_id" : "4983", "title" : "\u4fc4\u56fd\u653f\u5e9c\u67aa\u6740\u8fde\u90a3\u91d1\u77ff\u5de5\u4eba\uff0c\u5236\u9020\u201c\u8fde\u90a3\u60e8\u6848\u201d", "content" : "\n\u00a0\u00a0\u00a0\u00a0\u5728109\u5e74\u524d\u7684\u4eca\u5929\uff0c1912\u5e744\u670817\u65e5(\u519c\u53861912\u5e743\u67081\u65e5)\uff0c\u4fc4\u56fd\u653f\u5e9c\u67aa\u6740\u8fde\u90a3\u91d1\u77ff\u5de5\u4eba\uff0c\u5236\u9020\u201c\u8fde\u90a3\u60e8\u6848\u201d\u30021912\u5e744\u670817\u65e5\uff0c\u4fc4\u56fd\u653f\u5e9c\u67aa\u6740\u8fde\u90a3\u91d1\u77ff\u5de5\u4eba\uff0c\u56fd\u5185\u9769\u547d\u51fa\u73b0\u65b0\u7684\u9ad8\u6f6e\u3002\u8fde\u90a3\u91d1\u77ff\u4f4d\u4e8e\u9065\u8fdc\u7684\u897f\u4f2f\u5229\u4e9a\u8fde\u90a3\u6cb3\u7554\u3002\u8fde\u90a3\u91c7\u91d1\u516c\u53f8\u6210\u7acb\u4e8e19\u4e16\u7eaa\u672b\u671f\uff0c\u62e5\u6709400\u591a\u4e2a\u77ff\u5751\u3002\u80a1\u4e1c\u4e2d\u6709\u4fc4\u56fd\u6c99\u7687\u5c3c\u53e4\u62c9\u4e8c\u4e16\u7684\u6bcd\u4eb2\u548c\u5f88\u591a\u6c99\u7687\u653f\u5e9c\u7684\u738b\u516c\u5927\u81e3\u300220\u4e16\u7eaa\u521d\u671f\uff0c\u4fc4\u56fd\u653f\u6cbb\u4e0a\u8150\u673d\uff0c\u5e26\u6765\u4e86\u7ecf\u6d4e\u4e0a\u7684\u5d29\u6e83\uff0c\u503a\u53f0\u9ad8\u7b51\uff0c\u5916\u56fd\u8d44\u672c\u65e5\u6e10\u6e17\u5165\u3002\u52301908\u5e74\uff0c\u8fde\u90a3\u91c7\u91d1\u516c\u53f8\u5f88\u5927\u4e00\u90e8\u5206\u80a1\u7968\uff0c\u5df2\u8f6c\u5165\u5230\u4f26\u6566\u91d1\u878d\u5eb7\u91c7\u6069\u8fde\u90a3\u91c7\u91d1\u573a\u7684\u82f1\u56fd\u8d44\u672c\u5bb6\u7684\u624b\u91cc\uff0c\u5de8\u5927\u7684\u5229\u6da6\u6e90\u6e90\u5730\u6d41\u5165\u8fdb\u4e86\u4ed6\u4eec\u7684\u8170\u5305\u3002\u636e1905\uff0d1910\u5e74\u7684\u7edf\u8ba1\uff0c\u8be5\u516c\u53f8\u7684\u7eaf\u6536\u5165\u7adf\u589e\u52a0\u4e8621\u500d\u3002\u800c\u8fd9\u4e9b\u5229\u6da6\u7684\u589e\u52a0\uff0c\u4e5f\u6b63\u53cd\u6620\u4e86\u5f53\u65f6\u4fc4\u56fd\u653f\u5e9c\u5bf9\u5de5\u4eba\u63a0\u593a\u548c\u5265\u524a\u7684\u52a0\u5f3a\u3002\u5f53\u65f6\uff0c\u8fde\u90a3\u91d1\u77ff\u5de5\u4eba\u4eec\u7684\u52b3\u52a8\u6761\u4ef6\u6781\u7aef\u6076\u52a3\uff0c\u72b9\u5982\u5974\u96b6\uff0c\u77ff\u533a\u6240\u8bbe\u7684\u5546\u5e97\u3001\u533b\u9662\u3001\u6cd5\u5ead\u548c\u76d1\u72f1\u90fd\u638c\u63e1\u5728\u4ed6\u4eec\u624b\u91cc\uff0c\u5de5\u4eba\u4eec\u6700\u8d77\u7801\u7684\u4eba\u8eab\u6743\u5229\u548c\u6700\u4f4e\u7684\u751f\u6d3b\u6c34\u51c6\u90fd\u65e0\u6cd5\u7ef4\u6301\u3002\u5de5\u4eba\u5728\u5fcd\u65e0\u53ef\u5fcd\u7684\u60c5\u51b5\u4e0b\uff0c\u7ec8\u4e8e\u57281912\u5e74\u521d\uff0c\u56e0\u4e00\u5bb6\u5546\u5e97\u51fa\u552e\u8150\u70c2\u53d8\u8d28\u7684\u9a6c\u8089\u800c\u4e3e\u884c\u4e86\u7f62\u5de5\u3002\u5e03\u5c14\u4ec0\u7ef4\u514b\u9886\u5bfc\u4e86\u8fd9\u4e00\u6597\u4e89\uff0c\u5411\u5f53\u5c40\u63d0\u51fa\u8981\u6c42\u6839\u672c\u6539\u53d8\u52b3\u52a8\u6761\u4ef6\u548c\u751f\u6d3b\u6761\u4ef6\uff0c\u5b9e\u884c6\u5c0f\u65f6\u5de5\u4f5c\u5236\uff0c\u53d6\u6d88\u7f5a\u6b3e\u7b49\u7b49\u3002\u4f46\u653f\u5e9c\u4ee3\u8868\u56de\u7b54\u4ed6\u4eec\u7684\uff0c\u5374\u662f\u91ce\u86ee\u7684\u6b66\u529b\u9547\u538b\u30024\u670817\u65e5\u4e00\u961f\u5baa\u5175\u5411\u7f62\u5de5\u7684\u5de5\u4eba\u5f00\u4e86\u67aa\uff0c\u6b7b250\u4eba\uff0c\u4f24270\u4eba\uff0c\u5236\u9020\u4e86\u9707\u60ca\u5168\u56fd\u7684\u4e00\u8d77\u7279\u5927\u60e8\u6848\u2014\u2014\u8fde\u90a3\u60e8\u6848\u3002\u5168\u56fd\u5404\u5730\u7acb\u5373\u6380\u8d77\u4e86\u6297\u8bae\u6027\u7684\u7f62\u5de5\uff0c\u4fc4\u56fd\u56fd\u5185\u53c8\u5f00\u59cb\u51fa\u73b0\u4e86\u4e00\u4e2a\u65b0\u7684\u9769\u547d\u9ad8\u6f6e\u3002", "picNo" : "0", "picUrl" : []}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {}}}, "required": ["e_id", "title", "content", "picNo", "picUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"functions": {"type": "object", "properties": {"0x1000": {"type": "object", "properties": {"prec": {"type": "object", "properties": {"sp": {"type": "string"}, "reads": {"type": "string"}, "writes": {"type": "string"}}, "required": ["sp", "reads", "writes"]}, "cfg": {"type": "object", "properties": {}, "required": []}, "instrs": {"type": "object", "properties": {"0x1000": {"type": "object", "properties": {"mn": {"type": "string"}, "invs": {"type": "array", "items": {"type": "string"}}}, "required": ["mn", "invs"]}, "0x1004": {"type": "object", "properties": {"mn": {"type": "string"}, "invs": {"type": "array", "items": {"type": "string"}}}, "required": ["mn", "invs"]}, "0x1008": {"type": "object", "properties": {"mn": {"type": "string"}, "invs": {"type": "array", "items": {"type": "string"}}}, "required": ["mn", "invs"]}, "0x100c": {"type": "object", "properties": {"mn": {"type": "string"}, "invs": {"type": "array", "items": {"type": "string"}}}, "required": ["mn", "invs"]}}, "required": ["0x1000", "0x1004", "0x1008", "0x100c"]}}, "required": ["prec", "cfg", "instrs"]}}, "required": ["0x1000"]}}, "required": ["functions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"functions" : {"0x1000" : {"prec" : {"sp" : "100.00", "reads" : "100.00", "writes" : "100.00"}, "cfg" : {}, "instrs" : {"0x1000" : {"mn" : "PUSH", "invs" : ["SP == SP_in"]}, "0x1004" : {"mn" : "MOV", "invs" : ["SP == (SP_in - 0x4)", "var.0004 == R11_in"]}, "0x1008" : {"mn" : "MOV", "invs" : ["SP == (SP_in - 0x4)", "R3 == 0x0"]}, "0x100c" : {"mn" : "BX", "invs" : ["SP == (SP_in - 0x4)", "R3 == 0x0", "R0 == 0x0"]}}}}}
json_instruct
{"type": "object", "properties": {"functions": {"type": "object", "properties": {"0x1000": {"type": "object", "properties": {"prec": {"type": "object", "properties": {"sp": {"type": "string"}, "reads": {"type": "string"}, "writes": {"type": "string"}}, "required": ["sp", "reads", "writes"]}, "cfg": {"type": "object", "properties": {}, "required": []}, "instrs": {"type": "object", "properties": {"0x1000": {"type": "object", "properties": {"mn": {"type": "string"}, "invs": {"type": "array", "items": {"type": "string"}}}, "required": ["mn", "invs"]}, "0x1004": {"type": "object", "properties": {"mn": {"type": "string"}, "invs": {"type": "array", "items": {"type": "string"}}}, "required": ["mn", "invs"]}, "0x1008": {"type": "object", "properties": {"mn": {"type": "string"}, "invs": {"type": "array", "items": {"type": "string"}}}, "required": ["mn", "invs"]}, "0x100c": {"type": "object", "properties": {"mn": {"type": "string"}, "invs": {"type": "array", "items": {"type": "string"}}}, "required": ["mn", "invs"]}}, "required": ["0x1000", "0x1004", "0x1008", "0x100c"]}}, "required": ["prec", "cfg", "instrs"]}}, "required": ["0x1000"]}}, "required": ["functions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"web_domain": {"type": "string"}}, "required": ["web_domain"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"web_domain" : "oae-release0.oaeproject.org"}
json_instruct
{"type": "object", "properties": {"web_domain": {"type": "string"}}, "required": ["web_domain"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"author": {"type": "string"}, "hero": {"type": "string"}, "Title": {"type": "string"}, "Items": {"type": "object", "properties": {"startingItems": {"type": "array", "items": {"type": "string"}}, "earlyGame": {"type": "array", "items": {"type": "string"}}, "coreItems": {"type": "array", "items": {"type": "string"}}, "luxury": {"type": "array", "items": {"type": "string"}}}, "required": ["startingItems", "earlyGame", "coreItems", "luxury"]}}, "required": ["author", "hero", "Title", "Items"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : "Valve", "hero" : "npc_dota_hero_invoker", "Title" : "Recommended items for Invoker", "Items" : {"startingItems" : ["tango", "null_talisman"], "earlyGame" : ["boots", "magic_stick", "bracer"], "coreItems" : ["phase_boots", "ancient_janggo", "magic_wand", "force_staff", "tpscroll"], "luxury" : ["sheepstick", "blink", "ultimate_scepter", "cyclone", "black_king_bar", "skadi", "shivas_guard", "necronomicon_3", "octarine_core"]}}
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "hero": {"type": "string"}, "Title": {"type": "string"}, "Items": {"type": "object", "properties": {"startingItems": {"type": "array", "items": {"type": "string"}}, "earlyGame": {"type": "array", "items": {"type": "string"}}, "coreItems": {"type": "array", "items": {"type": "string"}}, "luxury": {"type": "array", "items": {"type": "string"}}}, "required": ["startingItems", "earlyGame", "coreItems", "luxury"]}}, "required": ["author", "hero", "Title", "Items"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"gpio": {"type": "object", "properties": {"inputs": {"type": "object", "properties": {"count": {"type": "string"}}, "required": ["count"]}, "outputs": {"type": "object", "properties": {"count": {"type": "string"}}, "required": ["count"]}}, "required": ["inputs", "outputs"]}, "main": {"type": "object", "properties": {"miniserver": {"type": "string"}}, "required": ["miniserver"]}}, "required": ["gpio", "main"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"gpio" : {"inputs" : {"count" : "0"}, "outputs" : {"count" : "0"}}, "main" : {"miniserver" : "1"}}
json_instruct
{"type": "object", "properties": {"gpio": {"type": "object", "properties": {"inputs": {"type": "object", "properties": {"count": {"type": "string"}}, "required": ["count"]}, "outputs": {"type": "object", "properties": {"count": {"type": "string"}}, "required": ["count"]}}, "required": ["inputs", "outputs"]}, "main": {"type": "object", "properties": {"miniserver": {"type": "string"}}, "required": ["miniserver"]}}, "required": ["gpio", "main"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"conduit.connect": {"type": "string"}, "user.whoami": {"type": "string"}, "maniphest.find": {"type": "string"}}, "required": ["conduit.connect", "user.whoami", "maniphest.find"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"conduit.connect" : "{\"result\":{\"connectionID\":1759,\"sessionKey\":\"lwvyv7f6hlzb2vawac6reix7ejvjty72svnir6zy\",\"userPHID\":\"PHID-USER-6ij4rnamb2gsfpdkgmny\"},\"error_code\":null,\"error_info\":null}", "user.whoami" : "{\"result\":{\"phid\":\"PHID-USER-6ij4rnamz2gxfpbkamny\",\"userName\":\"testaccount\",\"realName\":\"Test Account\"},\"error_code\":null,\"error_info\":null}", "maniphest.find" : "{\"result\":{\"PHID-TASK-4cgpskv6zzys6rp5rvrc\":{\"id\":\"722\",\"phid\":\"PHID-TASK-4cgpskv6zzys6rp5rvrc\",\"authorPHID\":\"PHID-USER-5022a9389121884ab9db\",\"ownerPHID\":\"PHID-USER-5022a9389121884ab9db\",\"ccPHIDs\":[\"PHID-USER-5022a9389121884ab9db\",\"PHID-USER-ba8aeea1b3fe2853d6bb\"],\"status\":\"3\",\"priority\":\"Needs Triage\",\"title\":\"Relations should be two-way\",\"description\":\"When adding a differential revision you can specify Maniphest Tickets to add the relation. However, this doesnt add the relation from the ticket -> the differently.(This was added via the commit message)\",\"projectPHIDs\":[\"PHID-PROJ-358dbc2e601f7e619232\",\"PHID-PROJ-f58a9ac58c333f106a69\"],\"uri\":\"https://secure.phabricator.com/T722\",\"auxiliary\":[],\"objectName\":\"T722\",\"dateCreated\":\"1325553508\",\"dateModified\":\"1325618490\"}},\"error_code\":null,\"error_info\":null}"}
json_instruct
{"type": "object", "properties": {"conduit.connect": {"type": "string"}, "user.whoami": {"type": "string"}, "maniphest.find": {"type": "string"}}, "required": ["conduit.connect", "user.whoami", "maniphest.find"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"home": {"type": "string"}, "works": {"type": "string"}, "about_me": {"type": "string"}, "contact": {"type": "string"}, "components": {"type": "string"}, "footer": {"type": "string"}, "indexPage hello": {"type": "string"}, "indexPage name": {"type": "string"}, "indexPage work": {"type": "string"}, "indexPage occupation": {"type": "string"}, "aboutPage title": {"type": "string"}, "aboutPage heading1": {"type": "string"}, "aboutPage para1": {"type": "string"}, "aboutPage heading2": {"type": "string"}, "aboutPage para2": {"type": "string"}, "aboutPage heading3": {"type": "string"}, "aboutPage para3": {"type": "string"}, "contactPage title": {"type": "string"}, "contactPage email": {"type": "string"}, "contactPage subject": {"type": "string"}, "contactPage EnterYourMessage": {"type": "string"}, "contactPage send": {"type": "string"}, "contactPage FollowMeMessage": {"type": "string"}}, "required": ["home", "works", "about_me", "contact", "components", "footer", "indexPage hello", "indexPage name", "indexPage work", "indexPage occupation", "aboutPage title", "aboutPage heading1", "aboutPage para1", "aboutPage heading2", "aboutPage para2", "aboutPage heading3", "aboutPage para3", "contactPage title", "contactPage email", "contactPage subject", "contactPage EnterYourMessage", "contactPage send", "contactPage FollowMeMessage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"home" : "Home", "works" : "Works", "about_me" : "About me", "contact" : "Contact", "components" : "Components", "footer" : "UNTITLED | Website created with", "indexPage hello" : "Hello", "indexPage name" : "I'm PaNkaj", "indexPage work" : "Web Dev", "indexPage occupation" : "Working as a Junior Web Dev", "aboutPage title" : "About me", "aboutPage heading1" : "Enhanced monitoring procedures", "aboutPage para1" : "The pain itself is love, the main customer Maecenas luctus at sem quis varius. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos Cras ultrices hendrerit nisl.", "aboutPage heading2" : "To have at least", "aboutPage para2" : "But the pain in the film is irure to condemn, in pleasure it wants to escape from the pain of being cillus that no one pays for. They are the exceptions the blinds yearn for, they don't see, they are the ones who abandon their responsibilities to the fault that is soothing the soul's hardships.", "aboutPage heading3" : "Maecenas luctus at sem quis varius", "aboutPage para3" : "Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos The arrows of the arrows are a great success to the arrows of the arrows, but the venom of the bureau of the vehicle. Morbi accumsan iaculis blandit. Cras ultrices hendrerit nisl.", "contactPage title" : "Contact me", "contactPage email" : "Email", "contactPage subject" : "Subject", "contactPage EnterYourMessage" : "Enter your message", "contactPage send" : "Send", "contactPage FollowMeMessage" : "Follow me on social networks"}
json_instruct
{"type": "object", "properties": {"home": {"type": "string"}, "works": {"type": "string"}, "about_me": {"type": "string"}, "contact": {"type": "string"}, "components": {"type": "string"}, "footer": {"type": "string"}, "indexPage hello": {"type": "string"}, "indexPage name": {"type": "string"}, "indexPage work": {"type": "string"}, "indexPage occupation": {"type": "string"}, "aboutPage title": {"type": "string"}, "aboutPage heading1": {"type": "string"}, "aboutPage para1": {"type": "string"}, "aboutPage heading2": {"type": "string"}, "aboutPage para2": {"type": "string"}, "aboutPage heading3": {"type": "string"}, "aboutPage para3": {"type": "string"}, "contactPage title": {"type": "string"}, "contactPage email": {"type": "string"}, "contactPage subject": {"type": "string"}, "contactPage EnterYourMessage": {"type": "string"}, "contactPage send": {"type": "string"}, "contactPage FollowMeMessage": {"type": "string"}}, "required": ["home", "works", "about_me", "contact", "components", "footer", "indexPage hello", "indexPage name", "indexPage work", "indexPage occupation", "aboutPage title", "aboutPage heading1", "aboutPage para1", "aboutPage heading2", "aboutPage para2", "aboutPage heading3", "aboutPage para3", "contactPage title", "contactPage email", "contactPage subject", "contactPage EnterYourMessage", "contactPage send", "contactPage FollowMeMessage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"packageName": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "extends": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "implements": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "typeArguments": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}}, "required": ["type", "typeArguments"]}}, "fields": {"type": "object", "properties": {"body": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "debug": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "id": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "insertInstant": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "name": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "type": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["body", "debug", "id", "insertInstant", "name", "type"]}}, "required": ["packageName", "type", "description", "extends", "implements", "fields"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"packageName" : "io.fusionauth.domain", "type" : "Lambda", "description" : "/**\n * A JavaScript lambda function that is executed during certain events inside FusionAuth.\n *\n * @author Brian Pontarelli\n */\n", "extends" : [{"type" : "Enableable"}], "implements" : [{"type" : "Buildable", "typeArguments" : [{"type" : "Lambda"}]}], "fields" : {"body" : {"type" : "String"}, "debug" : {"type" : "boolean"}, "id" : {"type" : "UUID"}, "insertInstant" : {"type" : "ZonedDateTime"}, "name" : {"type" : "String"}, "type" : {"type" : "LambdaType"}}}
json_instruct
{"type": "object", "properties": {"packageName": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "extends": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "implements": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "typeArguments": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}}, "required": ["type", "typeArguments"]}}, "fields": {"type": "object", "properties": {"body": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "debug": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "id": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "insertInstant": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "name": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "type": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["body", "debug", "id", "insertInstant", "name", "type"]}}, "required": ["packageName", "type", "description", "extends", "implements", "fields"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "intentParameters": {"type": "array", "items": {}}, "exampleData": {"type": "array", "items": {"type": "object", "properties": {"sentence": {"type": "string"}, "exampleEntities": {"type": "array", "items": {}}}, "required": ["sentence", "exampleEntities"]}}}, "required": ["name", "type", "intentParameters", "exampleData"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "IntentTauxParticipation", "type" : "NLPIntent", "intentParameters" : [], "exampleData" : [{"sentence" : "Quel est le taux de participation ?", "exampleEntities" : []}, {"sentence" : "taux de participation", "exampleEntities" : []}, {"sentence" : "participation", "exampleEntities" : []}, {"sentence" : "Combien de personnes ont vot\u00e9 ?", "exampleEntities" : []}, {"sentence" : "combien de votants ?", "exampleEntities" : []}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "intentParameters": {"type": "array", "items": {}}, "exampleData": {"type": "array", "items": {"type": "object", "properties": {"sentence": {"type": "string"}, "exampleEntities": {"type": "array", "items": {}}}, "required": ["sentence", "exampleEntities"]}}}, "required": ["name", "type", "intentParameters", "exampleData"], "$schema": "http://json-schema.org/draft-07/schema#"}