input
stringlengths 159
2.05k
| output
stringlengths 5
10.3k
| task
stringclasses 1
value | schema
stringlengths 100
1.99k
|
---|---|---|---|
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"Cluster": {"type": "string"}, "ContainerInstanceARN": {"type": "string"}, "TaskARN": {"type": "string"}, "ContainerID": {"type": "string"}, "ContainerName": {"type": "string"}, "DockerContainerName": {"type": "string"}, "ImageID": {"type": "string"}, "ImageName": {"type": "string"}, "Networks": {"type": "array", "items": {"type": "object", "properties": {"NetworkMode": {"type": "string"}, "IPv4Addresses": {"type": "array", "items": {"type": "string"}}}, "required": ["NetworkMode", "IPv4Addresses"]}}, "MetadataFileStatus": {"type": "string"}}, "required": ["Cluster", "ContainerInstanceARN", "TaskARN", "ContainerID", "ContainerName", "DockerContainerName", "ImageID", "ImageName", "Networks", "MetadataFileStatus"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Cluster" : "athenz", "ContainerInstanceARN" : "arn:aws:ecs:us-west-2:123456789012:container-instance/29b55b1a-6729-46d9-a5f2-862332e2d362", "TaskARN" : "arn:aws:ecs:us-west-2:123456789012:task/my-cluster/776b2c2e-6bfb-4328-bd04-204536cfb7f2", "ContainerID" : "692199a3e904e3316081a6758dd7ce5933e0e53bec6a8956b921113e70905c67", "ContainerName" : "athenz-sample", "DockerContainerName" : "/ecs-athenz-sample-2-athenz-sample-9cba8ba69dfeab9b8301", "ImageID" : "sha256:376a55b8956f2097df15bdee339e4734581f503e5d7d4283a67333a92c9f1f4f", "ImageName" : "registry.hub.docker.com/image-name:latest", "Networks" : [{"NetworkMode" : "default", "IPv4Addresses" : ["172.17.0.3"]}], "MetadataFileStatus" : "READY"} | json_instruct | {"type": "object", "properties": {"Cluster": {"type": "string"}, "ContainerInstanceARN": {"type": "string"}, "TaskARN": {"type": "string"}, "ContainerID": {"type": "string"}, "ContainerName": {"type": "string"}, "DockerContainerName": {"type": "string"}, "ImageID": {"type": "string"}, "ImageName": {"type": "string"}, "Networks": {"type": "array", "items": {"type": "object", "properties": {"NetworkMode": {"type": "string"}, "IPv4Addresses": {"type": "array", "items": {"type": "string"}}}, "required": ["NetworkMode", "IPv4Addresses"]}}, "MetadataFileStatus": {"type": "string"}}, "required": ["Cluster", "ContainerInstanceARN", "TaskARN", "ContainerID", "ContainerName", "DockerContainerName", "ImageID", "ImageName", "Networks", "MetadataFileStatus"], "$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#"}
| ["Perhaps a Robot.", "I have approximate knowledge of many things.", "A Robot.", "Not a Robot.", "Programmer by day.", "This webpage was written and developed by a Markov chain.", "Your free trial of jQuery has ended. Upgrade now for a full-featured language, or use scala.js.", "Breathing? Think about it..."] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"Tasks": {"type": "array", "items": {"type": "object", "properties": {"TaskMethod": {"type": "string"}}, "required": ["TaskMethod"]}}}, "required": ["Tasks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Tasks" : [{"TaskMethod" : "Frends.AzureBlobStorage.DeleteBlob.AzureBlobStorage.DeleteBlob"}]} | json_instruct | {"type": "object", "properties": {"Tasks": {"type": "array", "items": {"type": "object", "properties": {"TaskMethod": {"type": "string"}}, "required": ["TaskMethod"]}}}, "required": ["Tasks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"national": {"type": "null"}, "wmo": {"type": "string"}, "ghcn": {"type": "string"}, "wban": {"type": "null"}, "usaf": {"type": "null"}, "mosmix": {"type": "null"}, "icao": {"type": "null"}, "iata": {"type": "null"}}, "required": ["national", "wmo", "ghcn", "wban", "usaf", "mosmix", "icao", "iata"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}, "history": {"type": "array", "items": {}}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone", "history"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "95925", "name" : {"en" : "Mt Ginini / Brindabella"}, "country" : "AU", "region" : "NSW", "identifiers" : {"national" : null, "wmo" : "95925", "ghcn" : "ASN00070349", "wban" : null, "usaf" : null, "mosmix" : null, "icao" : null, "iata" : null}, "location" : {"latitude" : -35.5292, "longitude" : 148.7722, "elevation" : 1760}, "timezone" : "Australia/Sydney", "history" : []} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"national": {"type": "null"}, "wmo": {"type": "string"}, "ghcn": {"type": "string"}, "wban": {"type": "null"}, "usaf": {"type": "null"}, "mosmix": {"type": "null"}, "icao": {"type": "null"}, "iata": {"type": "null"}}, "required": ["national", "wmo", "ghcn", "wban", "usaf", "mosmix", "icao", "iata"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}, "history": {"type": "array", "items": {}}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone", "history"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"datetime": {"type": "string"}, "resource": {"type": "string"}, "url": {"type": "string"}}, "required": ["datetime", "resource", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"datetime" : "2018-07-05T15:31:35.751188", "resource" : "a45d01e8f582bde8a6dd5f67d5a253ba6e3f1aabfb55b77ea841d4418f43f481", "url" : "https://www.lincoln.gov.uk/_resources/assets/attachment/full/0/54502.csv"} | json_instruct | {"type": "object", "properties": {"datetime": {"type": "string"}, "resource": {"type": "string"}, "url": {"type": "string"}}, "required": ["datetime", "resource", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"doctype": {"type": "string"}, "name": {"type": "string"}}, "required": ["doctype", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"doctype" : "Loose Stock", "name" : "_Test Loose Stock 1"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"doctype": {"type": "string"}, "name": {"type": "string"}}, "required": ["doctype", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"index:": {"type": "string"}, "matchAgainst:": {"type": "string"}}, "required": ["index:", "matchAgainst:"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"class" : {}, "instance" : {"index:" : "", "matchAgainst:" : ""}} | json_instruct | {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"index:": {"type": "string"}, "matchAgainst:": {"type": "string"}}, "required": ["index:", "matchAgainst:"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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" : 9964506, "stationGroupId" : 9964506, "name" : "\u5b66\u5712\u90fd\u5e02", "lineId" : 99645, "zipCode" : "651-2103", "pref" : "\u5175\u5eab\u770c", "city" : "\u795e\u6238\u5e02\u897f\u533a", "town" : "\u5b66\u5712\u897f\u753a", "longitude" : 135.057687, "latitude" : 34.681471, "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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "dulciness", "definition" : "See Dulceness. [Obs.]"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"image": {"type": "string"}, "service_title": {"type": "string"}, "service_name": {"type": "string"}, "service_uuid": {"type": "string"}, "generated": {"type": "string"}}, "required": ["image", "service_title", "service_name", "service_uuid", "generated"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"image" : "{{cookiecutter.image}}", "service_title" : "{{cookiecutter.service_title}}", "service_name" : "{{cookiecutter.service_name}}", "service_uuid" : "{{cookiecutter.service_uuid}}", "generated" : "{{cookiecutter.generated}}"} | json_instruct | {"type": "object", "properties": {"image": {"type": "string"}, "service_title": {"type": "string"}, "service_name": {"type": "string"}, "service_uuid": {"type": "string"}, "generated": {"type": "string"}}, "required": ["image", "service_title", "service_name", "service_uuid", "generated"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "equivalent": {"type": "array", "items": {}}, "manufacturer": {"type": "string"}, "name": {"type": "string"}, "replacement": {"type": "array", "items": {}}, "subpart": {"type": "array", "items": {}}, "urls": {"type": "object", "properties": {"manufacturer": {"type": "array", "items": {"type": "string"}}, "related": {"type": "array", "items": {}}}, "required": ["manufacturer", "related"]}, "variants": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "version": {"type": "integer"}, "weight": {"type": "string"}}, "required": ["categories", "equivalent", "manufacturer", "name", "replacement", "subpart", "urls", "variants", "version", "weight"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"categories" : ["hqcam"], "equivalent" : [], "manufacturer" : "GoPro", "name" : "HERO4 Silver", "replacement" : [], "subpart" : [], "urls" : {"manufacturer" : ["http://shop.gopro.com/hero4/hero4-silver/CHDHY-401.html"], "related" : []}, "variants" : [{"url" : "http://www.amazon.com/dp/B00NIYJF6U/?tag=rcbuildinfo-20"}, {"price" : "$399.99", "stock_state" : "in_stock", "stock_text" : "In Stock", "url" : "http://www.getfpv.com/gopro-hero4-silver-free-layerlens-or-memory-card.html"}, {"price" : "$399.99", "stock_state" : "in_stock", "stock_text" : "3 Units in Stock", "url" : "http://www.readymaderc.com/store/index.php?main_page=product_info&products_id=3330"}], "version" : 2, "weight" : ""} | json_instruct | {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "equivalent": {"type": "array", "items": {}}, "manufacturer": {"type": "string"}, "name": {"type": "string"}, "replacement": {"type": "array", "items": {}}, "subpart": {"type": "array", "items": {}}, "urls": {"type": "object", "properties": {"manufacturer": {"type": "array", "items": {"type": "string"}}, "related": {"type": "array", "items": {}}}, "required": ["manufacturer", "related"]}, "variants": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "version": {"type": "integer"}, "weight": {"type": "string"}}, "required": ["categories", "equivalent", "manufacturer", "name", "replacement", "subpart", "urls", "variants", "version", "weight"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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" : "CORINNA", "frequency" : 15861, "males" : "0.006304772712943698 %", "females" : "99.99369522728706 %"}] | 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#"} |
Create an example JSON object that satisfies this schema:
{"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" : "0x63b437c7080b535cf11addece33b60b5a5fd699c", "tool" : "osiris", "start" : 1564595431.777526, "end" : 1564595434.2670474, "duration" : 2.4895215034484863, "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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"required": {"type": "boolean"}, "minVersion": {"type": "string"}, "package": {"type": "string"}, "compatibilityLevel": {"type": "string"}, "plugin": {"type": "string"}, "client": {"type": "array", "items": {"type": "string"}}, "injectors": {"type": "object", "properties": {"defaultRequire": {"type": "integer"}}, "required": ["defaultRequire"]}}, "required": ["required", "minVersion", "package", "compatibilityLevel", "plugin", "client", "injectors"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"required" : true, "minVersion" : "0.8", "package" : "draylar.omegaconfiggui.mixin", "compatibilityLevel" : "JAVA_17", "plugin" : "draylar.omegaconfiggui.mixin.OmegaConfigMixinPlugin", "client" : ["modmenu.ModMenuAccessor", "ModMenuMixin"], "injectors" : {"defaultRequire" : 1}} | json_instruct | {"type": "object", "properties": {"required": {"type": "boolean"}, "minVersion": {"type": "string"}, "package": {"type": "string"}, "compatibilityLevel": {"type": "string"}, "plugin": {"type": "string"}, "client": {"type": "array", "items": {"type": "string"}}, "injectors": {"type": "object", "properties": {"defaultRequire": {"type": "integer"}}, "required": ["defaultRequire"]}}, "required": ["required", "minVersion", "package", "compatibilityLevel", "plugin", "client", "injectors"], "$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": {"planning-permission-type": {"type": "string"}, "start-date": {"type": "string"}, "point": {"type": "string"}, "name": {"type": "string"}, "planning-permission-date": {"type": "string"}, "planning-permission-history": {"type": "string"}, "hectares": {"type": "string"}, "ownership-status": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "organisation": {"type": "string"}, "site-address": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "planning-permission-status": {"type": "string"}, "site": {"type": "string"}, "site-plan-url": {"type": "string"}, "deliverable": {"type": "string"}, "notes": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["planning-permission-type", "start-date", "point", "name", "planning-permission-date", "planning-permission-history", "hectares", "ownership-status", "maximum-net-dwellings", "organisation", "site-address", "minimum-net-dwellings", "planning-permission-status", "site", "site-plan-url", "deliverable", "notes", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [0.167575, 50.964016]}, "properties" : {"planning-permission-type" : "full planning permission", "start-date" : "2017-12-13", "point" : "POINT(0.167575 50.964016)", "name" : "BFR18", "planning-permission-date" : "2016-04-15", "planning-permission-history" : "http://www.planning.wealden.gov.uk/searchresults.aspx?SearchType=15&ApplicationNumber=2015/2521", "hectares" : "0.19", "ownership-status" : "not owned by a public authority", "maximum-net-dwellings" : "10", "organisation" : "local-authority-eng:WEA", "site-address" : "Blackboys Service Station, Lewes Road, Blackboys", "minimum-net-dwellings" : "10", "planning-permission-status" : "permissioned", "site" : "BFR18", "site-plan-url" : "http://www.wealden.gov.uk/Wealden/Residents/Planning_and_Building_Control/Planning_Policy/Brownfield_Register/PPolicy_Brownfield_Register.aspx", "deliverable" : "yes", "notes" : "Total of 10 units comprising of 4 one bedroom flats, 2 three bedroom houses and 4 four bedroom houses", "slug" : "/brownfield-land/local-authority-eng/WEA/BFR18", "entity" : 497411, "entry-date" : "2017-12-13"}} | 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": {"planning-permission-type": {"type": "string"}, "start-date": {"type": "string"}, "point": {"type": "string"}, "name": {"type": "string"}, "planning-permission-date": {"type": "string"}, "planning-permission-history": {"type": "string"}, "hectares": {"type": "string"}, "ownership-status": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "organisation": {"type": "string"}, "site-address": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "planning-permission-status": {"type": "string"}, "site": {"type": "string"}, "site-plan-url": {"type": "string"}, "deliverable": {"type": "string"}, "notes": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["planning-permission-type", "start-date", "point", "name", "planning-permission-date", "planning-permission-history", "hectares", "ownership-status", "maximum-net-dwellings", "organisation", "site-address", "minimum-net-dwellings", "planning-permission-status", "site", "site-plan-url", "deliverable", "notes", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "id": {"type": "string"}, "decimals": {"type": "integer"}, "coingecko_url": {"type": "string"}, "market_cap_usd": {"type": "integer"}, "market_cap_rank": {"type": "integer"}, "24_hr_volume_usd": {"type": "number"}, "logoURI": {"type": "string"}}, "required": ["name", "symbol", "id", "decimals", "coingecko_url", "market_cap_usd", "market_cap_rank", "24_hr_volume_usd", "logoURI"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ProphecyTOKEN", "symbol" : "PRY", "id" : "0x3C81D482172cC273c3b91dD9D8eb212023D00521", "decimals" : 18, "coingecko_url" : "https://www.coingecko.com/en/coins/prophecy", "market_cap_usd" : 229682, "market_cap_rank" : 2944, "24_hr_volume_usd" : 0.0, "logoURI" : "https://raw.githubusercontent.com/poolsharks-protocol/token-metadata/master/blockchains/ethereum/assets/0x3C81D482172cC273c3b91dD9D8eb212023D00521/logo.png"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "id": {"type": "string"}, "decimals": {"type": "integer"}, "coingecko_url": {"type": "string"}, "market_cap_usd": {"type": "integer"}, "market_cap_rank": {"type": "integer"}, "24_hr_volume_usd": {"type": "number"}, "logoURI": {"type": "string"}}, "required": ["name", "symbol", "id", "decimals", "coingecko_url", "market_cap_usd", "market_cap_rank", "24_hr_volume_usd", "logoURI"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"policy": {"type": "string"}, "run": {"type": "string"}, "lowerBound": {"type": "number"}, "upperBound": {"type": "number"}, "nodes": {"type": "integer"}, "workers": {"type": "integer"}}, "required": ["policy", "run", "lowerBound", "upperBound", "nodes", "workers"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"policy" : "OnDemand", "run" : "d", "lowerBound" : 0.55, "upperBound" : 0.75, "nodes" : 1, "workers" : 2} | json_instruct | {"type": "object", "properties": {"policy": {"type": "string"}, "run": {"type": "string"}, "lowerBound": {"type": "number"}, "upperBound": {"type": "number"}, "nodes": {"type": "integer"}, "workers": {"type": "integer"}}, "required": ["policy", "run", "lowerBound", "upperBound", "nodes", "workers"], "$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" : "5203040007", "district_id" : "5203040", "name" : "KEMBANG KUNING"} | 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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "official_id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "school_type_entity": {"type": "string"}, "fax": {"type": "string"}, "state": {"type": "string"}, "phone": {"type": "string"}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "official_id", "address", "school_type", "school_type_entity", "fax", "state", "phone", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Schillerschule", "id" : "HE-3363-0", "official_id" : "3363", "address" : "Weserstra\u00dfe 2, 64625 Bensheim", "school_type" : "Grundschule", "school_type_entity" : "Grundschule", "fax" : "06251/1756714", "state" : "HE", "phone" : "06251/175670", "full_time_school" : false, "lon" : 8.618953, "lat" : 49.697396} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "official_id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "school_type_entity": {"type": "string"}, "fax": {"type": "string"}, "state": {"type": "string"}, "phone": {"type": "string"}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "official_id", "address", "school_type", "school_type_entity", "fax", "state", "phone", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0xd4111b29cfc55c147b4fe759c8d99012df597065", "tool" : "osiris", "start" : 1564614653.3884516, "end" : 1564614656.5962803, "duration" : 3.2078287601470947, "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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"asset": {"type": "object", "properties": {"format": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "path": {"type": "string"}, "size": {"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}}, "required": ["width", "height"]}, "state": {"type": "integer"}, "type": {"type": "integer"}}, "required": ["format", "id", "name", "path", "size", "state", "type"]}, "regions": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "boundingBox": {"type": "object", "properties": {"height": {"type": "number"}, "width": {"type": "number"}, "left": {"type": "number"}, "top": {"type": "number"}}, "required": ["height", "width", "left", "top"]}, "points": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}}, "required": ["id", "type", "tags", "boundingBox", "points"]}}, "version": {"type": "string"}}, "required": ["asset", "regions", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"asset" : {"format" : "jpg", "id" : "c6b9cff5cee6549f3daeb69d8ba029ad", "name" : "e345.jpg", "path" : "file:/Users/mohamedkhanafer/Documents/GitHub/TrainYourOwnYOLO/Data/Source_Images/Training_Images/e345.jpg", "size" : {"width" : 778, "height" : 411}, "state" : 2, "type" : 1}, "regions" : [{"id" : "FwzKbT0zL", "type" : "RECTANGLE", "tags" : ["elephant"], "boundingBox" : {"height" : 232.73266945422534, "width" : 290.5861572063689, "left" : 450.2814761683209, "top" : 130.4575264084507}, "points" : [{"x" : 450.2814761683209, "y" : 130.4575264084507}, {"x" : 740.8676333746898, "y" : 130.4575264084507}, {"x" : 740.8676333746898, "y" : 363.19019586267603}, {"x" : 450.2814761683209, "y" : 363.19019586267603}]}], "version" : "2.2.0"} | json_instruct | {"type": "object", "properties": {"asset": {"type": "object", "properties": {"format": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "path": {"type": "string"}, "size": {"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}}, "required": ["width", "height"]}, "state": {"type": "integer"}, "type": {"type": "integer"}}, "required": ["format", "id", "name", "path", "size", "state", "type"]}, "regions": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "boundingBox": {"type": "object", "properties": {"height": {"type": "number"}, "width": {"type": "number"}, "left": {"type": "number"}, "top": {"type": "number"}}, "required": ["height", "width", "left", "top"]}, "points": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}}, "required": ["id", "type", "tags", "boundingBox", "points"]}}, "version": {"type": "string"}}, "required": ["asset", "regions", "version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {}, "required": []}, "suggest": {"type": "object", "properties": {"rindow/rindow-container": {"type": "string"}}, "required": ["rindow/rindow-container"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"Rindow\\Module\\ZipStream\\": {"type": "string"}}, "required": ["Rindow\\Module\\ZipStream\\"]}}, "required": ["psr-0"]}}, "required": ["name", "type", "description", "keywords", "license", "require", "require-dev", "suggest", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "rindow/rindow-web-ZipStream", "type" : "library", "description" : "Rindow compatible ZipStream PHP Module", "keywords" : ["rindow", "framework", "zip", "ZipStream"], "license" : "BSD-3-Clause", "require" : {"php" : ">=5.3.3"}, "require-dev" : {}, "suggest" : {"rindow/rindow-container" : "It needs some service container"}, "autoload" : {"psr-0" : {"Rindow\\Module\\ZipStream\\" : "src/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {}, "required": []}, "suggest": {"type": "object", "properties": {"rindow/rindow-container": {"type": "string"}}, "required": ["rindow/rindow-container"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"Rindow\\Module\\ZipStream\\": {"type": "string"}}, "required": ["Rindow\\Module\\ZipStream\\"]}}, "required": ["psr-0"]}}, "required": ["name", "type", "description", "keywords", "license", "require", "require-dev", "suggest", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string"}, "not_after": {"type": "string"}}, "required": ["issuer_ca_id", "issuer_name", "name_value", "min_cert_id", "min_entry_timestamp", "not_before", "not_after"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"issuer_ca_id" : 16418, "issuer_name" : "C=US, O=Let's Encrypt, CN=Let's Encrypt Authority X3", "name_value" : "www.adminer.217.172.12.243.nip.io", "min_cert_id" : 1214678997, "min_entry_timestamp" : "2019-02-18T19:40:12.44", "not_before" : "2019-02-18T18:40:11", "not_after" : "2019-05-19T18:40:11"} | json_instruct | {"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string"}, "not_after": {"type": "string"}}, "required": ["issuer_ca_id", "issuer_name", "name_value", "min_cert_id", "min_entry_timestamp", "not_before", "not_after"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"list": {"type": "object", "properties": {"bgcolor": {"type": "string"}}, "required": ["bgcolor"]}, "contact": {"type": "object", "properties": {"bordercolor": {"type": "string"}}, "required": ["bordercolor"]}, "body": {"type": "object", "properties": {"bgcolor": {"type": "string"}, "bgimage": {"type": "string"}}, "required": ["bgcolor", "bgimage"]}}, "required": ["list", "contact", "body"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"list" : {"bgcolor" : "rgb(237,240,255)"}, "contact" : {"bordercolor" : "rgb(237,240,255)"}, "body" : {"bgcolor" : "rgb(237,240,255)", "bgimage" : "bg.png"}} | json_instruct | {"type": "object", "properties": {"list": {"type": "object", "properties": {"bgcolor": {"type": "string"}}, "required": ["bgcolor"]}, "contact": {"type": "object", "properties": {"bordercolor": {"type": "string"}}, "required": ["bordercolor"]}, "body": {"type": "object", "properties": {"bgcolor": {"type": "string"}, "bgimage": {"type": "string"}}, "required": ["bgcolor", "bgimage"]}}, "required": ["list", "contact", "body"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"diagnostics": {"type": "object", "properties": {"asan": {"type": "object", "properties": {"definitions": {"type": "array", "items": {"type": "string"}}}, "required": ["definitions"]}, "ubsan": {"type": "object", "properties": {"definitions": {"type": "array", "items": {"type": "string"}}}, "required": ["definitions"]}}, "required": ["asan", "ubsan"]}, "valgrind_arguments": {"type": "array", "items": {"type": "string"}}, "tests": {"type": "array", "items": {"type": "object", "properties": {"cmd": {"type": "array", "items": {"type": "string"}}, "optional": {"type": "boolean"}}, "required": ["cmd", "optional"]}}}, "required": ["diagnostics", "valgrind_arguments", "tests"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"diagnostics" : {"asan" : {"definitions" : ["ASMJIT_SANITIZE=address"]}, "ubsan" : {"definitions" : ["ASMJIT_SANITIZE=undefined"]}}, "valgrind_arguments" : ["--leak-check=full", "--show-reachable=yes", "--track-origins=yes"], "tests" : [{"cmd" : ["asmjit_test_unit", "--quick"], "optional" : true}, {"cmd" : ["asmjit_test_opcode", "--quiet"], "optional" : true}, {"cmd" : ["asmjit_test_assembler", "--quiet"], "optional" : true}, {"cmd" : ["asmjit_test_emitters"], "optional" : true}, {"cmd" : ["asmjit_test_instinfo"], "optional" : true}, {"cmd" : ["asmjit_test_x86_sections"], "optional" : true}, {"cmd" : ["asmjit_test_compiler"], "optional" : true}]} | json_instruct | {"type": "object", "properties": {"diagnostics": {"type": "object", "properties": {"asan": {"type": "object", "properties": {"definitions": {"type": "array", "items": {"type": "string"}}}, "required": ["definitions"]}, "ubsan": {"type": "object", "properties": {"definitions": {"type": "array", "items": {"type": "string"}}}, "required": ["definitions"]}}, "required": ["asan", "ubsan"]}, "valgrind_arguments": {"type": "array", "items": {"type": "string"}}, "tests": {"type": "array", "items": {"type": "object", "properties": {"cmd": {"type": "array", "items": {"type": "string"}}, "optional": {"type": "boolean"}}, "required": ["cmd", "optional"]}}}, "required": ["diagnostics", "valgrind_arguments", "tests"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"dx-gantt.css": {"type": "string"}, "dx-gantt.js": {"type": "string"}, "dx-gantt.min.css": {"type": "string"}, "dx-gantt.min.js": {"type": "string"}}, "required": ["dx-gantt.css", "dx-gantt.js", "dx-gantt.min.css", "dx-gantt.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dx-gantt.css" : "sha512-WtGrAqlbGgGDnnNtaBTMsEhET+6d3vprCgxVoLdmhT0GXrLDe1SBsJ+f5EMPSgE9qeyeKdQ7OffJdSouAEYrsQ==", "dx-gantt.js" : "sha512-z/0YMqi+vAzkGD/3399biOiDSQn2uEbpaTRwr0bpu0F70gFgF/hE3F2f/Txe+L1Za3uT/F7t1iCFViqxD79PJA==", "dx-gantt.min.css" : "sha512-uT4IlNPoTffv/xvhi6ZU2R/lBkLD0spbv0ntq950ba3DTEv/MjxqSin2cbgcqiwvC/RzBBcEmcw3gKEMY1cnKQ==", "dx-gantt.min.js" : "sha512-TosLdHw2GAN2I90rNGPTim/QOtBJxZm2NNUpo67B5EB5AqNxlvuEF26z+ytd3YeQ2PeZjiHOHTSJ5VQbfzxkLg=="} | json_instruct | {"type": "object", "properties": {"dx-gantt.css": {"type": "string"}, "dx-gantt.js": {"type": "string"}, "dx-gantt.min.css": {"type": "string"}, "dx-gantt.min.js": {"type": "string"}}, "required": ["dx-gantt.css", "dx-gantt.js", "dx-gantt.min.css", "dx-gantt.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"dataType": {"type": "string"}, "longName": {"type": "string"}, "hl7Table": {"type": "string"}}, "required": ["dataType", "longName", "hl7Table"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dataType" : "CE", "longName" : "Tissue Type Code", "hl7Table" : "HL70417"} | json_instruct | {"type": "object", "properties": {"dataType": {"type": "string"}, "longName": {"type": "string"}, "hl7Table": {"type": "string"}}, "required": ["dataType", "longName", "hl7Table"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "datasetId": {"type": "string"}, "value": {"type": "integer"}}, "required": ["type", "datasetId", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Property", "datasetId" : "urn:ngsi-ld:Dataset:1", "value" : 600} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "datasetId": {"type": "string"}, "value": {"type": "integer"}}, "required": ["type", "datasetId", "value"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"available": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "object", "properties": {"built": {"type": "string"}, "version": {"type": "integer"}, "url": {"type": "string"}, "checksum": {"type": "string"}}, "required": ["built", "version", "url", "checksum"]}}, "2": {"type": "array", "items": {"type": "object", "properties": {"built": {"type": "string"}, "version": {"type": "integer"}, "url": {"type": "string"}, "checksum": {"type": "string"}}, "required": ["built", "version", "url", "checksum"]}}}, "required": ["1", "2"]}}, "required": ["available"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"available" : {"1" : [{"built" : "2020-06-12T12:12:12-04:00", "version" : 1, "url" : "http://localhost:5000/vulnerability-db-v0.2.0+2020-6-12.tar.gz", "checksum" : "sha256:e20c251202948df7f853ddc812f64826bdcd6a285c839a7c65939e68609dfc6e"}], "2" : [{"built" : "2020-06-13T13:13:13-04:00", "version" : 2, "url" : "http://localhost:5000/vulnerability-db-v1.1.0+2020-6-13.tar.gz", "checksum" : "sha256:dcd6a285c839a7c65939e20c251202912f64826be68609dfc6e48df7f853ddc8"}]}} | json_instruct | {"type": "object", "properties": {"available": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "object", "properties": {"built": {"type": "string"}, "version": {"type": "integer"}, "url": {"type": "string"}, "checksum": {"type": "string"}}, "required": ["built", "version", "url", "checksum"]}}, "2": {"type": "array", "items": {"type": "object", "properties": {"built": {"type": "string"}, "version": {"type": "integer"}, "url": {"type": "string"}, "checksum": {"type": "string"}}, "required": ["built", "version", "url", "checksum"]}}}, "required": ["1", "2"]}}, "required": ["available"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "properties": {"type": "object", "properties": {"linkedServiceName": {"type": "object", "properties": {"referenceName": {"type": "string"}, "type": {"type": "string"}}, "required": ["referenceName", "type"]}, "annotations": {"type": "array", "items": {}}, "type": {"type": "string"}, "typeProperties": {"type": "object", "properties": {"location": {"type": "object", "properties": {"type": {"type": "string"}, "fileName": {"type": "string"}, "fileSystem": {"type": "string"}}, "required": ["type", "fileName", "fileSystem"]}, "columnDelimiter": {"type": "string"}, "escapeChar": {"type": "string"}, "firstRowAsHeader": {"type": "boolean"}, "quoteChar": {"type": "string"}}, "required": ["location", "columnDelimiter", "escapeChar", "firstRowAsHeader", "quoteChar"]}, "schema": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}}, "required": ["linkedServiceName", "annotations", "type", "typeProperties", "schema"]}}, "required": ["name", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ds_dim_date_list", "properties" : {"linkedServiceName" : {"referenceName" : "ls_adls_covidreportingprojectdl", "type" : "LinkedServiceReference"}, "annotations" : [], "type" : "DelimitedText", "typeProperties" : {"location" : {"type" : "AzureBlobFSLocation", "fileName" : "dim_date.csv", "fileSystem" : "lookup"}, "columnDelimiter" : ",", "escapeChar" : "\\", "firstRowAsHeader" : true, "quoteChar" : "\""}, "schema" : [{"name" : "date_key", "type" : "String"}, {"name" : "date", "type" : "String"}, {"name" : "year", "type" : "String"}, {"name" : "month", "type" : "String"}, {"name" : "day", "type" : "String"}, {"name" : "day_name", "type" : "String"}, {"name" : "day_of_year", "type" : "String"}, {"name" : "week_of_month", "type" : "String"}, {"name" : "week_of_year", "type" : "String"}, {"name" : "month_name", "type" : "String"}, {"name" : "year_month", "type" : "String"}, {"name" : "year_week", "type" : "String"}]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "properties": {"type": "object", "properties": {"linkedServiceName": {"type": "object", "properties": {"referenceName": {"type": "string"}, "type": {"type": "string"}}, "required": ["referenceName", "type"]}, "annotations": {"type": "array", "items": {}}, "type": {"type": "string"}, "typeProperties": {"type": "object", "properties": {"location": {"type": "object", "properties": {"type": {"type": "string"}, "fileName": {"type": "string"}, "fileSystem": {"type": "string"}}, "required": ["type", "fileName", "fileSystem"]}, "columnDelimiter": {"type": "string"}, "escapeChar": {"type": "string"}, "firstRowAsHeader": {"type": "boolean"}, "quoteChar": {"type": "string"}}, "required": ["location", "columnDelimiter", "escapeChar", "firstRowAsHeader", "quoteChar"]}, "schema": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}}, "required": ["linkedServiceName", "annotations", "type", "typeProperties", "schema"]}}, "required": ["name", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"c": {"type": "integer"}, "d": {"type": "string"}, "md": {"type": "boolean"}}, "required": ["c", "d", "md"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"c" : 5352023, "d" : "23", "md" : false}, {"c" : 5352024, "d" : "24", "md" : false}, {"c" : 5352025, "d" : "25", "md" : false}, {"c" : 5352026, "d" : "26", "md" : false}, {"c" : 5352027, "d" : "27", "md" : true}, {"c" : 5352028, "d" : "28", "md" : false}, {"c" : 5352029, "d" : "29", "md" : false}, {"c" : 5352030, "d" : "30", "md" : false}, {"c" : 5352031, "d" : "31", "md" : false}, {"c" : 5352032, "d" : "32", "md" : false}, {"c" : 5352033, "d" : "33", "md" : false}, {"c" : 5352034, "d" : "34", "md" : false}, {"c" : 5352035, "d" : "35", "md" : false}, {"c" : 5352036, "d" : "36", "md" : false}, {"c" : 5352037, "d" : "37", "md" : false}, {"c" : 5352038, "d" : "38", "md" : false}, {"c" : 5352039, "d" : "39", "md" : false}, {"c" : 5352040, "d" : "40", "md" : false}, {"c" : 5352041, "d" : "41", "md" : false}, {"c" : 5352042, "d" : "42", "md" : false}, {"c" : 5352043, "d" : "43", "md" : false}, {"c" : 5352044, "d" : "44", "md" : false}, {"c" : 5352045, "d" : "45", "md" : false}, {"c" : 5352046, "d" : "46", "md" : false}, {"c" : 5352047, "d" : "47", "md" : false}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"c": {"type": "integer"}, "d": {"type": "string"}, "md": {"type": "boolean"}}, "required": ["c", "d", "md"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x7e7190ba44a8b6461fc3644f86c6e576a2bbbd56", "tool" : "honeybadger", "start" : 1565847337.405317, "end" : 1565847393.011204, "duration" : 55.605886936187744, "analysis" : [{"errors" : [], "file" : "/unique_chucks/19/0x7e7190ba44a8b6461fc3644f86c6e576a2bbbd56.sol", "name" : "Hyperexchange"}, {"errors" : [], "file" : "/unique_chucks/19/0x7e7190ba44a8b6461fc3644f86c6e576a2bbbd56.sol", "name" : "SafeMath"}]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "Add *.pub as a key suffix searched for in the links.", "user" : "gartung", "url" : "https://api.github.com/repos/spack/spack/issues/15361", "updated_at" : "2020-03-05 21:19:50", "created_at" : "2020-03-05 18:05:24", "closed_at" : "2020-03-05 21:15:41", "state" : "closed", "title" : "Allow buildcaches keys to find public keys on the e4s mirror", "number" : 15361, "milestone" : null, "labels" : ["buildcache"], "id" : 576436875, "html_url" : "https://github.com/spack/spack/pull/15361", "assignees" : [], "comments" : 1} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$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"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "babel-loader": {"type": "string"}}, "required": ["@babel/core", "babel-loader"]}, "scripts": {"type": "object", "properties": {"dsm-storybook:publish": {"type": "string"}, "dsm-storybook:preview": {"type": "string"}}, "required": ["dsm-storybook:publish", "dsm-storybook:preview"]}}, "required": ["name", "private", "version", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "dsm-storybook-example-library", "private" : true, "version" : "1.0.0", "devDependencies" : {"@babel/core" : "^7.4.5", "babel-loader" : "^8.0.6"}, "scripts" : {"dsm-storybook:publish" : "dsm-storybook publish", "dsm-storybook:preview" : "dsm-storybook preview"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "babel-loader": {"type": "string"}}, "required": ["@babel/core", "babel-loader"]}, "scripts": {"type": "object", "properties": {"dsm-storybook:publish": {"type": "string"}, "dsm-storybook:preview": {"type": "string"}}, "required": ["dsm-storybook:publish", "dsm-storybook:preview"]}}, "required": ["name", "private", "version", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "is_suicidal_vulnerable": {"type": "boolean"}}, "required": ["is_lock_vulnerable", "is_prodigal_vulnerable", "is_suicidal_vulnerable"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x192623bab84414abfa3c084202da56d13e7c1764", "tool" : "maian", "start" : 1563434955.715062, "end" : 1563435081.6673274, "duration" : 125.95226550102234, "analysis" : {"is_lock_vulnerable" : false, "is_prodigal_vulnerable" : false, "is_suicidal_vulnerable" : false}} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "is_suicidal_vulnerable": {"type": "boolean"}}, "required": ["is_lock_vulnerable", "is_prodigal_vulnerable", "is_suicidal_vulnerable"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$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": {"type": "object", "properties": {"name": {"type": "string"}, "patternId": {"type": "string"}, "severity": {"type": "integer"}, "line": {"type": "integer"}, "column": {"type": "integer"}, "content": {"type": "string"}}, "required": ["name", "patternId", "severity", "line", "column", "content"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x35972be96f011fd6a51f6090a856083078a44655", "tool" : "smartcheck", "start" : 1563752709.9266028, "end" : 1563752719.5212593, "duration" : 9.594656467437744, "analysis" : [{"name" : "SOLIDITY_OVERPOWERED_ROLE", "patternId" : "j83hf7", "severity" : 2, "line" : 36, "column" : 4, "content" : "functionsetOwner(address_new)publiconlyOwner{require(_new!=address(0));owner=_new;emitNewOwner(owner,_new);}"}, {"name" : "SOLIDITY_VISIBILITY", "patternId" : "b51ce0", "severity" : 1, "line" : 189, "column" : 4, "content" : "mapping(address=>Performer)performers;"}, {"name" : "SOLIDITY_VISIBILITY", "patternId" : "b51ce0", "severity" : 1, "line" : 190, "column" : 4, "content" : "mapping(address=>Group)groups;"}]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "patternId": {"type": "string"}, "severity": {"type": "integer"}, "line": {"type": "integer"}, "column": {"type": "integer"}, "content": {"type": "string"}}, "required": ["name", "patternId", "severity", "line", "column", "content"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "yiisoft/yii2-authclient": {"type": "string"}}, "required": ["php", "yiisoft/yii2-authclient"]}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"yiiauth\\gitlab\\": {"type": "string"}}, "required": ["yiiauth\\gitlab\\"]}}, "required": ["psr-4"]}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["name", "description", "keywords", "homepage", "require", "license", "authors", "autoload", "repositories"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "yiiauth/gitlab", "description" : "GitLab OAuth2 for yii2-authclient", "keywords" : ["yii2", "authclient", "oauth", "gitlab"], "homepage" : "http://github.com/yiiauth/gitlab", "require" : {"php" : "~7.3 || 8.0", "yiisoft/yii2-authclient" : "~2.1"}, "license" : "MIT", "authors" : [{"name" : "Dmitriy Kuts (ExileeD)", "email" : "[email protected]"}], "autoload" : {"psr-4" : {"yiiauth\\gitlab\\" : "src"}}, "repositories" : [{"type" : "composer", "url" : "https://asset-packagist.org"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "yiisoft/yii2-authclient": {"type": "string"}}, "required": ["php", "yiisoft/yii2-authclient"]}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"yiiauth\\gitlab\\": {"type": "string"}}, "required": ["yiiauth\\gitlab\\"]}}, "required": ["psr-4"]}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["name", "description", "keywords", "homepage", "require", "license", "authors", "autoload", "repositories"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "IsaacBurgerCoin", "symbol" : "IBC", "logoURI" : "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/GdCb8jMB6mhsoiQsSoSbt7YDQzxjx4whdPvzM131jFCC/logo.png", "decimals" : 9, "address" : "GdCb8jMB6mhsoiQsSoSbt7YDQzxjx4whdPvzM131jFCC", "chainId" : 101} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "address": {"type": "string"}}, "required": ["name", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "henrydorsettcase", "address" : "119840701chibacityjapan"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "address": {"type": "string"}}, "required": ["name", "address"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"900340564": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900340565": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900340566": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900340567": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900340568": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900340569": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900340564", "900340565", "900340566", "900340567", "900340568", "900340569"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"900340564" : {"nama" : "TPS 1", "dapil" : [3307, 13310, 2330503]}, "900340565" : {"nama" : "TPS 2", "dapil" : [3307, 13310, 2330503]}, "900340566" : {"nama" : "TPS 3", "dapil" : [3307, 13310, 2330503]}, "900340567" : {"nama" : "TPS 4", "dapil" : [3307, 13310, 2330503]}, "900340568" : {"nama" : "TPS 5", "dapil" : [3307, 13310, 2330503]}, "900340569" : {"nama" : "TPS 6", "dapil" : [3307, 13310, 2330503]}} | json_instruct | {"type": "object", "properties": {"900340564": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900340565": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900340566": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900340567": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900340568": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900340569": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900340564", "900340565", "900340566", "900340567", "900340568", "900340569"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "angular": {"type": "string"}}, "required": ["jquery", "angular"]}, "devDependencies": {"type": "object", "properties": {"angular-mocks": {"type": "string"}}, "required": ["angular-mocks"]}}, "required": ["name", "version", "description", "main", "authors", "license", "homepage", "ignore", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ftv-angular-touchevents", "version" : "1.0.0", "description" : "France TV - Infini - Touchevents", "main" : "dist/component.min.js", "authors" : ["France T\u00e9l\u00e9visions"], "license" : "MIT", "homepage" : "https://github.com/francetv/ftv-angular-touchevents", "ignore" : ["node_modules", ".gitignore", ".jshintrc", "component.js", "karma.conf.js", "gulpfile.js"], "dependencies" : {"jquery" : "2.2.0", "angular" : "angularjs#1.5.2"}, "devDependencies" : {"angular-mocks" : "1.5.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "angular": {"type": "string"}}, "required": ["jquery", "angular"]}, "devDependencies": {"type": "object", "properties": {"angular-mocks": {"type": "string"}}, "required": ["angular-mocks"]}}, "required": ["name", "version", "description", "main", "authors", "license", "homepage", "ignore", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"data": {"type": "object", "properties": {"wp": {"type": "object", "properties": {"generalSettings": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "description"]}}, "required": ["generalSettings"]}}, "required": ["wp"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : {"wp" : {"generalSettings" : {"title" : "Youpiii", "description" : "staging Youpiii"}}}} | json_instruct | {"type": "object", "properties": {"data": {"type": "object", "properties": {"wp": {"type": "object", "properties": {"generalSettings": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "description"]}}, "required": ["generalSettings"]}}, "required": ["wp"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"purescript.autoStartPscIde": {"type": "boolean"}, "purescript.outputDirectory": {"type": "string"}, "purescript.packagePath": {"type": "string"}, "purescript.sourcePath": {"type": "string"}}, "required": ["purescript.autoStartPscIde", "purescript.outputDirectory", "purescript.packagePath", "purescript.sourcePath"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"purescript.autoStartPscIde" : false, "purescript.outputDirectory" : ".work/output", "purescript.packagePath" : ".work/bower_components", "purescript.sourcePath" : "exercises"} | json_instruct | {"type": "object", "properties": {"purescript.autoStartPscIde": {"type": "boolean"}, "purescript.outputDirectory": {"type": "string"}, "purescript.packagePath": {"type": "string"}, "purescript.sourcePath": {"type": "string"}}, "required": ["purescript.autoStartPscIde", "purescript.outputDirectory", "purescript.packagePath", "purescript.sourcePath"], "$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"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"xprt64\\Config\\": {"type": "string"}}, "required": ["xprt64\\Config\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}}, "required": ["name", "description", "authors", "autoload", "require", "require-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "xprt64/Config", "description" : "Config classes for an PHP application", "authors" : [{"name" : "Constantin Galbenu", "email" : "[email protected]"}], "autoload" : {"psr-4" : {"xprt64\\Config\\" : "src"}}, "require" : {"php" : ">=7.0"}, "require-dev" : {"phpunit/phpunit" : "5.0.*"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"xprt64\\Config\\": {"type": "string"}}, "required": ["xprt64\\Config\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}}, "required": ["name", "description", "authors", "autoload", "require", "require-dev"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"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" : [-0.467818560744986, 51.18881771585805]}, "properties" : {"TIMESTAMP UTC" : "2019-12-13T11:16:57", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-0.964052496153846, 51.44560480049415]}, "properties" : {"TIMESTAMP UTC" : "2019-12-13T11:16:43", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-0.71352365, 51.73356526769991]}, "properties" : {"TIMESTAMP UTC" : "2019-12-13T11:16:43", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-0.46789865, 51.188731485130276]}, "properties" : {"TIMESTAMP UTC" : "2019-12-13T11:16:57", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-0.713533259990301, 51.73353933283917]}, "properties" : {"TIMESTAMP UTC" : "2019-12-13T11:16:43", "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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"react": {"type": "string"}, "redux": {"type": "string"}, "lodash": {"type": "string"}, "moment": {"type": "string"}}, "required": ["react", "redux", "lodash", "moment"]}, "devDependencies": {"type": "object", "properties": {"yarn-outdated-notifier": {"type": "string"}}, "required": ["yarn-outdated-notifier"]}}, "required": ["private", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"private" : true, "scripts" : {"test" : "Because sample, the test is not executed"}, "author" : "tsuyoshiwada", "license" : "MIT", "dependencies" : {"react" : "15.0.0", "redux" : "3.0.5", "lodash" : "3.10.1", "moment" : "2.16.0"}, "devDependencies" : {"yarn-outdated-notifier" : "^0.0.1"}} | json_instruct | {"type": "object", "properties": {"private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"react": {"type": "string"}, "redux": {"type": "string"}, "lodash": {"type": "string"}, "moment": {"type": "string"}}, "required": ["react", "redux", "lodash", "moment"]}, "devDependencies": {"type": "object", "properties": {"yarn-outdated-notifier": {"type": "string"}}, "required": ["yarn-outdated-notifier"]}}, "required": ["private", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["gz-tpl-loader"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"orgCode": {"type": "string"}, "jsonRequestProductUpsert": {"type": "object", "properties": {"requestItems": {"type": "array", "items": {"type": "object", "properties": {"productIdentifier": {"type": "string"}, "externalVersion": {"type": "null"}, "externalReferenceUrl": {"type": "null"}, "requestProduct": {"type": "object", "properties": {"code": {"type": "string"}, "codeSet": {"type": "boolean"}, "name": {"type": "string"}, "nameSet": {"type": "boolean"}, "type": {"type": "string"}, "typeSet": {"type": "boolean"}, "uomCode": {"type": "string"}, "uomCodeSet": {"type": "boolean"}, "ean": {"type": "null"}, "eanSet": {"type": "boolean"}, "gtin": {"type": "string"}, "gtinSet": {"type": "boolean"}, "description": {"type": "null"}, "descriptionSet": {"type": "boolean"}, "discontinued": {"type": "null"}, "discontinuedSet": {"type": "boolean"}, "active": {"type": "boolean"}, "activeSet": {"type": "boolean"}, "stocked": {"type": "null"}, "stockedSet": {"type": "boolean"}, "productCategoryIdentifier": {"type": "null"}, "productCategoryIdentifierSet": {"type": "boolean"}, "syncAdvise": {"type": "null"}, "bpartnerProductItems": {"type": "null"}}, "required": ["code", "codeSet", "name", "nameSet", "type", "typeSet", "uomCode", "uomCodeSet", "ean", "eanSet", "gtin", "gtinSet", "description", "descriptionSet", "discontinued", "discontinuedSet", "active", "activeSet", "stocked", "stockedSet", "productCategoryIdentifier", "productCategoryIdentifierSet", "syncAdvise", "bpartnerProductItems"]}}, "required": ["productIdentifier", "externalVersion", "externalReferenceUrl", "requestProduct"]}}, "syncAdvise": {"type": "object", "properties": {"ifNotExists": {"type": "string"}, "ifExists": {"type": "string"}}, "required": ["ifNotExists", "ifExists"]}}, "required": ["requestItems", "syncAdvise"]}}, "required": ["orgCode", "jsonRequestProductUpsert"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"orgCode" : "orgCode", "jsonRequestProductUpsert" : {"requestItems" : [{"productIdentifier" : "ext-GRSSignum-ProductId", "externalVersion" : null, "externalReferenceUrl" : null, "requestProduct" : {"code" : "ProductValue", "codeSet" : true, "name" : "Name1 Name2", "nameSet" : true, "type" : "ITEM", "typeSet" : true, "uomCode" : "KGM", "uomCodeSet" : true, "ean" : null, "eanSet" : false, "gtin" : "12345678", "gtinSet" : true, "description" : null, "descriptionSet" : false, "discontinued" : null, "discontinuedSet" : false, "active" : true, "activeSet" : true, "stocked" : null, "stockedSet" : false, "productCategoryIdentifier" : null, "productCategoryIdentifierSet" : false, "syncAdvise" : null, "bpartnerProductItems" : null}}], "syncAdvise" : {"ifNotExists" : "CREATE", "ifExists" : "UPDATE_MERGE"}}} | json_instruct | {"type": "object", "properties": {"orgCode": {"type": "string"}, "jsonRequestProductUpsert": {"type": "object", "properties": {"requestItems": {"type": "array", "items": {"type": "object", "properties": {"productIdentifier": {"type": "string"}, "externalVersion": {"type": "null"}, "externalReferenceUrl": {"type": "null"}, "requestProduct": {"type": "object", "properties": {"code": {"type": "string"}, "codeSet": {"type": "boolean"}, "name": {"type": "string"}, "nameSet": {"type": "boolean"}, "type": {"type": "string"}, "typeSet": {"type": "boolean"}, "uomCode": {"type": "string"}, "uomCodeSet": {"type": "boolean"}, "ean": {"type": "null"}, "eanSet": {"type": "boolean"}, "gtin": {"type": "string"}, "gtinSet": {"type": "boolean"}, "description": {"type": "null"}, "descriptionSet": {"type": "boolean"}, "discontinued": {"type": "null"}, "discontinuedSet": {"type": "boolean"}, "active": {"type": "boolean"}, "activeSet": {"type": "boolean"}, "stocked": {"type": "null"}, "stockedSet": {"type": "boolean"}, "productCategoryIdentifier": {"type": "null"}, "productCategoryIdentifierSet": {"type": "boolean"}, "syncAdvise": {"type": "null"}, "bpartnerProductItems": {"type": "null"}}, "required": ["code", "codeSet", "name", "nameSet", "type", "typeSet", "uomCode", "uomCodeSet", "ean", "eanSet", "gtin", "gtinSet", "description", "descriptionSet", "discontinued", "discontinuedSet", "active", "activeSet", "stocked", "stockedSet", "productCategoryIdentifier", "productCategoryIdentifierSet", "syncAdvise", "bpartnerProductItems"]}}, "required": ["productIdentifier", "externalVersion", "externalReferenceUrl", "requestProduct"]}}, "syncAdvise": {"type": "object", "properties": {"ifNotExists": {"type": "string"}, "ifExists": {"type": "string"}}, "required": ["ifNotExists", "ifExists"]}}, "required": ["requestItems", "syncAdvise"]}}, "required": ["orgCode", "jsonRequestProductUpsert"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"station" : [{"pref_cd" : 20, "line_cd" : 11409, "line_name" : "\u5317\u30a2\u30eb\u30d7\u30b9\u7dda", "station_cd" : 1140913, "station_g_cd" : 1140913, "station_name" : "\u5b89\u66c7\u8ffd\u5206", "lon" : 137.872736, "lat" : 36.371795}]} | json_instruct | {"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "fakerphp/faker": {"type": "string"}, "ext-json": {"type": "string"}}, "required": ["php", "fakerphp/faker", "ext-json"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Bluemmb\\Faker\\": {"type": "string"}}, "required": ["Bluemmb\\Faker\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "keywords", "license", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "bluemmb/faker-picsum-photos-provider", "description" : "picsum.photos provider for Faker", "keywords" : ["faker", "picsum.photos", "provider"], "license" : "MIT", "authors" : [{"name" : "Mohammad Eftekhari", "email" : "[email protected]"}], "require" : {"php" : "^7.1 || ^8.0", "fakerphp/faker" : "^1.10", "ext-json" : "*"}, "require-dev" : {"phpunit/phpunit" : "^8.0"}, "autoload" : {"psr-4" : {"Bluemmb\\Faker\\" : "."}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "fakerphp/faker": {"type": "string"}, "ext-json": {"type": "string"}}, "required": ["php", "fakerphp/faker", "ext-json"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Bluemmb\\Faker\\": {"type": "string"}}, "required": ["Bluemmb\\Faker\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "keywords", "license", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"build": {"type": "object", "properties": {"core": {"type": "string"}, "extra_flags": {"type": "string"}, "f_cpu": {"type": "string"}, "mcu": {"type": "string"}}, "required": ["core", "extra_flags", "f_cpu", "mcu"]}, "frameworks": {"type": "array", "items": {}}, "name": {"type": "string"}, "upload": {"type": "object", "properties": {"maximum_ram_size": {"type": "integer"}, "maximum_size": {"type": "integer"}}, "required": ["maximum_ram_size", "maximum_size"]}, "url": {"type": "string"}, "vendor": {"type": "string"}}, "required": ["build", "frameworks", "name", "upload", "url", "vendor"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"build" : {"core" : "arduino", "extra_flags" : "-D__AVR_AT90PWM316__", "f_cpu" : "16000000L", "mcu" : "at90pwm316"}, "frameworks" : [], "name" : "Atmel AT90PWM316", "upload" : {"maximum_ram_size" : 1024, "maximum_size" : 16384}, "url" : "http://www.microchip.com/wwwproducts/en/AT90PWM316", "vendor" : "Microchip"} | json_instruct | {"type": "object", "properties": {"build": {"type": "object", "properties": {"core": {"type": "string"}, "extra_flags": {"type": "string"}, "f_cpu": {"type": "string"}, "mcu": {"type": "string"}}, "required": ["core", "extra_flags", "f_cpu", "mcu"]}, "frameworks": {"type": "array", "items": {}}, "name": {"type": "string"}, "upload": {"type": "object", "properties": {"maximum_ram_size": {"type": "integer"}, "maximum_size": {"type": "integer"}}, "required": ["maximum_ram_size", "maximum_size"]}, "url": {"type": "string"}, "vendor": {"type": "string"}}, "required": ["build", "frameworks", "name", "upload", "url", "vendor"], "$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"}, "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" : "GunrackSpawn 1(Clone)611816", "IsStatic" : false, "useGravity" : false, "randomRotation" : false, "Position" : {"x" : -171.482178, "y" : -3.312132, "z" : 31.32016}, "Rotation" : {"x" : 279.736816, "y" : 278.839233, "z" : 97.27425}, "IsGroupPosition" : false, "GroupPositions" : [], "Root" : "5db5d03a533aa77c477a54b1", "Items" : [{"_id" : "5db5d03a533aa77c477a54b1", "_tpl" : "583990e32459771419544dd2"}, {"_id" : "5db5d03a533aa77c477a54b2", "_tpl" : "5649ad3f4bdc2df8348b4585", "parentId" : "5db5d03a533aa77c477a54b1", "slotId" : "mod_pistol_grip"}, {"_id" : "5db5d03a533aa77c477a54b3", "_tpl" : "57dc347d245977596754e7a1", "parentId" : "5db5d03a533aa77c477a54b1", "slotId" : "mod_stock"}, {"_id" : "5db5d03a533aa77c477a54b4", "_tpl" : "564ca99c4bdc2d16268b4589", "parentId" : "5db5d03a533aa77c477a54b1", "slotId" : "mod_magazine"}, {"_id" : "5db5d03a533aa77c477a54b5", "_tpl" : "56dfef82d2720bbd668b4567", "parentId" : "5db5d03a533aa77c477a54b4", "slotId" : "cartridges", "upd" : {"StackObjectsCount" : 30}}, {"_id" : "5db5d03a533aa77c477a54b6", "_tpl" : "57dc324a24597759501edc20", "parentId" : "5db5d03a533aa77c477a54b1", "slotId" : "mod_muzzle"}, {"_id" : "5db5d03a533aa77c477a54b7", "_tpl" : "57dc334d245977597164366f", "parentId" : "5db5d03a533aa77c477a54b1", "slotId" : "mod_reciever"}, {"_id" : "5db5d03a533aa77c477a54b8", "_tpl" : "59d36a0086f7747e673f3946", "parentId" : "5db5d03a533aa77c477a54b1", "slotId" : "mod_gas_block"}, {"_id" : "5db5d03a533aa77c477a54b9", "_tpl" : "57dc32dc245977596d4ef3d3", "parentId" : "5db5d03a533aa77c477a54b8", "slotId" : "mod_handguard"}]} | 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 a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"title": {"type": "string"}, "filesize": {"type": "object", "properties": {"max": {"type": "integer"}, "except": {"type": "array", "items": {"type": "string"}}}, "required": ["max", "except"]}, "blogs": {"type": "array", "items": {"type": "string"}}, "templates": {"type": "object", "properties": {"*.md": {"type": "string"}}, "required": ["*.md"]}, "listview": {"type": "array", "items": {"type": "string"}}, "theme": {"type": "string"}, "uiTheme": {"type": "string"}, "email": {"type": "string"}, "defaultTour": {"type": "string"}, "showKeypad": {"type": "boolean"}, "shared": {"type": "boolean"}, "permissions": {"type": "object", "properties": {"2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}}, "required": ["2", "3"]}}, "required": ["title", "filesize", "blogs", "templates", "listview", "theme", "uiTheme", "email", "defaultTour", "showKeypad", "shared", "permissions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Glasgow Botanic Gardens", "filesize" : {"max" : 120, "except" : ["*.html", "*.json", "*js/*", "*css/*", "*scripts/*", "*styles/*"]}, "blogs" : ["blog/"], "templates" : {"*.md" : "md.ftl"}, "listview" : ["contents/plants/index.html", "contents/trail/index.html", "contents/plants/economic/index.html"], "theme" : "jqm", "uiTheme" : "w", "email" : "[email protected]", "defaultTour" : "botanics-trail", "showKeypad" : true, "shared" : false, "permissions" : {"2" : ["[email protected]", "[email protected]"], "3" : ["[email protected]"]}} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "filesize": {"type": "object", "properties": {"max": {"type": "integer"}, "except": {"type": "array", "items": {"type": "string"}}}, "required": ["max", "except"]}, "blogs": {"type": "array", "items": {"type": "string"}}, "templates": {"type": "object", "properties": {"*.md": {"type": "string"}}, "required": ["*.md"]}, "listview": {"type": "array", "items": {"type": "string"}}, "theme": {"type": "string"}, "uiTheme": {"type": "string"}, "email": {"type": "string"}, "defaultTour": {"type": "string"}, "showKeypad": {"type": "boolean"}, "shared": {"type": "boolean"}, "permissions": {"type": "object", "properties": {"2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}}, "required": ["2", "3"]}}, "required": ["title", "filesize", "blogs", "templates", "listview", "theme", "uiTheme", "email", "defaultTour", "showKeypad", "shared", "permissions"], "$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"}, "category": {"type": "string"}, "sortorder": {"type": "integer"}}, "required": ["name", "description", "category", "sortorder"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Giftstichling", "description" : "Ein schneller, grimmiger Fisch mit stacheligen Flossen, dessen stacheliges Maul die Str\u00f6mung durchbohren kann, wenn er mit voller Geschwindigkeit schwimmt. Seine F\u00e4higkeiten haben ihm die Spitznamen \u201eWasserdorn\u201c und \u201eBachpfeil\u201c eingebracht.\nDas bekannteste Merkmal des Giftstichlings sind seine giftigen Stacheln, die ein Nervengift enthalten, das f\u00fcr kleinere Beutetiere t\u00f6dlich ist, sich aber bei gro\u00dfen Organismen als weitaus schw\u00e4cher erweist und meist nur leichte Verwirrung oder Halluzinationen hervorruft.\n\u201eMach ihn voll, Rex, mein guter Junge! F\u00fcll ihn bis zum Rand f\u00fcr mich!\u201c \u2013 Ein gewisser Fischer aus Liyue, der versehentlich gestochen wurde.", "category" : "Wasserbewohner", "sortorder" : 12209} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "sortorder": {"type": "integer"}}, "required": ["name", "description", "category", "sortorder"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "moduleType": {"type": "array", "items": {}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "bootstrap": {"type": "string"}, "highstock": {"type": "string"}}, "required": ["jquery", "bootstrap", "highstock"]}}, "required": ["name", "homepage", "authors", "description", "main", "moduleType", "license", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "WaterPi", "homepage" : "https://github.com/amcolash/WaterPi", "authors" : ["Andrew McOlash <[email protected]>"], "description" : "A simple python-based program for a raspberry pi to check water level of a plant, which triggers a notification.", "main" : "", "moduleType" : [], "license" : "MIT", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"jquery" : "~2.1.4", "bootstrap" : "~3.3.6", "highstock" : "highstock-release#~4.2.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "moduleType": {"type": "array", "items": {}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "bootstrap": {"type": "string"}, "highstock": {"type": "string"}}, "required": ["jquery", "bootstrap", "highstock"]}}, "required": ["name", "homepage", "authors", "description", "main", "moduleType", "license", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"description": {"type": "string"}, "instructors": {"type": "string"}, "url": {"type": "string"}, "title": {"type": "string"}, "language": {"type": "string"}, "source": {"type": "string"}}, "required": ["description", "instructors", "url", "title", "language", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "In _Flash Professional CS5: Animation Projects_, Paul Trani shows how to\ncreate dynamic and visually rich animations in Flash Professional CS5. This\ncourse demonstrates how to create and import assets, and then take those\nassets and bring them to life with dynamic motion. It also shows how to create\nmore unique and natural movement by adding special effects, 3D, masks, and\neven bones to animate characters. Exercise files accompany the course.", "instructors" : "Paul Trani", "url" : "https://www.coursetalk.com/providers/lynda/courses/flash-professional-cs5-animation-projects", "title" : "Flash Professional CS5: Animation Projects", "language" : "en", "source" : "coursetalk"} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "instructors": {"type": "string"}, "url": {"type": "string"}, "title": {"type": "string"}, "language": {"type": "string"}, "source": {"type": "string"}}, "required": ["description", "instructors", "url", "title", "language", "source"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "sinocraft:block/white_marble"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs": {"type": "string"}, "P6736": {"type": "string"}}, "required": ["label:cs", "P31", "P31^label:cs", "P131^label:cs", "P6736"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {"label:cs" : "Pam\u011btn\u00ed deska Franti\u0161ka Poloprudsk\u00e9ho v Po\u0159\u00ed\u010d\u00ed nad S\u00e1zavou", "P31" : "http://www.wikidata.org/entity/Q721747", "P31^label:cs" : "Pam\u011btn\u00ed deska", "P131^label:cs" : "Po\u0159\u00ed\u010d\u00ed nad S\u00e1zavou", "P6736" : "32575"}, "geometry" : {"type" : "Point", "coordinates" : [14.68043, 49.83963]}}, {"type" : "Feature", "properties" : {"label:cs" : "Pomn\u00edk padl\u00fdm v Po\u0159\u00ed\u010d\u00ed nad S\u00e1zavou", "P31" : "http://www.wikidata.org/entity/Q575759", "P31^label:cs" : "Pomn\u00edk padl\u00fdm", "P131^label:cs" : "Po\u0159\u00ed\u010d\u00ed nad S\u00e1zavou", "P6736" : "32572"}, "geometry" : {"type" : "Point", "coordinates" : [14.67901, 49.83999]}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs": {"type": "string"}, "P6736": {"type": "string"}}, "required": ["label:cs", "P31", "P31^label:cs", "P131^label:cs", "P6736"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"itemid": {"type": "string"}, "displayname": {"type": "string"}, "nbttag": {"type": "string"}, "damage": {"type": "integer"}, "lore": {"type": "array", "items": {"type": "string"}}, "internalname": {"type": "string"}, "crafttext": {"type": "string"}, "clickcommand": {"type": "string"}, "modver": {"type": "string"}, "infoType": {"type": "string"}}, "required": ["itemid", "displayname", "nbttag", "damage", "lore", "internalname", "crafttext", "clickcommand", "modver", "infoType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"itemid" : "minecraft:enchanted_book", "displayname" : "\u00a7aEnchanted Book", "nbttag" : "{ench:[],HideFlags:254,display:{Lore:[0:\"\u00a79Titan Killer V\",1:\"\u00a77Increases damage dealt by \u00a7a10%\",2:\"\u00a7a\u00a77for every 100 defense your\",3:\"\u00a77target has up to \u00a7a50%\u00a77.\",4:\"\",5:\"\u00a77\u00a77Cost: \u00a7350 Exp Levels\"],Name:\"\u00a7aEnchanted Book\"},ExtraAttributes:{id:\"TITAN_KILLER;5\",enchantments:{titan_killer:5}}}", "damage" : 0, "lore" : ["\u00a79Titan Killer V", "\u00a77Increases damage dealt by \u00a7a10%", "\u00a7a\u00a77for every 100 defense your", "\u00a77target has up to \u00a7a50%\u00a77.", "", "\u00a7cOnly obtainable in a Enchanting Table."], "internalname" : "TITAN_KILLER;5", "crafttext" : "", "clickcommand" : "", "modver" : "1.7.1-REL", "infoType" : ""} | json_instruct | {"type": "object", "properties": {"itemid": {"type": "string"}, "displayname": {"type": "string"}, "nbttag": {"type": "string"}, "damage": {"type": "integer"}, "lore": {"type": "array", "items": {"type": "string"}}, "internalname": {"type": "string"}, "crafttext": {"type": "string"}, "clickcommand": {"type": "string"}, "modver": {"type": "string"}, "infoType": {"type": "string"}}, "required": ["itemid", "displayname", "nbttag", "damage", "lore", "internalname", "crafttext", "clickcommand", "modver", "infoType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"last_date": {"type": "string"}, "provinsi": {"type": "string"}, "kasus_total": {"type": "integer"}, "kasus_tanpa_tgl": {"type": "integer"}, "kasus_dengan_tgl": {"type": "integer"}, "meninggal_persen": {"type": "number"}, "meninggal_tanpa_tgl": {"type": "integer"}, "meninggal_dengan_tgl": {"type": "integer"}, "sembuh_persen": {"type": "number"}, "sembuh_tanpa_tgl": {"type": "integer"}, "sembuh_dengan_tgl": {"type": "integer"}, "list_perkembangan": {"type": "array", "items": {"type": "object", "properties": {"tanggal": {"type": "integer"}, "KASUS": {"type": "integer"}, "MENINGGAL": {"type": "integer"}, "SEMBUH": {"type": "integer"}, "DIRAWAT_OR_ISOLASI": {"type": "integer"}, "AKUMULASI_KASUS": {"type": "integer"}, "AKUMULASI_SEMBUH": {"type": "integer"}, "AKUMULASI_MENINGGAL": {"type": "integer"}, "AKUMULASI_DIRAWAT_OR_ISOLASI": {"type": "integer"}}, "required": ["tanggal", "KASUS", "MENINGGAL", "SEMBUH", "DIRAWAT_OR_ISOLASI", "AKUMULASI_KASUS", "AKUMULASI_SEMBUH", "AKUMULASI_MENINGGAL", "AKUMULASI_DIRAWAT_OR_ISOLASI"]}}}, "required": ["last_date", "provinsi", "kasus_total", "kasus_tanpa_tgl", "kasus_dengan_tgl", "meninggal_persen", "meninggal_tanpa_tgl", "meninggal_dengan_tgl", "sembuh_persen", "sembuh_tanpa_tgl", "sembuh_dengan_tgl", "list_perkembangan"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"last_date" : "2020-09-06", "provinsi" : "NUSA TENGGARA BARAT", "kasus_total" : 2847, "kasus_tanpa_tgl" : 2, "kasus_dengan_tgl" : 2845, "meninggal_persen" : 5.900948366701791, "meninggal_tanpa_tgl" : 0, "meninggal_dengan_tgl" : 168, "sembuh_persen" : 76.43133122585178, "sembuh_tanpa_tgl" : 0, "sembuh_dengan_tgl" : 2176, "list_perkembangan" : [{"tanggal" : 1599350400000, "KASUS" : 19, "MENINGGAL" : 1, "SEMBUH" : 21, "DIRAWAT_OR_ISOLASI" : -3, "AKUMULASI_KASUS" : 2845, "AKUMULASI_SEMBUH" : 2176, "AKUMULASI_MENINGGAL" : 168, "AKUMULASI_DIRAWAT_OR_ISOLASI" : 501}]} | json_instruct | {"type": "object", "properties": {"last_date": {"type": "string"}, "provinsi": {"type": "string"}, "kasus_total": {"type": "integer"}, "kasus_tanpa_tgl": {"type": "integer"}, "kasus_dengan_tgl": {"type": "integer"}, "meninggal_persen": {"type": "number"}, "meninggal_tanpa_tgl": {"type": "integer"}, "meninggal_dengan_tgl": {"type": "integer"}, "sembuh_persen": {"type": "number"}, "sembuh_tanpa_tgl": {"type": "integer"}, "sembuh_dengan_tgl": {"type": "integer"}, "list_perkembangan": {"type": "array", "items": {"type": "object", "properties": {"tanggal": {"type": "integer"}, "KASUS": {"type": "integer"}, "MENINGGAL": {"type": "integer"}, "SEMBUH": {"type": "integer"}, "DIRAWAT_OR_ISOLASI": {"type": "integer"}, "AKUMULASI_KASUS": {"type": "integer"}, "AKUMULASI_SEMBUH": {"type": "integer"}, "AKUMULASI_MENINGGAL": {"type": "integer"}, "AKUMULASI_DIRAWAT_OR_ISOLASI": {"type": "integer"}}, "required": ["tanggal", "KASUS", "MENINGGAL", "SEMBUH", "DIRAWAT_OR_ISOLASI", "AKUMULASI_KASUS", "AKUMULASI_SEMBUH", "AKUMULASI_MENINGGAL", "AKUMULASI_DIRAWAT_OR_ISOLASI"]}}}, "required": ["last_date", "provinsi", "kasus_total", "kasus_tanpa_tgl", "kasus_dengan_tgl", "meninggal_persen", "meninggal_tanpa_tgl", "meninggal_dengan_tgl", "sembuh_persen", "sembuh_tanpa_tgl", "sembuh_dengan_tgl", "list_perkembangan"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"/resources/build/js/hub.js": {"type": "string"}, "/resources/build/css/hub.css": {"type": "string"}, "/resources/build/js/setup.js": {"type": "string"}, "/resources/build/js/candyhub.js": {"type": "string"}}, "required": ["/resources/build/js/hub.js", "/resources/build/css/hub.css", "/resources/build/js/setup.js", "/resources/build/js/candyhub.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"/resources/build/js/hub.js" : "/resources/build/js/hub.js", "/resources/build/css/hub.css" : "/resources/build/css/hub.css", "/resources/build/js/setup.js" : "/resources/build/js/setup.js", "/resources/build/js/candyhub.js" : "/resources/build/js/candyhub.js"} | json_instruct | {"type": "object", "properties": {"/resources/build/js/hub.js": {"type": "string"}, "/resources/build/css/hub.css": {"type": "string"}, "/resources/build/js/setup.js": {"type": "string"}, "/resources/build/js/candyhub.js": {"type": "string"}}, "required": ["/resources/build/js/hub.js", "/resources/build/css/hub.css", "/resources/build/js/setup.js", "/resources/build/js/candyhub.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "speciesMeta": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "integer"}, "json": {"type": "string"}}, "required": ["name", "id", "json"]}}}, "required": ["type", "speciesMeta"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "SpeciesMetaCollection", "speciesMeta" : [{"name" : "Plants", "id" : 1, "json" : "species-plants.json"}, {"name" : "Freshwater Fish", "id" : 2, "json" : "species-fish.json"}, {"name" : "Marine Life", "id" : 3, "json" : "species-marine.json"}, {"name" : "Amphibians", "id" : 4, "json" : "species-amphibians.json"}, {"name" : "Reptiles", "id" : 5, "json" : "species-reptiles.json"}, {"name" : "Birds", "id" : 6, "json" : "species-birds.json"}, {"name" : "Mammals", "id" : 7, "json" : "species-mammals.json"}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "speciesMeta": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "integer"}, "json": {"type": "string"}}, "required": ["name", "id", "json"]}}}, "required": ["type", "speciesMeta"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["350128204201", "\u4e2d\u697c\u6751\u59d4\u4f1a", "220", "0"], ["350128204202", "\u51a0\u5c71\u6751\u59d4\u4f1a", "220", "0"], ["350128204203", "\u6e56\u5c71\u6751\u59d4\u4f1a", "220", "0"], ["350128204204", "\u6606\u6e56\u6751\u59d4\u4f1a", "220", "0"], ["350128204205", "\u5927\u576a\u6751\u59d4\u4f1a", "220", "0"], ["350128204206", "\u81f3\u51e4\u6751\u59d4\u4f1a", "210", "0"], ["350128204207", "\u5357\u697c\u6751\u59d4\u4f1a", "220", "0"], ["350128204208", "\u5927\u4e2d\u6751\u59d4\u4f1a", "220", "0"], ["350128204209", "\u97e9\u539d\u6751\u59d4\u4f1a", "220", "0"], ["350128204210", "\u76d0\u7530\u6751\u59d4\u4f1a", "220", "0"], ["350128204211", "\u82a6\u5357\u6751\u59d4\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "moduleType": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "_release": {"type": "string"}, "_resolution": {"type": "object", "properties": {"type": {"type": "string"}, "tag": {"type": "string"}, "commit": {"type": "string"}}, "required": ["type", "tag", "commit"]}, "_source": {"type": "string"}, "_target": {"type": "string"}, "_originalSource": {"type": "string"}}, "required": ["name", "version", "homepage", "authors", "description", "main", "moduleType", "keywords", "license", "ignore", "_release", "_resolution", "_source", "_target", "_originalSource"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "codebird-js", "version" : "2.6.0", "homepage" : "http://www.jublo.net/projects/codebird/js", "authors" : ["Joshua Atkins <[email protected]>", "J.M. <[email protected]>"], "description" : "A Twitter library in JavaScript.", "main" : "codebird.js", "moduleType" : ["amd", "globals", "node"], "keywords" : ["Twitter", "API", "networking", "CORS"], "license" : "GPL-3.0+", "ignore" : ["**/.*", "node_modules", "bower_components", "RELEASE_MESSAGE*", "test", "tests"], "_release" : "2.6.0", "_resolution" : {"type" : "version", "tag" : "2.6.0", "commit" : "31faa5604b694713ff2b9e47db5f27ec568a326a"}, "_source" : "https://github.com/jublonet/codebird-js.git", "_target" : "^2.6.0", "_originalSource" : "codebird-js"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "moduleType": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "_release": {"type": "string"}, "_resolution": {"type": "object", "properties": {"type": {"type": "string"}, "tag": {"type": "string"}, "commit": {"type": "string"}}, "required": ["type", "tag", "commit"]}, "_source": {"type": "string"}, "_target": {"type": "string"}, "_originalSource": {"type": "string"}}, "required": ["name", "version", "homepage", "authors", "description", "main", "moduleType", "keywords", "license", "ignore", "_release", "_resolution", "_source", "_target", "_originalSource"], "$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"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "mocha": {"type": "string"}, "lint": {"type": "string"}}, "required": ["test", "mocha", "lint"]}, "files": {"type": "array", "items": {"type": "string"}}, "typings": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "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"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "peerDependencies": {"type": "object", "properties": {"twig": {"type": "string"}}, "required": ["twig"]}, "devDependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "chai": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "express": {"type": "string"}, "mocha": {"type": "string"}, "twig": {"type": "string"}}, "required": ["@types/express", "chai", "eslint", "eslint-config-airbnb-base", "eslint-plugin-import", "express", "mocha", "twig"]}}, "required": ["name", "version", "description", "main", "scripts", "files", "typings", "keywords", "repository", "author", "license", "bugs", "homepage", "engines", "peerDependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "twigjs-loader", "version" : "0.2.2", "description" : "twig.js loader for Webpack", "main" : "index.js", "scripts" : {"test" : "npm run lint && npm run mocha", "mocha" : "mocha ./spec/*.spec.js", "lint" : "eslint ./index.js ./spec/**/*.js"}, "files" : ["index.js", "typings/*"], "typings" : "typings/index.d.ts", "keywords" : ["twig", "twig.js", "template", "webpack", "loader"], "repository" : {"type" : "git", "url" : "git+https://github.com/megahertz/twigjs-loader.git"}, "author" : "Alexey Prokhorov", "license" : "MIT", "bugs" : {"url" : "https://github.com/megahertz/twigjs-loader/issues"}, "homepage" : "https://github.com/megahertz/twigjs-loader#readme", "engines" : {"node" : ">=8.0"}, "peerDependencies" : {"twig" : "1.x"}, "devDependencies" : {"@types/express" : "^4.11.1", "chai" : "*", "eslint" : "^4.19.1", "eslint-config-airbnb-base" : "^12.1.0", "eslint-plugin-import" : "^2.11.0", "express" : "^4.16.3", "mocha" : "*", "twig" : "*"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "mocha": {"type": "string"}, "lint": {"type": "string"}}, "required": ["test", "mocha", "lint"]}, "files": {"type": "array", "items": {"type": "string"}}, "typings": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "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"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "peerDependencies": {"type": "object", "properties": {"twig": {"type": "string"}}, "required": ["twig"]}, "devDependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "chai": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "express": {"type": "string"}, "mocha": {"type": "string"}, "twig": {"type": "string"}}, "required": ["@types/express", "chai", "eslint", "eslint-config-airbnb-base", "eslint-plugin-import", "express", "mocha", "twig"]}}, "required": ["name", "version", "description", "main", "scripts", "files", "typings", "keywords", "repository", "author", "license", "bugs", "homepage", "engines", "peerDependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"buildFiles": {"type": "array", "items": {"type": "string"}}, "cleanCommands": {"type": "array", "items": {"type": "string"}}, "libraries": {"type": "object", "properties": {"jvmti_agent-Release-x86": {"type": "object", "properties": {"artifactName": {"type": "string"}, "buildCommand": {"type": "string"}, "abi": {"type": "string"}, "output": {"type": "string"}}, "required": ["artifactName", "buildCommand", "abi", "output"]}, "dexter-Release-x86": {"type": "object", "properties": {"artifactName": {"type": "string"}, "buildCommand": {"type": "string"}, "abi": {"type": "string"}, "output": {"type": "string"}}, "required": ["artifactName", "buildCommand", "abi", "output"]}}, "required": ["jvmti_agent-Release-x86", "dexter-Release-x86"]}}, "required": ["buildFiles", "cleanCommands", "libraries"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"buildFiles" : ["/Users/yanxianwei/AndroidStudioProjects/ReferceCount/jvmtilib/CMakeLists.txt"], "cleanCommands" : ["/Users/yanxianwei/Library/Android/sdk/cmake/3.6.4111459/bin/cmake --build /Users/yanxianwei/AndroidStudioProjects/ReferceCount/jvmtilib/.cxx/cmake/release/x86 --target clean"], "libraries" : {"jvmti_agent-Release-x86" : {"artifactName" : "jvmti_agent", "buildCommand" : "/Users/yanxianwei/Library/Android/sdk/cmake/3.6.4111459/bin/cmake --build /Users/yanxianwei/AndroidStudioProjects/ReferceCount/jvmtilib/.cxx/cmake/release/x86 --target jvmti_agent", "abi" : "x86", "output" : "/Users/yanxianwei/AndroidStudioProjects/ReferceCount/jvmtilib/build/intermediates/cmake/release/obj/x86/libjvmti_agent.so"}, "dexter-Release-x86" : {"artifactName" : "dexter", "buildCommand" : "/Users/yanxianwei/Library/Android/sdk/cmake/3.6.4111459/bin/cmake --build /Users/yanxianwei/AndroidStudioProjects/ReferceCount/jvmtilib/.cxx/cmake/release/x86 --target dexter", "abi" : "x86", "output" : "/Users/yanxianwei/AndroidStudioProjects/ReferceCount/jvmtilib/.cxx/cmake/release/x86/libdexter.a"}}} | json_instruct | {"type": "object", "properties": {"buildFiles": {"type": "array", "items": {"type": "string"}}, "cleanCommands": {"type": "array", "items": {"type": "string"}}, "libraries": {"type": "object", "properties": {"jvmti_agent-Release-x86": {"type": "object", "properties": {"artifactName": {"type": "string"}, "buildCommand": {"type": "string"}, "abi": {"type": "string"}, "output": {"type": "string"}}, "required": ["artifactName", "buildCommand", "abi", "output"]}, "dexter-Release-x86": {"type": "object", "properties": {"artifactName": {"type": "string"}, "buildCommand": {"type": "string"}, "abi": {"type": "string"}, "output": {"type": "string"}}, "required": ["artifactName", "buildCommand", "abi", "output"]}}, "required": ["jvmti_agent-Release-x86", "dexter-Release-x86"]}}, "required": ["buildFiles", "cleanCommands", "libraries"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Max\\Swoole\\": {"type": "string"}}, "required": ["Max\\Swoole\\"]}}, "required": ["psr-4"]}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"ext-swoole": {"type": "string"}, "php": {"type": "string"}}, "required": ["ext-swoole", "php"]}, "require-dev": {"type": "object", "properties": {"swoole/ide-helper": {"type": "string"}}, "required": ["swoole/ide-helper"]}, "extra": {"type": "object", "properties": {"max": {"type": "object", "properties": {"config": {"type": "object", "properties": {"swoole": {"type": "string"}}, "required": ["swoole"]}}, "required": ["config"]}}, "required": ["max"]}}, "required": ["name", "description", "autoload", "authors", "require", "require-dev", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "max/swoole", "description" : "MaxPHP\u7528\u4e8e\u652f\u6301Swoole\u7684\u5305", "autoload" : {"psr-4" : {"Max\\Swoole\\" : "src/"}}, "authors" : [{"name" : "chengyao", "email" : "[email protected]"}], "require" : {"ext-swoole" : "*", "php" : "^7.4|^8.0"}, "require-dev" : {"swoole/ide-helper" : "^4.8"}, "extra" : {"max" : {"config" : {"swoole" : "publish/swoole.php"}}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Max\\Swoole\\": {"type": "string"}}, "required": ["Max\\Swoole\\"]}}, "required": ["psr-4"]}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"ext-swoole": {"type": "string"}, "php": {"type": "string"}}, "required": ["ext-swoole", "php"]}, "require-dev": {"type": "object", "properties": {"swoole/ide-helper": {"type": "string"}}, "required": ["swoole/ide-helper"]}, "extra": {"type": "object", "properties": {"max": {"type": "object", "properties": {"config": {"type": "object", "properties": {"swoole": {"type": "string"}}, "required": ["swoole"]}}, "required": ["config"]}}, "required": ["max"]}}, "required": ["name", "description", "autoload", "authors", "require", "require-dev", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "ecchymotic", "definition" : "Pertaining to ecchymosis."} | 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": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "y2010": {"type": "array", "items": {"type": "object", "properties": {"candidate": {"type": "string"}, "party": {"type": "string"}, "votes": {"type": "integer"}, "incumbent": {"type": "boolean"}, "elected": {"type": "boolean"}}, "required": ["candidate", "party", "votes", "incumbent", "elected"]}}, "y2015": {"type": "array", "items": {"type": "object", "properties": {"candidate": {"type": "string"}, "party": {"type": "string"}, "votes": {"type": "integer"}, "incumbent": {"type": "boolean"}, "elected": {"type": "boolean"}}, "required": ["candidate", "party", "votes", "incumbent", "elected"]}}}, "required": ["id", "name", "y2010", "y2015"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "S14000004", "name" : "Angus", "y2010" : [{"candidate" : "Weir, Mike", "party" : "Scottish National Party", "votes" : 15020, "incumbent" : true, "elected" : true}, {"candidate" : "Costa, Alberto", "party" : "Conservative Party", "votes" : 11738, "incumbent" : false, "elected" : false}, {"candidate" : "Hutchens, Kevin", "party" : "Labour Party", "votes" : 6535, "incumbent" : false, "elected" : false}, {"candidate" : "Samani, Sanjay", "party" : "Liberal Democrat", "votes" : 4090, "incumbent" : false, "elected" : false}, {"candidate" : "Gray, Martin", "party" : "United Kingdom Independence Party", "votes" : 577, "incumbent" : false, "elected" : false}], "y2015" : [{"candidate" : "Weir, Mike", "party" : "Scottish National Party", "votes" : 24130, "incumbent" : true, "elected" : true}, {"candidate" : "Wann, Derek", "party" : "Conservative Party", "votes" : 12900, "incumbent" : false, "elected" : false}, {"candidate" : "McMahon, Gerard", "party" : "Labour Party", "votes" : 3919, "incumbent" : false, "elected" : false}, {"candidate" : "Walker, Calum", "party" : "United Kingdom Independence Party", "votes" : 1355, "incumbent" : false, "elected" : false}, {"candidate" : "Samani, Sanjay", "party" : "Liberal Democrat", "votes" : 1216, "incumbent" : false, "elected" : false}, {"candidate" : "Mumford, David", "party" : "Green Party", "votes" : 965, "incumbent" : false, "elected" : false}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "y2010": {"type": "array", "items": {"type": "object", "properties": {"candidate": {"type": "string"}, "party": {"type": "string"}, "votes": {"type": "integer"}, "incumbent": {"type": "boolean"}, "elected": {"type": "boolean"}}, "required": ["candidate", "party", "votes", "incumbent", "elected"]}}, "y2015": {"type": "array", "items": {"type": "object", "properties": {"candidate": {"type": "string"}, "party": {"type": "string"}, "votes": {"type": "integer"}, "incumbent": {"type": "boolean"}, "elected": {"type": "boolean"}}, "required": ["candidate", "party", "votes", "incumbent", "elected"]}}}, "required": ["id", "name", "y2010", "y2015"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"name:en": {"type": "string"}, "name:ru": {"type": "string"}, "name:tr": {"type": "string"}, "name:uk": {"type": "string"}, "network": {"type": "string"}, "ref:NUTS": {"type": "string"}}, "required": ["name:en", "name:ru", "name:tr", "name:uk", "network", "ref:NUTS"]}}, "required": ["localname", "official_name", "alltags"]}}, "required": ["name", "iso2", "admin_level", "osm_id", "wikidata_id", "wikipedia_id", "population", "countrylevel_id", "osm_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"name" : "Kocaeli", "iso2" : "TR-41", "admin_level" : 4, "osm_id" : 223473, "wikidata_id" : "Q83965", "wikipedia_id" : "tr:Kocaeli", "population" : 1906391, "countrylevel_id" : "iso2:TR-41", "osm_data" : {"localname" : "Kocaeli", "official_name" : "", "alltags" : {"name:en" : "Kocaeli", "name:ru" : "\u041a\u043e\u0434\u0436\u0430\u044d\u043b\u0438", "name:tr" : "Kocaeli", "name:uk" : "\u041a\u043e\u0434\u0436\u0430\u0435\u043b\u0456", "network" : "TR-provinces", "ref:NUTS" : "TR421"}}}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[30.264, 41.217], [30.264, 41.217], [30.264, 41.217], [30.264, 41.217]]], [[[29.517, 40.734], [29.511, 40.735], [29.517, 40.734], [29.517, 40.734]]], [[[29.34, 40.811], [29.362, 40.816], [29.38, 40.872], [29.442, 40.901], [29.44, 40.944], [29.506, 40.988], [29.51, 41.042], [29.601, 41.026], [29.611, 40.982], [29.684, 40.97], [29.72, 41.008], [29.704, 41.032], [29.833, 41.018], [29.881, 41.041], [29.893, 41.093], [29.919, 41.099], [29.918, 41.142], [30.1, 41.136], [30.193, 41.148], [30.225, 41.187], [30.271, 41.21], [30.367, 41.179], [30.326, 41.15], [30.323, 41.121], [30.282, 41.089], [30.244, 41.084], [30.262, 41.039], [30.226, 41.015], [30.237, 40.98], [30.289, 40.959], [30.284, 40.894], [30.242, 40.906], [30.267, 40.867], [30.231, 40.849], [30.217, 40.796], [30.246, 40.768], [30.252, 40.727], [30.176, 40.714], [30.154, 40.657], [30.093, 40.587], [30.053, 40.594], [29.967, 40.551], [29.905, 40.53], [29.902, 40.571], [29.819, 40.583], [29.733, 40.611], [29.684, 40.59], [29.627, 40.547], [29.499, 40.527], [29.482, 40.564], [29.499, 40.576], [29.499, 40.646], [29.539, 40.656], [29.558, 40.687], [29.791, 40.722], [29.868, 40.728], [29.935, 40.718], [29.939, 40.754], [29.914, 40.761], [29.769, 40.743], [29.749, 40.764], [29.617, 40.784], [29.528, 40.764], [29.504, 40.78], [29.355, 40.755], [29.34, 40.811]]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"name:en": {"type": "string"}, "name:ru": {"type": "string"}, "name:tr": {"type": "string"}, "name:uk": {"type": "string"}, "network": {"type": "string"}, "ref:NUTS": {"type": "string"}}, "required": ["name:en", "name:ru", "name:tr", "name:uk", "network", "ref:NUTS"]}}, "required": ["localname", "official_name", "alltags"]}}, "required": ["name", "iso2", "admin_level", "osm_id", "wikidata_id", "wikipedia_id", "population", "countrylevel_id", "osm_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"pacts/movies-reviews.json": {"type": "string"}}, "required": ["pacts/movies-reviews.json"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"pacts/movies-reviews.json" : "develop"} | json_instruct | {"type": "object", "properties": {"pacts/movies-reviews.json": {"type": "string"}}, "required": ["pacts/movies-reviews.json"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"timestamp": {"type": "integer"}, "object_list": {"type": "array", "items": {"type": "object", "properties": {"position": {"type": "array", "items": {"type": "number"}}, "id": {"type": "integer"}}, "required": ["position", "id"]}}, "frame": {"type": "integer"}, "size": {"type": "integer"}}, "required": ["timestamp", "object_list", "frame", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"timestamp" : 459, "object_list" : [{"position" : [2.39551387776, 8.69079660657], "id" : 44}, {"position" : [5.82209632757, 6.25217077309], "id" : 69}, {"position" : [6.28659282451, 6.166491905], "id" : 70}, {"position" : [5.88439400002, 5.61113055106], "id" : 71}, {"position" : [2.62029061484, 5.47533312503], "id" : 75}, {"position" : [8.21971485642, 4.92784754448], "id" : 76}, {"position" : [8.42954857072, 6.73163831072], "id" : 77}, {"position" : [8.74566716538, 6.13522747123], "id" : 78}, {"position" : [9.94321363915, 5.03572177395], "id" : 79}, {"position" : [4.00409871063, 4.39134031473], "id" : 80}, {"position" : [3.76059057879, 3.81354493962], "id" : 81}, {"position" : [9.16322994288, 2.54817068154], "id" : 82}, {"position" : [9.98172875421, 1.78994849785], "id" : 83}, {"position" : [8.58150437987, 2.43432995708], "id" : 84}, {"position" : [11.5400124259, 1.51095519199], "id" : 85}], "frame" : 459, "size" : 15} | json_instruct | {"type": "object", "properties": {"timestamp": {"type": "integer"}, "object_list": {"type": "array", "items": {"type": "object", "properties": {"position": {"type": "array", "items": {"type": "number"}}, "id": {"type": "integer"}}, "required": ["position", "id"]}}, "frame": {"type": "integer"}, "size": {"type": "integer"}}, "required": ["timestamp", "object_list", "frame", "size"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max", "min", "sd"]}}}, "required": ["timestamp", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"timestamp" : "2020-09-22T21:16:22Z", "data" : [{"data_type" : "pm10", "value" : "10.67", "max" : "13.00", "min" : "9.00", "sd" : "1.18"}, {"data_type" : "pm2.5", "value" : "9.87", "max" : "13.00", "min" : "8.00", "sd" : "1.46"}, {"data_type" : "pm1", "value" : "5.60", "max" : "7.00", "min" : "4.00", "sd" : "0.83"}, {"data_type" : "pm10", "value" : "12.07", "max" : "14.00", "min" : "9.00", "sd" : "1.33", "sensor" : 2}, {"data_type" : "pm2.5", "value" : "11.07", "max" : "13.00", "min" : "9.00", "sd" : "0.96", "sensor" : 2}, {"data_type" : "pm1", "value" : "8.00", "max" : "9.00", "min" : "6.00", "sd" : "1.00", "sensor" : 2}, {"data_type" : "noise", "value" : "31.34", "max" : "60.83", "min" : "27.76", "sd" : "1.51"}, {"data_type" : "illuminance", "value" : "519.63", "max" : "629.00", "min" : "404.00", "sd" : "69.60"}, {"data_type" : "irradiance", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00"}, {"data_type" : "temperature", "value" : "14.23", "max" : "14.50", "min" : "14.00", "sd" : "0.24"}, {"data_type" : "humidity", "value" : "72.19", "max" : "73.19", "min" : "70.58", "sd" : "0.73"}, {"data_type" : "presure", "value" : "690.53", "max" : "690.60", "min" : "690.45", "sd" : "0.13"}, {"data_type" : "voltage", "value" : "5.04", "max" : "5.04", "min" : "5.04", "sd" : "0.02"}, {"data_type" : "batery", "value" : "4.18", "max" : "4.18", "min" : "4.18", "sd" : "0.00"}, {"data_type" : "panel", "value" : "0.00", "max" : "0.07", "min" : "0.00", "sd" : "0.05"}]} | json_instruct | {"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max", "min", "sd"]}}}, "required": ["timestamp", "data"], "$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"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"async": {"type": "string"}, "bcrypt-nodejs": {"type": "string"}, "body-parser": {"type": "string"}, "connect-flash": {"type": "string"}, "cookie-parser": {"type": "string"}, "cookie-session": {"type": "string"}, "ecjson": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-session": {"type": "string"}, "firebase-admin": {"type": "string"}, "method-override": {"type": "string"}, "mongoose": {"type": "string"}, "morgan": {"type": "string"}, "request": {"type": "string"}, "shortid": {"type": "string"}, "vhost": {"type": "string"}}, "required": ["async", "bcrypt-nodejs", "body-parser", "connect-flash", "cookie-parser", "cookie-session", "ecjson", "ejs", "express", "express-session", "firebase-admin", "method-override", "mongoose", "morgan", "request", "shortid", "vhost"]}}, "required": ["name", "main", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "node-iot", "main" : "server.js", "dependencies" : {"async" : "^1.5.2", "bcrypt-nodejs" : "latest", "body-parser" : "~1.0.0", "connect-flash" : "~0.1.1", "cookie-parser" : "^1.0.1", "cookie-session" : "^2.0.0-alpha.1", "ecjson" : "^0.1.2", "ejs" : "~0.8.5", "express" : "~4.0.0", "express-session" : "~1.0.0", "firebase-admin" : "^4.0.4", "method-override" : "~1.0.0", "mongoose" : "~3.8.1", "morgan" : "~1.0.0", "request" : "^2.69.0", "shortid" : "^2.2.4", "vhost" : "^3.0.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"async": {"type": "string"}, "bcrypt-nodejs": {"type": "string"}, "body-parser": {"type": "string"}, "connect-flash": {"type": "string"}, "cookie-parser": {"type": "string"}, "cookie-session": {"type": "string"}, "ecjson": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-session": {"type": "string"}, "firebase-admin": {"type": "string"}, "method-override": {"type": "string"}, "mongoose": {"type": "string"}, "morgan": {"type": "string"}, "request": {"type": "string"}, "shortid": {"type": "string"}, "vhost": {"type": "string"}}, "required": ["async", "bcrypt-nodejs", "body-parser", "connect-flash", "cookie-parser", "cookie-session", "ecjson", "ejs", "express", "express-session", "firebase-admin", "method-override", "mongoose", "morgan", "request", "shortid", "vhost"]}}, "required": ["name", "main", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 101890181, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "95d393c428883fdb28183f27c60482da", "wof:id" : 101890181, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [6.18452772649243, 47.07647262904766, 6.19714197347844, 47.08910331180954], "geometry" : {"coordinates" : [[[6.18715682240656, 47.08910331180954], [6.18728770710982, 47.08730554547856], [6.18860221330829, 47.08735181809396], [6.18873304156477, 47.08555404798358], [6.19004750495361, 47.08560030282587], [6.19011289230298, 47.08470141612463], [6.19142733534045, 47.08474765411034], [6.19149269735385, 47.08384876600684], [6.19280712003956, 47.08389498713706], [6.19293779052055, 47.08209720763898], [6.19688093646897, 47.08223576990127], [6.19714197347844, 47.07864019408851], [6.19451338702504, 47.07854784250208], [6.19457868399036, 47.07764894916079], [6.19326441636571, 47.07760275037521], [6.19319909695128, 47.07850164280165], [6.18794195769067, 47.07831668462023], [6.18807277322969, 47.07651890660509], [6.18675853857292, 47.07647262904766], [6.18649680617506, 47.08006817946381], [6.18518248382912, 47.08002188230233], [6.18511702107321, 47.08092076777166], [6.18643136587048, 47.08096706585007], [6.18603866350423, 47.08636037394336], [6.1847241839788, 47.08631407036302], [6.18452772649243, 47.08901071508745], [6.18715682240656, 47.08910331180954]]], "type" : "Polygon"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"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" : "7317031005", "district_id" : "7317031", "name" : "WARA"} | 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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"count": {"type": "integer"}, "395090": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "999920": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "516011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "411011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "537064": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "512090": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["count", "395090", "N.A.//", "999920", "516011", "411011", "537064", "512090"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"count" : 22, "395090" : {"count" : 1}, "N.A.//" : {"count" : 9}, "999920" : {"count" : 1}, "516011" : {"count" : 1}, "411011" : {"count" : 8}, "537064" : {"count" : 1}, "512090" : {"count" : 1}} | json_instruct | {"type": "object", "properties": {"count": {"type": "integer"}, "395090": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "999920": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "516011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "411011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "537064": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "512090": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["count", "395090", "N.A.//", "999920", "516011", "411011", "537064", "512090"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "prepublish": {"type": "string"}}, "required": ["test", "build", "prepublish"]}, "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": {"babel": {"type": "string"}, "babel-cli": {"type": "string"}, "babel-core": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "mocha": {"type": "string"}, "web3-provider-engine": {"type": "string"}}, "required": ["babel", "babel-cli", "babel-core", "babel-preset-es2015", "mocha", "web3-provider-engine"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "redundant-rpc-provider", "version" : "1.1.0", "description" : "Redundant RPC provider for metamasks eth provider engine", "main" : "lib/index.js", "scripts" : {"test" : "mocha --compilers js:babel-core/register", "build" : "mkdir -p lib && babel src/index.js > lib/index.js", "prepublish" : "npm run build"}, "repository" : {"type" : "git", "url" : "git+https://github.com/Neufund/redundant-rpc-provider.git"}, "keywords" : ["ethereum", "metamask", "provider", "rpc", "redundant"], "author" : "Leonid Logvinov <[email protected]>", "license" : "MIT", "bugs" : {"url" : "https://github.com/Neufund/redundant-rpc-provider/issues"}, "homepage" : "https://github.com/Neufund/redundant-rpc-provider#readme", "dependencies" : {"babel" : "^6.5.2", "babel-cli" : "^6.22.2", "babel-core" : "^6.22.1", "babel-preset-es2015" : "^6.22.0", "mocha" : "^3.2.0", "web3-provider-engine" : "^12.0.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "prepublish": {"type": "string"}}, "required": ["test", "build", "prepublish"]}, "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": {"babel": {"type": "string"}, "babel-cli": {"type": "string"}, "babel-core": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "mocha": {"type": "string"}, "web3-provider-engine": {"type": "string"}}, "required": ["babel", "babel-cli", "babel-core", "babel-preset-es2015", "mocha", "web3-provider-engine"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"t": {"type": "string"}, "s": {"type": "array", "items": {"type": "integer"}}}, "required": ["t", "s"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"t" : "Normal3", "s" : [11, 13, 15, 17, 19, 20, 22, 24]} | json_instruct | {"type": "object", "properties": {"t": {"type": "string"}, "s": {"type": "array", "items": {"type": "integer"}}}, "required": ["t", "s"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"towns" : [{"name" : "Caracollo", "url" : "caracollo"}]} | json_instruct | {"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "user": {"type": "string"}, "text": {"type": "string"}, "ts": {"type": "string"}}, "required": ["type", "user", "text", "ts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"type" : "message", "user" : "U0KPFAZNF", "text" : "<@U13TWBRBL> I just pulled the fabric-sdk-node.git for the first time to start to play around: I noticed that the project is \"hfc v0.0.2\". Isn't this going to collide with the old typescript project?", "ts" : "1479049137.000598"}, {"type" : "message", "user" : "U0KPFAZNF", "text" : "whats the plan there?", "ts" : "1479049148.000599"}, {"type" : "message", "user" : "U13TWBRBL", "text" : "<@U0KPFAZNF>: it's just a random number less than 1.0, we'll publish as 1.0.0 when ready", "ts" : "1479050028.000600"}, {"type" : "message", "user" : "U0KPFAZNF", "text" : "ok...fyi, I know on the original SDK, there were some problems consuming it from source from clojurescript", "ts" : "1479050129.000601"}, {"type" : "message", "user" : "U13TWBRBL", "text" : "<@U2E87MX1A>: I may have misunderstood your question above, the sdk can indeed deploy a chaincode that doesn't exist on the peer server.", "ts" : "1479050147.000602"}, {"type" : "message", "user" : "U0KPFAZNF", "text" : "not sure that will still be the case, but a plan to have it in NPM sooner rather than later is not a bad thing to have", "ts" : "1479050151.000603"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "user": {"type": "string"}, "text": {"type": "string"}, "ts": {"type": "string"}}, "required": ["type", "user", "text", "ts"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["start", "deploy"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "faker": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["express", "faker", "socket.io"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "websocket", "version" : "1.0.0", "description" : "", "main" : "./src/server.js", "scripts" : {"start" : "node ./src/server.js", "deploy" : "gcloud app deploy ./app.flex.yaml"}, "keywords" : [], "author" : "mrdulin <[email protected]>", "license" : "MIT", "dependencies" : {"express" : "^4.16.4", "faker" : "^3.1.0", "socket.io" : "^2.2.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["start", "deploy"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "faker": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["express", "faker", "socket.io"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Maraykit, San Juan, Batangas, CALABARZON (Region IV-A), PH", "locale" : "ph.calabarzon-region-iv-a.batangas.san-juan.maraykit", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "4", "region_reference" : "41", "region_name" : "CALABARZON (Region IV-A)", "province_id" : "12", "province_reference" : "12", "province_name" : "Batangas", "city_id" : "1575", "city_reference" : "175", "city_name" : "San Juan", "barangay_id" : "33363", "barangay_reference" : "4076", "barangay_name" : "Maraykit"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[121.392433, 13.84762], [121.393333, 13.83032], [121.391457, 13.8299], [121.391693, 13.82429], [121.387016, 13.82383], [121.384804, 13.82228], [121.384109, 13.82258], [121.384109, 13.82262], [121.384102, 13.82698], [121.383957, 13.83771], [121.383942, 13.84965], [121.386627, 13.84865], [121.391083, 13.85059], [121.392433, 13.84762]]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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" : "Villers-devant-le-Thour", "dpt" : "Ardennes", "inscrits" : 320, "abs" : 64, "votants" : 256, "blancs" : 35, "nuls" : 3, "exp" : 218, "res" : [{"panneau" : "2", "voix" : 115}, {"panneau" : "1", "voix" : 103}]} | 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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "minecraft:item/handheld", "textures" : {"layer0" : "vanillaful:item/iron_bar"}} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"generated_at" : "2017-01-27T09:37:35.720745", "required_by" : ["ArvadsFit"], "requires" : ["numpy", "iminuit"], "package" : "probfit"} | json_instruct | {"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "desc": {"type": "string"}}, "required": ["name", "title", "desc"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "ChangeSrc", "title" : "\u6539\u53d8\u56fe\u7247\u5730\u5740", "desc" : "\u52a8\u6001\u8bbe\u7f6e src \u5c5e\u6027\u6539\u53d8\u56fe\u7247\u5730\u5740"}, {"name" : "LoadSuccess", "title" : "\u52a0\u8f7d\u6210\u529f", "desc" : "\u52a0\u8f7d\u6210\u529f\u56fe\u7247"}, {"name" : "LoadFail", "title" : "\u52a0\u8f7d\u5931\u8d25", "desc" : "\u52a0\u8f7d\u56fe\u7247\u5931\u8d25\uff0c\u5c06\u663e\u793a failNode"}, {"name" : "MediaQuery", "title" : "\u5a92\u4f53\u67e5\u8be2", "desc" : "\u7a97\u53e3\u5bbd\u5ea6\u4e0d\u540c\u663e\u793a\u4e0d\u540c\u56fe\u7247"}, {"name" : "LazyImage", "title" : "\u61d2\u52a0\u8f7d", "desc" : "\u7b80\u5355\u5c01\u88c5\u540e\u53ef\u4ee5\u5b9e\u73b0\u56fe\u7247\u61d2\u52a0\u8f7d\u7684\u529f\u80fd"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "desc": {"type": "string"}}, "required": ["name", "title", "desc"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"survey.css": {"type": "string"}, "survey.jquery.js": {"type": "string"}, "survey.jquery.min.js": {"type": "string"}, "survey.min.css": {"type": "string"}}, "required": ["survey.css", "survey.jquery.js", "survey.jquery.min.js", "survey.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"survey.css" : "sha512-K9sLEMLOmYYm5DJoEgH9sptqIM01IegUoRPOStX5JflNSBmtwb5ybwPJa6XlTo0YMjVOtLr07MNtfh058oo5hw==", "survey.jquery.js" : "sha512-YmTC5LgSpyJXbCKfhNtZzNH5AY2iDWQw/zDEZQdK6sGCfbV/47ft5toFrw1UO5h4obyaX8/Ifx/t1gOHVI5KDg==", "survey.jquery.min.js" : "sha512-wPnazjVWg1o4/b6Ta0QId4WjxnMXH3Kz44DcV2/q9HvK/DpI6ZKGrnEb5hw7n3nYSWrQ4ezMTx84fCvYKYd3Ww==", "survey.min.css" : "sha512-3dVb2XpDLyzrHQUJHWkHl0gcPo4KiLSrswSSzAw73aI/uNImKR0G+poeHyIL3oc+wm8MSp5HnV2tkn8OpoI6cw=="} | json_instruct | {"type": "object", "properties": {"survey.css": {"type": "string"}, "survey.jquery.js": {"type": "string"}, "survey.jquery.min.js": {"type": "string"}, "survey.min.css": {"type": "string"}}, "required": ["survey.css", "survey.jquery.js", "survey.jquery.min.js", "survey.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type": "integer"}}, "required": ["play", "subPlay"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "9653d4ac-a1a4-42e8-b882-9d5155df97b5", "playerTags" : [], "teamTags" : ["8d87c468-699a-47a8-b40d-cfb73a5660ad", "eb67ae5e-c4bf-46ca-bbbc-425cd34182ff"], "gameTags" : ["c90c6e9a-47cc-48be-a8c1-703fd56653c5"], "metadata" : {"play" : 27, "subPlay" : -1}, "created" : "2021-04-15T14:02:11.641Z", "season" : 15, "tournament" : -1, "type" : 7, "day" : 68, "phase" : 4, "category" : 0, "description" : "Eugenia Garbage hit a flyout to Kennedy Loser.", "nuts" : 0} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type": "integer"}}, "required": ["play", "subPlay"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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" : [[[125.75, 36.666666666666664], [125.75, 36.75], [125.875, 36.75], [125.875, 36.666666666666664], [125.75, 36.666666666666664]]]}, "properties" : {"code" : 552506, "url" : "http://madefor.github.io/0410/api/v1/552506.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/552506.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#"} |
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" : [[[150.75, 42.833333333333336], [150.75, 42.916666666666664], [150.875, 42.916666666666664], [150.875, 42.833333333333336], [150.75, 42.833333333333336]]]}, "properties" : {"code" : 645026, "url" : "http://madefor.github.io/0410/api/v1/645026.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/645026.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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"label" : "Flowerpot", "normalizedVertices" : [{"x" : 0.15031269, "y" : 0.7574954}, {"x" : 0.31113625, "y" : 0.7574954}, {"x" : 0.31113625, "y" : 0.9107895}, {"x" : 0.15031269, "y" : 0.9107895}], "score" : 0.69584525}, {"label" : "Coin", "normalizedVertices" : [{"x" : 0.7071425, "y" : 0.42664707}, {"x" : 0.8830248, "y" : 0.42664707}, {"x" : 0.8830248, "y" : 0.6020588}, {"x" : 0.7071425, "y" : 0.6020588}], "score" : 0.50262606}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "Project Two"}, {"name" : "Project One"}, {"name" : "Project Three"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["pristine-app"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"yamljs": {"type": "string"}, "amqplib": {"type": "string"}, "knex": {"type": "string"}, "mysql": {"type": "string"}, "moment": {"type": "string"}}, "required": ["yamljs", "amqplib", "knex", "mysql", "moment"]}}, "required": ["name", "version", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "maerlyn-rabbit-to-db", "version" : "0.0.1", "dependencies" : {"yamljs" : "~0.2", "amqplib" : "~0.3", "knex" : "~0.7", "mysql" : "~2.5", "moment" : "~2.8"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"yamljs": {"type": "string"}, "amqplib": {"type": "string"}, "knex": {"type": "string"}, "mysql": {"type": "string"}, "moment": {"type": "string"}}, "required": ["yamljs", "amqplib", "knex", "mysql", "moment"]}}, "required": ["name", "version", "dependencies"], "$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": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x2d5d88f7e316b01997330640440a4332ed60d177", "tool" : "manticore", "start" : 1564092554.7390532, "end" : 1564094357.0328798, "duration" : 1802.2938265800476, "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": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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" : [[[147.75, 45.333333333333336], [147.75, 45.416666666666664], [147.875, 45.416666666666664], [147.875, 45.333333333333336], [147.75, 45.333333333333336]]]}, "properties" : {"code" : 684706, "url" : "http://madefor.github.io/0410/api/v1/684706.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/684706.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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"karma": {"type": "string"}, "karma-chrome-launcher": {"type": "string"}, "karma-firefox-launcher": {"type": "string"}, "karma-opera-launcher": {"type": "string"}, "karma-safari-launcher": {"type": "string"}, "protractor": {"type": "string"}}, "required": ["karma", "karma-chrome-launcher", "karma-firefox-launcher", "karma-opera-launcher", "karma-safari-launcher", "protractor"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "angular_practice", "version" : "1.0.0", "description" : "angular", "main" : "index.js", "scripts" : {"test" : "npm test"}, "repository" : {"type" : "git", "url" : "git+https://github.com/andela-nmartin/budapp.git"}, "keywords" : ["budget"], "author" : "NM", "license" : "MIT", "bugs" : {"url" : "https://github.com/andela-nmartin/budapp/issues"}, "homepage" : "https://github.com/andela-nmartin/budapp#readme", "dependencies" : {"karma" : "^0.13.15", "karma-chrome-launcher" : "^0.2.2", "karma-firefox-launcher" : "^0.1.7", "karma-opera-launcher" : "^0.3.0", "karma-safari-launcher" : "^0.1.1", "protractor" : "^3.0.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": {"karma": {"type": "string"}, "karma-chrome-launcher": {"type": "string"}, "karma-firefox-launcher": {"type": "string"}, "karma-opera-launcher": {"type": "string"}, "karma-safari-launcher": {"type": "string"}, "protractor": {"type": "string"}}, "required": ["karma", "karma-chrome-launcher", "karma-firefox-launcher", "karma-opera-launcher", "karma-safari-launcher", "protractor"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"suffix": {"type": "string"}, "command": {"type": "string"}, "args": {"type": "array", "items": {"type": "string"}}, "timeout": {"type": "integer"}}, "required": ["suffix", "command", "args", "timeout"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"suffix" : "cpp", "command" : "g++", "args" : ["{source_file}", "-o", "{executable_file}", "-O2", "-fno-asm", "-Wall", "-lm", "--static", "--std=c++11"], "timeout" : 5} | json_instruct | {"type": "object", "properties": {"suffix": {"type": "string"}, "command": {"type": "string"}, "args": {"type": "array", "items": {"type": "string"}}, "timeout": {"type": "integer"}}, "required": ["suffix", "command", "args", "timeout"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"stryker-config": {"type": "object", "properties": {"mutate": {"type": "array", "items": {"type": "string"}}, "abort-test-on-fail": {"type": "boolean"}}, "required": ["mutate", "abort-test-on-fail"]}}, "required": ["stryker-config"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stryker-config" : {"mutate" : ["**/*TestCovered.cs"], "abort-test-on-fail" : false}} | json_instruct | {"type": "object", "properties": {"stryker-config": {"type": "object", "properties": {"mutate": {"type": "array", "items": {"type": "string"}}, "abort-test-on-fail": {"type": "boolean"}}, "required": ["mutate", "abort-test-on-fail"]}}, "required": ["stryker-config"], "$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.