input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "cordova": {"type": "object", "properties": {"id": {"type": "string"}, "platforms": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "platforms"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}}, "required": ["name", "version"]}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "cordova", "repository", "keywords", "engines", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "cordova-plugin-ckopenimage", "version" : "1.2.0", "description" : "This plugin is intended to show a picture from an URL into a Photo Viewer with zoom features.", "cordova" : {"id" : "cordova-plugin-ckopenimage", "platforms" : ["ios"]}, "repository" : {"type" : "git", "url" : "git+https://github.com/WuglyakBolgoink/CkOpenImage.git"}, "keywords" : ["cordova", "photoviewer", "ecosystem:cordova", "ios", "image", "viewer", "images", "open", "show", "cordova-ios"], "engines" : [{"name" : "cordova", "version" : ">=4.0.0"}, {"name" : "cordova-plugman", "version" : ">=4.2.0"}], "author" : "Wuglyak Bolgoink", "license" : "MIT", "bugs" : {"url" : "https://github.com/WuglyakBolgoink/CkOpenImage/issues"}, "homepage" : "https://github.com/WuglyakBolgoink/CkOpenImage#readme"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "cordova": {"type": "object", "properties": {"id": {"type": "string"}, "platforms": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "platforms"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}}, "required": ["name", "version"]}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "cordova", "repository", "keywords", "engines", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"query": {"type": "string"}, "description": {"type": "string"}, "threshold": {"type": "number"}, "fractionInvalid": {"type": "number"}, "numInvalid": {"type": "integer"}, "sampleInvalid": {"type": "array", "items": {"type": "object", "properties": {"ints": {"type": "integer"}}, "required": ["ints"]}}, "sampleWindows": {"type": "array", "items": {}}, "userSummaryStatistics": {"type": "object", "properties": {}, "required": []}}, "required": ["query", "description", "threshold", "fractionInvalid", "numInvalid", "sampleInvalid", "sampleWindows", "userSummaryStatistics"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"query" : "Ints = 1", "description" : "Description", "threshold" : 0.1, "fractionInvalid" : 2.0, "numInvalid" : 0, "sampleInvalid" : [{"ints" : 1}], "sampleWindows" : [], "userSummaryStatistics" : {}} | json_instruct | {"type": "object", "properties": {"query": {"type": "string"}, "description": {"type": "string"}, "threshold": {"type": "number"}, "fractionInvalid": {"type": "number"}, "numInvalid": {"type": "integer"}, "sampleInvalid": {"type": "array", "items": {"type": "object", "properties": {"ints": {"type": "integer"}}, "required": ["ints"]}}, "sampleWindows": {"type": "array", "items": {}}, "userSummaryStatistics": {"type": "object", "properties": {}, "required": []}}, "required": ["query", "description", "threshold", "fractionInvalid", "numInvalid", "sampleInvalid", "sampleWindows", "userSummaryStatistics"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bcrypt-nodejs": {"type": "string"}, "body-parser": {"type": "string"}, "compression": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-session": {"type": "string"}, "mongoose": {"type": "string"}, "oauth2orize": {"type": "string"}, "passport": {"type": "string"}, "passport-http": {"type": "string"}, "passport-http-bearer": {"type": "string"}, "passport-twitter": {"type": "string"}}, "required": ["bcrypt-nodejs", "body-parser", "compression", "ejs", "express", "express-session", "mongoose", "oauth2orize", "passport", "passport-http", "passport-http-bearer", "passport-twitter"]}}, "required": ["name", "main", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "geoAPI", "main" : "server.js", "dependencies" : {"bcrypt-nodejs" : "0.0.3", "body-parser" : "^1.14.1", "compression" : "^1.6.0", "ejs" : "^2.3.4", "express" : "~4.1.1", "express-session" : "^1.12.1", "mongoose" : "^4.2.4", "oauth2orize" : "^1.2.0", "passport" : "^0.3.0", "passport-http" : "^0.3.0", "passport-http-bearer" : "^1.0.1", "passport-twitter" : "^1.0.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bcrypt-nodejs": {"type": "string"}, "body-parser": {"type": "string"}, "compression": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-session": {"type": "string"}, "mongoose": {"type": "string"}, "oauth2orize": {"type": "string"}, "passport": {"type": "string"}, "passport-http": {"type": "string"}, "passport-http-bearer": {"type": "string"}, "passport-twitter": {"type": "string"}}, "required": ["bcrypt-nodejs", "body-parser", "compression", "ejs", "express", "express-session", "mongoose", "oauth2orize", "passport", "passport-http", "passport-http-bearer", "passport-twitter"]}}, "required": ["name", "main", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"top": {"type": "string"}, "front": {"type": "string"}, "side": {"type": "string"}, "bottom": {"type": "string"}}, "required": ["top", "front", "side", "bottom"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "block/orientable", "textures" : {"top" : "dalquor:blocks/machina/voidMacerator/top_on", "front" : "dalquor:blocks/machina/voidMacerator/front_on", "side" : "dalquor:blocks/machina/voidMacerator/side", "bottom" : "dalquor:blocks/machina/voidMacerator/bottom"}} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"top": {"type": "string"}, "front": {"type": "string"}, "side": {"type": "string"}, "bottom": {"type": "string"}}, "required": ["top", "front", "side", "bottom"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"layout-false": {"type": "object", "properties": {"layout": {"type": "boolean"}}, "required": ["layout"]}}, "required": ["layout-false"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"layout-false" : {"layout" : false}} | json_instruct | {"type": "object", "properties": {"layout-false": {"type": "object", "properties": {"layout": {"type": "boolean"}}, "required": ["layout"]}}, "required": ["layout-false"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "targetType": {"type": "string"}, "description": {"type": "string"}, "copyright": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "versions": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"hunt-net": {"type": "object", "properties": {"path": {"type": "string"}}, "required": ["path"]}}, "required": ["hunt-net"]}}, "required": ["name", "targetType", "description", "copyright", "homepage", "license", "versions", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "hunt-net-echo", "targetType" : "executable", "description" : "An network library written in D.", "copyright" : "Copyright (C) 2018-2019, HuntLabs", "homepage" : "https://www.huntlabs.net", "license" : "Apache-2.0", "versions" : ["HUNT_DEBUG"], "dependencies" : {"hunt-net" : {"path" : "../../"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "targetType": {"type": "string"}, "description": {"type": "string"}, "copyright": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "versions": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"hunt-net": {"type": "object", "properties": {"path": {"type": "string"}}, "required": ["path"]}}, "required": ["hunt-net"]}}, "required": ["name", "targetType", "description", "copyright", "homepage", "license", "versions", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"J-coupling": {"type": "array", "items": {"type": "object", "properties": {"ID2": {"type": "integer"}, "ID1": {"type": "integer"}, "value": {"type": "number"}}, "required": ["ID2", "ID1", "value"]}}, "chemical shift": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "number"}, "ID": {"type": "integer"}}, "required": ["value", "ID"]}}}, "required": ["J-coupling", "chemical shift"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"J-coupling" : [{"ID2" : 12, "ID1" : 11, "value" : 7.418949}, {"ID2" : 13, "ID1" : 11, "value" : 7.418949}, {"ID2" : 13, "ID1" : 12, "value" : 1.5}, {"ID2" : 14, "ID1" : 12, "value" : 8.283774}, {"ID2" : 15, "ID1" : 13, "value" : 8.283774}, {"ID2" : 15, "ID1" : 14, "value" : 1.5}], "chemical shift" : [{"value" : 7.19088, "ID" : 11}, {"value" : 7.39184, "ID" : 12}, {"value" : 7.39184, "ID" : 13}, {"value" : 7.31414, "ID" : 14}, {"value" : 7.31414, "ID" : 15}]} | json_instruct | {"type": "object", "properties": {"J-coupling": {"type": "array", "items": {"type": "object", "properties": {"ID2": {"type": "integer"}, "ID1": {"type": "integer"}, "value": {"type": "number"}}, "required": ["ID2", "ID1", "value"]}}, "chemical shift": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "number"}, "ID": {"type": "integer"}}, "required": ["value", "ID"]}}}, "required": ["J-coupling", "chemical shift"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "stage": {"type": "string"}, "description": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "stage", "description", "start", "stop"]}}}, "required": ["uuid", "name", "description", "start", "stop", "children", "befores"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"uuid" : "767c6bc5-ee09-4f21-8d2c-37f655e1994c", "name" : "im.atzma.tests.AppointmentCreationTest.preconditions", "description" : "", "start" : 1554399158845, "stop" : 1554399163893, "children" : ["cdc3be57-4d76-41d8-9e43-ee30a142c601"], "befores" : [{"name" : "preconditions", "status" : "passed", "stage" : "finished", "description" : "", "start" : 1554399158845, "stop" : 1554399163893}]} | json_instruct | {"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "stage": {"type": "string"}, "description": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "stage", "description", "start", "stop"]}}}, "required": ["uuid", "name", "description", "start", "stop", "children", "befores"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"ip": {"type": "string"}, "port": {"type": "string"}, "rori_ip": {"type": "string"}, "rori_port": {"type": "string"}, "owner": {"type": "string"}, "name": {"type": "string"}, "compatible_types": {"type": "string"}, "cert": {"type": "string"}, "key": {"type": "string"}, "secret": {"type": "string"}, "authorize": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "secret": {"type": "string"}}, "required": ["name", "secret"]}}}, "required": ["ip", "port", "rori_ip", "rori_port", "owner", "name", "compatible_types", "cert", "key", "secret", "authorize"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ip" : "127.0.0.1", "port" : "1414", "rori_ip" : "127.0.0.1", "rori_port" : "1412", "owner" : "AmarOk", "name" : "rori_desktop_client", "compatible_types" : "music|shell|alarm", "cert" : "key/cert.pem", "key" : "key/key.pem", "secret" : "secret", "authorize" : [{"name" : "rori_server", "secret" : "2BB80D537B1DA3E38BD30361AA855686BDE0EACD7162FEF6A25FE97BF527A25B"}]} | json_instruct | {"type": "object", "properties": {"ip": {"type": "string"}, "port": {"type": "string"}, "rori_ip": {"type": "string"}, "rori_port": {"type": "string"}, "owner": {"type": "string"}, "name": {"type": "string"}, "compatible_types": {"type": "string"}, "cert": {"type": "string"}, "key": {"type": "string"}, "secret": {"type": "string"}, "authorize": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "secret": {"type": "string"}}, "required": ["name", "secret"]}}}, "required": ["ip", "port", "rori_ip", "rori_port", "owner", "name", "compatible_types", "cert", "key", "secret", "authorize"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"$schema": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}, "javaType": {"type": "string"}, "properties": {"type": "object", "properties": {"versicherteRisikenAntragsteller2": {"type": "object", "properties": {"type": {"type": "string"}, "items": {"type": "object", "properties": {"type": {"type": "string"}, "javaType": {"type": "string"}, "$ref": {"type": "string"}}, "required": ["type", "javaType", "$ref"]}}, "required": ["type", "items"]}, "versicherteRisikenAntragsteller1": {"type": "object", "properties": {"type": {"type": "string"}, "items": {"type": "object", "properties": {"type": {"type": "string"}, "javaType": {"type": "string"}, "$ref": {"type": "string"}}, "required": ["type", "javaType", "$ref"]}}, "required": ["type", "items"]}}, "required": ["versicherteRisikenAntragsteller2", "versicherteRisikenAntragsteller1"]}}, "required": ["$schema", "id", "type", "javaType", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "http://json-schema.org/draft-04/schema#", "id" : "Ratenschutz", "type" : "object", "javaType" : "de.europace.kreditsmart.api.vorgang.finanzbedarf.Ratenschutz", "properties" : {"versicherteRisikenAntragsteller2" : {"type" : "array", "items" : {"type" : "string", "javaType" : "de.europace.kreditsmart.api.vorgang.finanzbedarf.VersichertesRisiko", "$ref" : "VersichertesRisiko.json"}}, "versicherteRisikenAntragsteller1" : {"type" : "array", "items" : {"type" : "string", "javaType" : "de.europace.kreditsmart.api.vorgang.finanzbedarf.VersichertesRisiko", "$ref" : "VersichertesRisiko.json"}}}} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}, "javaType": {"type": "string"}, "properties": {"type": "object", "properties": {"versicherteRisikenAntragsteller2": {"type": "object", "properties": {"type": {"type": "string"}, "items": {"type": "object", "properties": {"type": {"type": "string"}, "javaType": {"type": "string"}, "$ref": {"type": "string"}}, "required": ["type", "javaType", "$ref"]}}, "required": ["type", "items"]}, "versicherteRisikenAntragsteller1": {"type": "object", "properties": {"type": {"type": "string"}, "items": {"type": "object", "properties": {"type": {"type": "string"}, "javaType": {"type": "string"}, "$ref": {"type": "string"}}, "required": ["type", "javaType", "$ref"]}}, "required": ["type", "items"]}}, "required": ["versicherteRisikenAntragsteller2", "versicherteRisikenAntragsteller1"]}}, "required": ["$schema", "id", "type", "javaType", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"status_code": {"type": "integer"}, "data": {"type": "object", "properties": {"DeliveryStreamNames": {"type": "array", "items": {"type": "string"}}, "HasMoreDeliveryStreams": {"type": "boolean"}, "ResponseMetadata": {"type": "object", "properties": {"RetryAttempts": {"type": "integer"}, "HTTPStatusCode": {"type": "integer"}, "RequestId": {"type": "string"}, "HTTPHeaders": {"type": "object", "properties": {"x-amzn-requestid": {"type": "string"}, "x-amz-id-2": {"type": "string"}, "content-length": {"type": "string"}, "content-type": {"type": "string"}, "date": {"type": "string"}}, "required": ["x-amzn-requestid", "x-amz-id-2", "content-length", "content-type", "date"]}}, "required": ["RetryAttempts", "HTTPStatusCode", "RequestId", "HTTPHeaders"]}}, "required": ["DeliveryStreamNames", "HasMoreDeliveryStreams", "ResponseMetadata"]}}, "required": ["status_code", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status_code" : 200, "data" : {"DeliveryStreamNames" : ["firehose-rs"], "HasMoreDeliveryStreams" : true, "ResponseMetadata" : {"RetryAttempts" : 0, "HTTPStatusCode" : 200, "RequestId" : "725031f1-606d-47e8-9ddc-db57f311805a", "HTTPHeaders" : {"x-amzn-requestid" : "725031f1-606d-47e8-9ddc-db57f311805a", "x-amz-id-2" : "HVPMnw1dx8Y5zdRhEsHKvsiqueSfqzhXLyWvy68aj43Xm9oNHhM7NSjq7WuSSmbWTAKF0e7EY3vyJ4rCLEVE+C6knBQuqZ2a", "content-length" : "183", "content-type" : "application/x-amz-json-1.1", "date" : "Wed, 15 Aug 2018 11:16:46 GMT"}}}} | json_instruct | {"type": "object", "properties": {"status_code": {"type": "integer"}, "data": {"type": "object", "properties": {"DeliveryStreamNames": {"type": "array", "items": {"type": "string"}}, "HasMoreDeliveryStreams": {"type": "boolean"}, "ResponseMetadata": {"type": "object", "properties": {"RetryAttempts": {"type": "integer"}, "HTTPStatusCode": {"type": "integer"}, "RequestId": {"type": "string"}, "HTTPHeaders": {"type": "object", "properties": {"x-amzn-requestid": {"type": "string"}, "x-amz-id-2": {"type": "string"}, "content-length": {"type": "string"}, "content-type": {"type": "string"}, "date": {"type": "string"}}, "required": ["x-amzn-requestid", "x-amz-id-2", "content-length", "content-type", "date"]}}, "required": ["RetryAttempts", "HTTPStatusCode", "RequestId", "HTTPHeaders"]}}, "required": ["DeliveryStreamNames", "HasMoreDeliveryStreams", "ResponseMetadata"]}}, "required": ["status_code", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"templmd5": {"type": "string"}, "number": {"type": "string"}, "title": {"type": "string"}, "BACKCOLOR": {"type": "string"}, "FRONTCOLOR": {"type": "string"}, "filemd5": {"type": "string"}}, "required": ["templmd5", "number", "title", "BACKCOLOR", "FRONTCOLOR", "filemd5"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"templmd5" : "523d4615240572e66d3c9373d01f37cd", "number" : "1273", "title" : "Il Ministero della Salute informa su attivazione di servizi di supporto psicologico e psicoanalitico", "BACKCOLOR" : "blue", "FRONTCOLOR" : "white", "filemd5" : "f2f45018a397550d346383a68b7a32bf"} | json_instruct | {"type": "object", "properties": {"templmd5": {"type": "string"}, "number": {"type": "string"}, "title": {"type": "string"}, "BACKCOLOR": {"type": "string"}, "FRONTCOLOR": {"type": "string"}, "filemd5": {"type": "string"}}, "required": ["templmd5", "number", "title", "BACKCOLOR", "FRONTCOLOR", "filemd5"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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" : "2013", "provinceId" : "76", "regencyId" : "03", "districtId" : "08", "name" : "Malimbong"} | 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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "150923202201", "text" : "\u73bb\u7483\u5ffd\u955c\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "150923202202", "text" : "\u8d32\u7ea2\u6c9f\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "150923202203", "text" : "\u5143\u5c71\u5b50\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "150923202204", "text" : "\u5587\u561b\u52ff\u62c9\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "150923202205", "text" : "\u4e8c\u5409\u6dd6\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "150923202206", "text" : "\u8d85\u683c\u6556\u5305\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "150923202207", "text" : "\u5934\u53f7\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "150923202208", "text" : "\u9633\u9ad8\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "150923202209", "text" : "\u6c83\u56fe\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "150923202210", "text" : "\u4e4c\u5c3c\u572a\u5176\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "150923202211", "text" : "\u74dc\u574a\u5b50\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "150923202212", "text" : "\u5355\u575d\u6c9f\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "150923202213", "text" : "\u62bc\u5730\u574a\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "150923202214", "text" : "\u4e09\u53f7\u6751\u6751\u6c11\u59d4\u5458\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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "noteValue": {"type": "integer"}, "noteCount": {"type": "integer"}, "subScenes": {"type": "array", "items": {"type": "object", "properties": {"at": {"type": "array", "items": {"type": "integer"}}, "deviceParams": {"type": "array", "items": {"type": "object", "properties": {"group": {"type": "string"}, "device": {"type": "null"}, "params": {"type": "array", "items": {}}, "animation": {"type": "null"}, "transition": {"type": "string"}}, "required": ["group", "device", "params", "animation", "transition"]}}, "preset": {"type": "null"}}, "required": ["at", "deviceParams", "preset"]}}}, "required": ["id", "name", "noteValue", "noteCount", "subScenes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "540c35ca-bdf6-44da-8ff6-229aa896f243", "name" : "bars backbone pumping cyan 1/2 bar", "noteValue" : 64, "noteCount" : 32, "subScenes" : [{"at" : [0], "deviceParams" : [{"group" : "c0a53d99-ac9e-417f-a963-27eb83ca88e4", "device" : null, "params" : [], "animation" : null, "transition" : "c6deee45-8ea6-42a2-af77-b97c8ba8f8cb"}], "preset" : null}, {"at" : [16], "deviceParams" : [{"group" : "c0a53d99-ac9e-417f-a963-27eb83ca88e4", "device" : null, "params" : [], "animation" : null, "transition" : "aaa0a073-d485-43f9-95e2-a3c1b0470e7e"}], "preset" : null}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "noteValue": {"type": "integer"}, "noteCount": {"type": "integer"}, "subScenes": {"type": "array", "items": {"type": "object", "properties": {"at": {"type": "array", "items": {"type": "integer"}}, "deviceParams": {"type": "array", "items": {"type": "object", "properties": {"group": {"type": "string"}, "device": {"type": "null"}, "params": {"type": "array", "items": {}}, "animation": {"type": "null"}, "transition": {"type": "string"}}, "required": ["group", "device", "params", "animation", "transition"]}}, "preset": {"type": "null"}}, "required": ["at", "deviceParams", "preset"]}}}, "required": ["id", "name", "noteValue", "noteCount", "subScenes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"header": {"type": "object", "properties": {"title": {"type": "string"}, "subtitle": {"type": "string"}}, "required": ["title", "subtitle"]}, "cta": {"type": "object", "properties": {"awesome": {"type": "string"}, "cats": {"type": "string"}}, "required": ["awesome", "cats"]}, "routes": {"type": "object", "properties": {"hello": {"type": "string"}, "person": {"type": "string"}, "about": {"type": "string"}}, "required": ["hello", "person", "about"]}}, "required": ["header", "cta", "routes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"header" : {"title" : "Bonjour", "subtitle" : "le monde"}, "cta" : {"awesome" : "{{ things }} sont fabuleux !", "cats" : "Les chats"}, "routes" : {"hello" : "Bonjour le monde", "person" : "Personne", "about" : "A propos"}} | json_instruct | {"type": "object", "properties": {"header": {"type": "object", "properties": {"title": {"type": "string"}, "subtitle": {"type": "string"}}, "required": ["title", "subtitle"]}, "cta": {"type": "object", "properties": {"awesome": {"type": "string"}, "cats": {"type": "string"}}, "required": ["awesome", "cats"]}, "routes": {"type": "object", "properties": {"hello": {"type": "string"}, "person": {"type": "string"}, "about": {"type": "string"}}, "required": ["hello", "person", "about"]}}, "required": ["header", "cta", "routes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"subreddit" : "AskEurope", "author" : "a-public-account", "count" : 17} | json_instruct | {"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Space-efficient time-series call-path profiling of parallel applications.", "fields" : ["affinity propagation", "profiling", "sparse matrix", "semantic compression", "kernel method"], "abstract" : "The performance behavior of parallel simulations often changes considerably as the simulation progresses --- with potentially process-dependent variations of temporal patterns. While call-path profiling is an established method of linking a performance problem to the context in which it occurs, call paths reveal only little information about the temporal evolution of performance phenomena. However, generating call-path profiles separately for thousands of iterations may exceed available buffer space --- especially when the call tree is large and more than one metric is collected. In this paper, we present a runtime approach for the semantic compression of call-path profiles based on incremental clustering of a series of single-iteration profiles that scales in terms of the number of iterations without sacrificing important performance details. Our approach offers low runtime overhead by using only a condensed version of the profile data when calculating distances and accounts for process-dependent variations by making all clustering decisions locally.", "citation" : "Citations (18)", "year" : "2009", "departments" : ["RWTH Aachen University", "RWTH Aachen University", "J\u00fclich Supercom ... J\u00fclich, Germany"], "conf" : "sc", "authors" : ["Zolt\u00e1n Szebenyi.....http://dblp.org/pers/hd/s/Szebenyi:Zolt=aacute=n", "Felix Wolf.....http://dblp.org/pers/hd/w/Wolf_0001:Felix", "Brian J. N. Wylie.....http://dblp.org/pers/hd/w/Wylie:Brian_J=_N="], "pages" : -1} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"component": {"type": "boolean"}, "usingComponents": {"type": "object", "properties": {"w-goods-item": {"type": "string"}}, "required": ["w-goods-item"]}}, "required": ["component", "usingComponents"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"component" : true, "usingComponents" : {"w-goods-item" : "../w-goods-item/w-goods-item"}} | json_instruct | {"type": "object", "properties": {"component": {"type": "boolean"}, "usingComponents": {"type": "object", "properties": {"w-goods-item": {"type": "string"}}, "required": ["w-goods-item"]}}, "required": ["component", "usingComponents"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"5431": {"type": "string"}, "5433": {"type": "string"}}, "required": ["5431", "5433"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"5431" : "5432", "5433" : "5434"} | json_instruct | {"type": "object", "properties": {"5431": {"type": "string"}, "5433": {"type": "string"}}, "required": ["5431", "5433"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["limit", "name", "value", "highalch", "id", "lowalch", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"limit" : 100, "name" : "Team-29 cape", "value" : 50, "highalch" : 30, "id" : 4371, "lowalch" : 20, "name_pt" : "Capa equipe 29", "price" : 228, "last" : 228} | json_instruct | {"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["limit", "name", "value", "highalch", "id", "lowalch", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"token": {"type": "string"}, "prefix": {"type": "string"}}, "required": ["token", "prefix"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"token" : "ODMwMjUyODg4MTMxMzcxMDI5.YHD_QQ.-egrQFcFICnhOkf9tpX98UOPfOk", "prefix" : "!"} | json_instruct | {"type": "object", "properties": {"token": {"type": "string"}, "prefix": {"type": "string"}}, "required": ["token", "prefix"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"arguments": {"type": "array", "items": {}}, "dependencies": {"type": "array", "items": {"type": "string"}}, "command": {"type": "string"}}, "required": ["arguments", "dependencies", "command"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"arguments" : [], "dependencies" : ["scipy"], "command" : "generate"} | json_instruct | {"type": "object", "properties": {"arguments": {"type": "array", "items": {}}, "dependencies": {"type": "array", "items": {"type": "string"}}, "command": {"type": "string"}}, "required": ["arguments", "dependencies", "command"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "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": {"type": "string"}}, "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-f2wp-8p4c-8g93", "modified" : "2022-03-04T00:00:34Z", "published" : "2022-02-25T00:01:07Z", "aliases" : ["CVE-2021-44610"], "details" : "Multiple SQL Injection vulnerabilities exist in bloofoxCMS 0.5.2.1 - 0.5.1 via the (1) URLs, (2) lang_id, (3) tmpl_id, (4) mod_rewrite (5) eta_doctype. (6) meta_charset, (7) default_group, and (8) page group parameters in the settings mode in admin/index.php.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2021-44610"}, {"type" : "WEB", "url" : "https://github.com/alexlang24/bloofoxCMS/issues/13"}], "database_specific" : {"cwe_ids" : ["CWE-89"], "severity" : "CRITICAL", "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": {}}, "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": {"type": "string"}}, "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#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}, "site_admin": {"type": "boolean"}, "name": {"type": "string"}, "company": {"type": "null"}, "blog": {"type": "null"}, "location": {"type": "string"}, "email": {"type": "string"}, "hireable": {"type": "null"}, "bio": {"type": "null"}, "public_repos": {"type": "integer"}, "public_gists": {"type": "integer"}, "followers": {"type": "integer"}, "following": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["user", "repos", "login", "id", "avatar_url", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type", "site_admin", "name", "company", "blog", "location", "email", "hireable", "bio", "public_repos", "public_gists", "followers", "following", "created_at", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"user" : "jedsdesk", "repos" : 1, "login" : "jedsdesk", "id" : 5900417, "avatar_url" : "https://avatars2.githubusercontent.com/u/5900417?v=3", "url" : "https://api.github.com/users/jedsdesk", "html_url" : "https://github.com/jedsdesk", "followers_url" : "https://api.github.com/users/jedsdesk/followers", "following_url" : "https://api.github.com/users/jedsdesk/following{/other_user}", "gists_url" : "https://api.github.com/users/jedsdesk/gists{/gist_id}", "starred_url" : "https://api.github.com/users/jedsdesk/starred{/owner}{/repo}", "subscriptions_url" : "https://api.github.com/users/jedsdesk/subscriptions", "organizations_url" : "https://api.github.com/users/jedsdesk/orgs", "repos_url" : "https://api.github.com/users/jedsdesk/repos", "events_url" : "https://api.github.com/users/jedsdesk/events{/privacy}", "received_events_url" : "https://api.github.com/users/jedsdesk/received_events", "type" : "User", "site_admin" : false, "name" : "NixNut", "company" : null, "blog" : null, "location" : "Earth, usually...", "email" : "jedsdesk@gmail.com", "hireable" : null, "bio" : null, "public_repos" : 2, "public_gists" : 0, "followers" : 0, "following" : 3, "created_at" : "2013-11-10T06:15:06Z", "updated_at" : "2016-07-27T03:38:06Z"} | json_instruct | {"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}, "site_admin": {"type": "boolean"}, "name": {"type": "string"}, "company": {"type": "null"}, "blog": {"type": "null"}, "location": {"type": "string"}, "email": {"type": "string"}, "hireable": {"type": "null"}, "bio": {"type": "null"}, "public_repos": {"type": "integer"}, "public_gists": {"type": "integer"}, "followers": {"type": "integer"}, "following": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["user", "repos", "login", "id", "avatar_url", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type", "site_admin", "name", "company", "blog", "location", "email", "hireable", "bio", "public_repos", "public_gists", "followers", "following", "created_at", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "twitter": {"type": "string"}, "tag": {"type": "string"}, "characters": {"type": "array", "items": {"type": "object", "properties": {"character": {"type": "string"}, "skin": {"type": "string"}, "game": {"type": "string"}}, "required": ["character", "skin", "game"]}}, "pronouns": {"type": "string"}}, "required": ["name", "twitter", "tag", "characters", "pronouns"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Bookworm", "twitter" : "@BookwormRoA", "tag" : "Gooshi", "characters" : [{"character" : "Elliana", "skin" : "Default", "game" : "Rivals of Aether"}], "pronouns" : "She/Her"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "twitter": {"type": "string"}, "tag": {"type": "string"}, "characters": {"type": "array", "items": {"type": "object", "properties": {"character": {"type": "string"}, "skin": {"type": "string"}, "game": {"type": "string"}}, "required": ["character", "skin", "game"]}}, "pronouns": {"type": "string"}}, "required": ["name", "twitter", "tag", "characters", "pronouns"], "$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": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-80.764369, 39.948062], [-80.762987, 39.953785], [-80.757922, 39.959707], [-80.757068, 39.960339], [-80.753463, 39.957756], [-80.75086, 39.959803], [-80.749679, 39.956804], [-80.747358, 39.955525], [-80.747813, 39.952603], [-80.751107, 39.949433], [-80.751274, 39.947353], [-80.74902, 39.946815], [-80.747435, 39.948143], [-80.746521, 39.947911], [-80.750778, 39.943961], [-80.752145, 39.939923], [-80.75037, 39.933477], [-80.76208, 39.93446], [-80.764369, 39.948062]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 80385}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:watch": {"type": "string"}, "test:coverage": {"type": "string"}}, "required": ["test", "test:watch", "test:coverage"]}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"jest": {"type": "string"}}, "required": ["jest"]}}, "required": ["name", "version", "description", "main", "repository", "scripts", "files", "keywords", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "xid-js", "version" : "1.0.1", "description" : "unique id generator for Node.js", "main" : "index.js", "repository" : {"type" : "git", "url" : "git+https://github.com/xaviiic/xid-js.git"}, "scripts" : {"test" : "jest", "test:watch" : "npm test -- --watch", "test:coverage" : "npm test -- --coverage"}, "files" : ["index.js", "lib"], "keywords" : ["xid", "object-id", "mongodb-id"], "author" : "xaviiic", "license" : "MIT", "devDependencies" : {"jest" : "^17.0.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:watch": {"type": "string"}, "test:coverage": {"type": "string"}}, "required": ["test", "test:watch", "test:coverage"]}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"jest": {"type": "string"}}, "required": ["jest"]}}, "required": ["name", "version", "description", "main", "repository", "scripts", "files", "keywords", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_requester", "auto_approve"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"track" : "python", "exercise" : "chaitanas-colossal-coaster", "id" : "00f73b5457594c74be0e6276307f017f", "url" : "https://exercism.org/tracks/python/exercises/chaitanas-colossal-coaster", "handle" : "vietanhtran2710", "is_requester" : true, "auto_approve" : false} | json_instruct | {"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_requester", "auto_approve"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "readme": {"type": "string"}, "readmeFilename": {"type": "string"}, "_id": {"type": "string"}, "dist": {"type": "object", "properties": {"shasum": {"type": "string"}}, "required": ["shasum"]}, "_from": {"type": "string"}, "_resolved": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "readme", "readmeFilename", "_id", "dist", "_from", "_resolved"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "pax-php", "version" : "0.1.2", "description" : "PAX php plugin", "main" : "lib/index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "https://github.com/reekoheek/pax-php.git"}, "keywords" : ["pax", "plugin", "php"], "author" : {"name" : "Ganesha", "email" : "reekoheek@gmail.com"}, "license" : "MIT", "bugs" : {"url" : "https://github.com/reekoheek/pax-php/issues"}, "homepage" : "https://github.com/reekoheek/pax-php", "readme" : "pax-php\n=======\n\nPAX php plugin\n", "readmeFilename" : "README.md", "_id" : "pax-php@0.1.2", "dist" : {"shasum" : "c0a340cffcdd7d53056274df2b744cb2443047cd"}, "_from" : "pax-php@^0.1.0", "_resolved" : "https://registry.npmjs.org/pax-php/-/pax-php-0.1.2.tgz"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "readme": {"type": "string"}, "readmeFilename": {"type": "string"}, "_id": {"type": "string"}, "dist": {"type": "object", "properties": {"shasum": {"type": "string"}}, "required": ["shasum"]}, "_from": {"type": "string"}, "_resolved": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "readme", "readmeFilename", "_id", "dist", "_from", "_resolved"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"base_spec": {"type": "string"}, "reclaimable": {"type": "boolean"}, "damageable": {"type": "boolean"}, "max_health": {"type": "integer"}, "metal_value": {"type": "integer"}, "path_cost": {"type": "number"}, "placement_size": {"type": "array", "items": {"type": "integer"}}, "model": {"type": "object", "properties": {"filename": {"type": "string"}}, "required": ["filename"]}}, "required": ["base_spec", "reclaimable", "damageable", "max_health", "metal_value", "path_cost", "placement_size", "model"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"base_spec" : "/pa/terrain/metal/features/base_metal_feature.json", "reclaimable" : true, "damageable" : true, "max_health" : 10000, "metal_value" : 1000000000, "path_cost" : 500.0, "placement_size" : [50, 50], "model" : {"filename" : "/pa/terrain/generic/fbx/unit_cannon_wreckage.papa"}} | json_instruct | {"type": "object", "properties": {"base_spec": {"type": "string"}, "reclaimable": {"type": "boolean"}, "damageable": {"type": "boolean"}, "max_health": {"type": "integer"}, "metal_value": {"type": "integer"}, "path_cost": {"type": "number"}, "placement_size": {"type": "array", "items": {"type": "integer"}}, "model": {"type": "object", "properties": {"filename": {"type": "string"}}, "required": ["filename"]}}, "required": ["base_spec", "reclaimable", "damageable", "max_health", "metal_value", "path_cost", "placement_size", "model"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "mintable": {"type": "boolean"}, "ethereum_address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address", "mintable", "ethereum_address"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"symbol" : "bXIOT", "name" : "bXIOT Token (PoS)", "decimals" : 6, "address" : "0x8fe2526045e6658cd60c3ecbd92f6d33e73a1d1b", "mintable" : false, "ethereum_address" : "0x5c4ac68aac56ebe098d621cd8ce9f43270aaa355"} | json_instruct | {"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "mintable": {"type": "boolean"}, "ethereum_address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address", "mintable", "ethereum_address"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"" : {"model" : "chipped:block/white_terracotta_1"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "keywords": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "awssum": {"type": "string"}, "formidable": {"type": "string"}, "underscore": {"type": "string"}, "redis": {"type": "string"}, "hiredis": {"type": "string"}, "redis-url": {"type": "string"}, "pusher": {"type": "string"}, "xregexp": {"type": "string"}, "aws-sdk": {"type": "string"}}, "required": ["express", "awssum", "formidable", "underscore", "redis", "hiredis", "redis-url", "pusher", "xregexp", "aws-sdk"]}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}, "expect.js": {"type": "string"}, "zombie": {"type": "string"}, "supertest": {"type": "string"}, "sinon": {"type": "string"}}, "required": ["mocha", "expect.js", "zombie", "supertest", "sinon"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}, "main": {"type": "string"}}, "required": ["name", "description", "author", "keywords", "homepage", "repository", "version", "dependencies", "devDependencies", "engines", "main"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "cloud-uploader", "description" : "An upload server written in Node.js that uploads files to S3", "author" : "Vicente Mundim", "keywords" : "upload cloud file s3", "homepage" : "http://github.com/dtmtec/cloud-uploader", "repository" : {"type" : "git", "url" : "http://github.com/dtmtec/cloud-uploader.git"}, "version" : "0.1.0", "dependencies" : {"express" : "3.x", "awssum" : "0.10.x", "formidable" : "1.0.x", "underscore" : "1.3.x", "redis" : "0.8.x", "hiredis" : "0.1.x", "redis-url" : "0.1.x", "pusher" : "", "xregexp" : "", "aws-sdk" : ""}, "devDependencies" : {"mocha" : "", "expect.js" : "", "zombie" : "", "supertest" : "", "sinon" : ""}, "engines" : {"node" : "0.8.x", "npm" : "1.1.x"}, "main" : "app"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "keywords": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "awssum": {"type": "string"}, "formidable": {"type": "string"}, "underscore": {"type": "string"}, "redis": {"type": "string"}, "hiredis": {"type": "string"}, "redis-url": {"type": "string"}, "pusher": {"type": "string"}, "xregexp": {"type": "string"}, "aws-sdk": {"type": "string"}}, "required": ["express", "awssum", "formidable", "underscore", "redis", "hiredis", "redis-url", "pusher", "xregexp", "aws-sdk"]}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}, "expect.js": {"type": "string"}, "zombie": {"type": "string"}, "supertest": {"type": "string"}, "sinon": {"type": "string"}}, "required": ["mocha", "expect.js", "zombie", "supertest", "sinon"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}, "main": {"type": "string"}}, "required": ["name", "description", "author", "keywords", "homepage", "repository", "version", "dependencies", "devDependencies", "engines", "main"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"version": {"type": "string"}, "repo": {"type": "string"}, "ref": {"type": "string"}, "path": {"type": "string"}, "bundle": {"type": "string"}, "installed": {"type": "object", "properties": {"bootstrap/bootstrap.d.ts": {"type": "object", "properties": {"commit": {"type": "string"}}, "required": ["commit"]}, "jquery/jquery.d.ts": {"type": "object", "properties": {"commit": {"type": "string"}}, "required": ["commit"]}, "leaflet/leaflet.d.ts": {"type": "object", "properties": {"commit": {"type": "string"}}, "required": ["commit"]}, "photoswipe/photoswipe.d.ts": {"type": "object", "properties": {"commit": {"type": "string"}}, "required": ["commit"]}, "knockout/knockout.d.ts": {"type": "object", "properties": {"commit": {"type": "string"}}, "required": ["commit"]}, "knockout.validation/knockout.validation.d.ts": {"type": "object", "properties": {"commit": {"type": "string"}}, "required": ["commit"]}, "mapbox/mapbox.d.ts": {"type": "object", "properties": {"commit": {"type": "string"}}, "required": ["commit"]}, "leaflet-label/leaflet-label.d.ts": {"type": "object", "properties": {"commit": {"type": "string"}}, "required": ["commit"]}, "dropzone/dropzone.d.ts": {"type": "object", "properties": {"commit": {"type": "string"}}, "required": ["commit"]}}, "required": ["bootstrap/bootstrap.d.ts", "jquery/jquery.d.ts", "leaflet/leaflet.d.ts", "photoswipe/photoswipe.d.ts", "knockout/knockout.d.ts", "knockout.validation/knockout.validation.d.ts", "mapbox/mapbox.d.ts", "leaflet-label/leaflet-label.d.ts", "dropzone/dropzone.d.ts"]}}, "required": ["version", "repo", "ref", "path", "bundle", "installed"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "v4", "repo" : "borisyankov/DefinitelyTyped", "ref" : "master", "path" : "typings", "bundle" : "typings/tsd.d.ts", "installed" : {"bootstrap/bootstrap.d.ts" : {"commit" : "8d44da84eb10cdcd2f7ea133f289caef817cb2b9"}, "jquery/jquery.d.ts" : {"commit" : "8d44da84eb10cdcd2f7ea133f289caef817cb2b9"}, "leaflet/leaflet.d.ts" : {"commit" : "8d44da84eb10cdcd2f7ea133f289caef817cb2b9"}, "photoswipe/photoswipe.d.ts" : {"commit" : "8d44da84eb10cdcd2f7ea133f289caef817cb2b9"}, "knockout/knockout.d.ts" : {"commit" : "8d44da84eb10cdcd2f7ea133f289caef817cb2b9"}, "knockout.validation/knockout.validation.d.ts" : {"commit" : "8d44da84eb10cdcd2f7ea133f289caef817cb2b9"}, "mapbox/mapbox.d.ts" : {"commit" : "8d44da84eb10cdcd2f7ea133f289caef817cb2b9"}, "leaflet-label/leaflet-label.d.ts" : {"commit" : "8d44da84eb10cdcd2f7ea133f289caef817cb2b9"}, "dropzone/dropzone.d.ts" : {"commit" : "8d44da84eb10cdcd2f7ea133f289caef817cb2b9"}}} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "repo": {"type": "string"}, "ref": {"type": "string"}, "path": {"type": "string"}, "bundle": {"type": "string"}, "installed": {"type": "object", "properties": {"bootstrap/bootstrap.d.ts": {"type": "object", "properties": {"commit": {"type": "string"}}, "required": ["commit"]}, "jquery/jquery.d.ts": {"type": "object", "properties": {"commit": {"type": "string"}}, "required": ["commit"]}, "leaflet/leaflet.d.ts": {"type": "object", "properties": {"commit": {"type": "string"}}, "required": ["commit"]}, "photoswipe/photoswipe.d.ts": {"type": "object", "properties": {"commit": {"type": "string"}}, "required": ["commit"]}, "knockout/knockout.d.ts": {"type": "object", "properties": {"commit": {"type": "string"}}, "required": ["commit"]}, "knockout.validation/knockout.validation.d.ts": {"type": "object", "properties": {"commit": {"type": "string"}}, "required": ["commit"]}, "mapbox/mapbox.d.ts": {"type": "object", "properties": {"commit": {"type": "string"}}, "required": ["commit"]}, "leaflet-label/leaflet-label.d.ts": {"type": "object", "properties": {"commit": {"type": "string"}}, "required": ["commit"]}, "dropzone/dropzone.d.ts": {"type": "object", "properties": {"commit": {"type": "string"}}, "required": ["commit"]}}, "required": ["bootstrap/bootstrap.d.ts", "jquery/jquery.d.ts", "leaflet/leaflet.d.ts", "photoswipe/photoswipe.d.ts", "knockout/knockout.d.ts", "knockout.validation/knockout.validation.d.ts", "mapbox/mapbox.d.ts", "leaflet-label/leaflet-label.d.ts", "dropzone/dropzone.d.ts"]}}, "required": ["version", "repo", "ref", "path", "bundle", "installed"], "$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"}, "icon": {"type": "string"}, "category": {"type": "string"}, "pages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "text"]}}}, "required": ["name", "icon", "category", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "item.cyclic.boomerang.guide.title", "icon" : "cyclic:boomerang_carry", "category" : "cyclic:items", "pages" : [{"type" : "text", "text" : "item.cyclic.boomerang.guide"}, {"type" : "crafting", "recipe" : "cyclic:boomerang_carry", "text" : "item.cyclic.boomerang_carry.guide"}, {"type" : "crafting", "recipe" : "cyclic:boomerang_stun", "text" : "item.cyclic.boomerang_stun.guide"}, {"type" : "crafting", "recipe" : "cyclic:boomerang_damage", "text" : "item.cyclic.boomerang_damage.guide"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "category": {"type": "string"}, "pages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "text"]}}}, "required": ["name", "icon", "category", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"preview-faq.title": {"type": "string"}}, "required": ["preview-faq.title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"preview-faq.title" : "Domande Frequenti di Scratch 3.0"} | json_instruct | {"type": "object", "properties": {"preview-faq.title": {"type": "string"}}, "required": ["preview-faq.title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "build", "start"]}, "dependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@ubiquitoustech/rules_nextjs": {"type": "string"}, "next": {"type": "string"}, "next-transpile-modules": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["@babel/core", "@ubiquitoustech/rules_nextjs", "next", "next-transpile-modules", "react", "react-dom", "webpack"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "next": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["@babel/core", "next", "react", "react-dom", "webpack"]}}, "required": ["private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"private" : true, "scripts" : {"dev" : "next", "build" : "next build", "start" : "next start"}, "dependencies" : {"@babel/core" : "^7.16.0", "@ubiquitoustech/rules_nextjs" : "0.1.3", "next" : "^12.0.2-canary.10", "next-transpile-modules" : "^9.0.0", "react" : "^17.0.2", "react-dom" : "^17.0.2", "webpack" : "^5.61.0"}, "devDependencies" : {"@babel/core" : "^7.16.0", "next" : "^12.0.2-canary.10", "react" : "^17.0.2", "react-dom" : "^17.0.2", "webpack" : "^5.61.0"}} | json_instruct | {"type": "object", "properties": {"private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "build", "start"]}, "dependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@ubiquitoustech/rules_nextjs": {"type": "string"}, "next": {"type": "string"}, "next-transpile-modules": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["@babel/core", "@ubiquitoustech/rules_nextjs", "next", "next-transpile-modules", "react", "react-dom", "webpack"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "next": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["@babel/core", "next", "react", "react-dom", "webpack"]}}, "required": ["private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"citations" : [{"textCitation" : "[See taylpfval on Metamath](http://us.metamath.org/mpegif/taylpfval.html)"}], "names" : ["taylpfval"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_wph", "#T_wi", "#T_cS", "#T_wcel", "#T_cpr--1", "#T_cr", "#T_cpr--2", "#T_cc", "#T_cpr--3", "#T_wph", "#T_wi", "#T_cF", "#T_wf--1", "#T_cA", "#T_wf--2", "#T_cc", "#T_wph", "#T_wi", "#T_cA", "#T_wss", "#T_cS", "#T_wph", "#T_wi", "#T_cN", "#T_wcel", "#T_cn0", "#T_wph", "#T_wi", "#T_cB", "#T_wcel", "#T_cdm", "#T_cS", "#T_cdvn", "#T_cF", "#T_cfv", "#T_cN", "#T_cT", "#T_wceq", "#T_cN", "#T_cS", "#T_ctayl", "#T_cF", "#T_cB", "#T_wph", "#T_wi", "#T_cT", "#T_wceq", "#T_vx", "#T_cmpt--1", "#T_cc", "#T_cmpt--2", "#T_csu--1", "#T_vk", "#T_csu--2", "#T_cc0", "#T_cfz", "#T_cN", "#T_cS", "#T_cdvn", "#T_cF", "#T_cfv", "#T_vk", "#T_cfv", "#T_cB", "#T_cdiv", "#T_cfa", "#T_cfv", "#T_vk", "#T_cmul", "#T_vx", "#T_cmin", "#T_cB", "#T_cexp", "#T_vk", "#T_cB", "#T_vk", "#T_vx", "#T_cF", "#T_vk", "#T_vx", "#T_cN", "#T_vk", "#T_vx", "#T_cS", "#T_vk", "#T_vx", "#T_cT", "#T_vx", "#T_vk", "#T_wph", "#T_vx"], "metaLanguage" : "METAMATH", "remarks" : " Define the Taylor polynomial of a function. The constant ` Tayl ` is a function of five arguments: ` S ` is the base set with respect to evaluate the derivatives (generally ` RR ` or ` CC ` ), ` F ` is the function we are approximating, at point ` B ` , to order ` N ` . The result is a polynomial function of ` x ` . (Contributed by Mario Carneiro, 31-Dec-2016.) ", "statement" : "taylpfval.s $e |- ( ph -> S e. { RR , CC } ) $.\ntaylpfval.f $e |- ( ph -> F : A --> CC ) $.\ntaylpfval.a $e |- ( ph -> A C_ S ) $.\ntaylpfval.n $e |- ( ph -> N e. NN0 ) $.\ntaylpfval.b $e |- ( ph -> B e. dom ( ( S Dn F ) ` N ) ) $.\ntaylpfval.t $e |- T = ( N ( S Tayl F ) B ) $.\ntaylpfval $p |- ( ph -> T = ( x e. CC |-> sum_ k e. ( 0 ... N ) ( ( ( ( ( S Dn F ) ` k ) ` B ) / ( ! ` k ) ) x. ( ( x - B ) ^ k ) ) ) ) $.\n$d B k x $.\n$d F k x $.\n$d N k x $.\n$d S k x $.\n$d T x $.\n$d k ph x $."} | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "playbook", "definition" : "A book of dramatic compositions; a book of the play. Swift."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}}, "required": ["dev"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"fs-extra": {"type": "string"}, "koa": {"type": "string"}, "koa-body": {"type": "string"}, "koa-jsonp": {"type": "string"}, "koa-router": {"type": "string"}, "koa-static": {"type": "string"}, "koa2-cors": {"type": "string"}}, "required": ["fs-extra", "koa", "koa-body", "koa-jsonp", "koa-router", "koa-static", "koa2-cors"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "demo", "version" : "1.0.0", "description" : "", "main" : "serve.js", "scripts" : {"dev" : "node serve.js"}, "keywords" : [], "author" : "", "license" : "ISC", "dependencies" : {"fs-extra" : "^10.0.0", "koa" : "^2.13.1", "koa-body" : "^4.2.0", "koa-jsonp" : "^2.0.2", "koa-router" : "^10.0.0", "koa-static" : "^5.0.0", "koa2-cors" : "^2.0.6"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}}, "required": ["dev"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"fs-extra": {"type": "string"}, "koa": {"type": "string"}, "koa-body": {"type": "string"}, "koa-jsonp": {"type": "string"}, "koa-router": {"type": "string"}, "koa-static": {"type": "string"}, "koa2-cors": {"type": "string"}}, "required": ["fs-extra", "koa", "koa-body", "koa-jsonp", "koa-router", "koa-static", "koa2-cors"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["410782208201", "\u6c99\u7a91\u6751\u59d4\u4f1a", "220", "0"], ["410782208202", "\u6c34\u5be8\u7a91\u6751\u59d4\u4f1a", "220", "0"], ["410782208203", "\u5357\u7a91\u6751\u59d4\u4f1a", "220", "0"], ["410782208204", "\u5317\u6c99\u6c34\u6751\u59d4\u4f1a", "210", "0"], ["410782208205", "\u5357\u6c99\u6c34\u6751\u59d4\u4f1a", "210", "0"], ["410782208206", "\u4e2d\u814a\u6c5f\u6751\u59d4\u4f1a", "220", "0"], ["410782208207", "\u6c34\u78e8\u6751\u59d4\u4f1a", "220", "0"], ["410782208208", "\u5357\u576a\u6751\u59d4\u4f1a", "220", "0"], ["410782208209", "\u90ed\u4eae\u6751\u59d4\u4f1a", "220", "0"], ["410782208210", "\u4e95\u90ca\u6751\u59d4\u4f1a", "220", "0"], ["410782208211", "\u5cad\u897f\u6751\u59d4\u4f1a", "220", "0"], ["410782208212", "\u77f3\u95e8\u90ca\u6751\u59d4\u4f1a", "220", "0"], ["410782208213", "\u6da7\u9876\u6751\u59d4\u4f1a", "220", "0"], ["410782208214", "\u540e\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["410782208215", "\u65b0\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["410782208216", "\u767d\u5e99\u6751\u59d4\u4f1a", "220", "0"], ["410782208217", "\u5c0f\u4e95\u6751\u59d4\u4f1a", "220", "0"], ["410782208218", "\u91d1\u725b\u5bfa\u6751\u59d4\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"now": {"type": "integer"}, "date": {"type": "string"}}, "required": ["now", "date"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"now" : 1537422612363, "date" : "Thu Sep 20 2018 05:50:12 GMT+0000 (UTC)"} | json_instruct | {"type": "object", "properties": {"now": {"type": "integer"}, "date": {"type": "string"}}, "required": ["now", "date"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"private": {"type": "boolean"}, "sideEffects": {"type": "boolean"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}}, "required": ["private", "sideEffects", "main", "module", "types"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"private" : true, "sideEffects" : false, "main" : "./SettingsPhone.js", "module" : "./SettingsPhone.esm.js", "types" : "./SettingsPhone.d.ts"} | json_instruct | {"type": "object", "properties": {"private": {"type": "boolean"}, "sideEffects": {"type": "boolean"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}}, "required": ["private", "sideEffects", "main", "module", "types"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"slug": {"type": "string"}, "relevant-countries": {"type": "array", "items": {"type": "string"}}, "categories": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}, "email": {"type": "string"}, "web": {"type": "string"}, "sources": {"type": "array", "items": {"type": "string"}}, "needs-id-document": {"type": "boolean"}, "suggested-transport-medium": {"type": "string"}, "quality": {"type": "string"}}, "required": ["slug", "relevant-countries", "categories", "name", "address", "phone", "email", "web", "sources", "needs-id-document", "suggested-transport-medium", "quality"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"slug" : "vitalox", "relevant-countries" : ["de"], "categories" : ["ads"], "name" : "vitalox Informationssysteme GmbH", "address" : "Pfaffenweg 15\n53227 Bonn\nDeutschland", "phone" : "+49 228 286 950 57", "email" : "datenschutz@vitalox.de", "web" : "https://www.vitalox.de", "sources" : ["https://www.vitalox.de/impressum/", "https://github.com/datenanfragen/data/pull/871", "https://www.vitalox.de/datenschutz/"], "needs-id-document" : false, "suggested-transport-medium" : "email", "quality" : "verified"} | json_instruct | {"type": "object", "properties": {"slug": {"type": "string"}, "relevant-countries": {"type": "array", "items": {"type": "string"}}, "categories": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}, "email": {"type": "string"}, "web": {"type": "string"}, "sources": {"type": "array", "items": {"type": "string"}}, "needs-id-document": {"type": "boolean"}, "suggested-transport-medium": {"type": "string"}, "quality": {"type": "string"}}, "required": ["slug", "relevant-countries", "categories", "name", "address", "phone", "email", "web", "sources", "needs-id-document", "suggested-transport-medium", "quality"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"contest": {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["id", "title", "url"]}, "tasks": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "label": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["id", "label", "title", "url"]}}}, "required": ["contest", "tasks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contest" : {"id" : "abc039", "title" : "AtCoder Beginner Contest 039", "url" : "https://atcoder.jp/contests/abc039"}, "tasks" : [{"id" : "abc039_a", "label" : "A", "title" : "\u9ad8\u6a4b\u76f4\u4f53", "url" : "https://atcoder.jp/contests/abc039/tasks/abc039_a"}, {"id" : "abc039_b", "label" : "B", "title" : "\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u9ad8\u6a4b\u541b", "url" : "https://atcoder.jp/contests/abc039/tasks/abc039_b"}, {"id" : "abc039_c", "label" : "C", "title" : "\u30d4\u30a2\u30cb\u30b9\u30c8\u9ad8\u6a4b\u541b", "url" : "https://atcoder.jp/contests/abc039/tasks/abc039_c", "directory" : {"path" : "c", "testdir" : "test", "submit" : "main.py"}}, {"id" : "abc039_d", "label" : "D", "title" : "\u753b\u50cf\u51e6\u7406\u9ad8\u6a4b\u541b", "url" : "https://atcoder.jp/contests/abc039/tasks/abc039_d"}]} | json_instruct | {"type": "object", "properties": {"contest": {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["id", "title", "url"]}, "tasks": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "label": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["id", "label", "title", "url"]}}}, "required": ["contest", "tasks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "files": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "author", "homepage", "repository", "files", "engines", "keywords", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@lucets/message-hooks", "version" : "0.1.0", "description" : "Message hooks for @lucets/luce", "main" : "./dist/index.js", "author" : "Michiel van der Velde <michiel@michielvdvelde.nl>", "homepage" : "http://github.com/lucets/message-hooks", "repository" : {"type" : "git", "url" : "git+https://github.com/lucets/message-hooks.git"}, "files" : ["dist"], "engines" : {"node" : ">=10"}, "keywords" : ["hooks", "message", "luce", "ws"], "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "files": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "author", "homepage", "repository", "files", "engines", "keywords", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type": "integer"}, "children": {"type": "array", "items": {"type": "string"}}}, "required": ["play", "subPlay", "children"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "50e6de59-d576-4470-9b2d-c01274344b33", "playerTags" : ["f3ddfd87-73a2-4681-96fe-829476c97886"], "teamTags" : ["f02aeae2-5e6a-4098-9842-02d2273f25c7", "105bc3ff-1320-4e37-8ef0-8d595cb95dd0"], "gameTags" : ["2a3b812b-cb4d-4438-bc9a-c32743a5db18"], "metadata" : {"play" : 103, "subPlay" : -1, "children" : ["590a6f91-53ad-4b2e-8d9a-8419b10f06a0"]}, "created" : "2021-04-07T09:08:38.249Z", "season" : 14, "tournament" : -1, "type" : 67, "day" : 41, "phase" : 4, "category" : 2, "description" : "CONSUMERS ATTACK\nTHEODORE DUENDE", "nuts" : 4} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type": "integer"}, "children": {"type": "array", "items": {"type": "string"}}}, "required": ["play", "subPlay", "children"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "advancing surface", "definition" : "The first of two or more surfaces arranged in tandem; -- contr. with following surface, which is the rear surface."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$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": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : {"type" : "Feature", "properties" : {"name" : "\u6f62\u5ddd\u53bf", "id" : "411526"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[115.215318632813, 32.3403395820313], [115.232799101563, 32.3381642890625], [115.250079375, 32.3597463203125], [115.267345, 32.3576003242187], [115.282799101563, 32.3595217109375], [115.291793242188, 32.3482888007813], [115.311241484375, 32.3327150703125], [115.312965117188, 32.318843], [115.305318632813, 32.2573464179688], [115.327359648438, 32.2600881171876], [115.377345, 32.253843], [115.358121367188, 32.2126784492188], [115.365557890625, 32.1795143867188], [115.344742460938, 32.1651442695313], [115.36326296875, 32.0897585273438], [115.367345, 32.053843], [115.304029570313, 32.0422927070313], [115.281573515625, 31.9434401679687], [115.282979765625, 31.9259304023438], [115.2466028125, 31.8945876289063], [115.231651640625, 31.8772365546875], [115.21271609375, 31.89921409375], [115.160758085938, 31.9110182929688], [115.13271609375, 31.87847190625], [115.127345, 31.873843], [115.105889921875, 31.8798171210937], [115.08298953125, 31.9094875312501], [115.07170046875, 31.91819846875], [115.062857695313, 31.9296584296876], [115.033140898438, 31.9252663398438], [114.987735625, 31.9526540351563], [114.994483671875, 31.9983303046876], [114.98170046875, 32.00819846875], [114.97298953125, 32.0227614570313], [114.99298953125, 32.03819846875], [115.005611601563, 32.0690407539063], [114.95170046875, 32.07819846875], [114.899840117188, 32.1469045234375], [114.904483671875, 32.1783303046875], [114.897345, 32.183843], [114.908785429688, 32.198130109375], [114.95099734375, 32.2159157539063], [114.968785429688, 32.238130109375], [114.995904570313, 32.249555890625], [115.011793242188, 32.2693971992188], [115.033248320313, 32.2865773750001], [115.031656523438, 32.2993679023438], [115.073595, 32.3084401679688], [115.102896757813, 32.3582888007813], [115.111793242188, 32.3793971992188], [115.117345, 32.3838430000001], [115.122896757813, 32.3793971992188], [115.131793242188, 32.3682888007813], [115.182896757813, 32.3593971992188], [115.215318632813, 32.3403395820313]]]]}}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"meta": {"type": "object", "properties": {"code": {"type": "integer"}, "errorType": {"type": "string"}, "errorDetail": {"type": "string"}}, "required": ["code", "errorType", "errorDetail"]}, "response": {"type": "object", "properties": {}, "required": []}}, "required": ["meta", "response"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"meta" : {"code" : 429, "errorType" : "quota_exceeded", "errorDetail" : "Quota exceeded"}, "response" : {}} | json_instruct | {"type": "object", "properties": {"meta": {"type": "object", "properties": {"code": {"type": "integer"}, "errorType": {"type": "string"}, "errorDetail": {"type": "string"}}, "required": ["code", "errorType", "errorDetail"]}, "response": {"type": "object", "properties": {}, "required": []}}, "required": ["meta", "response"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"share_network": {"type": "object", "properties": {"name": {"type": "string"}, "segmentation_id": {"type": "null"}, "created_at": {"type": "string"}, "neutron_subnet_id": {"type": "string"}, "updated_at": {"type": "null"}, "id": {"type": "string"}, "neutron_net_id": {"type": "string"}, "ip_version": {"type": "null"}, "cidr": {"type": "null"}, "project_id": {"type": "string"}, "network_type": {"type": "null"}, "description": {"type": "string"}}, "required": ["name", "segmentation_id", "created_at", "neutron_subnet_id", "updated_at", "id", "neutron_net_id", "ip_version", "cidr", "project_id", "network_type", "description"]}}, "required": ["share_network"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"share_network" : {"name" : "net_my1", "segmentation_id" : null, "created_at" : "2015-09-04T14:56:45.000000", "neutron_subnet_id" : "53482b62-2c84-4a53-b6ab-30d9d9800d06", "updated_at" : null, "id" : "7f950b52-6141-4a08-bbb5-bb7ffa3ea5fd", "neutron_net_id" : "998b42ee-2cee-4d36-8b95-67b5ca1f2109", "ip_version" : null, "cidr" : null, "project_id" : "16e1ab15c35a457e9c2b2aa189f544e1", "network_type" : null, "description" : "descr"}} | json_instruct | {"type": "object", "properties": {"share_network": {"type": "object", "properties": {"name": {"type": "string"}, "segmentation_id": {"type": "null"}, "created_at": {"type": "string"}, "neutron_subnet_id": {"type": "string"}, "updated_at": {"type": "null"}, "id": {"type": "string"}, "neutron_net_id": {"type": "string"}, "ip_version": {"type": "null"}, "cidr": {"type": "null"}, "project_id": {"type": "string"}, "network_type": {"type": "null"}, "description": {"type": "string"}}, "required": ["name", "segmentation_id", "created_at", "neutron_subnet_id", "updated_at", "id", "neutron_net_id", "ip_version", "cidr", "project_id", "network_type", "description"]}}, "required": ["share_network"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"app": {"type": "string"}}, "required": ["app"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"app" : "npx ts-node bin/repository-dispatcher.ts"} | json_instruct | {"type": "object", "properties": {"app": {"type": "string"}}, "required": ["app"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.8.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.8.3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.8.5": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.8.1", "0.8.3", "0.8.5"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"latest_version" : ["0.8.5"], "meta" : {"description" : "Driver layer for communicating with Medtronic pumps over a variety of radios", "homepage" : "https://github.com/oskarpearson/mmeowlink", "license" : "GPL"}, "versions" : {"0.8.1" : {"sha256" : "fd4316c787c0175794ed9df45c0ccfe08ad38a7db2083aa05a50a2dd62ad3f09", "url" : "https://files.pythonhosted.org/packages/1f/9b/dfe79b0b47021915e0f62075a41e0f8a0ffe9fbc94b8ec327873d75394ba/mmeowlink-0.8.1.tar.gz"}, "0.8.3" : {"sha256" : "84b9337fc015b3d60c748849bbefac02e98c3e843e2d584d8b411352d9a557df", "url" : "https://files.pythonhosted.org/packages/18/00/b39d2006f37302ba7df308d5f17c13e4a8c451012a92db67f2a6a1d513c9/mmeowlink-0.8.3.tar.gz"}, "0.8.5" : {"sha256" : "22531cf1609cf3c41d460507f689f9248a68448a8ff30073bbdf8be0e2f05745", "url" : "https://files.pythonhosted.org/packages/3d/0c/93911d2342e295970f4436410b96de4cce80b1ef8be6fb93072279109d80/mmeowlink-0.8.5.tar.gz"}}} | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.8.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.8.3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.8.5": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.8.1", "0.8.3", "0.8.5"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"location": {"type": "string"}, "project": {"type": "string"}, "sample_alias": {"type": "string"}, "version": {"type": "integer"}, "document_status": {"type": "string"}, "cram_md5": {"type": "string"}, "cram_path": {"type": "string"}, "crai_path": {"type": "string"}, "workspace_name": {"type": "string"}}, "required": ["location", "project", "sample_alias", "version", "document_status", "cram_md5", "cram_path", "crai_path", "workspace_name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"location" : "GCP", "project" : "G94982", "sample_alias" : "NA12891", "version" : 9, "document_status" : "Normal", "cram_md5" : "d2be29ddf5c22857adbd51bee153383a", "cram_path" : "gs://broad-gotc-dev-storage/pipeline/G94982/NA12891/v9/NA12891.cram", "crai_path" : "gs://broad-gotc-dev-storage/pipeline/G94982/NA12891/v9/NA12891.cram.crai", "workspace_name" : "testWorkspace"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "string"}, "project": {"type": "string"}, "sample_alias": {"type": "string"}, "version": {"type": "integer"}, "document_status": {"type": "string"}, "cram_md5": {"type": "string"}, "cram_path": {"type": "string"}, "crai_path": {"type": "string"}, "workspace_name": {"type": "string"}}, "required": ["location", "project", "sample_alias", "version", "document_status", "cram_md5", "cram_path", "crai_path", "workspace_name"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["(", "The", "ceiling", "'s", "falling", "in", ",", "every", "time", "you", "do", "n't", "know", "where", "you", "'ve", "been", ")"], ["(", "Our", "love", ",", "seventeen", "to", "lifetime", ")"], ["(", "The", "seasons", "change", "when", "we", "all", "stay", "the", "same", ")"], ["(", "The", "pain", "I", "felt", "back", "then", "wo", "n't", "ever", "go", "away", ")"], ["(", "Echoes", "call", "me", "back", "to", "the", "feeling", "again", ")"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"translations": {"type": "object", "properties": {"en": {"type": "object", "properties": {"sc1": {"type": "string"}, "sc2": {"type": "string"}, "sc3": {"type": "string"}, "sc4": {"type": "string"}, "sc5": {"type": "string"}, "sc6": {"type": "string"}, "sc7": {"type": "string"}, "sc8": {"type": "string"}, "sc9": {"type": "string"}, "sc10": {"type": "string"}, "sc11": {"type": "string"}, "sc12": {"type": "string"}, "sc13": {"type": "string"}, "sc14": {"type": "string"}}, "required": ["sc1", "sc2", "sc3", "sc4", "sc5", "sc6", "sc7", "sc8", "sc9", "sc10", "sc11", "sc12", "sc13", "sc14"]}}, "required": ["en"]}}, "required": ["translations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"translations" : {"en" : {"sc1" : "iteration2FlyCON slide 1", "sc2" : "iteration2FlyCON slide 2", "sc3" : "iteration2FlyCON slide 3", "sc4" : "iteration2FlyCON slide 4", "sc5" : "iteration2FlyCON slide 5", "sc6" : "iteration2FlyCON slide 6", "sc7" : "iteration2FlyCON slide 7", "sc8" : "iteration2FlyCON slide 8", "sc9" : "iteration2FlyCON slide 9", "sc10" : "iteration2FlyCON slide 10", "sc11" : "iteration2FlyCON slide 11", "sc12" : "iteration2FlyCON slide 12", "sc13" : "iteration2FlyCON slide 13", "sc14" : "iteration2FlyCON slide 14"}}} | json_instruct | {"type": "object", "properties": {"translations": {"type": "object", "properties": {"en": {"type": "object", "properties": {"sc1": {"type": "string"}, "sc2": {"type": "string"}, "sc3": {"type": "string"}, "sc4": {"type": "string"}, "sc5": {"type": "string"}, "sc6": {"type": "string"}, "sc7": {"type": "string"}, "sc8": {"type": "string"}, "sc9": {"type": "string"}, "sc10": {"type": "string"}, "sc11": {"type": "string"}, "sc12": {"type": "string"}, "sc13": {"type": "string"}, "sc14": {"type": "string"}}, "required": ["sc1", "sc2", "sc3", "sc4", "sc5", "sc6", "sc7", "sc8", "sc9", "sc10", "sc11", "sc12", "sc13", "sc14"]}}, "required": ["en"]}}, "required": ["translations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "seoDescription": {"type": "string"}, "content": {"type": "string"}}, "required": ["title", "seoDescription", "content"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "About", "seoDescription" : "About us", "content" : "<h1>About Us !</h1>\n<h2 style=\"text-align: center;\">Welcome To <span id=\"W_Name1\">Entertainment | the_fhtamim</span></h2>\n<p><span id=\"W_Name2\">Entertainment | the_fhtamim</span> is a Professional <span id=\"W_Type1\">Entertainment</span> Platform. Here we will provide you only interesting content, which you will like very much. We're dedicated to providing you the best of <span id=\"W_Type2\">Entertainment</span>, with a focus on dependability and <span id=\"W_Spec\">News and Updates</span>. We're working to turn our passion for <span id=\"W_Type3\">Entertainment</span> into a booming <a href=\"https://www.blogearns.com\" rel=\"do-follow\" style=\"color:inherit; text-decoration: none;\">online website</a>. We hope you enjoy our <span id=\"W_Type4\">Entertainment</span> as much as we enjoy offering them to you.</p>\n\n<p>I will keep posting more important posts on my Website for all of you. Please give your support and love.</p>\n<p style=\"font-weight: bold; text-align: center;\">Thanks For Visiting Our Site<br><br>\n<span style=\"color: blue; font-size: 16px; font-weight: bold; text-align: center;\">Have a nice day !</span></p>"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "seoDescription": {"type": "string"}, "content": {"type": "string"}}, "required": ["title", "seoDescription", "content"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"time": {"type": "number"}, "best_model": {"type": "string"}, "validation_metric": {"type": "number"}, "test_metric": {"type": "number"}}, "required": ["time", "best_model", "validation_metric", "test_metric"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"time" : 33.016, "best_model" : "SE", "validation_metric" : 33.4998, "test_metric" : 171.53} | json_instruct | {"type": "object", "properties": {"time": {"type": "number"}, "best_model": {"type": "string"}, "validation_metric": {"type": "number"}, "test_metric": {"type": "number"}}, "required": ["time", "best_model", "validation_metric", "test_metric"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"blurb": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "contributors": {"type": "array", "items": {"type": "string"}}, "files": {"type": "object", "properties": {"solution": {"type": "array", "items": {"type": "string"}}, "test": {"type": "array", "items": {"type": "string"}}, "example": {"type": "array", "items": {"type": "string"}}}, "required": ["solution", "test", "example"]}, "source": {"type": "string"}, "source_url": {"type": "string"}}, "required": ["blurb", "authors", "contributors", "files", "source", "source_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"blurb" : "Given a diagram, determine which plants each child in the kindergarten class is responsible for.", "authors" : ["kytrinyx"], "contributors" : ["etrepum", "iHiD", "lpalma", "navossoc", "petertseng", "ppartarr", "rbasso", "rpottsoh", "sshine", "tejasbubane"], "files" : {"solution" : ["src/Garden.hs"], "test" : ["test/Tests.hs"], "example" : [".meta/examples/success-standard/src/Garden.hs"]}, "source" : "Random musings during airplane trip.", "source_url" : "http://jumpstartlab.com"} | json_instruct | {"type": "object", "properties": {"blurb": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "contributors": {"type": "array", "items": {"type": "string"}}, "files": {"type": "object", "properties": {"solution": {"type": "array", "items": {"type": "string"}}, "test": {"type": "array", "items": {"type": "string"}}, "example": {"type": "array", "items": {"type": "string"}}}, "required": ["solution", "test", "example"]}, "source": {"type": "string"}, "source_url": {"type": "string"}}, "required": ["blurb", "authors", "contributors", "files", "source", "source_url"], "$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"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "homepage"]}}, "require": {"type": "object", "properties": {"composer/installers": {"type": "string"}}, "required": ["composer/installers"]}}, "required": ["name", "description", "type", "authors", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "surprisehighway/commercecptweaks", "description" : "Tweaks to the order table column display.", "type" : "craft-plugin", "authors" : [{"name" : "Surprise Highway", "homepage" : "http://surprisehighway.com"}], "require" : {"composer/installers" : "~1.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "homepage"]}}, "require": {"type": "object", "properties": {"composer/installers": {"type": "string"}}, "required": ["composer/installers"]}}, "required": ["name", "description", "type", "authors", "require"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "name": {"type": "string"}, "status": {"type": "string"}, "description": {"type": "string"}, "source": {"type": "string"}, "source_type": {"type": "string"}, "arch": {"type": "string"}, "created_at": {"type": "string"}, "owner": {"type": "string"}, "ancestor": {"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "name": {"type": "string"}, "status": {"type": "string"}, "description": {"type": "string"}, "source": {"type": "string"}, "source_type": {"type": "string"}, "arch": {"type": "string"}, "created_at": {"type": "string"}, "owner": {"type": "string"}}, "required": ["id", "url", "name", "status", "description", "source", "source_type", "arch", "created_at", "owner"]}}, "required": ["id", "url", "name", "status", "description", "source", "source_type", "arch", "created_at", "owner", "ancestor"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "img-9vxqi", "url" : "images/(image_id)", "name" : "Brightbox Lucid 32", "status" : "available", "description" : "Jeremy's debian ec2 image", "source" : "jeremy_debian-32_ec2", "source_type" : "upload", "arch" : "32-bit", "created_at" : "", "owner" : "acc-bright", "ancestor" : {"id" : "img-9vxqi", "url" : "images/(image_id)", "name" : "Brightbox Lucid 32", "status" : "available", "description" : "Jeremy's debian ec2 image", "source" : "jeremy_debian-32_ec2", "source_type" : "upload", "arch" : "32-bit", "created_at" : "", "owner" : "acc-bright"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "name": {"type": "string"}, "status": {"type": "string"}, "description": {"type": "string"}, "source": {"type": "string"}, "source_type": {"type": "string"}, "arch": {"type": "string"}, "created_at": {"type": "string"}, "owner": {"type": "string"}, "ancestor": {"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "name": {"type": "string"}, "status": {"type": "string"}, "description": {"type": "string"}, "source": {"type": "string"}, "source_type": {"type": "string"}, "arch": {"type": "string"}, "created_at": {"type": "string"}, "owner": {"type": "string"}}, "required": ["id", "url", "name", "status", "description", "source", "source_type", "arch", "created_at", "owner"]}}, "required": ["id", "url", "name", "status", "description", "source", "source_type", "arch", "created_at", "owner", "ancestor"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "nouveau:block/bloc10"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"assessment": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "integer"}}, "required": ["name", "weight"]}}}, "required": ["assessment"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"assessment" : [{"name" : "Case-Based Language Sample Analysis Task", "weight" : 10}, {"name" : "Paediatric language assessment - AV recording", "weight" : 15}, {"name" : "Examination (modules 1-2)", "weight" : 35}, {"name" : "Examination (modules 3-4 & case integration)", "weight" : 40}]} | json_instruct | {"type": "object", "properties": {"assessment": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "integer"}}, "required": ["name", "weight"]}}}, "required": ["assessment"], "$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"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"xubojoy": {"type": "string"}}, "required": ["xubojoy"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "platforms", "source", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "JOYGCDTimer", "version" : "0.0.1", "summary" : "JOYGCDTimer", "description" : "\u4e00\u6bb5\u5173\u4e8e\u7528GCD\u7f16\u5199\u7684\u5012\u8ba1\u65f6", "homepage" : "https://github.com/xubojoy/JOYGCDTimer", "license" : "Apache License, Version 2.0", "authors" : {"xubojoy" : "xubojoy1112@163.com"}, "platforms" : {"ios" : "8.0"}, "source" : {"git" : "https://github.com/xubojoy/JOYGCDTimer.git", "tag" : "0.0.1"}, "source_files" : ["JOYGCDTimer", "JOYGCDTimer/JOYGCDTimer/JOYGCDTimer/**/*.{h,m}"]} | 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": {"xubojoy": {"type": "string"}}, "required": ["xubojoy"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "platforms", "source", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "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": {"ref:gss": {"type": "string"}, "website": {"type": "string"}, "ons_code": {"type": "string"}, "short_name": {"type": "string"}, "designation": {"type": "string"}, "council_name": {"type": "string"}}, "required": ["ref:gss", "website", "ons_code", "short_name", "designation", "council_name"]}}, "required": ["localname", "official_name", "alltags"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}, "population": {"type": "integer"}, "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", "population", "wikidata_id", "wikipedia_id"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[-0.157, 51.322], [-0.148, 51.339], [-0.117, 51.346], [-0.134, 51.391], [-0.128, 51.412], [-0.078, 51.42], [-0.069, 51.404], [-0.005, 51.353], [0.002, 51.329], [-0.038, 51.339], [-0.085, 51.316], [-0.124, 51.287], [-0.155, 51.301], [-0.157, 51.322]]]}, "properties" : {"name" : "London Borough of Croydon", "iso2" : "GB-CRY", "admin_level" : 8, "osm_id" : 51907, "countrylevel_id" : "iso2:GB-CRY", "osm_data" : {"localname" : "London Borough of Croydon", "official_name" : "", "alltags" : {"ref:gss" : "E09000008", "website" : "https://www.croydon.gov.uk/", "ons_code" : "00AH", "short_name" : "Croydon", "designation" : "outer_london_borough", "council_name" : "Croydon Council"}}, "center_lat" : 51.36, "center_lon" : -0.09, "area_m2" : 86441221, "timezone" : "Europe/London", "population" : 385346, "wikidata_id" : "Q26888", "wikipedia_id" : "en:London Borough of Croydon"}} | 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": {"ref:gss": {"type": "string"}, "website": {"type": "string"}, "ons_code": {"type": "string"}, "short_name": {"type": "string"}, "designation": {"type": "string"}, "council_name": {"type": "string"}}, "required": ["ref:gss", "website", "ons_code", "short_name", "designation", "council_name"]}}, "required": ["localname", "official_name", "alltags"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}, "population": {"type": "integer"}, "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", "population", "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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "@babel/plugin-proposal-class-properties": {"type": "string"}, "@babel/plugin-proposal-export-default-from": {"type": "string"}, "@babel/plugin-transform-modules-commonjs": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/preset-react": {"type": "string"}, "@babel/preset-typescript": {"type": "string"}, "@semcore/babel-plugin-shadow": {"type": "string"}, "babel-plugin-preval": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-export-default-from", "@babel/plugin-transform-modules-commonjs", "@babel/preset-env", "@babel/preset-react", "@babel/preset-typescript", "@semcore/babel-plugin-shadow", "babel-plugin-preval"]}}, "required": ["name", "version", "description", "main", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "babel-preset-ui", "version" : "1.0.0", "description" : "The babel preset for all packages of the mono-repo.", "main" : "./.babelrc.js", "author" : "", "license" : "ISC", "dependencies" : {"@babel/cli" : "^7.7.0", "@babel/core" : "^7.7.2", "@babel/plugin-proposal-class-properties" : "^7.7.0", "@babel/plugin-proposal-export-default-from" : "^7.5.2", "@babel/plugin-transform-modules-commonjs" : "^7.7.0", "@babel/preset-env" : "^7.7.1", "@babel/preset-react" : "^7.7.0", "@babel/preset-typescript" : "^7.7.2", "@semcore/babel-plugin-shadow" : "*", "babel-plugin-preval" : "^3.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "@babel/plugin-proposal-class-properties": {"type": "string"}, "@babel/plugin-proposal-export-default-from": {"type": "string"}, "@babel/plugin-transform-modules-commonjs": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/preset-react": {"type": "string"}, "@babel/preset-typescript": {"type": "string"}, "@semcore/babel-plugin-shadow": {"type": "string"}, "babel-plugin-preval": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-export-default-from", "@babel/plugin-transform-modules-commonjs", "@babel/preset-env", "@babel/preset-react", "@babel/preset-typescript", "@semcore/babel-plugin-shadow", "babel-plugin-preval"]}}, "required": ["name", "version", "description", "main", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"alias": {"type": "string"}, "category": {"type": "string"}, "copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "null"}, "id": {"type": "integer"}, "language": {"type": "string"}, "quality_notes": {"type": "string"}, "recorded": {"type": "string"}, "slug": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "summary": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["alias", "category", "copyright_text", "description", "duration", "id", "language", "quality_notes", "recorded", "slug", "speakers", "summary", "tags", "thumbnail_url", "title", "videos"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"alias" : "video/271/pycon-2010--how-python--turbogears--and-mongodb-a", "category" : "PyCon US 2010", "copyright_text" : "Creative Commons Attribution-NonCommercial-ShareAlike 3.0", "description" : "How Python, TurboGears, and MongoDB are transforming SourceForge.net\n\nPresented by Rick Copeland\n\nIn mid-2009, SourceForge embarked on a quest to modernize our websites,\nstarting with the download (consumer) flow on SourceForge.net. A small\nteam was tasked the rewrite, converting a site originally implemented in\nPHP with Python. Using a customized TurboGears as a core component, the\nrewrite was completed and the new site deployed in under 2 months. This\ntalk tells the story of that rewrite and explains our new technology\nstack, which includes TurboGears, MongoDB, and Jinja templates.\n", "duration" : null, "id" : 271, "language" : "eng", "quality_notes" : "", "recorded" : "2010-02-19", "slug" : "pycon-2010--how-python--turbogears--and-mongodb-a", "speakers" : ["Rick Copeland"], "summary" : "", "tags" : ["jinja", "mongodb", "pycon", "pycon2010", "turbogears"], "thumbnail_url" : "https://archive.org/services/img/pyvideo_271___how-python-turbogears-and-mongodb-are-transforming-sourceforge-net-47", "title" : "How Python, TurboGears, and MongoDB are Transforming SourceForge.net (#47)", "videos" : [{"type" : "archive.org", "url" : "https://archive.org/details/pyvideo_271___how-python-turbogears-and-mongodb-are-transforming-sourceforge-net-47"}, {"length" : null, "type" : "mp4", "url" : "http://05d2db1380b6504cc981-8cbed8cf7e3a131cd8f1c3e383d10041.r93.cf2.rackcdn.com/pycon-us-2010/271_how-python-turbogears-and-mongodb-are-transforming-sourceforge-net-47.m4v"}, {"length" : 126931888, "type" : "ogv", "url" : "http://05d2db1380b6504cc981-8cbed8cf7e3a131cd8f1c3e383d10041.r93.cf2.rackcdn.com/pycon-us-2010/271_how-python-turbogears-and-mongodb-are-transforming-sourceforge-net-47.ogv"}]} | json_instruct | {"type": "object", "properties": {"alias": {"type": "string"}, "category": {"type": "string"}, "copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "null"}, "id": {"type": "integer"}, "language": {"type": "string"}, "quality_notes": {"type": "string"}, "recorded": {"type": "string"}, "slug": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "summary": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["alias", "category", "copyright_text", "description", "duration", "id", "language", "quality_notes", "recorded", "slug", "speakers", "summary", "tags", "thumbnail_url", "title", "videos"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"Warframe": {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Link": {"type": "string"}}, "required": ["Name", "Link"]}}, "Divinity Original Sin 2": {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Link": {"type": "string"}}, "required": ["Name", "Link"]}}}, "required": ["Warframe", "Divinity Original Sin 2"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Warframe" : [{"Name" : "Warframe Wiki", "Link" : "https://warframe.wikia.com/wiki/WARFRAME_Wiki"}, {"Name" : "Warframe (PC) Trackers", "Link" : "https://deathsnacks.com/wf/"}, {"Name" : "Warframe Cetus Cycle", "Link" : "https://hub.warframestat.us/"}, {"Name" : "Warframe Fishing", "Link" : "http://wf.poedb.tw/us/item.php?c=Fish"}, {"Name" : "Warframe Reddit", "Link" : "https://reddit.com/r/Warframe/"}], "Divinity Original Sin 2" : [{"Name" : "DOS2 Reddit", "Link" : "https://www.reddit.com/r/DivinityOriginalSin/"}]} | json_instruct | {"type": "object", "properties": {"Warframe": {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Link": {"type": "string"}}, "required": ["Name", "Link"]}}, "Divinity Original Sin 2": {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Link": {"type": "string"}}, "required": ["Name", "Link"]}}}, "required": ["Warframe", "Divinity Original Sin 2"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this 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"]}, "additional": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}}, "required": ["main", "additional"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "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" : 53720, "info" : {"name" : "cute birds dash icon", "description" : "cute birds *-*", "additionalInfo" : "Enjoy!", "format" : "uso", "category" : "tumblr", "createdAt" : "2011-09-17T16:08:33.000Z", "updatedAt" : "2011-09-17T16:08:33.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 116662, "name" : "caiopb"}}, "stats" : {"installs" : {"total" : 312, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "53720_after.png", "archived" : false}, "additional" : [{"name" : "53720_additional_1056.png", "archived" : false}]}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document domain(tumblr.com) {\n/* Code repaired by admin. See http://forum.userstyles.org/discussion/37591/attempting-to-mass-fix-broken-tumblr-dash-icon-styles */\n.new_post {\n\tbackground: #ffffff url('http://29.media.tumblr.com/tumblr_lbpymsOAHX1qarjfpo1_500.gif') center center no-repeat !important;\n}\n.new_post_label_icon {\n\tbackground-image: none !important;\n}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\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"]}, "additional": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}}, "required": ["main", "additional"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"keypoints": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["keypoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"keypoints" : [[[152.0120086669922, 68.12008666992188, 0.8869044780731201], [160.9959716796875, 95.01163482666016, 0.8732913136482239], [139.80616760253906, 94.19007873535156, 0.8624776601791382], [121.08718872070312, 122.7186279296875, 0.8590744733810425], [98.26811218261719, 128.40773010253906, 0.8130340576171875], [184.60902404785156, 95.84954833984375, 0.7387194037437439], [213.1395721435547, 124.33927917480469, 0.8145014643669128], [200.93881225585938, 95.82090759277344, 0.8237662315368652], [147.15997314453125, 153.70217895507812, 0.7824934124946594], [133.27560424804688, 152.8468475341797, 0.7484790086746216], [108.84394073486328, 173.2500457763672, 0.8070069551467896], [118.6236572265625, 239.20701599121094, 0.7602065205574036], [161.0290985107422, 156.12255859375, 0.7065316438674927], [168.3509979248047, 178.91677856445312, 0.7976107001304626], [151.20938110351562, 244.1282196044922, 0.749048113822937], [147.17333984375, 62.42957305908203, 0.9364408254623413], [157.72055053710938, 62.4171028137207, 0.8798834681510925], [0.0, 0.0, 0.0], [167.5435028076172, 67.27879333496094, 0.8353759050369263], [154.49098205566406, 267.7271728515625, 0.556289792060852], [160.1684112548828, 264.4501647949219, 0.5233249068260193], [144.68746948242188, 247.36767578125, 0.5716423988342285], [101.54119873046875, 260.4071044921875, 0.7200796008110046], [99.8967056274414, 257.155029296875, 0.6375687718391418], [122.73294830322266, 244.09263610839844, 0.7033534049987793]]]} | json_instruct | {"type": "object", "properties": {"keypoints": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["keypoints"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "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" : 1293723811, "type" : "Feature", "properties" : {"src:alt_label" : "geonames", "src:geom" : "geonames", "wof:geomhash" : "fccbcb414843689421e2f10d3ea3b6bd", "wof:id" : 1293723811, "wof:repo" : "whosonfirst-data-admin-nz"}, "bbox" : [175.86227, -39.58016, 175.86227, -39.58016], "geometry" : {"coordinates" : [175.86227, -39.58016], "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": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "YOLO9000: Better, Faster, Stronger.", "fields" : ["viola jones object detection framework", "coco", "feature extraction", "object detection", "resnet"], "abstract" : "We introduce YOLO9000, a state-of-the-art, real-time object detection system that can detect over 9000 object categories. First we propose various improvements to the YOLO detection method, both novel and drawn from prior work. The improved model, YOLOv2, is state-of-the-art on standard detection tasks like PASCAL VOC and COCO. Using a novel, multi-scale training method the same YOLOv2 model can run at varying sizes, offering an easy tradeoff between speed and accuracy. At 67 FPS, YOLOv2 gets 76.8 mAP on VOC 2007. At 40 FPS, YOLOv2 gets 78.6 mAP, outperforming state-of-the-art methods like Faster RCNN with ResNet and SSD while still running significantly faster. Finally we propose a method to jointly train on object detection and classification. Using this method we train YOLO9000 simultaneously on the COCO detection dataset and the ImageNet classification dataset. Our joint training allows YOLO9000 to predict detections for object classes that dont have labelled detection data. We validate our approach on the ImageNet detection task. YOLO9000 gets 19.7 mAP on the ImageNet detection validation set despite only having detection data for 44 of the 200 classes. On the 156 classes not in COCO, YOLO9000 gets 16.0 mAP. YOLO9000 predicts detections for more than 9000 different object categories, all in real-time.", "citation" : "Citations (1,030)", "year" : "2017", "departments" : ["University of Washington", "University of Washington"], "conf" : "cvpr", "authors" : ["Joseph Redmon.....http://dblp.org/pers/hd/r/Redmon:Joseph", "Ali Farhadi.....http://dblp.org/pers/hd/f/Farhadi:Ali"], "pages" : 9} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"fucked_stocks": {"type": "array", "items": {"type": "string"}}}, "required": ["fucked_stocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"fucked_stocks" : ["CAN", "TSNP", "SABR", "PLTR", "RIOT", "BIDU", "MVIS", "TIGR", "PLUG", "FUTU", "FCX", "FCEL", "AA", "BEKE", "GME", "NOK", "TLRY", "COTY", "HL", "CCL", "TECK", "UAL", "BLDP", "BCRX", "LAC", "CLNE", "CLH"]} | json_instruct | {"type": "object", "properties": {"fucked_stocks": {"type": "array", "items": {"type": "string"}}}, "required": ["fucked_stocks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@aws-sdk/client-dynamodb": {"type": "string"}, "@aws-sdk/client-secrets-manager": {"type": "string"}, "@aws-sdk/lib-dynamodb": {"type": "string"}, "node-fetch": {"type": "string"}}, "required": ["@aws-sdk/client-dynamodb", "@aws-sdk/client-secrets-manager", "@aws-sdk/lib-dynamodb", "node-fetch"]}}, "required": ["type", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "module", "dependencies" : {"@aws-sdk/client-dynamodb" : "^3.53.0", "@aws-sdk/client-secrets-manager" : "^3.53.0", "@aws-sdk/lib-dynamodb" : "^3.53.0", "node-fetch" : "^3.2.0"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@aws-sdk/client-dynamodb": {"type": "string"}, "@aws-sdk/client-secrets-manager": {"type": "string"}, "@aws-sdk/lib-dynamodb": {"type": "string"}, "node-fetch": {"type": "string"}}, "required": ["@aws-sdk/client-dynamodb", "@aws-sdk/client-secrets-manager", "@aws-sdk/lib-dynamodb", "node-fetch"]}}, "required": ["type", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "allomerous", "definition" : "Characterized by allomerism."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"c_ref": {"type": "string"}, "totals": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}, "daily": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}}, "required": ["c_ref", "totals", "daily"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"c_ref" : "Kent", "totals" : {"Cases" : 3481, "Deaths" : 120}, "daily" : {"Cases" : 19, "Deaths" : 0}}, {"c_ref" : "New Castle", "totals" : {"Cases" : 12895, "Deaths" : 340}, "daily" : {"Cases" : 81, "Deaths" : 0}}, {"c_ref" : "Sussex", "totals" : {"Cases" : 7925, "Deaths" : 228}, "daily" : {"Cases" : 43, "Deaths" : 2}}, {"c_ref" : "Unassigned", "totals" : {"Cases" : 91, "Deaths" : 0}, "daily" : {"Cases" : 0, "Deaths" : 0}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"c_ref": {"type": "string"}, "totals": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}, "daily": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}}, "required": ["c_ref", "totals", "daily"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/zerchesium/zerchesiumchair.object": {"type": "array", "items": {"type": "string"}}}, "required": ["objects/zerchesium/zerchesiumchair.object"]}, "Texts": {"type": "object", "properties": {"Eng": {"type": "string"}}, "required": ["Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"DeniedAlternatives" : [], "Files" : {"objects/zerchesium/zerchesiumchair.object" : ["/hylotlDescription"]}, "Texts" : {"Eng" : "A basic chair, it serves its purpose."}}, {"DeniedAlternatives" : [], "Files" : {"objects/zerchesium/zerchesiumchair.object" : ["/description"]}, "Texts" : {"Eng" : "A chair made from Zerchesium. Cold to sit on."}}, {"DeniedAlternatives" : [], "Files" : {"objects/zerchesium/zerchesiumchair.object" : ["/avianDescription"]}, "Texts" : {"Eng" : "A simple chair."}}, {"DeniedAlternatives" : [], "Files" : {"objects/zerchesium/zerchesiumchair.object" : ["/apexDescription"]}, "Texts" : {"Eng" : "A standard chair."}}, {"DeniedAlternatives" : [], "Files" : {"objects/zerchesium/zerchesiumchair.object" : ["/shortdescription"]}, "Texts" : {"Eng" : "Padded Zerchesium Chair"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/zerchesium/zerchesiumchair.object": {"type": "array", "items": {"type": "string"}}}, "required": ["objects/zerchesium/zerchesiumchair.object"]}, "Texts": {"type": "object", "properties": {"Eng": {"type": "string"}}, "required": ["Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"require": {"type": "object", "properties": {"slim/slim": {"type": "string"}}, "required": ["slim/slim"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}}, "required": ["require", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"require" : {"slim/slim" : "3.*"}, "scripts" : {"start" : "php -S localhost:80 -t public"}} | json_instruct | {"type": "object", "properties": {"require": {"type": "object", "properties": {"slim/slim": {"type": "string"}}, "required": ["slim/slim"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}}, "required": ["require", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "6cc2bc0b1c32a39da0f9f91b7101f25a3d2cad87"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "integer"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [186, 120, 234, 69, 125, 57, 236, 232, 249, 223, 25, 44, 79, 248, 12, 166, 125, 223, 47, 233, 184, 163, 81, 86, 122, 57, 16, 213, 160, 234, 177, 9, 40, 105, 109, 156, 234, 96, 125, 195, 105, 88, 194, 43, 84, 165, 112, 21, 3, 168, 31, 133, 138, 136, 87, 84, 81, 46, 111, 55, 112, 67, 61, 202] | json_instruct | {"type": "array", "items": {"type": "integer"}, "$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"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}}, "required": ["files"]}, "require": {"type": "object", "properties": {"lizhichao/word": {"type": "string"}, "ethanhann/redisearch-php": {"type": "string"}, "teamtnt/tntsearch": {"type": "string"}, "phpseclib/phpseclib": {"type": "string"}}, "required": ["lizhichao/word", "ethanhann/redisearch-php", "teamtnt/tntsearch", "phpseclib/phpseclib"]}}, "required": ["name", "description", "type", "license", "authors", "autoload", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "chaosannals/trial-php", "description" : "php trial.", "type" : "project", "license" : "MIT", "authors" : [{"name" : "chaosannals", "email" : "chaosannals@outlook.com"}], "autoload" : {"files" : ["common.php", "common_case.php", "common_image.php", "common_pdo.php"]}, "require" : {"lizhichao/word" : "^1.4", "ethanhann/redisearch-php" : "^1.9", "teamtnt/tntsearch" : "^2.3", "phpseclib/phpseclib" : "^2.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}}, "required": ["files"]}, "require": {"type": "object", "properties": {"lizhichao/word": {"type": "string"}, "ethanhann/redisearch-php": {"type": "string"}, "teamtnt/tntsearch": {"type": "string"}, "phpseclib/phpseclib": {"type": "string"}}, "required": ["lizhichao/word", "ethanhann/redisearch-php", "teamtnt/tntsearch", "phpseclib/phpseclib"]}}, "required": ["name", "description", "type", "license", "authors", "autoload", "require"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["PatternLabStarter"] | 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": {"osc": {"type": "object", "properties": {"frequency": {"type": "number"}, "modulation amplitude": {"type": "number"}}, "required": ["frequency", "modulation amplitude"]}, "lfo": {"type": "object", "properties": {"shape": {"type": "number"}, "rate": {"type": "number"}, "parameter": {"type": "number"}}, "required": ["shape", "rate", "parameter"]}, "clouds": {"type": "object", "properties": {"reverb": {"type": "number"}, "dry": {"type": "integer"}, "feedback": {"type": "number"}, "position": {"type": "number"}, "size": {"type": "number"}, "texture": {"type": "number"}, "density": {"type": "number"}, "pitch": {"type": "number"}, "stereo_spread": {"type": "number"}}, "required": ["reverb", "dry", "feedback", "position", "size", "texture", "density", "pitch", "stereo_spread"]}}, "required": ["osc", "lfo", "clouds"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"osc" : {"frequency" : 473.6328, "modulation amplitude" : 1.081055}, "lfo" : {"shape" : 0.666992, "rate" : 0.264648, "parameter" : 0.078125}, "clouds" : {"reverb" : 0.25, "dry" : 1, "feedback" : 1.000977, "position" : 0.391602, "size" : 0.19043, "texture" : 0.712891, "density" : 0.341797, "pitch" : 19.96094, "stereo_spread" : 0.998047}} | json_instruct | {"type": "object", "properties": {"osc": {"type": "object", "properties": {"frequency": {"type": "number"}, "modulation amplitude": {"type": "number"}}, "required": ["frequency", "modulation amplitude"]}, "lfo": {"type": "object", "properties": {"shape": {"type": "number"}, "rate": {"type": "number"}, "parameter": {"type": "number"}}, "required": ["shape", "rate", "parameter"]}, "clouds": {"type": "object", "properties": {"reverb": {"type": "number"}, "dry": {"type": "integer"}, "feedback": {"type": "number"}, "position": {"type": "number"}, "size": {"type": "number"}, "texture": {"type": "number"}, "density": {"type": "number"}, "pitch": {"type": "number"}, "stereo_spread": {"type": "number"}}, "required": ["reverb", "dry", "feedback", "position", "size", "texture", "density", "pitch", "stereo_spread"]}}, "required": ["osc", "lfo", "clouds"], "$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" : 404365733, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "d72070f202826f6ca2c125ac1569d703", "wof:id" : 404365733, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [1.25743232194739, 45.56743516497807, 1.33918589647769, 45.67323610234195], "geometry" : {"coordinates" : [[[1.30505188813314, 45.56743516497807], [1.30978707560039, 45.57699964645234], [1.30484412495393, 45.58304086153141], [1.28180788936461, 45.58839255175064], [1.27400605791523, 45.59711786162099], [1.27847679847823, 45.63121455666105], [1.26654565341329, 45.63710210024802], [1.26169018660458, 45.63635168489064], [1.26329329970351, 45.64296054207644], [1.25743232194739, 45.6517058297224], [1.27280954810936, 45.65939157825616], [1.27194838206846, 45.66928604624797], [1.28464721546964, 45.67323610234195], [1.29417338013683, 45.67220989759357], [1.30938806424056, 45.66495460253305], [1.33263032846074, 45.66737273861956], [1.33223569508495, 45.66426854262389], [1.33918589647769, 45.66039025690032], [1.33612279446833, 45.65161742339674], [1.31823050979723, 45.63985880030426], [1.31927844204477, 45.62944452846161], [1.31215215684068, 45.62022292975006], [1.31288745420549, 45.61673029489348], [1.33191328135214, 45.60590862137716], [1.32617383509452, 45.59243025306835], [1.33568725360592, 45.58065550612654], [1.32822851796254, 45.57152006355511], [1.3189120916357, 45.56918346950758], [1.31095847658206, 45.57264894841249], [1.30505188813314, 45.56743516497807]]], "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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "LENGTH_OF_ERA": {"type": "object", "properties": {"CATEGORY": {"type": "string"}, "MIN_VALUE": {"type": "integer"}, "P10_VALUE": {"type": "integer"}, "P25_VALUE": {"type": "integer"}, "MEDIAN_VALUE": {"type": "integer"}, "P75_VALUE": {"type": "integer"}, "P90_VALUE": {"type": "integer"}, "MAX_VALUE": {"type": "integer"}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}, "AGE_AT_FIRST_DIAGNOSIS": {"type": "object", "properties": {"CATEGORY": {"type": "string"}, "MIN_VALUE": {"type": "integer"}, "P10_VALUE": {"type": "integer"}, "P25_VALUE": {"type": "integer"}, "MEDIAN_VALUE": {"type": "integer"}, "P75_VALUE": {"type": "integer"}, "P90_VALUE": {"type": "integer"}, "MAX_VALUE": {"type": "integer"}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "LENGTH_OF_ERA", "AGE_AT_FIRST_DIAGNOSIS"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "LENGTH_OF_ERA" : {"CATEGORY" : "Length of era", "MIN_VALUE" : 1, "P10_VALUE" : 1, "P25_VALUE" : 1, "MEDIAN_VALUE" : 1, "P75_VALUE" : 1, "P90_VALUE" : 16, "MAX_VALUE" : 22}, "AGE_AT_FIRST_DIAGNOSIS" : {"CATEGORY" : "FEMALE", "MIN_VALUE" : 15, "P10_VALUE" : 18, "P25_VALUE" : 32, "MEDIAN_VALUE" : 50, "P75_VALUE" : 68, "P90_VALUE" : 79, "MAX_VALUE" : 82}} | json_instruct | {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "LENGTH_OF_ERA": {"type": "object", "properties": {"CATEGORY": {"type": "string"}, "MIN_VALUE": {"type": "integer"}, "P10_VALUE": {"type": "integer"}, "P25_VALUE": {"type": "integer"}, "MEDIAN_VALUE": {"type": "integer"}, "P75_VALUE": {"type": "integer"}, "P90_VALUE": {"type": "integer"}, "MAX_VALUE": {"type": "integer"}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}, "AGE_AT_FIRST_DIAGNOSIS": {"type": "object", "properties": {"CATEGORY": {"type": "string"}, "MIN_VALUE": {"type": "integer"}, "P10_VALUE": {"type": "integer"}, "P25_VALUE": {"type": "integer"}, "MEDIAN_VALUE": {"type": "integer"}, "P75_VALUE": {"type": "integer"}, "P90_VALUE": {"type": "integer"}, "MAX_VALUE": {"type": "integer"}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "LENGTH_OF_ERA", "AGE_AT_FIRST_DIAGNOSIS"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"scrolldir.auto.js": {"type": "string"}, "scrolldir.auto.min.js": {"type": "string"}, "scrolldir.js": {"type": "string"}, "scrolldir.min.js": {"type": "string"}}, "required": ["scrolldir.auto.js", "scrolldir.auto.min.js", "scrolldir.js", "scrolldir.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"scrolldir.auto.js" : "sha512-3QqJK4R6mO1GlLgd+mTGDY6Bkd6pj8aclT7EgzkeIXlHY7nsNE/W/yV4l8zQgDgHSbIfJ+qrRdqDmv2QaTeBtw==", "scrolldir.auto.min.js" : "sha512-G93pHI4Xa2h3PAMySJZFxUmC+oLQ5luDLdnef8Jz+O2WIfUc2C5h19AoGtqm1JitXVHCMULJrQFd/jD6mwhFoA==", "scrolldir.js" : "sha512-O++KCW5fkl7SNczLp5/JH5OyNlmoW6W0RsNrZdZ3mCjlQQbot59ima9BAFA1dHQJ48PPuKJ4vpbTUZz8y2tA3Q==", "scrolldir.min.js" : "sha512-kcWTvtPG6nXjBbdT8X3KBLcjAeILQ49Og1qOywoUIEZzZ72WOSzha8BYup65pljH73wTqX/RA+kjvYM1EDvqwg=="} | json_instruct | {"type": "object", "properties": {"scrolldir.auto.js": {"type": "string"}, "scrolldir.auto.min.js": {"type": "string"}, "scrolldir.js": {"type": "string"}, "scrolldir.min.js": {"type": "string"}}, "required": ["scrolldir.auto.js", "scrolldir.auto.min.js", "scrolldir.js", "scrolldir.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"picture": {"type": "string"}, "id": {"type": "integer"}, "desc": {"type": "string"}, "last_effect": {"type": "string"}, "name": {"type": "string"}, "icon": {"type": "integer"}, "effect_list": {"type": "array", "items": {"type": "object", "properties": {"trigger": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "arg_list": {"type": "object", "properties": {"time": {"type": "integer"}, "maxHPRatio": {"type": "number"}}, "required": ["time", "maxHPRatio"]}}, "required": ["trigger", "type", "arg_list"]}}, "stack": {"type": "integer"}, "init_effect": {"type": "string"}, "time": {"type": "integer"}}, "required": ["picture", "id", "desc", "last_effect", "name", "icon", "effect_list", "stack", "init_effect", "time"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"picture" : "", "id" : 60011, "desc" : "HOT", "last_effect" : "Health", "name" : "\u6d4b\u8bd5-\u5973\u7076\u795e-\u56de\u8840HOT", "icon" : 60011, "effect_list" : [{"trigger" : ["onUpdate"], "type" : "BattleBuffHOT", "arg_list" : {"time" : 1, "maxHPRatio" : 0.025}}], "stack" : 1, "init_effect" : "", "time" : 10} | json_instruct | {"type": "object", "properties": {"picture": {"type": "string"}, "id": {"type": "integer"}, "desc": {"type": "string"}, "last_effect": {"type": "string"}, "name": {"type": "string"}, "icon": {"type": "integer"}, "effect_list": {"type": "array", "items": {"type": "object", "properties": {"trigger": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "arg_list": {"type": "object", "properties": {"time": {"type": "integer"}, "maxHPRatio": {"type": "number"}}, "required": ["time", "maxHPRatio"]}}, "required": ["trigger", "type", "arg_list"]}}, "stack": {"type": "integer"}, "init_effect": {"type": "string"}, "time": {"type": "integer"}}, "required": ["picture", "id", "desc", "last_effect", "name", "icon", "effect_list", "stack", "init_effect", "time"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "http://data.doremus.org/performance/0f4a24a2-6927-38ca-aee5-1df98be762e3", "expression" : [{"id" : "http://data.doremus.org/expression/61a25e93-ef17-3ddc-8b21-02236a603b7d"}, {"id" : "http://data.doremus.org/expression/44568851-e500-3f29-9e18-9a8797d6c4a1"}, {"id" : "http://data.doremus.org/expression/2b1b64ab-d8d2-30cf-b959-a07d83299a0d"}, {"id" : "http://data.doremus.org/expression/27bebec0-3ed1-3339-8794-19a6809fdebb"}, {"id" : "http://data.doremus.org/expression/927c4c09-5d2c-319f-a447-c4e53fd025e5"}, {"id" : "http://data.doremus.org/expression/92535985-b7c6-3276-9c8f-db33c9435b3e"}, {"id" : "http://data.doremus.org/expression/70281fa4-dd00-3d8a-b64b-05d7ea5a2928"}, {"id" : "http://data.doremus.org/expression/e6b4a400-d4ee-3d4e-ab0a-8cf6820ccf1c"}, {"id" : "http://data.doremus.org/expression/8d90f812-80c3-30d4-8830-9aee4bf3ec5f"}, {"id" : "http://data.doremus.org/expression/9754e833-f378-31bb-afba-94eaabc5466e"}, {"id" : "http://data.doremus.org/expression/95b925de-00f0-37fc-ac53-d113ec317d0b"}, {"id" : "http://data.doremus.org/expression/35a46752-1689-3fd7-a7d6-9571304e5853"}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "publisher": {"type": "string"}, "repository": {"type": "string"}, "categories": {"type": "array", "items": {"type": "string"}}, "icon": {"type": "string"}, "galleryBanner": {"type": "object", "properties": {"color": {"type": "string"}, "theme": {"type": "string"}}, "required": ["color", "theme"]}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required": ["vscode"]}, "contributes": {"type": "object", "properties": {"themes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "uiTheme": {"type": "string"}, "path": {"type": "string"}}, "required": ["label", "uiTheme", "path"]}}}, "required": ["themes"]}}, "required": ["name", "displayName", "description", "version", "publisher", "repository", "categories", "icon", "galleryBanner", "engines", "contributes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "nihil", "displayName" : "Nihil", "description" : "A balanced and neutral dark colour scheme with good contrast, designed for long hours of coding", "version" : "1.0.1", "publisher" : "CocaineJohnsson", "repository" : "https://github.com/CocaineJohnsson/vscode-nihil-theme.git", "categories" : ["Themes"], "icon" : "Images/Icon.png", "galleryBanner" : {"color" : "#161616", "theme" : "dark"}, "engines" : {"vscode" : "^1.58.0"}, "contributes" : {"themes" : [{"label" : "nihil", "uiTheme" : "vs-dark", "path" : "./themes/nihil-color-theme.json"}]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "publisher": {"type": "string"}, "repository": {"type": "string"}, "categories": {"type": "array", "items": {"type": "string"}}, "icon": {"type": "string"}, "galleryBanner": {"type": "object", "properties": {"color": {"type": "string"}, "theme": {"type": "string"}}, "required": ["color", "theme"]}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required": ["vscode"]}, "contributes": {"type": "object", "properties": {"themes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "uiTheme": {"type": "string"}, "path": {"type": "string"}}, "required": ["label", "uiTheme", "path"]}}}, "required": ["themes"]}}, "required": ["name", "displayName", "description", "version", "publisher", "repository", "categories", "icon", "galleryBanner", "engines", "contributes"], "$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"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "illuminate/support": {"type": "string"}, "illuminate/events": {"type": "string"}, "illuminate/config": {"type": "string"}}, "required": ["php", "illuminate/support", "illuminate/events", "illuminate/config"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Hyperbolaa\\Unionpay\\": {"type": "string"}}, "required": ["Hyperbolaa\\Unionpay\\"]}}, "required": ["psr-4"]}, "minimum-stability": {"type": "string"}}, "required": ["name", "type", "description", "keywords", "homepage", "license", "authors", "require", "autoload", "minimum-stability"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "hyperbolaa/unionpay", "type" : "project", "description" : "\u94f6\u8054\u652f\u4ed8SDK\u5728Laravel5\u4e2d\u5c01\u88c5\u5305\u3002", "keywords" : ["\u94f6\u8054", "\u94f6\u8054\u652f\u4ed8", "Laravel", "Laravel5", "union", "unionpay"], "homepage" : "https://github.com/hyperbolaa/Unionpay", "license" : "MIT", "authors" : [{"name" : "chong yu", "email" : "chongyu366@gmail.com"}], "require" : {"php" : ">=5.5.0", "illuminate/support" : "5.*", "illuminate/events" : "5.*", "illuminate/config" : "5.*"}, "autoload" : {"psr-4" : {"Hyperbolaa\\Unionpay\\" : "src/Hyperbolaa/Unionpay/"}}, "minimum-stability" : "stable"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "illuminate/support": {"type": "string"}, "illuminate/events": {"type": "string"}, "illuminate/config": {"type": "string"}}, "required": ["php", "illuminate/support", "illuminate/events", "illuminate/config"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Hyperbolaa\\Unionpay\\": {"type": "string"}}, "required": ["Hyperbolaa\\Unionpay\\"]}}, "required": ["psr-4"]}, "minimum-stability": {"type": "string"}}, "required": ["name", "type", "description", "keywords", "homepage", "license", "authors", "require", "autoload", "minimum-stability"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"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" : "6205052", "regency_id" : "6205", "name" : "TEWEH SELATAN"} | 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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "support": {"type": "object", "properties": {"issues": {"type": "string"}}, "required": ["issues"]}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "phpdocumentor/phpdocumentor": {"type": "string"}}, "required": ["phpunit/phpunit", "phpdocumentor/phpdocumentor"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"ChangeCase\\": {"type": "string"}}, "required": ["ChangeCase\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "keywords", "homepage", "support", "license", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ptrkcsk/change-case", "description" : "Convert strings to camelCase, CONSTANT_CASE, dot.case, Header-Case, lower case, param-case, PascalCase, path/case, Sentence case, snake_case, Title Case, UPPER CASE, and more!", "type" : "library", "keywords" : ["case", "change case", "camel case", "constant case", "dot case", "header case", "lower case", "lower case first", "param case", "kebab case", "pascal case", "upper camel case", "path case", "sentence case", "snake case", "title case", "upper case", "upper case first"], "homepage" : "https://github.com/ptrkcsk/change-case", "support" : {"issues" : "https://github.com/ptrkcsk/fa-wp-admin-menu-icons/issues"}, "license" : "MIT", "authors" : [{"name" : "Patrik Csak", "email" : "patrik@csak.email"}], "require" : {"php" : ">=7.1"}, "require-dev" : {"phpunit/phpunit" : "^7.0", "phpdocumentor/phpdocumentor" : "^2.9"}, "autoload" : {"psr-4" : {"ChangeCase\\" : "src/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "support": {"type": "object", "properties": {"issues": {"type": "string"}}, "required": ["issues"]}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "phpdocumentor/phpdocumentor": {"type": "string"}}, "required": ["phpunit/phpunit", "phpdocumentor/phpdocumentor"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"ChangeCase\\": {"type": "string"}}, "required": ["ChangeCase\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "keywords", "homepage", "support", "license", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "image": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "image", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Melt butter in a large pot over medium heat. Stir in the onion and garlic; cook until softened and transparent, about 10 minutes. Turn off the heat.", "Add the peanuts and salt to the onion mixture. Fill the pot with water until the peanuts are submerged, and use a large colander fitted into the pot to hold them under water. Bring to a boil, then lower the heat to medium, and simmer. Check the water level, and when it reaches the level of the peanuts, add more. Turn up the heat to medium-high and bring the peanuts to a boil; the lower heat to medium, and simmer. Repeat steps until peanuts are soft, 4 to 6 hours. Drain, and serve hot or cold."], "image" : "https://imagesvc.meredithcorp.io/v3/mm/image?q=85&c=sc&poi=face&w=1936&h=1014&url=https%3A%2F%2Fimages.media-allrecipes.com%2Fuserphotos%2F689875.jpg", "ingredients" : ["1 tablespoon butter", "1 large onion, cut into wedges", "30 cloves garlic", "1\u2009\u00bd pounds raw peanuts, in shells", "\u00bd pound salt"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Garlic and Onion Boiled Peanuts", "url" : "http://allrecipes.com/recipe/143160/garlic-and-onion-boiled-peanuts/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "image": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "image", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"required": {"type": "boolean"}, "package": {"type": "string"}, "compatibilityLevel": {"type": "string"}, "mixins": {"type": "array", "items": {"type": "string"}}, "client": {"type": "array", "items": {"type": "string"}}, "server": {"type": "array", "items": {"type": "string"}}, "injectors": {"type": "object", "properties": {"defaultRequire": {"type": "integer"}}, "required": ["defaultRequire"]}}, "required": ["required", "package", "compatibilityLevel", "mixins", "client", "server", "injectors"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"required" : true, "package" : "io.github.minecraftcursedlegacy.mixin.registry", "compatibilityLevel" : "JAVA_8", "mixins" : ["MixinItemType", "MixinMcRegionLevelStorage", "MixinOldLevelStorage", "MixinPlaceableTileItem", "MixinShapedRecipe", "MixinSmeltingRecipeRegistry", "MixinTile", "MixinTileItem"], "client" : ["MixinHandItemRenderer", "MixinItemRenderer"], "server" : ["MixinMinecraftServer", "MixinPendingConnection"], "injectors" : {"defaultRequire" : 1}} | json_instruct | {"type": "object", "properties": {"required": {"type": "boolean"}, "package": {"type": "string"}, "compatibilityLevel": {"type": "string"}, "mixins": {"type": "array", "items": {"type": "string"}}, "client": {"type": "array", "items": {"type": "string"}}, "server": {"type": "array", "items": {"type": "string"}}, "injectors": {"type": "object", "properties": {"defaultRequire": {"type": "integer"}}, "required": ["defaultRequire"]}}, "required": ["required", "package", "compatibilityLevel", "mixins", "client", "server", "injectors"], "$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"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"ws": {"type": "string"}, "node-uuid": {"type": "string"}, "nedb": {"type": "string"}, "node-static": {"type": "string"}}, "required": ["ws", "node-uuid", "nedb", "node-static"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}}, "required": ["name", "version", "license", "scripts", "dependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "node-jsso-server", "version" : "0.0.1", "license" : "MIT", "scripts" : {"start" : "node index.js"}, "dependencies" : {"ws" : "0.4.x", "node-uuid" : "1.4.x", "nedb" : "0.8.x", "node-static" : "0.7.x"}, "engines" : {"node" : "0.10.x", "npm" : "1.2.x"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"ws": {"type": "string"}, "node-uuid": {"type": "string"}, "nedb": {"type": "string"}, "node-static": {"type": "string"}}, "required": ["ws", "node-uuid", "nedb", "node-static"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}}, "required": ["name", "version", "license", "scripts", "dependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"s_Acc": {"type": "number"}, "s_IoU": {"type": "number"}, "s_mIoU": {"type": "number"}, "t_Acc": {"type": "number"}, "t_IoU": {"type": "number"}, "t_mIoU": {"type": "number"}, "bn_loss": {"type": "number"}, "s_adv": {"type": "number"}, "t_adv": {"type": "number"}}, "required": ["s_Acc", "s_IoU", "s_mIoU", "t_Acc", "t_IoU", "t_mIoU", "bn_loss", "s_adv", "t_adv"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"s_Acc" : 0.8960635867656668, "s_IoU" : 0.7462975388702544, "s_mIoU" : 0.8272682958373958, "t_Acc" : 0.4049265624876569, "t_IoU" : 0.35489600488819617, "t_mIoU" : 0.5993909697896612, "bn_loss" : 0.15069110691547394, "s_adv" : 0.4142348265106028, "t_adv" : 1.1374358490109444} | json_instruct | {"type": "object", "properties": {"s_Acc": {"type": "number"}, "s_IoU": {"type": "number"}, "s_mIoU": {"type": "number"}, "t_Acc": {"type": "number"}, "t_IoU": {"type": "number"}, "t_mIoU": {"type": "number"}, "bn_loss": {"type": "number"}, "s_adv": {"type": "number"}, "t_adv": {"type": "number"}}, "required": ["s_Acc", "s_IoU", "s_mIoU", "t_Acc", "t_IoU", "t_mIoU", "bn_loss", "s_adv", "t_adv"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"title": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "copyright": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "explanation", "date", "hdurl", "service_version", "copyright", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Hauoli Makahiki Hou", "explanation" : "Fading sunlight, a young crescent Moon, and brilliant Venus shared the western sky in this view of 2005's final sunset from the top of Mount Haleakala, on Maui, Hawaii. Also known as the Sacred House of the Sun, Haleakala, is Maui's dormant volcano. At 10,000 feet the summit is an ideal site for astronomical observatories, and this scene also features the silhouette of the northern hemisphere Faulkes Telescope. Of particular interest to students the Faulkes Telescope is a 2-meter diameter instrument, dedicated to astronomy education, that can be remotely operated over the internet. The project is a joint effort between the Dill Faulkes Educational Trust and the University of Hawaii Institute for Astronomy. Of course on Haleakala, \"Happy New Year\" would be \"Hauoli Makahiki hou\" (how-oh-lee ma-ka-hee-key ho).", "date" : "2006-01-04", "hdurl" : "https://apod.nasa.gov/apod/image/0601/haleakalaMoon_ratkowski_f.jpg", "service_version" : "v1", "copyright" : "Rob Ratkowski", "media_type" : "image", "url" : "https://apod.nasa.gov/apod/image/0601/haleakalaMoon_ratkowski_f80.jpg"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "copyright": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "explanation", "date", "hdurl", "service_version", "copyright", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["540528101201", "\u6851\u4e1c\u6751\u59d4\u4f1a", "220", "0"], ["540528101202", "\u54f2\u59c6\u6751\u59d4\u4f1a", "220", "0"], ["540528101203", "\u4ef2\u5df4\u6751\u59d4\u4f1a", "121", "0"], ["540528101204", "\u62c9\u5b87\u6751\u59d4\u4f1a", "220", "0"], ["540528101205", "\u560e\u9ea6\u6751\u59d4\u4f1a", "220", "0"], ["540528101206", "\u560e\u5806\u6751\u59d4\u4f1a", "220", "0"], ["540528101207", "\u62c9\u5c97\u6751\u59d4\u4f1a", "220", "0"], ["540528101208", "\u7d22\u56ca\u6751\u59d4\u4f1a", "220", "0"], ["540528101209", "\u560e\u5409\u6751\u59d4\u4f1a", "220", "0"], ["540528101210", "\u70ed\u679c\u6751\u59d4\u4f1a", "220", "0"], ["540528101211", "\u624e\u96ea\u6751\u59d4\u4f1a", "122", "0"], ["540528101212", "\u8fbe\u5806\u6751\u59d4\u4f1a", "220", "0"], ["540528101213", "\u5982\u7c73\u6751\u59d4\u4f1a", "220", "0"], ["540528101214", "\u5858\u9ea6\u6751\u59d4\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$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"}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "angular": {"type": "string"}, "angular-resource": {"type": "string"}, "angular-cookies": {"type": "string"}, "angular-bootstrap": {"type": "string"}, "angular-ui-utils": {"type": "string"}, "angular-mocks": {"type": "string"}, "angularjs-gravatar": {"type": "string"}, "ng-table": {"type": "string"}, "underscore": {"type": "string"}, "angular-ui-calendar": {"type": "string"}}, "required": ["bootstrap", "angular", "angular-resource", "angular-cookies", "angular-bootstrap", "angular-ui-utils", "angular-mocks", "angularjs-gravatar", "ng-table", "underscore", "angular-ui-calendar"]}, "resolutions": {"type": "object", "properties": {"angular": {"type": "string"}}, "required": ["angular"]}}, "required": ["name", "version", "dependencies", "resolutions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mean", "version" : "0.1.0", "dependencies" : {"bootstrap" : "2.3.2", "angular" : "1.0.6", "angular-resource" : "1.0.6", "angular-cookies" : "1.0.6", "angular-bootstrap" : "0.6.0", "angular-ui-utils" : "0.0.4", "angular-mocks" : "~1.0.8", "angularjs-gravatar" : "master", "ng-table" : "v0.3.1", "underscore" : "~1.5.2", "angular-ui-calendar" : "latest"}, "resolutions" : {"angular" : "1.0.6"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "angular": {"type": "string"}, "angular-resource": {"type": "string"}, "angular-cookies": {"type": "string"}, "angular-bootstrap": {"type": "string"}, "angular-ui-utils": {"type": "string"}, "angular-mocks": {"type": "string"}, "angularjs-gravatar": {"type": "string"}, "ng-table": {"type": "string"}, "underscore": {"type": "string"}, "angular-ui-calendar": {"type": "string"}}, "required": ["bootstrap", "angular", "angular-resource", "angular-cookies", "angular-bootstrap", "angular-ui-utils", "angular-mocks", "angularjs-gravatar", "ng-table", "underscore", "angular-ui-calendar"]}, "resolutions": {"type": "object", "properties": {"angular": {"type": "string"}}, "required": ["angular"]}}, "required": ["name", "version", "dependencies", "resolutions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.