input
stringlengths 159
2.05k
| output
stringlengths 5
10.3k
| task
stringclasses 1
value | schema
stringlengths 100
1.99k
|
---|---|---|---|
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"channels": {"type": "object", "properties": {"private_channel": {"type": "object", "properties": {"channel_type": {"type": "string"}, "description": {"type": "string"}, "name": {"type": "string"}, "public_description": {"type": "string"}, "title": {"type": "string"}}, "required": ["channel_type", "description", "name", "public_description", "title"]}}, "required": ["private_channel"]}, "comments": {"type": "object", "properties": {"just a comment": {"type": "object", "properties": {"children": {"type": "array", "items": {}}, "comment_id": {"type": "null"}, "id": {"type": "string"}, "post_id": {"type": "string"}, "text": {"type": "string"}}, "required": ["children", "comment_id", "id", "post_id", "text"]}}, "required": ["just a comment"]}, "posts": {"type": "object", "properties": {"just a post": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}, "title": {"type": "string"}}, "required": ["id", "text", "title"]}}, "required": ["just a post"]}, "users": {"type": "object", "properties": {"contributor": {"type": "object", "properties": {"username": {"type": "string"}}, "required": ["username"]}, "staff_user": {"type": "object", "properties": {"username": {"type": "string"}}, "required": ["username"]}}, "required": ["contributor", "staff_user"]}}, "required": ["channels", "comments", "posts", "users"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"channels" : {"private_channel" : {"channel_type" : "private", "description" : "Saepe quae molestiae perferendis deserunt necessitatibus architecto. Est error corporis doloribus distinctio cupiditate quae. Adipisci commodi qui ea deserunt labore. Id vel non quia culpa.\nDolores quasi minima numquam deleniti rem. Minima perferendis quae eveniet deleniti voluptates. Deserunt illum sit vero ipsum officiis quasi id quidem.", "name" : "1535134525_quo", "public_description" : "A iure quia ex sit voluptates. Cupiditate reiciendis ad velit quo perspiciatis.", "title" : "Odit corporis dolor architecto ducimus."}}, "comments" : {"just a comment" : {"children" : [], "comment_id" : null, "id" : "3c", "post_id" : "47", "text" : "Deleniti molestiae quas fugiat adipisci ipsam. Totam fugit assumenda neque nemo."}}, "posts" : {"just a post" : {"id" : "47", "text" : "Minima dolores natus impedit corporis placeat. Quasi quaerat alias totam nam harum eveniet rerum.", "title" : "Perferendis consequuntur error commodi sint."}}, "users" : {"contributor" : {"username" : "01CNPJBX10XSED0SKX3TPVTF8Z"}, "staff_user" : {"username" : "01CNPJBPNHW3W5FNR2ZGXDEJWK"}}} | json_instruct | {"type": "object", "properties": {"channels": {"type": "object", "properties": {"private_channel": {"type": "object", "properties": {"channel_type": {"type": "string"}, "description": {"type": "string"}, "name": {"type": "string"}, "public_description": {"type": "string"}, "title": {"type": "string"}}, "required": ["channel_type", "description", "name", "public_description", "title"]}}, "required": ["private_channel"]}, "comments": {"type": "object", "properties": {"just a comment": {"type": "object", "properties": {"children": {"type": "array", "items": {}}, "comment_id": {"type": "null"}, "id": {"type": "string"}, "post_id": {"type": "string"}, "text": {"type": "string"}}, "required": ["children", "comment_id", "id", "post_id", "text"]}}, "required": ["just a comment"]}, "posts": {"type": "object", "properties": {"just a post": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}, "title": {"type": "string"}}, "required": ["id", "text", "title"]}}, "required": ["just a post"]}, "users": {"type": "object", "properties": {"contributor": {"type": "object", "properties": {"username": {"type": "string"}}, "required": ["username"]}, "staff_user": {"type": "object", "properties": {"username": {"type": "string"}}, "required": ["username"]}}, "required": ["contributor", "staff_user"]}}, "required": ["channels", "comments", "posts", "users"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 79634, "cartId" : "fdf92be5-ef7e-4372-b1ce-61a79626a883", "preferredProducts" : [3829, 3523, 4575], "productReviews" : [{"productId" : 2928, "reviewText" : "this Practical is gracious.", "reviewDate" : "2016-10-26T07:58:19.7421265+03:00"}, {"productId" : 460, "reviewText" : "This Bedfordshire works outstandingly well. It beautifully improves my basketball by a lot.", "reviewDate" : "2018-09-24T00:29:54.7439775+03:00"}, {"productId" : 2221, "reviewText" : "This Somalia works so well. It hungrily improves my basketball by a lot.", "reviewDate" : "2019-02-28T22:31:55.1581572+02:00"}, {"productId" : 1057, "reviewText" : "My neighbor Victoria has one of these. She works as a professor and she says it looks menthol.", "reviewDate" : "2020-04-24T15:42:21.4687056+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid 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": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[122.5, 24.833333333333332], [122.5, 24.916666666666668], [122.625, 24.916666666666668], [122.625, 24.833333333333332], [122.5, 24.833333333333332]]]}, "properties" : {"code" : 372224, "url" : "http://madefor.github.io/0410/api/v1/372224.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/372224.geojson"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[123.125, 45.166666666666664], [123.125, 45.25], [123.25, 45.25], [123.25, 45.166666666666664], [123.125, 45.166666666666664]]]}, "properties" : {"code" : 672361, "url" : "http://madefor.github.io/0410/api/v1/672361.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/672361.geojson"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "abv": {"type": "number"}, "ibu": {"type": "number"}, "srm": {"type": "number"}, "upc": {"type": "integer"}, "type": {"type": "string"}, "brewery_id": {"type": "string"}, "updated": {"type": "string"}, "description": {"type": "string"}, "style": {"type": "string"}, "category": {"type": "string"}}, "required": ["name", "abv", "ibu", "srm", "upc", "type", "brewery_id", "updated", "description", "style", "category"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "The Bitter End Pale Ale", "abv" : 5.1, "ibu" : 0.0, "srm" : 0.0, "upc" : 0, "type" : "beer", "brewery_id" : "two_brothers_brewing", "updated" : "2010-07-22 20:00:20", "description" : "Very drinkable light golden ale. Extremely refreshing hop finish", "style" : "American-Style Pale Ale", "category" : "North American Ale"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "abv": {"type": "number"}, "ibu": {"type": "number"}, "srm": {"type": "number"}, "upc": {"type": "integer"}, "type": {"type": "string"}, "brewery_id": {"type": "string"}, "updated": {"type": "string"}, "description": {"type": "string"}, "style": {"type": "string"}, "category": {"type": "string"}}, "required": ["name", "abv", "ibu", "srm", "upc", "type", "brewery_id", "updated", "description", "style", "category"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"ResponseMetadata": {"type": "object", "properties": {"RequestId": {"type": "string"}, "HTTPStatusCode": {"type": "integer"}, "HTTPHeaders": {"type": "object", "properties": {"date": {"type": "string"}, "content-type": {"type": "string"}, "content-length": {"type": "string"}, "connection": {"type": "string"}, "x-amzn-requestid": {"type": "string"}, "x-amz-apigw-id": {"type": "string"}, "x-amzn-trace-id": {"type": "string"}}, "required": ["date", "content-type", "content-length", "connection", "x-amzn-requestid", "x-amz-apigw-id", "x-amzn-trace-id"]}, "RetryAttempts": {"type": "integer"}}, "required": ["RequestId", "HTTPStatusCode", "HTTPHeaders", "RetryAttempts"]}, "resource": {"type": "object", "properties": {"actions": {"type": "array", "items": {"type": "string"}}, "analyzedAt": {"type": "string"}, "createdAt": {"type": "string"}, "isPublic": {"type": "string"}, "resourceArn": {"type": "string"}, "resourceOwnerAccount": {"type": "string"}, "resourceType": {"type": "string"}, "status": {"type": "string"}, "updatedAt": {"type": "string"}}, "required": ["actions", "analyzedAt", "createdAt", "isPublic", "resourceArn", "resourceOwnerAccount", "resourceType", "status", "updatedAt"]}}, "required": ["ResponseMetadata", "resource"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ResponseMetadata" : {"RequestId" : "6cf50c63-4974-4f93-b638-953d208836ac", "HTTPStatusCode" : 200, "HTTPHeaders" : {"date" : "Sun, 29 Nov 2020 08:33:39 GMT", "content-type" : "application/json", "content-length" : "688", "connection" : "keep-alive", "x-amzn-requestid" : "6cf50c63-4974-4f93-b638-953d208836ac", "x-amz-apigw-id" : "WwtzhE9VoAMFiAQ=", "x-amzn-trace-id" : "Root=1-5fc35ce3-75468fb62aecc4a20bfe3960"}, "RetryAttempts" : 0}, "resource" : {"actions" : ["kms:CreateGrant", "kms:Decrypt", "kms:DescribeKey", "kms:Encrypt", "kms:GenerateDataKey", "kms:GenerateDataKeyPair", "kms:GenerateDataKeyPairWithoutPlaintext", "kms:GenerateDataKeyWithoutPlaintext", "kms:GetKeyRotationStatus", "kms:GetPublicKey", "kms:ListGrants", "kms:ReEncryptFrom", "kms:ReEncryptTo", "kms:RetireGrant", "kms:RevokeGrant", "kms:Sign", "kms:Verify"], "analyzedAt" : "datetime.datetime(2020, 11, 29, 8, 33, 38, tzinfo = tzutc())", "createdAt" : "datetime.datetime(2020, 11, 29, 8, 29, 58, 456000, tzinfo = tzutc())", "isPublic" : "True", "resourceArn" : "arn:aws:kms:us-east-1:ACCOUNT_ID:key/786b353b-49f1-4dd2-b4b5-573ae99b3670", "resourceOwnerAccount" : "ACCOUNT_ID", "resourceType" : "AWS::KMS::Key", "status" : "ACTIVE", "updatedAt" : "datetime.datetime(2020, 11, 29, 8, 29, 58, 456000, tzinfo = tzutc())"}} | json_instruct | {"type": "object", "properties": {"ResponseMetadata": {"type": "object", "properties": {"RequestId": {"type": "string"}, "HTTPStatusCode": {"type": "integer"}, "HTTPHeaders": {"type": "object", "properties": {"date": {"type": "string"}, "content-type": {"type": "string"}, "content-length": {"type": "string"}, "connection": {"type": "string"}, "x-amzn-requestid": {"type": "string"}, "x-amz-apigw-id": {"type": "string"}, "x-amzn-trace-id": {"type": "string"}}, "required": ["date", "content-type", "content-length", "connection", "x-amzn-requestid", "x-amz-apigw-id", "x-amzn-trace-id"]}, "RetryAttempts": {"type": "integer"}}, "required": ["RequestId", "HTTPStatusCode", "HTTPHeaders", "RetryAttempts"]}, "resource": {"type": "object", "properties": {"actions": {"type": "array", "items": {"type": "string"}}, "analyzedAt": {"type": "string"}, "createdAt": {"type": "string"}, "isPublic": {"type": "string"}, "resourceArn": {"type": "string"}, "resourceOwnerAccount": {"type": "string"}, "resourceType": {"type": "string"}, "status": {"type": "string"}, "updatedAt": {"type": "string"}}, "required": ["actions", "analyzedAt", "createdAt", "isPublic", "resourceArn", "resourceOwnerAccount", "resourceType", "status", "updatedAt"]}}, "required": ["ResponseMetadata", "resource"], "$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"}, "scripts": {"type": "object", "properties": {"start-dev": {"type": "string"}, "start-ui": {"type": "string"}, "start": {"type": "string"}}, "required": ["start-dev", "start-ui", "start"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}, "express": {"type": "string"}, "socket.io": {"type": "string"}, "vue-chat-scroll": {"type": "string"}, "vue-moment": {"type": "string"}}, "required": ["browser-sync", "express", "socket.io", "vue-chat-scroll", "vue-moment"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "vktappchat", "version" : "1.0.0", "description" : "Realtime mom chat app", "main" : "app.js", "scripts" : {"start-dev" : "nodemon app & browser-sync start --proxy 'localhost:5050' --files 'index.html' 'public'", "start-ui" : "", "start" : "node app"}, "keywords" : [], "author" : "", "license" : "ISC", "dependencies" : {"browser-sync" : "^2.26.14", "express" : "^4.17.1", "socket.io" : "^3.1.1", "vue-chat-scroll" : "^1.4.0", "vue-moment" : "^4.1.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start-dev": {"type": "string"}, "start-ui": {"type": "string"}, "start": {"type": "string"}}, "required": ["start-dev", "start-ui", "start"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}, "express": {"type": "string"}, "socket.io": {"type": "string"}, "vue-chat-scroll": {"type": "string"}, "vue-moment": {"type": "string"}}, "required": ["browser-sync", "express", "socket.io", "vue-chat-scroll", "vue-moment"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 96942, "cartId" : "3d9421c7-3667-43e8-95b6-83a26c2b13dc", "preferredProducts" : [2624, 3745, 914, 1305, 3335], "productReviews" : []} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "2cbee995f08283818212cad5b19da077e1a74a56"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "8103050011", "district_id" : "8103050", "name" : "HOLLO"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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"}, "dependencies": {"type": "object", "properties": {"image-data-uri": {"type": "string"}, "node-fetch": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["image-data-uri", "node-fetch", "twitter"]}, "devDependencies": {"type": "object", "properties": {"prettier-standard": {"type": "string"}, "serverless": {"type": "string"}, "serverless-offline": {"type": "string"}}, "required": ["prettier-standard", "serverless", "serverless-offline"]}, "prettier": {"type": "object", "properties": {"printWidth": {"type": "integer"}, "tabWidth": {"type": "integer"}, "semi": {"type": "boolean"}, "singleQuote": {"type": "boolean"}}, "required": ["printWidth", "tabWidth", "semi", "singleQuote"]}, "scripts": {"type": "object", "properties": {"format": {"type": "string"}}, "required": ["format"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "prettier", "scripts", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "server", "version" : "0.1.0", "description" : "Backend API for bikelanes.wtf", "main" : "report.js", "dependencies" : {"image-data-uri" : "^2.0.0", "node-fetch" : "^2.6.1", "twitter" : "^1.7.1"}, "devDependencies" : {"prettier-standard" : "^8.0.1", "serverless" : "^1.32.0", "serverless-offline" : "^3.30.0"}, "prettier" : {"printWidth" : 100, "tabWidth" : 2, "semi" : false, "singleQuote" : true}, "scripts" : {"format" : "$(npm bin)/prettier-standard '**/*.js'"}, "author" : "uncompiled", "license" : "ISC"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"image-data-uri": {"type": "string"}, "node-fetch": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["image-data-uri", "node-fetch", "twitter"]}, "devDependencies": {"type": "object", "properties": {"prettier-standard": {"type": "string"}, "serverless": {"type": "string"}, "serverless-offline": {"type": "string"}}, "required": ["prettier-standard", "serverless", "serverless-offline"]}, "prettier": {"type": "object", "properties": {"printWidth": {"type": "integer"}, "tabWidth": {"type": "integer"}, "semi": {"type": "boolean"}, "singleQuote": {"type": "boolean"}}, "required": ["printWidth", "tabWidth", "semi", "singleQuote"]}, "scripts": {"type": "object", "properties": {"format": {"type": "string"}}, "required": ["format"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "prettier", "scripts", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"sapUiFiori3AnchorBarBottomShadow": {"type": "string"}, "sapUiFiori3ABUnderlineOffsetAndHeight": {"type": "string"}, "sapUiFiori3ABUnderlineTopRadius": {"type": "string"}, "sapUiFiori3HSBottomShadow": {"type": "string"}, "sapUiFiori3HSTopShadow": {"type": "string"}, "sapUiFiori3HSUnderlineOffsetAndHeight": {"type": "string"}, "sapUiFiori3HSUnderlineTopRadius": {"type": "string"}, "sapUiFiori3HSArrowDimensions": {"type": "string"}, "sapUiFiori3AnchorBarTopShadow": {"type": "string"}}, "required": ["sapUiFiori3AnchorBarBottomShadow", "sapUiFiori3ABUnderlineOffsetAndHeight", "sapUiFiori3ABUnderlineTopRadius", "sapUiFiori3HSBottomShadow", "sapUiFiori3HSTopShadow", "sapUiFiori3HSUnderlineOffsetAndHeight", "sapUiFiori3HSUnderlineTopRadius", "sapUiFiori3HSArrowDimensions", "sapUiFiori3AnchorBarTopShadow"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sapUiFiori3AnchorBarBottomShadow" : "inset 0 -0.0625rem #3a4552", "sapUiFiori3ABUnderlineOffsetAndHeight" : ".188rem", "sapUiFiori3ABUnderlineTopRadius" : ".125rem", "sapUiFiori3HSBottomShadow" : "inset 0 -0.0625rem #3a4552", "sapUiFiori3HSTopShadow" : "0 .0625rem 0 0 #29313a", "sapUiFiori3HSUnderlineOffsetAndHeight" : ".188rem", "sapUiFiori3HSUnderlineTopRadius" : ".125rem", "sapUiFiori3HSArrowDimensions" : "2.375rem", "sapUiFiori3AnchorBarTopShadow" : "inset 0 .0625rem #3a4552"} | json_instruct | {"type": "object", "properties": {"sapUiFiori3AnchorBarBottomShadow": {"type": "string"}, "sapUiFiori3ABUnderlineOffsetAndHeight": {"type": "string"}, "sapUiFiori3ABUnderlineTopRadius": {"type": "string"}, "sapUiFiori3HSBottomShadow": {"type": "string"}, "sapUiFiori3HSTopShadow": {"type": "string"}, "sapUiFiori3HSUnderlineOffsetAndHeight": {"type": "string"}, "sapUiFiori3HSUnderlineTopRadius": {"type": "string"}, "sapUiFiori3HSArrowDimensions": {"type": "string"}, "sapUiFiori3AnchorBarTopShadow": {"type": "string"}}, "required": ["sapUiFiori3AnchorBarBottomShadow", "sapUiFiori3ABUnderlineOffsetAndHeight", "sapUiFiori3ABUnderlineTopRadius", "sapUiFiori3HSBottomShadow", "sapUiFiori3HSTopShadow", "sapUiFiori3HSUnderlineOffsetAndHeight", "sapUiFiori3HSUnderlineTopRadius", "sapUiFiori3HSArrowDimensions", "sapUiFiori3AnchorBarTopShadow"], "$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" : "mopboard", "definition" : "A narrow board nailed against the wall of a room next to the floor; skirting board; baseboard. See Baseboard."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["easy-notifier", "universal-log"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"@types/body-parser": {"type": "string"}, "@types/express": {"type": "string"}, "@types/node": {"type": "string"}, "@types/serve-index": {"type": "string"}, "body-parser": {"type": "string"}, "express": {"type": "string"}, "puppeteer": {"type": "string"}, "serve-index": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/body-parser", "@types/express", "@types/node", "@types/serve-index", "body-parser", "express", "puppeteer", "serve-index", "typescript"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}}, "required": ["dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dependencies" : {"@types/body-parser" : "^1.19.2", "@types/express" : "^4.17.13", "@types/node" : "^17.0.6", "@types/serve-index" : "^1.9.1", "body-parser" : "^1.19.1", "express" : "^4.17.2", "puppeteer" : "^13.0.1", "serve-index" : "^1.9.1", "typescript" : "^4.5.4"}, "scripts" : {"start" : "tsc && node dist/app.js"}} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"@types/body-parser": {"type": "string"}, "@types/express": {"type": "string"}, "@types/node": {"type": "string"}, "@types/serve-index": {"type": "string"}, "body-parser": {"type": "string"}, "express": {"type": "string"}, "puppeteer": {"type": "string"}, "serve-index": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/body-parser", "@types/express", "@types/node", "@types/serve-index", "body-parser", "express", "puppeteer", "serve-index", "typescript"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}}, "required": ["dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"colorRamp": {"type": "object", "properties": {"name": {"type": "string"}, "formula": {"type": "string"}}, "required": ["name", "formula"]}}, "required": ["colorRamp"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"colorRamp" : {"name" : "Softer Rainbow (CubeHelix)", "formula" : "distribute_colors\n(\n [\n cubehelix (-100, 60, 35),\n cubehelix (80, 120, 75),\n cubehelix (260, 60, 35)\n ],\n [ 0, 1 ], t,\n \"cubehelix-inc\", [ 0, 50, 100 ]\n)"}} | json_instruct | {"type": "object", "properties": {"colorRamp": {"type": "object", "properties": {"name": {"type": "string"}, "formula": {"type": "string"}}, "required": ["name", "formula"]}}, "required": ["colorRamp"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [4.0342572407678094, 3.773286593476659, 2.903018160313781, 3.164398329660749, 3.7677077479136907, 3.6734139090134033, 2.3871201621939715, 3.009760854095376, 3.28268136776419, 2.9719700079558105] | json_instruct | {"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[142.75, 26.416666666666668], [142.75, 26.5], [142.875, 26.5], [142.875, 26.416666666666668], [142.75, 26.416666666666668]]]}, "properties" : {"code" : 394256, "url" : "http://madefor.github.io/0410/api/v1/394256.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/394256.geojson"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "requires_arc": {"type": "boolean"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Tomosia Viet Nam Co.Ltd": {"type": "string"}}, "required": ["Tomosia Viet Nam Co.Ltd"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "frameworks": {"type": "array", "items": {"type": "string"}}, "pod_target_xcconfig": {"type": "object", "properties": {"EXCLUDED_ARCHS[sdk=iphonesimulator*]": {"type": "string"}}, "required": ["EXCLUDED_ARCHS[sdk=iphonesimulator*]"]}, "user_target_xcconfig": {"type": "object", "properties": {"EXCLUDED_ARCHS[sdk=iphonesimulator*]": {"type": "string"}}, "required": ["EXCLUDED_ARCHS[sdk=iphonesimulator*]"]}, "dependencies": {"type": "object", "properties": {"FacebookCore": {"type": "array", "items": {"type": "string"}}, "FacebookLogin": {"type": "array", "items": {"type": "string"}}, "TwitterKit5": {"type": "array", "items": {"type": "string"}}, "LineSDKSwift": {"type": "array", "items": {"type": "string"}}, "GoogleSignIn": {"type": "array", "items": {"type": "string"}}}, "required": ["FacebookCore", "FacebookLogin", "TwitterKit5", "LineSDKSwift", "GoogleSignIn"]}}, "required": ["name", "platforms", "version", "summary", "homepage", "requires_arc", "license", "authors", "source", "source_files", "frameworks", "pod_target_xcconfig", "user_target_xcconfig", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "tms-social-lib", "platforms" : {"ios" : "13.0"}, "version" : "1.0.1", "summary" : "This is a library of Tomosia Comp\u1ea1ny for social login", "homepage" : "https://github.com/TOMOSIA-VIETNAM/tms-lib-social-ios", "requires_arc" : true, "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"Tomosia Viet Nam Co.Ltd" : "[email protected]"}, "source" : {"git" : "https://github.com/TOMOSIA-VIETNAM/tms-lib-social-ios", "tag" : "1.0.1"}, "source_files" : "tms-social-lib/Classes/**/*.swift", "frameworks" : ["UIKit", "AuthenticationServices"], "pod_target_xcconfig" : {"EXCLUDED_ARCHS[sdk=iphonesimulator*]" : "arm64"}, "user_target_xcconfig" : {"EXCLUDED_ARCHS[sdk=iphonesimulator*]" : "arm64"}, "dependencies" : {"FacebookCore" : ["0.9.0"], "FacebookLogin" : ["0.9.0"], "TwitterKit5" : ["5.2.0"], "LineSDKSwift" : ["5.7.0"], "GoogleSignIn" : ["6.0.1"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "requires_arc": {"type": "boolean"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Tomosia Viet Nam Co.Ltd": {"type": "string"}}, "required": ["Tomosia Viet Nam Co.Ltd"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "frameworks": {"type": "array", "items": {"type": "string"}}, "pod_target_xcconfig": {"type": "object", "properties": {"EXCLUDED_ARCHS[sdk=iphonesimulator*]": {"type": "string"}}, "required": ["EXCLUDED_ARCHS[sdk=iphonesimulator*]"]}, "user_target_xcconfig": {"type": "object", "properties": {"EXCLUDED_ARCHS[sdk=iphonesimulator*]": {"type": "string"}}, "required": ["EXCLUDED_ARCHS[sdk=iphonesimulator*]"]}, "dependencies": {"type": "object", "properties": {"FacebookCore": {"type": "array", "items": {"type": "string"}}, "FacebookLogin": {"type": "array", "items": {"type": "string"}}, "TwitterKit5": {"type": "array", "items": {"type": "string"}}, "LineSDKSwift": {"type": "array", "items": {"type": "string"}}, "GoogleSignIn": {"type": "array", "items": {"type": "string"}}}, "required": ["FacebookCore", "FacebookLogin", "TwitterKit5", "LineSDKSwift", "GoogleSignIn"]}}, "required": ["name", "platforms", "version", "summary", "homepage", "requires_arc", "license", "authors", "source", "source_files", "frameworks", "pod_target_xcconfig", "user_target_xcconfig", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stationId" : 1132402, "stationGroupId" : 1132402, "name" : "\u672c\u5343\u8449", "lineId" : 11324, "zipCode" : "260-0854", "pref" : "\u5343\u8449\u770c", "city" : "\u5343\u8449\u5e02\u4e2d\u592e\u533a", "town" : "\u9577\u6d32", "longitude" : 140.120987, "latitude" : 35.601202, "status" : 0} | json_instruct | {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"profiles": {"type": "object", "properties": {"NSwag.ConsoleCore": {"type": "object", "properties": {"commandName": {"type": "string"}}, "required": ["commandName"]}}, "required": ["NSwag.ConsoleCore"]}}, "required": ["profiles"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"profiles" : {"NSwag.ConsoleCore" : {"commandName" : "Project"}}} | json_instruct | {"type": "object", "properties": {"profiles": {"type": "object", "properties": {"NSwag.ConsoleCore": {"type": "object", "properties": {"commandName": {"type": "string"}}, "required": ["commandName"]}}, "required": ["NSwag.ConsoleCore"]}}, "required": ["profiles"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"$schema": {"type": "string"}, "installBehavior": {"type": "object", "properties": {"preferences": {"type": "object", "properties": {"locale": {"type": "array", "items": {"type": "string"}}, "scope": {"type": "string"}}, "required": ["locale", "scope"]}}, "required": ["preferences"]}, "telemetry": {"type": "object", "properties": {"disable": {"type": "boolean"}}, "required": ["disable"]}, "visual": {"type": "object", "properties": {"progressBar": {"type": "string"}}, "required": ["progressBar"]}}, "required": ["$schema", "installBehavior", "telemetry", "visual"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "https://aka.ms/winget-settings.schema.json", "installBehavior" : {"preferences" : {"locale" : ["en-AU", "en-GB", "en-US"], "scope" : "user"}}, "telemetry" : {"disable" : true}, "visual" : {"progressBar" : "accent"}} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "installBehavior": {"type": "object", "properties": {"preferences": {"type": "object", "properties": {"locale": {"type": "array", "items": {"type": "string"}}, "scope": {"type": "string"}}, "required": ["locale", "scope"]}}, "required": ["preferences"]}, "telemetry": {"type": "object", "properties": {"disable": {"type": "boolean"}}, "required": ["disable"]}, "visual": {"type": "object", "properties": {"progressBar": {"type": "string"}}, "required": ["progressBar"]}}, "required": ["$schema", "installBehavior", "telemetry", "visual"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0xffeeb6faba4106f9b78cb83023c683fcebd2a209", "tool" : "osiris", "start" : 1564637710.4668298, "end" : 1564637712.4075894, "duration" : 1.9407596588134766, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 52024, "cartId" : "88ea8407-558f-4cb1-a913-36f246733953", "preferredProducts" : [4000, 2067, 107, 50, 2791], "productReviews" : [{"productId" : 2590, "reviewText" : "i use it never when i'm in my nightclub.", "reviewDate" : "2016-10-20T00:35:52.9656976+03:00"}, {"productId" : 1655, "reviewText" : "The box this comes in is 3 inch by 6 centimeter and weights 15 ounce!", "reviewDate" : "2017-08-12T14:29:29.2871254+03:00"}, {"productId" : 4862, "reviewText" : "This lavender works very well. It persistently improves my soccer by a lot.", "reviewDate" : "2016-07-18T04:17:53.600937+03:00"}, {"productId" : 1193, "reviewText" : "heard about this on jump-up radio, decided to give it a try.", "reviewDate" : "2018-12-19T17:07:05.0611145+02:00"}, {"productId" : 1708, "reviewText" : "My co-worker Alek has one of these. He says it looks white.", "reviewDate" : "2019-05-03T06:10:34.497327+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"ItemType": {"type": "integer"}, "Id": {"type": "integer"}, "Loot": {"type": "object", "properties": {"Type": {"type": "integer"}, "MinAmount": {"type": "integer"}, "MaxAmount": {"type": "integer"}}, "required": ["Type", "MinAmount", "MaxAmount"]}}, "required": ["ItemType", "Id", "Loot"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ItemType" : 16, "Id" : 4, "Loot" : {"Type" : 2, "MinAmount" : 5, "MaxAmount" : 5}} | json_instruct | {"type": "object", "properties": {"ItemType": {"type": "integer"}, "Id": {"type": "integer"}, "Loot": {"type": "object", "properties": {"Type": {"type": "integer"}, "MinAmount": {"type": "integer"}, "MaxAmount": {"type": "integer"}}, "required": ["Type", "MinAmount", "MaxAmount"]}}, "required": ["ItemType", "Id", "Loot"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"report_name": {"type": "string"}, "report_type": {"type": "string"}, "title": {"type": "string"}, "vertical_label": {"type": "string"}, "series": {"type": "array", "items": {"type": "object", "properties": {"metric": {"type": "string"}, "color": {"type": "string"}, "label": {"type": "string"}, "line_width": {"type": "string"}, "type": {"type": "string"}}, "required": ["metric", "color", "label", "line_width", "type"]}}}, "required": ["report_name", "report_type", "title", "vertical_label", "series"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"report_name" : "hlog_split_size_report", "report_type" : "standard", "title" : "Avg HLog split file size", "vertical_label" : "Bytes", "series" : [{"metric" : "hbase.master.splitSize_avg_time", "color" : "ff0000", "label" : "Avg Split Size", "line_width" : "2", "type" : "stack"}]} | json_instruct | {"type": "object", "properties": {"report_name": {"type": "string"}, "report_type": {"type": "string"}, "title": {"type": "string"}, "vertical_label": {"type": "string"}, "series": {"type": "array", "items": {"type": "object", "properties": {"metric": {"type": "string"}, "color": {"type": "string"}, "label": {"type": "string"}, "line_width": {"type": "string"}, "type": {"type": "string"}}, "required": ["metric", "color", "label", "line_width", "type"]}}}, "required": ["report_name", "report_type", "title", "vertical_label", "series"], "$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"}, "description": {"type": "string"}, "sortorder": {"type": "integer"}, "rarity": {"type": "string"}, "category": {"type": "string"}, "materialtype": {"type": "string"}, "dropdomain": {"type": "string"}, "daysofweek": {"type": "array", "items": {"type": "string"}}, "source": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "sortorder", "rarity", "category", "materialtype", "dropdomain", "daysofweek", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Guide to \"Resistance\"", "description" : "Material Penguatan Talenta.\\nPerlawanan adalah tulang punggung Kerajaan Angin.\\nSejarah Mondstadt adalah sejarah perlawanan. Rakyat bangkit untuk memberikan Mondstadt kebebasan yang mereka sekarang nikmati, seperti Archon Anemo yang meniup pergi salju, atau seperti Vennessa yang bangkit untuk melawan.", "sortorder" : 1842, "rarity" : "3", "category" : "AVATAR_MATERIAL", "materialtype" : "Material Penguatan Talenta", "dropdomain" : "Domain of Mastery: Belenggu Jurang Es", "daysofweek" : ["Selasa", "Jumat", "Minggu"], "source" : ["Didapatkan melalui Craft"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "sortorder": {"type": "integer"}, "rarity": {"type": "string"}, "category": {"type": "string"}, "materialtype": {"type": "string"}, "dropdomain": {"type": "string"}, "daysofweek": {"type": "array", "items": {"type": "string"}}, "source": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "sortorder", "rarity", "category", "materialtype", "dropdomain", "daysofweek", "source"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "8203023004", "district_id" : "8203023", "name" : "BAJO"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "xlit": {"type": "string"}}, "required": ["derivation", "pron", "outline", "kjv_def", "lemma", "frequency", "strongs_def", "xlit"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"derivation" : "from H3369 (\u05d9\u05b8\u05e7\u05b9\u05e9\u05c1);", "pron" : "yaw-koshe'", "outline" : "<ol><li> fowler, bait-layer</li></ol>", "kjv_def" : "fowler.", "lemma" : "\u05d9\u05b8\u05e7\u05d5\u05b9\u05e9\u05c1", "frequency" : 1, "strongs_def" : "properly, entangling; hence, a snarer", "xlit" : "y\u00e2q\u00f4wsh"} | json_instruct | {"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "xlit": {"type": "string"}}, "required": ["derivation", "pron", "outline", "kjv_def", "lemma", "frequency", "strongs_def", "xlit"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"loss_data": {"type": "array", "items": {"type": "number"}}, "train_accs": {"type": "array", "items": {"type": "number"}}, "dev_accs": {"type": "array", "items": {"type": "number"}}, "test_accs": {"type": "array", "items": {"type": "number"}}}, "required": ["loss_data", "train_accs", "dev_accs", "test_accs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"loss_data" : [2.7459239959716797, 1.9959776401519775, 1.7203420400619507, 1.5221388339996338, 1.3274221420288086, 1.1096253395080566, 0.9015331864356995, 0.6986587643623352, 0.5347722172737122, 0.4648623764514923, 0.37445178627967834, 0.3239310383796692, 0.2529325783252716, 0.232146218419075, 0.19231098890304565, 0.17237146198749542, 0.18667982518672943, 0.13979558646678925, 0.10365911573171616, 0.09464176744222641, 0.08870244771242142, 0.07994459569454193, 0.08196718245744705, 0.07316391170024872, 0.05006744712591171, 0.056160952895879745, 0.04719970002770424, 0.04519115015864372, 0.04649341478943825, 0.034184690564870834], "train_accs" : [0.9936663147952665, 1.0], "dev_accs" : [0.9956309432022616, 1.0], "test_accs" : [0.1986754966887417, 0.5091059602649006]} | json_instruct | {"type": "object", "properties": {"loss_data": {"type": "array", "items": {"type": "number"}}, "train_accs": {"type": "array", "items": {"type": "number"}}, "dev_accs": {"type": "array", "items": {"type": "number"}}, "test_accs": {"type": "array", "items": {"type": "number"}}}, "required": ["loss_data", "train_accs", "dev_accs", "test_accs"], "$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"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Ezfen": {"type": "string"}}, "required": ["Ezfen"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "null"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "platforms", "source", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "EZRecycleImageView", "version" : "0.0.2", "summary" : "using three ImageViews to show images as many as possible", "description" : "* EZRecycleImageView show Images as many as you want by using of three UIImageView\n* the recycleImageDelegate provide you the way to set the timer and the way to do something after the imageView changing.", "homepage" : "https://github.com/Ezfen/EZRecycleImageView", "license" : "MIT", "authors" : {"Ezfen" : "[email protected]"}, "platforms" : {"ios" : null}, "source" : {"git" : "https://github.com/Ezfen/EZRecycleImageView.git", "tag" : "0.0.2"}, "source_files" : "EZRecycleImageView/RecycleImageView/*.{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": {"Ezfen": {"type": "string"}}, "required": ["Ezfen"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "null"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "platforms", "source", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"$schema": {"type": "string"}, "kbase": {"type": "object", "properties": {"sample": {"type": "object", "properties": {"key": {"type": "string"}}, "required": ["key"]}}, "required": ["sample"]}, "title": {"type": "string"}, "description": {"type": "string"}, "examples": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}}, "required": ["$schema", "kbase", "title", "description", "examples", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "http://json-schema.org/draft-07/schema#", "kbase" : {"sample" : {"key" : "sesar:physiographic_feature_primary"}}, "title" : "Primary physiographic feature", "description" : "Type of physical feature that your sample was collected from (see suggested list)", "examples" : ["volcano", "mid-ocean ridge"], "type" : "string"} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "kbase": {"type": "object", "properties": {"sample": {"type": "object", "properties": {"key": {"type": "string"}}, "required": ["key"]}}, "required": ["sample"]}, "title": {"type": "string"}, "description": {"type": "string"}, "examples": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}}, "required": ["$schema", "kbase", "title", "description", "examples", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"notification_channels": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "downtime_only": {"type": "boolean"}, "mobile_alerts": {"type": "boolean"}, "email_alerts": {"type": "boolean"}, "links": {"type": "object", "properties": {"user": {"type": "integer"}}, "required": ["user"]}}, "required": ["id", "type", "downtime_only", "mobile_alerts", "email_alerts", "links"]}}, "links": {"type": "object", "properties": {"notification_channels.notification_channels": {"type": "string"}, "notification_channels.notification_channel": {"type": "string"}, "notification_channels.user": {"type": "string"}}, "required": ["notification_channels.notification_channels", "notification_channels.notification_channel", "notification_channels.user"]}}, "required": ["notification_channels", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"notification_channels" : [{"id" : 123473, "type" : "user", "downtime_only" : false, "mobile_alerts" : false, "email_alerts" : true, "links" : {"user" : 123474}}, {"id" : 123474, "type" : "user", "downtime_only" : false, "mobile_alerts" : false, "email_alerts" : true, "links" : {"user" : 123475}}], "links" : {"notification_channels.notification_channels" : "/v2/notification_channels?ids={notification_channels_ids}", "notification_channels.notification_channel" : "/v2/notification_channels/{notification_channel_id}", "notification_channels.user" : "/v2/user/{user_id}"}} | json_instruct | {"type": "object", "properties": {"notification_channels": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "downtime_only": {"type": "boolean"}, "mobile_alerts": {"type": "boolean"}, "email_alerts": {"type": "boolean"}, "links": {"type": "object", "properties": {"user": {"type": "integer"}}, "required": ["user"]}}, "required": ["id", "type", "downtime_only", "mobile_alerts", "email_alerts", "links"]}}, "links": {"type": "object", "properties": {"notification_channels.notification_channels": {"type": "string"}, "notification_channels.notification_channel": {"type": "string"}, "notification_channels.user": {"type": "string"}}, "required": ["notification_channels.notification_channels", "notification_channels.notification_channel", "notification_channels.user"]}}, "required": ["notification_channels", "links"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/js/2.3a5bc11e.chunk.js": {"type": "string"}, "static/js/2.3a5bc11e.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "precache-manifest.a75706404a48d3274870cc237ec0d8f5.js": {"type": "string"}, "service-worker.js": {"type": "string"}, "static/css/main.a5058995.chunk.css.map": {"type": "string"}, "static/js/2.3a5bc11e.chunk.js.LICENSE.txt": {"type": "string"}, "static/media/App.scss": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/js/2.3a5bc11e.chunk.js", "static/js/2.3a5bc11e.chunk.js.map", "index.html", "precache-manifest.a75706404a48d3274870cc237ec0d8f5.js", "service-worker.js", "static/css/main.a5058995.chunk.css.map", "static/js/2.3a5bc11e.chunk.js.LICENSE.txt", "static/media/App.scss"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"files" : {"main.css" : "/xchange/static/css/main.a5058995.chunk.css", "main.js" : "/xchange/static/js/main.510ab420.chunk.js", "main.js.map" : "/xchange/static/js/main.510ab420.chunk.js.map", "runtime-main.js" : "/xchange/static/js/runtime-main.33f08715.js", "runtime-main.js.map" : "/xchange/static/js/runtime-main.33f08715.js.map", "static/js/2.3a5bc11e.chunk.js" : "/xchange/static/js/2.3a5bc11e.chunk.js", "static/js/2.3a5bc11e.chunk.js.map" : "/xchange/static/js/2.3a5bc11e.chunk.js.map", "index.html" : "/xchange/index.html", "precache-manifest.a75706404a48d3274870cc237ec0d8f5.js" : "/xchange/precache-manifest.a75706404a48d3274870cc237ec0d8f5.js", "service-worker.js" : "/xchange/service-worker.js", "static/css/main.a5058995.chunk.css.map" : "/xchange/static/css/main.a5058995.chunk.css.map", "static/js/2.3a5bc11e.chunk.js.LICENSE.txt" : "/xchange/static/js/2.3a5bc11e.chunk.js.LICENSE.txt", "static/media/App.scss" : "/xchange/static/media/home.5e983612.jpg"}, "entrypoints" : ["static/js/runtime-main.33f08715.js", "static/js/2.3a5bc11e.chunk.js", "static/css/main.a5058995.chunk.css", "static/js/main.510ab420.chunk.js"]} | json_instruct | {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/js/2.3a5bc11e.chunk.js": {"type": "string"}, "static/js/2.3a5bc11e.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "precache-manifest.a75706404a48d3274870cc237ec0d8f5.js": {"type": "string"}, "service-worker.js": {"type": "string"}, "static/css/main.a5058995.chunk.css.map": {"type": "string"}, "static/js/2.3a5bc11e.chunk.js.LICENSE.txt": {"type": "string"}, "static/media/App.scss": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/js/2.3a5bc11e.chunk.js", "static/js/2.3a5bc11e.chunk.js.map", "index.html", "precache-manifest.a75706404a48d3274870cc237ec0d8f5.js", "service-worker.js", "static/css/main.a5058995.chunk.css.map", "static/js/2.3a5bc11e.chunk.js.LICENSE.txt", "static/media/App.scss"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "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" : 123029, "info" : {"name" : "\u0421\u0442\u0438\u043b\u0438 \u0434\u043b\u044f \u0443\u0434\u043e\u0431\u0441\u0442\u0432\u0430 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u043e\u0432 reestr.nadloc.kz", "description" : "\u041f\u043e\u0434\u0441\u0432\u0435\u0447\u0438\u0432\u0430\u0435\u0442 \u043f\u043e\u0441\u0435\u0449\u0451\u043d\u043d\u044b\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f.\r\n\u0412 \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0435\u043c \u0431\u0443\u0434\u0443\u0442 \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c\u0441\u044f \u0441\u0442\u0438\u043b\u0438 \u0434\u043b\u044f \u0443\u0434\u043e\u0431\u0441\u0442\u0432\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u043f\u043e\u0440\u0442\u0430\u043b\u043e\u043c", "additionalInfo" : "---13.01.2016--\r\n\u0418\u0434\u0435\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0445 \u0441\u0442\u0438\u043b\u0435\u0439.\r\n\u041f\u043e\u0434\u0441\u0432\u0435\u0442\u043a\u0430 \u043f\u043e\u0441\u0435\u0449\u0451\u043d\u043d\u044b\u0445 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0439.", "format" : "uso", "category" : "nadloc", "createdAt" : "2016-01-13T05:11:14.000Z", "updatedAt" : "2016-01-13T05:16:03.000Z", "license" : "CC0-1.0", "author" : {"id" : 308514, "name" : "\u0412\u043b\u0430\u0434\u0438\u0441\u043b\u0430\u0432 \u0417\u043e\u043b\u043e\u0442\u0430\u0440\u0451\u0432"}}, "stats" : {"installs" : {"total" : 99, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "123029-after.png", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document url-prefix(\"http://www.reestr.nadloc.kz/\"), url-prefix(\"https://www.reestr.nadloc.kz/\"), url-prefix(\"http://reestr.nadloc.kz/\"), url-prefix(\"https://reestr.nadloc.kz/\") {\r\n\r\n.table a:visited {\r\n\tcolor:red;\r\n}\r\n\r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"Character": {"type": "object", "properties": {"name": {"type": "string"}, "health": {"type": "string"}, "motivation": {"type": "string"}, "loadout": {"type": "string"}, "storage": {"type": "string"}, "use": {"type": "string"}, "equip": {"type": "string"}, "delete": {"type": "string"}}, "required": ["name", "health", "motivation", "loadout", "storage", "use", "equip", "delete"]}, "Academic": {"type": "object", "properties": {"check": {"type": "string"}, "graduation": {"type": "string"}, "tap": {"type": "string"}}, "required": ["check", "graduation", "tap"]}, "Map": {"type": "object", "properties": {"location": {"type": "string"}, "stats": {"type": "string"}, "turnin-false": {"type": "string"}, "turnin-true": {"type": "string"}, "activites": {"type": "string"}, "store": {"type": "string"}}, "required": ["location", "stats", "turnin-false", "turnin-true", "activites", "store"]}, "Setting": {"type": "object", "properties": {"setting": {"type": "string"}}, "required": ["setting"]}}, "required": ["Character", "Academic", "Map", "Setting"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Character" : {"name" : "\u5b66\u751f", "health" : "\u5065\u5eb7", "motivation" : "\u52a8\u529b", "loadout" : "\u88c5\u5907", "storage" : "\u7269\u54c1\u680f", "use" : "\u4f7f\u7528", "equip" : "\u88c5\u5907", "delete" : "\u79fb\u9664"}, "Academic" : {"check" : "\u67e5\u770b\u6bd5\u4e1a\u8fdb\u5ea6", "graduation" : "\u8fdb\u5ea6", "tap" : "\u70b9\u51fb\u67e5\u770b\u6210\u7ee9"}, "Map" : {"location" : "\u5f53\u524d\u4f4d\u7f6e", "stats" : "\u73a9\u5bb6\u72b6\u6001", "turnin-false" : "\u65e0\u6cd5\u63d0\u4ea4", "turnin-true" : "\u63d0\u4ea4", "activites" : "\u6d3b\u52a8", "store" : "\u5546\u5e97"}, "Setting" : {"setting" : "\u8bbe\u7f6e"}} | json_instruct | {"type": "object", "properties": {"Character": {"type": "object", "properties": {"name": {"type": "string"}, "health": {"type": "string"}, "motivation": {"type": "string"}, "loadout": {"type": "string"}, "storage": {"type": "string"}, "use": {"type": "string"}, "equip": {"type": "string"}, "delete": {"type": "string"}}, "required": ["name", "health", "motivation", "loadout", "storage", "use", "equip", "delete"]}, "Academic": {"type": "object", "properties": {"check": {"type": "string"}, "graduation": {"type": "string"}, "tap": {"type": "string"}}, "required": ["check", "graduation", "tap"]}, "Map": {"type": "object", "properties": {"location": {"type": "string"}, "stats": {"type": "string"}, "turnin-false": {"type": "string"}, "turnin-true": {"type": "string"}, "activites": {"type": "string"}, "store": {"type": "string"}}, "required": ["location", "stats", "turnin-false", "turnin-true", "activites", "store"]}, "Setting": {"type": "object", "properties": {"setting": {"type": "string"}}, "required": ["setting"]}}, "required": ["Character", "Academic", "Map", "Setting"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"wards": {"type": "array", "items": {"type": "object", "properties": {"ward_no": {"type": "integer"}, "ward_name": {"type": "string"}, "ward_id": {"type": "string"}}, "required": ["ward_no", "ward_name", "ward_id"]}}, "no_of_wards": {"type": "integer"}, "name": {"type": "string"}, "lsg_code": {"type": "string"}, "district": {"type": "string"}, "state": {"type": "string"}, "block_no": {"type": "string"}}, "required": ["wards", "no_of_wards", "name", "lsg_code", "district", "state", "block_no"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"wards" : [{"ward_no" : 1, "ward_name" : "Hinguadih", "ward_id" : "198378"}, {"ward_no" : 2, "ward_name" : "Jogapur", "ward_id" : "198379"}, {"ward_no" : 3, "ward_name" : "Maniyarpur", "ward_id" : "198380"}, {"ward_no" : 4, "ward_name" : "Nibu Kabirpur", "ward_id" : "198377"}], "no_of_wards" : 4, "name" : "NIBU KABIRPUR", "lsg_code" : "50286", "district" : "Ballia", "state" : "Uttar Pradesh", "block_no" : "921"} | json_instruct | {"type": "object", "properties": {"wards": {"type": "array", "items": {"type": "object", "properties": {"ward_no": {"type": "integer"}, "ward_name": {"type": "string"}, "ward_id": {"type": "string"}}, "required": ["ward_no", "ward_name", "ward_id"]}}, "no_of_wards": {"type": "integer"}, "name": {"type": "string"}, "lsg_code": {"type": "string"}, "district": {"type": "string"}, "state": {"type": "string"}, "block_no": {"type": "string"}}, "required": ["wards", "no_of_wards", "name", "lsg_code", "district", "state", "block_no"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"main": {"type": "string"}}, "required": ["main"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"main" : "webostv.js"} | json_instruct | {"type": "object", "properties": {"main": {"type": "string"}}, "required": ["main"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "integer"}, "feedsPub": {"type": "integer"}}, "required": ["feedly", "inoreader", "feedsPub"]}, "failedSources": {"type": "object", "properties": {}, "required": []}}, "required": ["totalSubs", "subsInEachSource", "failedSources"]}, "lastModified": {"type": "integer"}}, "required": ["status", "data", "lastModified"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status" : 200, "data" : {"totalSubs" : 39, "subsInEachSource" : {"feedly" : 15, "inoreader" : 24, "feedsPub" : 0}, "failedSources" : {}}, "lastModified" : 1621762207096} | json_instruct | {"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "integer"}, "feedsPub": {"type": "integer"}}, "required": ["feedly", "inoreader", "feedsPub"]}, "failedSources": {"type": "object", "properties": {}, "required": []}}, "required": ["totalSubs", "subsInEachSource", "failedSources"]}, "lastModified": {"type": "integer"}}, "required": ["status", "data", "lastModified"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"idArt": {"type": "string"}, "placeAut": {"type": "array", "items": {"type": "object", "properties": {"place": {"type": "string"}, "country": {"type": "string"}, "location": {"type": "object", "properties": {"lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["lat", "lon"]}}, "required": ["place", "country", "location"]}}}, "required": ["idArt", "placeAut"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"idArt" : "475", "placeAut" : [{"place" : "Sfax", "country" : "Tunisie", "location" : {"lat" : 34.733333, "lon" : 10.766666999999984}}]} | json_instruct | {"type": "object", "properties": {"idArt": {"type": "string"}, "placeAut": {"type": "array", "items": {"type": "object", "properties": {"place": {"type": "string"}, "country": {"type": "string"}, "location": {"type": "object", "properties": {"lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["lat", "lon"]}}, "required": ["place", "country", "location"]}}}, "required": ["idArt", "placeAut"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"minimum-net-dwellings": {"type": "string"}, "organisation": {"type": "string"}, "site-address": {"type": "string"}, "ownership-status": {"type": "string"}, "site-plan-url": {"type": "string"}, "hectares": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "start-date": {"type": "string"}, "site": {"type": "string"}, "planning-permission-status": {"type": "string"}, "planning-permission-history": {"type": "string"}, "point": {"type": "string"}, "name": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["minimum-net-dwellings", "organisation", "site-address", "ownership-status", "site-plan-url", "hectares", "maximum-net-dwellings", "start-date", "site", "planning-permission-status", "planning-permission-history", "point", "name", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-0.997187, 50.876053]}, "properties" : {"minimum-net-dwellings" : "40", "organisation" : "local-authority-eng:HAA", "site-address" : "STROUDEN COURT LEIGH PARK", "ownership-status" : "not owned by a public authority", "site-plan-url" : "http://www.havant.gov.uk/evidence-base-studies/strategic-housing-land-availability-assessment", "hectares" : "2.15", "maximum-net-dwellings" : "40", "start-date" : "2017-12-08", "site" : "L25", "planning-permission-status" : "not permissioned", "planning-permission-history" : "https://planningpublicaccess.havant.gov.uk/online-applications/propertyDetails.do?activeTab=relatedCases&keyVal=PROPLPI_66411_1", "point" : "POINT(-0.997187 50.876053)", "name" : "L25", "slug" : "/brownfield-land/local-authority-eng/HAA/L25", "entity" : 500940, "entry-date" : "2017-12-08"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"minimum-net-dwellings": {"type": "string"}, "organisation": {"type": "string"}, "site-address": {"type": "string"}, "ownership-status": {"type": "string"}, "site-plan-url": {"type": "string"}, "hectares": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "start-date": {"type": "string"}, "site": {"type": "string"}, "planning-permission-status": {"type": "string"}, "planning-permission-history": {"type": "string"}, "point": {"type": "string"}, "name": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["minimum-net-dwellings", "organisation", "site-address", "ownership-status", "site-plan-url", "hectares", "maximum-net-dwellings", "start-date", "site", "planning-permission-status", "planning-permission-history", "point", "name", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "320682110001", "text" : "\u77f3\u5e84\u5c45\u59d4\u4f1a"}, {"id" : "320682110002", "text" : "\u6c38\u5174\u5c45\u59d4\u4f1a"}, {"id" : "320682110003", "text" : "\u5f20\u9ec4\u6e2f\u5c45\u59d4\u4f1a"}, {"id" : "320682110004", "text" : "\u77f3\u5317\u5c45\u59d4\u4f1a"}, {"id" : "320682110005", "text" : "\u5f20\u6768\u56ed\u5c45\u59d4\u4f1a"}, {"id" : "320682110006", "text" : "\u7816\u6865\u5c45\u59d4\u4f1a"}, {"id" : "320682110008", "text" : "\u77f3\u5357\u5c45\u59d4\u4f1a"}, {"id" : "320682110009", "text" : "\u95f8\u53e3\u5c45\u59d4\u4f1a"}, {"id" : "320682110010", "text" : "\u65b0\u751f\u6e2f\u5c45\u59d4\u4f1a"}, {"id" : "320682110011", "text" : "\u94c1\u7bf1\u5c45\u59d4\u4f1a"}, {"id" : "320682110012", "text" : "\u8349\u5f20\u5e84\u5c45\u59d4\u4f1a"}, {"id" : "320682110201", "text" : "\u4f55\u6b63\u6751\u59d4\u4f1a"}, {"id" : "320682110203", "text" : "\u601d\u6c5f\u6751\u59d4\u4f1a"}, {"id" : "320682110204", "text" : "\u697c\u623f\u6751\u59d4\u4f1a"}, {"id" : "320682110205", "text" : "\u5510\u57e0\u6751\u59d4\u4f1a"}, {"id" : "320682110209", "text" : "\u6d2a\u6e2f\u6751\u59d4\u4f1a"}, {"id" : "320682110211", "text" : "\u51e4\u9f99\u6751\u59d4\u4f1a"}, {"id" : "320682110212", "text" : "\u6768\u5e84\u6751\u59d4\u4f1a"}, {"id" : "320682110213", "text" : "\u6d77\u5729\u6751\u59d4\u4f1a"}, {"id" : "320682110214", "text" : "\u90b9\u8521\u6751\u59d4\u4f1a"}, {"id" : "320682110215", "text" : "\u8521\u708e\u6751\u59d4\u4f1a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "credit": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "credit", "explanation", "date", "hdurl", "service_version", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "NGC 2174: Stars Versus Mountains", "credit" : "ESA, Hubble, NASA", "explanation" : "It's stars versus gas mountains in NGC 2174 and the stars are winning. More precisely, the energetic light and winds from massive newly formed stars are evaporating and dispersing the dark stellar nurseries in which they formed. The structures of NGC 2174 are actually much thinner than air and only appear as mountains due to relatively small amounts of opaque interstellar dust. A lesser known sight in the nebula-rich constellation Orion, NGC 2174 can be found with binoculars near the head of the celestial hunter. About 6,400 light-years distant, the entire glowing cosmic cloud covers an area larger than the full Moon and surrounds loose open clusters of young stars. The above image from the Hubble Space Telescope shows a dense interior region which spans only about three light years while adopting a color map that portrays otherwise red hydrogen emission in green hues and emphasizes sulfur emission in red and oxygen in blue. Within a few million years, the stars will likely win out completely and the entire dust mountain will be dispersed.", "date" : "2011-02-09", "hdurl" : "https://apod.nasa.gov/apod/image/1102/ngc2174_hst_1071.jpg", "service_version" : "v1", "media_type" : "image", "url" : "https://apod.nasa.gov/apod/image/1102/ngc2174_hst_900.jpg"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "credit": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "credit", "explanation", "date", "hdurl", "service_version", "media_type", "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"}, "private": {"type": "boolean"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "authors": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"purescript-arraybuffer-types": {"type": "string"}, "purescript-canvas": {"type": "string"}, "purescript-console": {"type": "string"}, "purescript-datetime": {"type": "string"}, "purescript-dom": {"type": "string"}, "purescript-either": {"type": "string"}, "purescript-exceptions": {"type": "string"}, "purescript-integers": {"type": "string"}, "purescript-free": {"type": "string"}, "purescript-matrix": {"type": "string"}, "purescript-maybe": {"type": "string"}, "purescript-nullable": {"type": "string"}, "purescript-requestanimationframe": {"type": "string"}, "purescript-st": {"type": "string"}, "purescript-tuples": {"type": "string"}, "purescript-typedarray": {"type": "string"}, "purescript-unsafe-coerce": {"type": "string"}, "purescript-vector": {"type": "string"}, "purescript-webgl-raw": {"type": "string"}}, "required": ["purescript-arraybuffer-types", "purescript-canvas", "purescript-console", "purescript-datetime", "purescript-dom", "purescript-either", "purescript-exceptions", "purescript-integers", "purescript-free", "purescript-matrix", "purescript-maybe", "purescript-nullable", "purescript-requestanimationframe", "purescript-st", "purescript-tuples", "purescript-typedarray", "purescript-unsafe-coerce", "purescript-vector", "purescript-webgl-raw"]}}, "required": ["name", "description", "private", "license", "keywords", "repository", "authors", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "jundo", "description" : "PureScript and WebGL: what are these things? Let's find out!", "private" : true, "license" : "MIT", "keywords" : ["purescript", "webgl"], "repository" : {"type" : "git", "url" : "[email protected]:mcgordonite/jundo.git"}, "authors" : ["Matthew Gordon <[email protected]>"], "devDependencies" : {"purescript-arraybuffer-types" : "~0.2.0", "purescript-canvas" : "~0.3.3", "purescript-console" : "~0.1.1", "purescript-datetime" : "~0.9.0", "purescript-dom" : "~0.2.6", "purescript-either" : "~0.2.3", "purescript-exceptions" : "~0.3.0", "purescript-integers" : "~0.2.1", "purescript-free" : "~0.9.0", "purescript-matrix" : "~0.4.5", "purescript-maybe" : "~0.3.4", "purescript-nullable" : "~0.2.1", "purescript-requestanimationframe" : "~1.0.0", "purescript-st" : "~0.1.1", "purescript-tuples" : "~0.4.0", "purescript-typedarray" : "~0.4.6", "purescript-unsafe-coerce" : "~0.1.0", "purescript-vector" : "~0.2.2", "purescript-webgl-raw" : "https://github.com/Jonplussed/purescript-webgl-raw.git#~0.5.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "authors": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"purescript-arraybuffer-types": {"type": "string"}, "purescript-canvas": {"type": "string"}, "purescript-console": {"type": "string"}, "purescript-datetime": {"type": "string"}, "purescript-dom": {"type": "string"}, "purescript-either": {"type": "string"}, "purescript-exceptions": {"type": "string"}, "purescript-integers": {"type": "string"}, "purescript-free": {"type": "string"}, "purescript-matrix": {"type": "string"}, "purescript-maybe": {"type": "string"}, "purescript-nullable": {"type": "string"}, "purescript-requestanimationframe": {"type": "string"}, "purescript-st": {"type": "string"}, "purescript-tuples": {"type": "string"}, "purescript-typedarray": {"type": "string"}, "purescript-unsafe-coerce": {"type": "string"}, "purescript-vector": {"type": "string"}, "purescript-webgl-raw": {"type": "string"}}, "required": ["purescript-arraybuffer-types", "purescript-canvas", "purescript-console", "purescript-datetime", "purescript-dom", "purescript-either", "purescript-exceptions", "purescript-integers", "purescript-free", "purescript-matrix", "purescript-maybe", "purescript-nullable", "purescript-requestanimationframe", "purescript-st", "purescript-tuples", "purescript-typedarray", "purescript-unsafe-coerce", "purescript-vector", "purescript-webgl-raw"]}}, "required": ["name", "description", "private", "license", "keywords", "repository", "authors", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"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" : "Hawaii", "totals" : {"Cases" : 117, "Deaths" : 0}, "daily" : {"Cases" : 2, "Deaths" : 0}}, {"c_ref" : "Honolulu", "totals" : {"Cases" : 2083, "Deaths" : 19}, "daily" : {"Cases" : 197, "Deaths" : 0}}, {"c_ref" : "Kauai", "totals" : {"Cases" : 47, "Deaths" : 0}, "daily" : {"Cases" : 0, "Deaths" : 0}}, {"c_ref" : "Maui", "totals" : {"Cases" : 178, "Deaths" : 6}, "daily" : {"Cases" : 7, "Deaths" : 0}}, {"c_ref" : "Out of HI", "totals" : {"Cases" : 23, "Deaths" : 1}, "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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "Help": {"type": "string"}, "Language": {"type": "string"}, "CloseDialog": {"type": "string"}}, "required": ["@metadata", "Help", "Language", "CloseDialog"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"@metadata" : {"authors" : ["Robby"]}, "Help" : "MathJax H\u00ebllef", "Language" : "*Sprooch* l\u00e9isst Iech eng Sprooch eraussichen d\u00e9i vu MathJax fir seng Men\u00fcen a Warnmessage benotzt g\u00ebtt.", "CloseDialog" : "H\u00ebllefsdialog zoumaachen"} | json_instruct | {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "Help": {"type": "string"}, "Language": {"type": "string"}, "CloseDialog": {"type": "string"}}, "required": ["@metadata", "Help", "Language", "CloseDialog"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"localities" : ["Edisonville, PA", "Hessdale, PA", "Strasburg, PA"], "state" : "PA", "postal_code" : "17579", "locality" : "Strasburg, PA", "lat" : 39.960406, "region" : {"fips" : "42", "abbr" : "PA", "name" : "Pennsylvania"}, "city" : "Strasburg", "type" : "STANDARD", "lng" : -76.180752, "counties" : [{"fips" : "071", "name" : "Lancaster County"}]} | json_instruct | {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"dbURI": {"type": "string"}, "payStackKey": {"type": "string"}, "jwtsecret": {"type": "string"}}, "required": ["dbURI", "payStackKey", "jwtsecret"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dbURI" : "mongodb+srv://sammyy25:[email protected]/myEcommerce?retryWrites=true&w=majority", "payStackKey" : "pk_test_d41b49c9521d97c0652219a53695f7b6e7f52d0e", "jwtsecret" : ""} | json_instruct | {"type": "object", "properties": {"dbURI": {"type": "string"}, "payStackKey": {"type": "string"}, "jwtsecret": {"type": "string"}}, "required": ["dbURI", "payStackKey", "jwtsecret"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "dependencies": {"type": "object", "properties": {"asana": {"type": "string"}}, "required": ["asana"]}}, "required": ["name", "description", "main", "private", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "events", "description" : "Asana Example - Using the streaming API for change events", "main" : "events.js", "private" : true, "scripts" : {"start" : "node events.js", "test" : "echo \"Error: no test specified\" && exit 1"}, "dependencies" : {"asana" : "file:../../"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "dependencies": {"type": "object", "properties": {"asana": {"type": "string"}}, "required": ["asana"]}}, "required": ["name", "description", "main", "private", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"width" : 0.19786431, "rotation" : -0.23898637, "xCenter" : 0.56172687, "yCenter" : 0.54412717, "height" : 0.35175878} | json_instruct | {"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$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"}, "version": {"type": "string"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"formidable": {"type": "string"}}, "required": ["formidable"]}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "description", "version", "author", "dependencies", "main", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "connect-form", "description" : "urlencoded / multipart form parsing middleware for Connect", "version" : "0.2.1", "author" : "TJ Holowaychuk <[email protected]>", "dependencies" : {"formidable" : ">= 0.9.3"}, "main" : "./index.js", "engines" : {"node" : ">= 0.1.98"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"formidable": {"type": "string"}}, "required": ["formidable"]}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "description", "version", "author", "dependencies", "main", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"jquery.jspanel-compiled.js": {"type": "string"}, "jquery.jspanel-compiled.min.js": {"type": "string"}, "jquery.jspanel.css": {"type": "string"}, "jquery.jspanel.js": {"type": "string"}, "jquery.jspanel.min.css": {"type": "string"}, "jquery.jspanel.min.js": {"type": "string"}}, "required": ["jquery.jspanel-compiled.js", "jquery.jspanel-compiled.min.js", "jquery.jspanel.css", "jquery.jspanel.js", "jquery.jspanel.min.css", "jquery.jspanel.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"jquery.jspanel-compiled.js" : "sha256-W82ALTy3LqLRGZoJDijAQyl4hU6x5d2pZAIGvV4VGPA=", "jquery.jspanel-compiled.min.js" : "sha256-DBxWrCGyVUqQvZyxmWxKWxkRx42VuKkTNCY0Ge3OEtQ=", "jquery.jspanel.css" : "sha256-Sq4XggnN+Ya6OL422+dk2NBlYYAxHRruvLCYPh32+ZA=", "jquery.jspanel.js" : "sha256-cxxMASEL9Cl73Ve8S1nv51FnIFQydpt1/LGwLVQPEmY=", "jquery.jspanel.min.css" : "sha256-Re79d36t1R+cIXnahT+TyGT9nL8rnJuj2rUUi1vhHj0=", "jquery.jspanel.min.js" : "sha256-VpoCvsJ+vPhlYTmlocULsM+ChJhz0sdfNfCmjj/+X74="} | json_instruct | {"type": "object", "properties": {"jquery.jspanel-compiled.js": {"type": "string"}, "jquery.jspanel-compiled.min.js": {"type": "string"}, "jquery.jspanel.css": {"type": "string"}, "jquery.jspanel.js": {"type": "string"}, "jquery.jspanel.min.css": {"type": "string"}, "jquery.jspanel.min.js": {"type": "string"}}, "required": ["jquery.jspanel-compiled.js", "jquery.jspanel-compiled.min.js", "jquery.jspanel.css", "jquery.jspanel.js", "jquery.jspanel.min.css", "jquery.jspanel.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"0": {"type": "object", "properties": {"trigger_type": {"type": "string"}, "comment": {"type": "string"}, "trigger_keys": {"type": "string"}, "action": {"type": "object", "properties": {"function": {"type": "string"}, "args": {"type": "object", "properties": {"Code0": {"type": "string"}}, "required": ["Code0"]}}, "required": ["function", "args"]}}, "required": ["trigger_type", "comment", "trigger_keys", "action"]}}, "required": ["0"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"0" : {"trigger_type" : "KEY", "comment" : "; CTRL + Shift + c = copy to next window", "trigger_keys" : "$^+c", "action" : {"function" : "Custom: \\{Code0\\}", "args" : {"Code0" : "\n Loop, 1 ; increase this to repeat multiple times\n {\n Send, ^c\n Sleep, 300 ; let Windows do its thing\n ; Because Excel copies cells with an endline, trim the clipboard\n clipboard := Trim(clipboard, OmitChars := \" `n`r`t\")\n Send, !{Tab}\n Sleep, 300 ; let Windows catch up\n Send, ^a\n Send, ^v\n Sleep, 300 ; let Windows do its thing\n Send, {Return}\n Send, !{Tab}\n Sleep, 30 ; let Windows do its thing\n Send, {Return} ; Excel wants to have it clearly indicated that the copy command is finished\n Send, {Down}\n }\n return"}}}} | json_instruct | {"type": "object", "properties": {"0": {"type": "object", "properties": {"trigger_type": {"type": "string"}, "comment": {"type": "string"}, "trigger_keys": {"type": "string"}, "action": {"type": "object", "properties": {"function": {"type": "string"}, "args": {"type": "object", "properties": {"Code0": {"type": "string"}}, "required": ["Code0"]}}, "required": ["function", "args"]}}, "required": ["trigger_type", "comment", "trigger_keys", "action"]}}, "required": ["0"], "$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"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "null"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "null"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "null"}, "accrediting_agency": {"type": "null"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Pontifical Bolivariana University \u2013 Palmira Branch", "alt_name" : "Universidad Pontificia Bolivariana \u2013 Seccional Palmira", "country" : "Colombia", "state" : null, "address" : {"street" : "Kilometro 1 V\u00eda Tienda Nueva", "city" : "Palmira", "province" : "Valle", "postal_code" : null}, "contact" : {"telephone" : "+57(2) 270-2545", "website" : "http://www.upb.edu.co/palmira", "email" : null, "fax" : "+57(2) 272-3121"}, "funding" : "Private", "languages" : null, "academic_year" : null, "accrediting_agency" : null} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "null"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "null"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "null"}, "accrediting_agency": {"type": "null"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"metadata": {"type": "object", "properties": {"spec-version": {"type": "string"}}, "required": ["spec-version"]}, "display-name": {"type": "string"}, "configuration-groups": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "properties": {"type": "array", "items": {"type": "object", "properties": {"widget-type": {"type": "string"}, "label": {"type": "string"}, "name": {"type": "string"}, "widget-attributes": {"type": "object", "properties": {"width": {"type": "string"}, "default": {"type": "string"}}, "required": ["width", "default"]}}, "required": ["widget-type", "label", "name", "widget-attributes"]}}}, "required": ["label", "properties"]}}, "outputs": {"type": "array", "items": {}}}, "required": ["metadata", "display-name", "configuration-groups", "outputs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"metadata" : {"spec-version" : "1.5"}, "display-name" : "Record Duplicator", "configuration-groups" : [{"label" : "Clone Rows", "properties" : [{"widget-type" : "textbox", "label" : "Copies of record", "name" : "copies", "widget-attributes" : {"width" : "large", "default" : "1"}}]}], "outputs" : []} | json_instruct | {"type": "object", "properties": {"metadata": {"type": "object", "properties": {"spec-version": {"type": "string"}}, "required": ["spec-version"]}, "display-name": {"type": "string"}, "configuration-groups": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "properties": {"type": "array", "items": {"type": "object", "properties": {"widget-type": {"type": "string"}, "label": {"type": "string"}, "name": {"type": "string"}, "widget-attributes": {"type": "object", "properties": {"width": {"type": "string"}, "default": {"type": "string"}}, "required": ["width", "default"]}}, "required": ["widget-type", "label", "name", "widget-attributes"]}}}, "required": ["label", "properties"]}}, "outputs": {"type": "array", "items": {}}}, "required": ["metadata", "display-name", "configuration-groups", "outputs"], "$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" : "things:block/deepslate_gleaming_ore"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "3273151001", "nama" : "Cijerah"}, {"id" : "3273151002", "nama" : "Cibuntu"}, {"id" : "3273151003", "nama" : "Warung Muncang"}, {"id" : "3273151004", "nama" : "Caringin"}, {"id" : "3273151005", "nama" : "Cigondewah Kaler"}, {"id" : "3273151006", "nama" : "Gempolsari"}, {"id" : "3273151007", "nama" : "Cigondewah Rahayu"}, {"id" : "3273151008", "nama" : "Cigondewah Kidul"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "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" : 101779217, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "b773380120876506fbc33786472fdeea", "wof:id" : 101779217, "wof:repo" : "whosonfirst-data-admin-es"}, "bbox" : [-3.50313, 38.02106, -3.50313, 38.02106], "geometry" : {"coordinates" : [-3.50313, 38.02106], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "fromTable": {"type": "string"}, "fromColumn": {"type": "string"}, "toTable": {"type": "string"}, "toColumn": {"type": "string"}}, "required": ["name", "fromTable", "fromColumn", "toTable", "toColumn"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "8f7b3901-7bb0-4139-9bf7-cb9656cd0cc6", "fromTable" : "Product", "fromColumn" : "ProductSubcategoryKey", "toTable" : "ProductSubcategory", "toColumn" : "ProductSubcategoryKey"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "fromTable": {"type": "string"}, "fromColumn": {"type": "string"}, "toTable": {"type": "string"}, "toColumn": {"type": "string"}}, "required": ["name", "fromTable", "fromColumn", "toTable", "toColumn"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"artist_id" : "AR6KRXD1187B9A4C13", "artist_latitude" : null, "artist_location" : "", "artist_longitude" : null, "artist_name" : "Carlos Berlanga", "duration" : 208.77016, "num_songs" : 1, "song_id" : "SOLEAQW12AB017FAEB", "title" : "Tazas De T\u00e9", "year" : 1994} | json_instruct | {"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : {"id" : "t2_662fq13k", "name" : "fishfis55"}, "date" : {"day" : 1591488000, "full" : 1591524753, "month" : 1590969600, "week" : 1591488000}, "id" : "t3_gy9or0", "picture" : {"filesize" : 76046, "fullUrl" : "https://preview.redd.it/gmj8ckmoqg351.jpg?auto=webp&s=ebb7d2eb2c98fb04256c4b06e7737d233987ed77", "hash" : "c7d4e683c8", "height" : 853, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAQAAwDASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAEG/8QAJBAAAgICAQEJAAAAAAAAAAAAAQIDBBEhAAYFEhQiMUFhYnH/xAAUAQEAAAAAAAAAAAAAAAAAAAAE/8QAGBEBAAMBAAAAAAAAAAAAAAAAAQAREyH/2gAMAwEAAhEDEQA/AJ0/XSJxXqyMb1t1yrse+5A1nOzrf5x9yCvRsNXvwiOddnHoc7yPjfDrenrTLPWVYnruG8QE85Yfbme6lt2rHaheaV2kCKrEn3A4bUDi3EZK9Cp//9k=", "url" : "https://preview.redd.it/gmj8ckmoqg351.jpg?width=640&crop=smart&auto=webp&s=c15a75590f306e9a9b841f114272932ffb5d919a", "width" : 640}, "score" : {"comments" : 0, "downs" : 0, "ratio" : 0.94, "ups" : 35, "value" : 35}, "subreddit" : {"id" : "t5_2xy5e", "name" : "TerrainBuilding"}, "tags" : [], "title" : "Two WIP scratch builds for my 40k table. C&C welcome.", "url" : "https://www.reddit.com/r/TerrainBuilding/comments/gy9or0/two_wip_scratch_builds_for_my_40k_table_cc_welcome/"} | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}, "31": {"type": "string"}, "32": {"type": "string"}, "33": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"edges" : [[11, 25], [30, 16], [11, 30], [30, 22], [30, 29], [30, 21], [22, 30], [14, 30], [30, 29], [30, 24], [30, 31], [30, 29], [1, 32], [9, 30], [30, 10], [33, 30], [29, 30], [26, 17], [14, 30], [9, 30], [23, 30], [33, 30], [30, 5], [30, 21], [30, 21], [13, 30], [16, 30], [30, 12], [24, 30], [30, 21], [27, 6], [2, 3], [9, 30], [14, 28], [30, 10], [15, 30], [13, 30], [27, 18], [10, 30], [30, 10], [30, 14], [29, 15], [19, 30], [20, 8], [0, 7], [30, 16], [30, 4], [30, 22], [4, 30], [30, 18], [23, 30], [30, 13]], "features" : {"0" : "1", "1" : "1", "2" : "1", "3" : "1", "4" : "2", "5" : "1", "6" : "1", "7" : "1", "8" : "1", "9" : "3", "10" : "4", "11" : "2", "12" : "1", "13" : "3", "14" : "4", "15" : "2", "16" : "3", "17" : "1", "18" : "2", "19" : "1", "20" : "1", "21" : "4", "22" : "3", "23" : "2", "24" : "2", "25" : "1", "26" : "1", "27" : "2", "28" : "1", "29" : "5", "30" : "42", "31" : "1", "32" : "1", "33" : "2"}} | json_instruct | {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}, "31": {"type": "string"}, "32": {"type": "string"}, "33": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"npcs/outpost/outposthylotlwarrior.npctype": {"type": "array", "items": {"type": "string"}}}, "required": ["npcs/outpost/outposthylotlwarrior.npctype"]}, "Texts": {"type": "object", "properties": {"Eng": {"type": "string"}, "Rus": {"type": "string"}}, "required": ["Eng", "Rus"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"DeniedAlternatives" : [], "Files" : {"npcs/outpost/outposthylotlwarrior.npctype" : ["/scriptConfig/dialog/converse/hylotl/floran/0"]}, "Texts" : {"Eng" : "Many among my people despise your kind, but I think the tenacity of the Floran is worthy of praise.", "Rus" : "\u041c\u043d\u043e\u0433\u0438\u0435 \u0438\u0437 \u043c\u043e\u0435\u0433\u043e \u043d\u0430\u0440\u043e\u0434\u0430 \u043f\u0440\u0435\u0437\u0438\u0440\u0430\u044e\u0442 \u0432\u0430\u0448, \u043d\u043e \u044f \u0434\u0443\u043c\u0430\u044e, \u0447\u0442\u043e \u0443\u043f\u043e\u0440\u043d\u044b\u0439 \u0424\u043b\u043e\u0440\u0430\u043d\u0438\u043d \u0434\u043e\u0441\u0442\u043e\u0438\u043d \u043f\u043e\u0445\u0432\u0430\u043b\u044b."}}, {"DeniedAlternatives" : [], "Files" : {"npcs/outpost/outposthylotlwarrior.npctype" : ["/scriptConfig/dialog/converse/default/default/0", "/scriptConfig/dialog/converse/hylotl/default/0"]}, "Texts" : {"Eng" : "We Hylotl are not widely regarded as great warriors, but in reality our fighters are some of the finest around.", "Rus" : "\u041c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0432\u043e\u0438\u043d\u044b \u043d\u0430\u0440\u043e\u0434\u0430 \u0425\u0438\u043b\u043e\u0442\u043b \u0438 \u043d\u0435 \u0442\u0430\u043a \u0441\u043b\u0430\u0432\u043d\u044b, \u043a\u0430\u043a \u043f\u0440\u043e\u0447\u0438\u0435, \u043d\u043e \u043f\u043e \u0443\u043c\u0435\u043d\u0438\u044e \u0434\u0440\u0443\u0433\u0438\u043c \u043d\u0435 \u0443\u0441\u0442\u0443\u043f\u044f\u0442."}}, {"DeniedAlternatives" : [], "Files" : {"npcs/outpost/outposthylotlwarrior.npctype" : ["/scriptConfig/dialog/converse/hylotl/hylotl/0"]}, "Texts" : {"Eng" : "You honour me with your presence.", "Rus" : "\u0412\u044b \u043f\u043e\u0447\u0442\u0438\u043b\u0438 \u043c\u0435\u043d\u044f \u0441\u0432\u043e\u0438\u043c \u0432\u0438\u0437\u0438\u0442\u043e\u043c."}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"npcs/outpost/outposthylotlwarrior.npctype": {"type": "array", "items": {"type": "string"}}}, "required": ["npcs/outpost/outposthylotlwarrior.npctype"]}, "Texts": {"type": "object", "properties": {"Eng": {"type": "string"}, "Rus": {"type": "string"}}, "required": ["Eng", "Rus"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"Department": {"type": "string"}, "Region": {"type": "string"}, "Position": {"type": "string"}, "Name": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2015": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2016": {"type": "string"}, "\u0424\u043e\u0442\u043e": {"type": "string"}, "\u042f\u043a \u0436\u0438\u0432\u0435": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 \u0434\u043e\u0431\u0440\u043e\u0447\u0435\u0441\u043d\u043e\u0441\u0442\u0456": {"type": "string"}, "type": {"type": "string"}, "key": {"type": "string"}, "analytics": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "integer"}, "i": {"type": "integer"}, "c": {"type": "integer"}, "fi": {"type": "integer"}, "fha": {"type": "integer"}}, "required": ["y", "i", "c", "fi", "fha"]}}, "declarationsLinks": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "year": {"type": "integer"}, "provider": {"type": "string"}}, "required": ["id", "year", "provider"]}}}, "required": ["Department", "Region", "Position", "Name", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2015", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2016", "\u0424\u043e\u0442\u043e", "\u042f\u043a \u0436\u0438\u0432\u0435", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 \u0434\u043e\u0431\u0440\u043e\u0447\u0435\u0441\u043d\u043e\u0441\u0442\u0456", "type", "key", "analytics", "declarationsLinks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Department" : "\u0412\u0456\u0439\u0441\u044c\u043a\u043e\u0432\u0430 \u043f\u0440\u043e\u043a\u0443\u0440\u0430\u0442\u0443\u0440\u0430 \u041f\u0456\u0432\u0434\u0435\u043d\u043d\u043e\u0433\u043e \u0440\u0435\u0433\u0456\u043e\u043d\u0443 \u0423\u043a\u0440\u0430\u0457\u043d\u0438", "Region" : "\u041f\u0456\u0432\u0434\u0435\u043d\u043d\u0438\u0439 \u0440\u0435\u0433\u0456\u043e\u043d \u0423\u043a\u0440\u0430\u0457\u043d\u0438", "Position" : "\u041f\u0440\u043e\u043a\u0443\u0440\u043e\u0440 \u0432\u0456\u0434\u0434\u0456\u043b\u0443 \u0412\u0456\u0439\u0441\u044c\u043a\u043e\u0432\u043e\u0457 \u043f\u0440\u043e\u043a\u0443\u0440\u0430\u0442\u0443\u0440\u0438 \u041f\u0456\u0432\u0434\u0435\u043d\u043d\u043e\u0433\u043e \u0440\u0435\u0433\u0456\u043e\u043d\u0443 \u0423\u043a\u0440\u0430\u0457\u043d\u0438", "Name" : "\u041a\u043e\u043c\u0431\u0430\u0440\u043e\u0432 \u0413\u0435\u043d\u043d\u0430\u0434\u0456\u0439 \u0412\u0456\u043a\u0442\u043e\u0440\u043e\u0432\u0438\u0447", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013" : "", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014" : "", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2015" : "https://public.nazk.gov.ua/declaration/6a55ac5b-9694-48c0-a98d-d14a3762afb4", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2016" : "https://public.nazk.gov.ua/declaration/6a5b28b8-860d-4239-9bbb-a5311e488343", "\u0424\u043e\u0442\u043e" : "", "\u042f\u043a \u0436\u0438\u0432\u0435" : "", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 \u0434\u043e\u0431\u0440\u043e\u0447\u0435\u0441\u043d\u043e\u0441\u0442\u0456" : "http://www.gp.gov.ua/integrity_profile/files/3d716bf2c72711f2805076ae19bee1d8.pdf", "type" : "prosecutor", "key" : "kombarov_gennadiy_viktorovich", "analytics" : [{"y" : 2015, "i" : 218963, "c" : 3, "fi" : 120400, "fha" : 1}, {"y" : 2016, "i" : 616358, "c" : 2, "fi" : 205205, "fh" : 104, "fha" : 1}, {"y" : 2017, "i" : 372347, "c" : 1, "fi" : 138556, "ff" : 74, "ffa" : 1, "fh" : 104, "fha" : 1}], "declarationsLinks" : [{"id" : "nacp_6a55ac5b-9694-48c0-a98d-d14a3762afb4", "year" : 2015, "provider" : "declarations.com.ua.opendata"}, {"id" : "nacp_6a5b28b8-860d-4239-9bbb-a5311e488343", "year" : 2016, "provider" : "declarations.com.ua.opendata"}, {"id" : "nacp_a36b2706-5681-428b-af40-c160d40ee23b", "year" : 2017, "provider" : "declarations.com.ua.opendata"}]} | json_instruct | {"type": "object", "properties": {"Department": {"type": "string"}, "Region": {"type": "string"}, "Position": {"type": "string"}, "Name": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2015": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2016": {"type": "string"}, "\u0424\u043e\u0442\u043e": {"type": "string"}, "\u042f\u043a \u0436\u0438\u0432\u0435": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 \u0434\u043e\u0431\u0440\u043e\u0447\u0435\u0441\u043d\u043e\u0441\u0442\u0456": {"type": "string"}, "type": {"type": "string"}, "key": {"type": "string"}, "analytics": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "integer"}, "i": {"type": "integer"}, "c": {"type": "integer"}, "fi": {"type": "integer"}, "fha": {"type": "integer"}}, "required": ["y", "i", "c", "fi", "fha"]}}, "declarationsLinks": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "year": {"type": "integer"}, "provider": {"type": "string"}}, "required": ["id", "year", "provider"]}}}, "required": ["Department", "Region", "Position", "Name", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2015", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2016", "\u0424\u043e\u0442\u043e", "\u042f\u043a \u0436\u0438\u0432\u0435", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 \u0434\u043e\u0431\u0440\u043e\u0447\u0435\u0441\u043d\u043e\u0441\u0442\u0456", "type", "key", "analytics", "declarationsLinks"], "$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"}, "cpus": {"type": "number"}, "mem": {"type": "integer"}, "instances": {"type": "integer"}, "args": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"JAVA_OPTS": {"type": "string"}}, "required": ["JAVA_OPTS"]}, "container": {"type": "object", "properties": {"type": {"type": "string"}, "docker": {"type": "object", "properties": {"image": {"type": "string"}, "network": {"type": "string"}}, "required": ["image", "network"]}, "volumes": {"type": "array", "items": {"type": "object", "properties": {"containerPath": {"type": "string"}, "hostPath": {"type": "string"}, "mode": {"type": "string"}}, "required": ["containerPath", "hostPath", "mode"]}}}, "required": ["type", "docker", "volumes"]}, "ports": {"type": "array", "items": {"type": "integer"}}, "requirePorts": {"type": "boolean"}}, "required": ["id", "cpus", "mem", "instances", "args", "env", "container", "ports", "requirePorts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "elasticsearch-auth", "cpus" : 0.2, "mem" : 256, "instances" : 1, "args" : ["--zookeeperMesosUrl", "zk://$MASTER:2181", "--elasticsearchCpu", "1", "--elasticsearchRam", "2048", "--elasticsearchDisk", "2048", "--frameworkPrincipal", "user1", "--frameworkSecretPath", "/etc/mesos/frameworkpasswd", "--elasticsearchNodes", "3"], "env" : {"JAVA_OPTS" : "-Xms32m -Xmx64m"}, "container" : {"type" : "DOCKER", "docker" : {"image" : "mesos/elasticsearch-scheduler:snapshot", "network" : "HOST"}, "volumes" : [{"containerPath" : "/etc/mesos/frameworkpasswd", "hostPath" : "/etc/mesos/frameworkpasswd", "mode" : "RO"}]}, "ports" : [31100], "requirePorts" : true} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "cpus": {"type": "number"}, "mem": {"type": "integer"}, "instances": {"type": "integer"}, "args": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"JAVA_OPTS": {"type": "string"}}, "required": ["JAVA_OPTS"]}, "container": {"type": "object", "properties": {"type": {"type": "string"}, "docker": {"type": "object", "properties": {"image": {"type": "string"}, "network": {"type": "string"}}, "required": ["image", "network"]}, "volumes": {"type": "array", "items": {"type": "object", "properties": {"containerPath": {"type": "string"}, "hostPath": {"type": "string"}, "mode": {"type": "string"}}, "required": ["containerPath", "hostPath", "mode"]}}}, "required": ["type", "docker", "volumes"]}, "ports": {"type": "array", "items": {"type": "integer"}}, "requirePorts": {"type": "boolean"}}, "required": ["id", "cpus", "mem", "instances", "args", "env", "container", "ports", "requirePorts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Mix graham cracker crumbs, 1/2 cup confectioners' sugar, and butter together in a bowl; press into a 9x9-inch pan.", "Whisk cream cheese, whipped topping, and 1 cup confectioners' sugar together in a bowl until smooth; spread over graham cracker crust. Pour cherry pie filling over cream cheese mixture layer. Refrigerate until firm, at least 1 hour."], "ingredients" : ["20 graham crackers, finely crushed", "1/2 cup confectioners' sugar", "1/4 cup butter, melted", "1 (8 ounce) package cream cheese, at room temperature", "1 (8 ounce) container whipped topping (such as Cool Whip\u00ae)", "1 cup confectioners' sugar", "1 (12 ounce) can cherry pie filling"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Opal's Cherry Delight", "url" : "http://allrecipes.com/recipe/231310/opals-cherry-delight/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"requires": {"type": "boolean"}, "lockfileVersion": {"type": "integer"}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "jquery": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "countdown": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "moment": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["bootstrap", "jquery", "countdown", "moment"]}}, "required": ["requires", "lockfileVersion", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"requires" : true, "lockfileVersion" : 1, "dependencies" : {"bootstrap" : {"version" : "4.5.0", "resolved" : "https://registry.npmjs.org/bootstrap/-/bootstrap-4.5.0.tgz", "integrity" : "sha512-Z93QoXvodoVslA+PWNdk23Hze4RBYIkpb5h8I2HY2Tu2h7A0LpAgLcyrhrSUyo2/Oxm2l1fRZPs1e5hnxnliXA=="}, "jquery" : {"version" : "3.5.1", "resolved" : "https://registry.npmjs.org/jquery/-/jquery-3.5.1.tgz", "integrity" : "sha512-XwIBPqcMn57FxfT+Go5pzySnm4KWkT1Tv7gjrpT1srtf8Weynl6R273VJ5GjkRb51IzMp5nbaPjJXMWeju2MKg=="}, "countdown" : {"version" : "2.6.0", "resolved" : "https://registry.npmjs.org/countdown/-/countdown-2.6.0.tgz", "integrity" : "sha1-Z3+446nUzE52QVkBuiU7UYrzQXc="}, "moment" : {"version" : "2.26.0", "resolved" : "https://registry.npmjs.org/moment/-/moment-2.26.0.tgz", "integrity" : "sha512-oIixUO+OamkUkwjhAVE18rAMfRJNsNe/Stid/gwHSOfHrOtw9EhAY2AHvdKZ/k/MggcYELFCJz/Sn2pL8b8JMw=="}}} | json_instruct | {"type": "object", "properties": {"requires": {"type": "boolean"}, "lockfileVersion": {"type": "integer"}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "jquery": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "countdown": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "moment": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["bootstrap", "jquery", "countdown", "moment"]}}, "required": ["requires", "lockfileVersion", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0x4e8d38ffcf9ed533a5a8850f613174917fc35af8d5063809b1731a746c7c5819", "parentHash" : "0xf344d853b540de86171c0a1d65cc286f272e28ca39fb58015a05b2280f6b6a14", "number" : 99326, "timestamp" : 1439788133, "nonce" : "0x1f80a6ae2fe24e1c", "difficulty" : 3793626791457, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xEF247E639d49461D25F57e9362CadE3120910Ce0", "extraData" : "0x476574682f76312e302e312f6c696e75782f676f312e342e32", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "Bolt", "definitions" : ["A bar that slides into a socket to fasten a door or window.", "A long pin with a head that screws into a nut, used to fasten things together.", "The sliding piece of the breech mechanism of a rifle.", "A long pin that is driven into a rock face so that a rope can be attached to it.", "A short, heavy arrow shot from a crossbow.", "A jagged white flash of lightning."], "parts-of-speech" : "Noun"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Brian Nickel": {"type": "string"}}, "required": ["Brian Nickel"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "public_header_files": {"type": "string"}, "frameworks": {"type": "string"}, "requires_arc": {"type": "boolean"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}, "osx": {"type": "string"}}, "required": ["ios", "osx"]}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "source", "source_files", "public_header_files", "frameworks", "requires_arc", "platforms"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "SEStringUtilities", "version" : "0.1.0", "summary" : "A few simple string replacement utilities.", "homepage" : "https://github.com/bnickel/SEStringUtilities", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"Brian Nickel" : "[email protected]"}, "source" : {"git" : "https://github.com/bnickel/SEStringUtilities.git", "tag" : "v0.1.0"}, "source_files" : "SEStringUtilities", "public_header_files" : "SEStringUtilities/**/*.h", "frameworks" : "Foundation", "requires_arc" : true, "platforms" : {"ios" : "5.0", "osx" : "10.7"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Brian Nickel": {"type": "string"}}, "required": ["Brian Nickel"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "public_header_files": {"type": "string"}, "frameworks": {"type": "string"}, "requires_arc": {"type": "boolean"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}, "osx": {"type": "string"}}, "required": ["ios", "osx"]}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "source", "source_files", "public_header_files", "frameworks", "requires_arc", "platforms"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"a-radio-group/defaultValue": {"type": "object", "properties": {"description": {"type": "string"}, "optionType": {"type": "string"}, "defaultValue": {"type": "string"}}, "required": ["description", "optionType", "defaultValue"]}, "a-radio-group/disabled": {"type": "object", "properties": {"description": {"type": "string"}, "optionType": {"type": "string"}, "defaultValue": {"type": "string"}}, "required": ["description", "optionType", "defaultValue"]}, "a-radio-group/name": {"type": "object", "properties": {"description": {"type": "string"}, "optionType": {"type": "string"}, "defaultValue": {"type": "string"}}, "required": ["description", "optionType", "defaultValue"]}, "a-radio-group/options": {"type": "object", "properties": {"description": {"type": "string"}, "optionType": {"type": "string"}, "defaultValue": {"type": "string"}}, "required": ["description", "optionType", "defaultValue"]}, "a-radio-group/size": {"type": "object", "properties": {"description": {"type": "string"}, "optionType": {"type": "string"}, "defaultValue": {"type": "string"}}, "required": ["description", "optionType", "defaultValue"]}, "a-radio-group/value": {"type": "object", "properties": {"description": {"type": "string"}, "optionType": {"type": "string"}, "defaultValue": {"type": "string"}}, "required": ["description", "optionType", "defaultValue"]}, "a-radio-group/buttonStyle": {"type": "object", "properties": {"description": {"type": "string"}, "optionType": {"type": "string"}, "defaultValue": {"type": "string"}}, "required": ["description", "optionType", "defaultValue"]}}, "required": ["a-radio-group/defaultValue", "a-radio-group/disabled", "a-radio-group/name", "a-radio-group/options", "a-radio-group/size", "a-radio-group/value", "a-radio-group/buttonStyle"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"a-radio-group/defaultValue" : {"description" : "Default selected value", "optionType" : "any", "defaultValue" : "-"}, "a-radio-group/disabled" : {"description" : "Disable all radio buttons", "optionType" : "boolean", "defaultValue" : "false"}, "a-radio-group/name" : {"description" : "The name property of all input[type=\"radio\"] children", "optionType" : "string", "defaultValue" : "-"}, "a-radio-group/options" : {"description" : "set children optional", "optionType" : "string[] | Array<{ label: string value: string disabled?: boolean }>", "defaultValue" : "-"}, "a-radio-group/size" : {"description" : "size for radio button style", "optionType" : "large | default | small", "defaultValue" : "default"}, "a-radio-group/value" : {"description" : "Used for setting the currently selected value.", "optionType" : "any", "defaultValue" : "-"}, "a-radio-group/buttonStyle" : {"description" : "style type of radio button", "optionType" : "outline | solid", "defaultValue" : "outline"}} | json_instruct | {"type": "object", "properties": {"a-radio-group/defaultValue": {"type": "object", "properties": {"description": {"type": "string"}, "optionType": {"type": "string"}, "defaultValue": {"type": "string"}}, "required": ["description", "optionType", "defaultValue"]}, "a-radio-group/disabled": {"type": "object", "properties": {"description": {"type": "string"}, "optionType": {"type": "string"}, "defaultValue": {"type": "string"}}, "required": ["description", "optionType", "defaultValue"]}, "a-radio-group/name": {"type": "object", "properties": {"description": {"type": "string"}, "optionType": {"type": "string"}, "defaultValue": {"type": "string"}}, "required": ["description", "optionType", "defaultValue"]}, "a-radio-group/options": {"type": "object", "properties": {"description": {"type": "string"}, "optionType": {"type": "string"}, "defaultValue": {"type": "string"}}, "required": ["description", "optionType", "defaultValue"]}, "a-radio-group/size": {"type": "object", "properties": {"description": {"type": "string"}, "optionType": {"type": "string"}, "defaultValue": {"type": "string"}}, "required": ["description", "optionType", "defaultValue"]}, "a-radio-group/value": {"type": "object", "properties": {"description": {"type": "string"}, "optionType": {"type": "string"}, "defaultValue": {"type": "string"}}, "required": ["description", "optionType", "defaultValue"]}, "a-radio-group/buttonStyle": {"type": "object", "properties": {"description": {"type": "string"}, "optionType": {"type": "string"}, "defaultValue": {"type": "string"}}, "required": ["description", "optionType", "defaultValue"]}}, "required": ["a-radio-group/defaultValue", "a-radio-group/disabled", "a-radio-group/name", "a-radio-group/options", "a-radio-group/size", "a-radio-group/value", "a-radio-group/buttonStyle"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"Id": {"type": "string"}, "IsStatic": {"type": "boolean"}, "useGravity": {"type": "boolean"}, "randomRotation": {"type": "boolean"}, "Position": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "z": {"type": "number"}}, "required": ["x", "y", "z"]}, "Rotation": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "z": {"type": "number"}}, "required": ["x", "y", "z"]}, "IsGroupPosition": {"type": "boolean"}, "GroupPositions": {"type": "array", "items": {}}, "Root": {"type": "string"}, "Items": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}}, "required": ["_id", "_tpl"]}}}, "required": ["Id", "IsStatic", "useGravity", "randomRotation", "Position", "Rotation", "IsGroupPosition", "GroupPositions", "Root", "Items"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Id" : "LootGarbage (39)(Clone)10193934", "IsStatic" : false, "useGravity" : true, "randomRotation" : false, "Position" : {"x" : 336.639343, "y" : -58.91, "z" : 311.427582}, "Rotation" : {"x" : 2.06688765e-05, "y" : 262.711243, "z" : -3.64025254e-05}, "IsGroupPosition" : false, "GroupPositions" : [], "Root" : "5ec3f47f2dfcb75c1633e2b1", "Items" : [{"_id" : "5ec3f47f2dfcb75c1633e2b1", "_tpl" : "576a5ed62459771e9c2096cb"}, {"_id" : "5ec3f47f2dfcb75c1633e2b2", "_tpl" : "5c925fa22e221601da359b7b", "parentId" : "5ec3f47f2dfcb75c1633e2b1", "slotId" : "cartridges", "upd" : {"StackObjectsCount" : 9}}]} | json_instruct | {"type": "object", "properties": {"Id": {"type": "string"}, "IsStatic": {"type": "boolean"}, "useGravity": {"type": "boolean"}, "randomRotation": {"type": "boolean"}, "Position": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "z": {"type": "number"}}, "required": ["x", "y", "z"]}, "Rotation": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "z": {"type": "number"}}, "required": ["x", "y", "z"]}, "IsGroupPosition": {"type": "boolean"}, "GroupPositions": {"type": "array", "items": {}}, "Root": {"type": "string"}, "Items": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}}, "required": ["_id", "_tpl"]}}}, "required": ["Id", "IsStatic", "useGravity", "randomRotation", "Position", "Rotation", "IsGroupPosition", "GroupPositions", "Root", "Items"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"n_dim" : 13, "n_trials" : 550, "objective" : "markowitz_analytic_on_cube", "white" : "ultraopt_etpe", "black" : "optuna_random_clone_1", "traceback" : ["passing", "passing"], "best_val" : [-0.03609613070801958, 2.8316035655050404], "best_x" : [[0.056926832878992, 0.1062080566594623, 0.05777890939501952, 0.09222352798808245, 0.2323378673519754, 0.025216283651820912, 0.1616816240182527, 0.003967140095566264, 0.0, 0.05266086316895373, 0.0746867959815412, 0.05527580826382596, 0.07531124172724679], [0.046132298559476426, 0.2117756734427515, 0.05644696641230462, 0.5227487909321392, 0.09896219493977954, 0.6669578286613858, 0.30529430493348886, 0.30045646238271273, 0.2755878434630281, 0.10880008746421499, 0.1369803732606374, 0.2802837728377865, 0.7798129518429537]], "feval_count" : [550, 550], "n_trials_instructed" : [550, 550], "passing" : [true, true], "completed" : true, "points" : 1.0, "winner" : "ultraopt_etpe", "loser" : "optuna_random_clone_1"} | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "string"}, "image_type": {"type": "string"}, "features": {"type": "array", "items": {}}, "url": {"type": "string"}, "md5": {"type": "string"}, "md5_file": {"type": "string"}, "sha1": {"type": "string"}, "sha1_file": {"type": "string"}, "sha256": {"type": "string"}, "sha256_file": {"type": "string"}, "sha512": {"type": "string"}, "sha512_file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["vendor", "filename", "release_type", "version", "java_version", "jvm_impl", "os", "architecture", "file_type", "image_type", "features", "url", "md5", "md5_file", "sha1", "sha1_file", "sha256", "sha256_file", "sha512", "sha512_file", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vendor" : "liberica", "filename" : "bellsoft-jre8u265+1-macos-amd64.zip", "release_type" : "ga", "version" : "8u265+1", "java_version" : "8u265+1", "jvm_impl" : "hotspot", "os" : "macosx", "architecture" : "x86_64", "file_type" : "zip", "image_type" : "jre", "features" : [], "url" : "https://github.com/bell-sw/Liberica/releases/download/8u265+1/bellsoft-jre8u265+1-macos-amd64.zip", "md5" : "e0455425e39422387d89f7b1ffaf31b7", "md5_file" : "bellsoft-jre8u265+1-macos-amd64.zip.md5", "sha1" : "7b5c0e3743ff604e1f5f2f76bc16cc479e837ae2", "sha1_file" : "bellsoft-jre8u265+1-macos-amd64.zip.sha1", "sha256" : "dfb0284ac316a1c87f3ad011f2be8eac7877d13a71cd7b6e9ab9f0a622c09d9a", "sha256_file" : "bellsoft-jre8u265+1-macos-amd64.zip.sha256", "sha512" : "c931088953984ecd01af6a136e02afae5a45e6fea95d9af2679ec4695f554e1e12b1a622c208537b014783c07f2d77a73075aaae19f51fdf9349e78cd1133b85", "sha512_file" : "bellsoft-jre8u265+1-macos-amd64.zip.sha512", "size" : 38916504} | json_instruct | {"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "string"}, "image_type": {"type": "string"}, "features": {"type": "array", "items": {}}, "url": {"type": "string"}, "md5": {"type": "string"}, "md5_file": {"type": "string"}, "sha1": {"type": "string"}, "sha1_file": {"type": "string"}, "sha256": {"type": "string"}, "sha256_file": {"type": "string"}, "sha512": {"type": "string"}, "sha512_file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["vendor", "filename", "release_type", "version", "java_version", "jvm_impl", "os", "architecture", "file_type", "image_type", "features", "url", "md5", "md5_file", "sha1", "sha1_file", "sha256", "sha256_file", "sha512", "sha512_file", "size"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["drunk-pack", "exos-npm-html2js", "fis3-optimizer-htmlmin", "index-html", "paper-press", "sprawld-boilerplate", "uglicssy", "ywo"] | json_instruct | {"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": {"element_name": {"type": "string"}, "L2_errors": {"type": "array", "items": {"type": "number"}}, "H1_seminorm_errors": {"type": "array", "items": {"type": "number"}}, "resolutions": {"type": "array", "items": {"type": "number"}}}, "required": ["element_name", "L2_errors", "H1_seminorm_errors", "resolutions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"element_name" : "Tet4", "L2_errors" : [0.3522698228234682, 0.25843728396409893, 0.09756747623016845, 0.027579551652551715, 0.0071292211857160665], "H1_seminorm_errors" : [1.9181575922071978, 1.5488285882830495, 0.9146645014087618, 0.47957926282573976, 0.2428023769718095], "resolutions" : [1.0, 0.5, 0.25, 0.125, 0.0625]} | json_instruct | {"type": "object", "properties": {"element_name": {"type": "string"}, "L2_errors": {"type": "array", "items": {"type": "number"}}, "H1_seminorm_errors": {"type": "array", "items": {"type": "number"}}, "resolutions": {"type": "array", "items": {"type": "number"}}}, "required": ["element_name", "L2_errors", "H1_seminorm_errors", "resolutions"], "$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"}, "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": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "peerDependencies": {"type": "object", "properties": {"react-native": {"type": "string"}}, "required": ["react-native"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "peerDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "react-native-vs-charts", "version" : "v0.1.0", "description" : "A charting library built using only View and Style", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "https://github.com/bretdabaker/react-native-vs-charts.git"}, "keywords" : ["react", "react-component", "react-native", "ios", "android", "chart"], "author" : "Bret Cheng <[email protected]> (http://vivace.cc)", "license" : "MIT", "bugs" : {"url" : "https://github.com/bretdabaker/react-native-vs-charts/issues"}, "homepage" : "https://github.com/bretdabaker/react-native-vs-charts", "dependencies" : {}, "peerDependencies" : {"react-native" : ">=0.13.0"}} | 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": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "peerDependencies": {"type": "object", "properties": {"react-native": {"type": "string"}}, "required": ["react-native"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "peerDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"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": {"1.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.1.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["1.0", "1.1", "1.1.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"latest_version" : ["1.1.1"], "meta" : {"description" : "Python file and path manipulation", "homepage" : "http://packages.python.org/files/", "license" : "GNU GPL 3"}, "versions" : {"1.0" : {"sha256" : "d7e6b1d0e9a6fbe99362d159504bf42da33005b56bd1d5ab9317fe9591b9dad4", "url" : "https://files.pythonhosted.org/packages/54/f3/c1c93e74311e74c487796c59fd836f33fc6a87ecb07069f361679615bf54/files-1.0.tar.gz"}, "1.1" : {"sha256" : "8b66e93595d0e7c484c7e99ca5b5ffbb84d001c167caecb99344b44c02a37758", "url" : "https://files.pythonhosted.org/packages/04/2e/e34ddf3dff1a68b9d70fe9ba1c503ed81f3fda43baa6afe8ce5654b8427d/files-1.1.tar.gz"}, "1.1.1" : {"sha256" : "5688cf5b410b1ce85ca9ea3a7448e30766b989fe70600a2356f5765a941e3215", "url" : "https://files.pythonhosted.org/packages/d3/b0/ddfcb3c51ad496bf665d80d3465d8c274592d70312558627c803107e7d7d/files-1.1.1.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": {"1.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.1.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["1.0", "1.1", "1.1.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"gulp-util": {"type": "string"}, "json5": {"type": "string"}, "map-stream": {"type": "string"}}, "required": ["gulp-util", "json5", "map-stream"]}}, "required": ["name", "version", "description", "main", "repository", "keywords", "author", "license", "engines", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "gulp-json5-to-json", "version" : "0.2.1", "description" : "A gulp plugin to convert JSON5 to strict JSON.", "main" : "index.js", "repository" : {"type" : "git", "url" : "https://github.com/miusuncle/gulp-json5-to-json.git"}, "keywords" : ["gulp", "gulpplugin", "json5", "json"], "author" : "miusuncle", "license" : "MIT", "engines" : {"node" : ">=6.0.0"}, "dependencies" : {"gulp-util" : "^3.0.8", "json5" : "0.2.0", "map-stream" : "^0.0.7"}} | 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"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"gulp-util": {"type": "string"}, "json5": {"type": "string"}, "map-stream": {"type": "string"}}, "required": ["gulp-util", "json5", "map-stream"]}}, "required": ["name", "version", "description", "main", "repository", "keywords", "author", "license", "engines", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"authors": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "description": {"type": "string"}, "examples": {"type": "array", "items": {"type": "string"}}, "frameworks": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "platforms": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["authors", "description", "examples", "frameworks", "keywords", "name", "platforms", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"authors" : {"name" : "Yann Garcia", "url" : "https://os.mbed.com/users/Yann/"}, "description" : "Simplified access to Ramtron (Cypress) FM24Vxx F-RAM devices", "examples" : ["https://os.mbed.com/users/Yann/code/FM24Vxx_I2CApp/"], "frameworks" : "mbed", "keywords" : ["FM24Vxx", "I2C", "RAMTRON"], "name" : "FM24Vxx_I2C", "platforms" : "*", "repository" : {"type" : "hg", "url" : "https://os.mbed.com/users/Yann/code/FM24Vxx_I2C/"}} | json_instruct | {"type": "object", "properties": {"authors": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "description": {"type": "string"}, "examples": {"type": "array", "items": {"type": "string"}}, "frameworks": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "platforms": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["authors", "description", "examples", "frameworks", "keywords", "name", "platforms", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"index" : 5179, "redacted" : false, "hash" : 2486153040, "blacklisted" : false} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$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"}, "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/669790ab-009a-30d5-874b-9c98e80917a5", "expression" : [{"id" : "http://data.doremus.org/expression/b5ff5151-b184-3c16-8d3e-c5c708a1edef"}, {"id" : "http://data.doremus.org/expression/8da6340d-0048-357b-898a-9d2aba49307b"}, {"id" : "http://data.doremus.org/expression/5e662088-e333-353c-ad96-7ff8cf744dfc"}, {"id" : "http://data.doremus.org/expression/1b02dcf5-2788-335e-9708-3176610e9654"}, {"id" : "http://data.doremus.org/expression/2cedb485-05a4-34b9-8e49-3bb2224b3b31"}, {"id" : "http://data.doremus.org/expression/2c222a62-fe79-380f-9a7b-100067e9a778"}, {"id" : "http://data.doremus.org/expression/1dcd55c1-ec9d-3f60-98a4-8b61660564d6"}, {"id" : "http://data.doremus.org/expression/fd965c16-df1f-3abf-a93b-68bc16dc58be"}, {"id" : "http://data.doremus.org/expression/359cb8ad-8093-3623-a09d-2962966893ac"}]} | 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#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1977, 5], [1979, 6], [1980, 7], [1981, 9], [1982, 13], [1983, 15], [1984, 14], [1985, 14], [1986, 12], [1987, 18], [1988, 16], [1989, 13], [1990, 6], [1991, 13], [1992, 10], [1994, 6], [1997, 6], [2000, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "build": {"type": "string"}, "pack": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["start", "test", "build", "pack", "postinstall"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"node-notifier": {"type": "string"}, "node-schedule": {"type": "string"}, "sqlite3": {"type": "string"}, "electron-log": {"type": "string"}}, "required": ["node-notifier", "node-schedule", "sqlite3", "electron-log"]}, "devDependencies": {"type": "object", "properties": {"electron": {"type": "string"}, "electron-builder": {"type": "string"}, "jest": {"type": "string"}}, "required": ["electron", "electron-builder", "jest"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "my_little_reminder", "version" : "0.5.0", "description" : "A simple time reminder app", "main" : "app/index.js", "scripts" : {"start" : "electron .", "test" : "jest --coverage", "build" : "electron-builder --dir", "pack" : "electron-builder", "postinstall" : "electron-builder install-app-deps"}, "author" : "Leonlit", "license" : "MIT", "dependencies" : {"node-notifier" : ">=8.0.1", "node-schedule" : "^1.3.2", "sqlite3" : "^5.0.0", "electron-log" : "^4.3.1"}, "devDependencies" : {"electron" : "^11.2.1", "electron-builder" : "^22.9.1", "jest" : "^26.6.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "build": {"type": "string"}, "pack": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["start", "test", "build", "pack", "postinstall"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"node-notifier": {"type": "string"}, "node-schedule": {"type": "string"}, "sqlite3": {"type": "string"}, "electron-log": {"type": "string"}}, "required": ["node-notifier", "node-schedule", "sqlite3", "electron-log"]}, "devDependencies": {"type": "object", "properties": {"electron": {"type": "string"}, "electron-builder": {"type": "string"}, "jest": {"type": "string"}}, "required": ["electron", "electron-builder", "jest"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "method-override": {"type": "string"}, "mongoose": {"type": "string"}, "mongoose-paginate": {"type": "string"}, "python-shell": {"type": "string"}}, "required": ["body-parser", "ejs", "express", "method-override", "mongoose", "mongoose-paginate", "python-shell"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "data_collection_web", "version" : "1.0.0", "description" : "Web application for data collection in Senior project CP41", "main" : "app.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/ammarinjtk/data_collection_web.git"}, "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/ammarinjtk/data_collection_web/issues"}, "homepage" : "https://github.com/ammarinjtk/data_collection_web#readme", "dependencies" : {"body-parser" : "^1.18.2", "ejs" : "^2.5.7", "express" : "^4.16.2", "method-override" : "^2.3.10", "mongoose" : "^5.0.0-rc1", "mongoose-paginate" : "^5.0.3", "python-shell" : "^0.4.0"}} | 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"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "method-override": {"type": "string"}, "mongoose": {"type": "string"}, "mongoose-paginate": {"type": "string"}, "python-shell": {"type": "string"}}, "required": ["body-parser", "ejs", "express", "method-override", "mongoose", "mongoose-paginate", "python-shell"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"replace" : false, "values" : ["minecraft:armor_stand", "minecraft:ender_dragon", "minecraft:player"]} | json_instruct | {"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"selectedVolumeIndex": {"type": "integer"}, "volumes": {"type": "array", "items": {}}}, "required": ["selectedVolumeIndex", "volumes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"selectedVolumeIndex" : 0, "volumes" : []} | json_instruct | {"type": "object", "properties": {"selectedVolumeIndex": {"type": "integer"}, "volumes": {"type": "array", "items": {}}}, "required": ["selectedVolumeIndex", "volumes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"userlist": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "first_name": {"type": "string"}, "username": {"type": "string"}, "email": {"type": "string"}}, "required": ["id", "first_name", "username", "email"]}}}, "required": ["userlist"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userlist" : [{"id" : 1, "first_name" : "anand", "username" : "anand1993", "email" : "[email protected]"}, {"id" : 2, "first_name" : "Jane", "username" : "Jane1234", "email" : "[email protected]"}, {"id" : 3, "first_name" : "Alice", "username" : "al134", "email" : "[email protected]"}, {"id" : 4, "first_name" : "Bob", "username" : "builder777", "email" : "[email protected]"}, {"id" : 5, "first_name" : "Xyz Abc", "username" : "xa12", "email" : "[email protected]"}]} | json_instruct | {"type": "object", "properties": {"userlist": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "first_name": {"type": "string"}, "username": {"type": "string"}, "email": {"type": "string"}}, "required": ["id", "first_name", "username", "email"]}}}, "required": ["userlist"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"TIMESTAMP UTC": {"type": "string"}, "CLASSIFICATION": {"type": "string"}}, "required": ["TIMESTAMP UTC", "CLASSIFICATION"]}}, "required": ["type", "geometry", "properties"]}}, "type": {"type": "string"}}, "required": ["features", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [16.63865421188341, 47.97640888409704]}, "properties" : {"TIMESTAMP UTC" : "2019-01-11T10:07:10", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [16.629371700672646, 48.146759288409704]}, "properties" : {"TIMESTAMP UTC" : "2019-01-11T10:07:10", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [16.467264077354262, 48.07092820125786]}, "properties" : {"TIMESTAMP UTC" : "2019-01-11T10:07:10", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [16.589551072869956, 48.092671238095235]}, "properties" : {"TIMESTAMP UTC" : "2019-01-11T10:07:10", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [16.467264077354262, 48.07092820125786]}, "properties" : {"TIMESTAMP UTC" : "2019-01-11T10:07:15", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [16.35251071412556, 48.382518497753814]}, "properties" : {"TIMESTAMP UTC" : "2019-01-11T10:07:15", "CLASSIFICATION" : "Flying plane"}}], "type" : "FeatureCollection"} | json_instruct | {"type": "object", "properties": {"features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"TIMESTAMP UTC": {"type": "string"}, "CLASSIFICATION": {"type": "string"}}, "required": ["TIMESTAMP UTC", "CLASSIFICATION"]}}, "required": ["type", "geometry", "properties"]}}, "type": {"type": "string"}}, "required": ["features", "type"], "$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"}}, "required": ["name", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "homebridge-config-ui-x", "version" : "4.6.4"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}}, "required": ["name", "version"], "$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"}, "catagory": {"type": "string"}, "date": {"type": "string"}, "time": {"type": "string"}, "venue": {"type": "string"}, "about": {"type": "string"}, "organised": {"type": "string"}, "contact": {"type": "string"}, "rules": {"type": "string"}}, "required": ["name", "catagory", "date", "time", "venue", "about", "organised", "contact", "rules"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Engineers\u2019 Conclave", "catagory" : "Projects", "date" : "", "time" : "", "venue" : "", "about" : " An event where participants showcase their projects and research so that students get exposure to the state of the art technologies developed around the globe. The aim of this event is to inspire students to build new technologies and exploit them for the benefit of all. ", "organised" : "Piyush Chauhan", "contact" : "9673582517", "rules" : "https://docs.google.com/document/d/1Aw4rEsZFRbdrpALWQ9kvC8b_RatN5DPTolcctMPfY7I/edit?usp=sharing "} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "catagory": {"type": "string"}, "date": {"type": "string"}, "time": {"type": "string"}, "venue": {"type": "string"}, "about": {"type": "string"}, "organised": {"type": "string"}, "contact": {"type": "string"}, "rules": {"type": "string"}}, "required": ["name", "catagory", "date", "time", "venue", "about", "organised", "contact", "rules"], "$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"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@introduction-aws/graphql-module-auth-userpool", "version" : "1.0.0", "description" : "A GraphQL User/Auth Module via AWS Cognito.", "main" : "index.js", "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"dim0": {"type": "number"}, "dim1": {"type": "number"}, "episode_rewards": {"type": "number"}, "episode_value_ests": {"type": "number"}, "episode_values": {"type": "number"}, "episode_td_err": {"type": "number"}, "episode_avg_len": {"type": "number"}, "step_rewards": {"type": "number"}, "step_value_ests": {"type": "number"}, "step_values": {"type": "number"}, "step_td_err": {"type": "number"}}, "required": ["dim0", "dim1", "episode_rewards", "episode_value_ests", "episode_values", "episode_td_err", "episode_avg_len", "step_rewards", "step_value_ests", "step_values", "step_td_err"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dim0" : -0.8, "dim1" : 0.8, "episode_rewards" : 73.35575971656428, "episode_value_ests" : 55.37140849380531, "episode_values" : 34.05594792081455, "episode_td_err" : 5.826139752290411, "episode_avg_len" : 73.24, "step_rewards" : 1.00158055320268, "step_value_ests" : 55.697567650329084, "step_values" : 34.27683129532854, "step_td_err" : 5.800985169166137} | json_instruct | {"type": "object", "properties": {"dim0": {"type": "number"}, "dim1": {"type": "number"}, "episode_rewards": {"type": "number"}, "episode_value_ests": {"type": "number"}, "episode_values": {"type": "number"}, "episode_td_err": {"type": "number"}, "episode_avg_len": {"type": "number"}, "step_rewards": {"type": "number"}, "step_value_ests": {"type": "number"}, "step_values": {"type": "number"}, "step_td_err": {"type": "number"}}, "required": ["dim0", "dim1", "episode_rewards", "episode_value_ests", "episode_values", "episode_td_err", "episode_avg_len", "step_rewards", "step_value_ests", "step_values", "step_td_err"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Wisembach", "dpt" : "Vosges", "inscrits" : 321, "abs" : 66, "votants" : 255, "blancs" : 25, "nuls" : 7, "exp" : 223, "res" : [{"panneau" : "2", "voix" : 140}, {"panneau" : "1", "voix" : 83}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "KMARI", "frequency" : 207, "males" : "54.106280193236714 %", "females" : "45.893719806763286 %"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"dist/index.cjs.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}}, "required": ["bundled", "minified", "gzipped"]}, "dist/index.esm.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}, "treeshaked": {"type": "object", "properties": {"rollup": {"type": "object", "properties": {"code": {"type": "integer"}, "import_statements": {"type": "integer"}}, "required": ["code", "import_statements"]}, "webpack": {"type": "object", "properties": {"code": {"type": "integer"}}, "required": ["code"]}}, "required": ["rollup", "webpack"]}}, "required": ["bundled", "minified", "gzipped", "treeshaked"]}, "index.cjs.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}}, "required": ["bundled", "minified", "gzipped"]}, "index.esm.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}, "treeshaked": {"type": "object", "properties": {"rollup": {"type": "object", "properties": {"code": {"type": "integer"}, "import_statements": {"type": "integer"}}, "required": ["code", "import_statements"]}, "webpack": {"type": "object", "properties": {"code": {"type": "integer"}}, "required": ["code"]}}, "required": ["rollup", "webpack"]}}, "required": ["bundled", "minified", "gzipped", "treeshaked"]}}, "required": ["dist/index.cjs.js", "dist/index.esm.js", "index.cjs.js", "index.esm.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dist/index.cjs.js" : {"bundled" : 3415, "minified" : 1777, "gzipped" : 761}, "dist/index.esm.js" : {"bundled" : 3131, "minified" : 1539, "gzipped" : 676, "treeshaked" : {"rollup" : {"code" : 132, "import_statements" : 92}, "webpack" : {"code" : 1146}}}, "index.cjs.js" : {"bundled" : 3856, "minified" : 2146, "gzipped" : 859}, "index.esm.js" : {"bundled" : 3289, "minified" : 1683, "gzipped" : 743, "treeshaked" : {"rollup" : {"code" : 123, "import_statements" : 83}, "webpack" : {"code" : 1193}}}} | json_instruct | {"type": "object", "properties": {"dist/index.cjs.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}}, "required": ["bundled", "minified", "gzipped"]}, "dist/index.esm.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}, "treeshaked": {"type": "object", "properties": {"rollup": {"type": "object", "properties": {"code": {"type": "integer"}, "import_statements": {"type": "integer"}}, "required": ["code", "import_statements"]}, "webpack": {"type": "object", "properties": {"code": {"type": "integer"}}, "required": ["code"]}}, "required": ["rollup", "webpack"]}}, "required": ["bundled", "minified", "gzipped", "treeshaked"]}, "index.cjs.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}}, "required": ["bundled", "minified", "gzipped"]}, "index.esm.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}, "treeshaked": {"type": "object", "properties": {"rollup": {"type": "object", "properties": {"code": {"type": "integer"}, "import_statements": {"type": "integer"}}, "required": ["code", "import_statements"]}, "webpack": {"type": "object", "properties": {"code": {"type": "integer"}}, "required": ["code"]}}, "required": ["rollup", "webpack"]}}, "required": ["bundled", "minified", "gzipped", "treeshaked"]}}, "required": ["dist/index.cjs.js", "dist/index.esm.js", "index.cjs.js", "index.esm.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "MultiPolygon", "coordinates" : [[[[-85.1379772899999, 41.06550995100007], [-85.13794724899991, 41.06448531300003], [-85.1392927659999, 41.06447916000007], [-85.14062820799988, 41.06448811500007], [-85.14211909599992, 41.06449438500004], [-85.1427548969999, 41.06446729300006], [-85.14275183199992, 41.06443458100005], [-85.1431651909999, 41.06442118900008], [-85.1451600209999, 41.06441543100003], [-85.14520691799991, 41.06531025700007], [-85.14525308699989, 41.06621937700003], [-85.14526722899987, 41.066513783000055], [-85.14529822399992, 41.06714007300007], [-85.14531424599993, 41.06756373700004], [-85.14533801299989, 41.06799421500004], [-85.1453389899999, 41.06802191400003], [-85.1453842639999, 41.06887959300007], [-85.14541893499987, 41.07021261700003], [-85.14310402299989, 41.07135122000005], [-85.13981678399993, 41.07140832600003], [-85.13827398099993, 41.07143630300003], [-85.1382282579999, 41.07142791300003], [-85.1381738889999, 41.07035469000003], [-85.13812554499991, 41.06934394800003], [-85.13808501799988, 41.06853484200007], [-85.1380369599999, 41.06762455900007], [-85.13801290299992, 41.066556756000054], [-85.1379772899999, 41.06550995100007]]]], "properties" : {"id" : "usa-in-fort-wayne-hoagland-masterson-neighborhood", "type" : "neighborhood", "name" : "Hoagland Masterson", "code" : "274038"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/scienceoutpost/roses/rosebushmed.object": {"type": "array", "items": {"type": "string"}}, "objects/scienceoutpost/roses/rosebushmed_box.object": {"type": "array", "items": {"type": "string"}}}, "required": ["objects/scienceoutpost/roses/rosebushmed.object", "objects/scienceoutpost/roses/rosebushmed_box.object"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"DeniedAlternatives" : [], "Files" : {"objects/scienceoutpost/roses/rosebushmed.object" : ["/shortdescription"], "objects/scienceoutpost/roses/rosebushmed_box.object" : ["/shortdescription"]}, "Texts" : {"Chs" : "\u4e2d\u578b\u8537\u8587\u704c\u6728\u4e1b", "Eng" : "Rose Bush Medium"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/scienceoutpost/roses/rosebushmed.object": {"type": "array", "items": {"type": "string"}}, "objects/scienceoutpost/roses/rosebushmed_box.object": {"type": "array", "items": {"type": "string"}}}, "required": ["objects/scienceoutpost/roses/rosebushmed.object", "objects/scienceoutpost/roses/rosebushmed_box.object"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"brief" : "Matthias", "long" : "Matthias."} | json_instruct | {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "melting": {"type": "integer"}, "boiling": {"type": "integer"}, "vessel": {"type": "string"}, "item": {"type": "string"}, "color": {"type": "string"}, "effect": {"type": "string"}}, "required": ["type", "id", "melting", "boiling", "vessel", "item", "color", "effect"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "crossroads:reagents", "id" : "elem_enchantment", "melting" : -150, "boiling" : -145, "vessel" : "crystal", "item" : "crossroads:dusts/elem_enchantment", "color" : "F8F9BB", "effect" : "terraform_mushroom"} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "melting": {"type": "integer"}, "boiling": {"type": "integer"}, "vessel": {"type": "string"}, "item": {"type": "string"}, "color": {"type": "string"}, "effect": {"type": "string"}}, "required": ["type", "id", "melting", "boiling", "vessel", "item", "color", "effect"], "$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.