input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"Environments": {"type": "array", "items": {"type": "object", "properties": {"ApplicationName": {"type": "string"}, "CNAME": {"type": "string"}, "DateCreated": {"type": "string"}, "DateUpdated": {"type": "string"}, "Description": {"type": "string"}, "EndpointURL": {"type": "string"}, "EnvironmentId": {"type": "string"}, "EnvironmentName": {"type": "string"}, "Health": {"type": "string"}, "SolutionStackName": {"type": "string"}, "Status": {"type": "string"}, "VersionLabel": {"type": "string"}}, "required": ["ApplicationName", "CNAME", "DateCreated", "DateUpdated", "Description", "EndpointURL", "EnvironmentId", "EnvironmentName", "Health", "SolutionStackName", "Status", "VersionLabel"]}}, "ResponseMetadata": {"type": "object", "properties": {"RequestId": {"type": "string"}}, "required": ["RequestId"]}}, "required": ["Environments", "ResponseMetadata"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Environments" : [{"ApplicationName" : "SampleApp", "CNAME" : "SampleApp-jxb293wg7n.elasticbeanstalk.amazonaws.com", "DateCreated" : "2010-11-17T03:59:33.520Z", "DateUpdated" : "2010-11-17T04:01:40.668Z", "Description" : "EnvDescrip", "EndpointURL" : "elasticbeanstalk-SampleApp-1394386994.us-east-1.elb.amazonaws.com", "EnvironmentId" : "e-icsgecu3wf", "EnvironmentName" : "SampleApp", "Health" : "Green", "SolutionStackName" : "32bit Amazon Linux running Tomcat 7", "Status" : "Available", "VersionLabel" : "Version1"}], "ResponseMetadata" : {"RequestId" : "44790c68-f260-11df-8a78-9f77047e0d0c"}}
json_instruct
{"type": "object", "properties": {"Environments": {"type": "array", "items": {"type": "object", "properties": {"ApplicationName": {"type": "string"}, "CNAME": {"type": "string"}, "DateCreated": {"type": "string"}, "DateUpdated": {"type": "string"}, "Description": {"type": "string"}, "EndpointURL": {"type": "string"}, "EnvironmentId": {"type": "string"}, "EnvironmentName": {"type": "string"}, "Health": {"type": "string"}, "SolutionStackName": {"type": "string"}, "Status": {"type": "string"}, "VersionLabel": {"type": "string"}}, "required": ["ApplicationName", "CNAME", "DateCreated", "DateUpdated", "Description", "EndpointURL", "EnvironmentId", "EnvironmentName", "Health", "SolutionStackName", "Status", "VersionLabel"]}}, "ResponseMetadata": {"type": "object", "properties": {"RequestId": {"type": "string"}}, "required": ["RequestId"]}}, "required": ["Environments", "ResponseMetadata"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "13", "provinceId" : "73", "regencyId" : "17", "name" : "Kamanre"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"@context": {"type": "string"}, "@type": {"type": "array", "items": {"type": "string"}}, "identifier": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}, "dataset": {"type": "array", "items": {"type": "string"}}, "additionalProperty": {"type": "array", "items": {"type": "object", "properties": {"@type": {"type": "string"}, "name": {"type": "string"}, "value": {"type": "string"}, "valueReference": {"type": "array", "items": {"type": "object", "properties": {"@type": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}}, "required": ["@type", "name", "url"]}}}, "required": ["@type", "name", "value", "valueReference"]}}}, "required": ["@context", "@type", "identifier", "name", "url", "description", "dataset", "additionalProperty"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"@context" : "http://schema.org", "@type" : ["BioChemEntity", "Sample"], "identifier" : ["biosamples:SAMN02469074", "mmp.ref:MMP02469074"], "name" : "Francisella noatunensis subsp. orientalis FNO12", "url" : "https://mmp.sfb.uit.no/databases/marref/#/records/MMP02469074", "description" : "Francisella noatunensis subs. orientalis is the aetilogic agent of a systemic granulomatous disease of cultured Nile tilapia (Oreochromis niloticus). The outbreaks of franciselosis cause high mortality rates in farms; mainly in Nile tilapia fingerlings and juveniles. This emergent disease has recently been described in Americas; Europe; and Asia.", "dataset" : ["http://www.ebi.ac.uk/ena/data/search?query=PRJNA232116", "https://www.arb-silva.de/search/show/ssu/insdc/232116", "https://www.arb-silva.de/search/show/lsu/insdc/232116", "http://www.ebi.ac.uk/ena/data/view/GCF_001042525.1"], "additionalProperty" : [{"@type" : "PropertyValue", "name" : "Geographic Location (GAZ)", "value" : "Municipality of Areado", "valueReference" : [{"@type" : "CategoryCode", "name" : "Municipality of Areado", "url" : "https://www.ebi.ac.uk/ols/ontologies/gaz/terms?iri=http%3A%2F%2Fpurl.obolibrary.org%2Fobo%2FGAZ_00094231"}]}, {"@type" : "PropertyValue", "name" : "Organism", "value" : "Francisella noatunensis", "valueReference" : [{"@type" : "CategoryCode", "name" : "Francisella noatunensis", "url" : "https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1390363"}]}]}
json_instruct
{"type": "object", "properties": {"@context": {"type": "string"}, "@type": {"type": "array", "items": {"type": "string"}}, "identifier": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}, "dataset": {"type": "array", "items": {"type": "string"}}, "additionalProperty": {"type": "array", "items": {"type": "object", "properties": {"@type": {"type": "string"}, "name": {"type": "string"}, "value": {"type": "string"}, "valueReference": {"type": "array", "items": {"type": "object", "properties": {"@type": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}}, "required": ["@type", "name", "url"]}}}, "required": ["@type", "name", "value", "valueReference"]}}}, "required": ["@context", "@type", "identifier", "name", "url", "description", "dataset", "additionalProperty"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "desc": {"type": "string"}, "url": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "maintainers": {"type": "array", "items": {"type": "string"}}, "addedAt": {"type": "string"}}, "required": ["name", "desc", "url", "tags", "maintainers", "addedAt"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Googlebot API", "desc" : "Check if an IP address is officially used by Googlebot to crawl the web.", "url" : "https://seoapi.com/googlebot/", "tags" : ["SEO"], "maintainers" : ["fili"], "addedAt" : "2021-04-29"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "desc": {"type": "string"}, "url": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "maintainers": {"type": "array", "items": {"type": "string"}}, "addedAt": {"type": "string"}}, "required": ["name", "desc", "url", "tags", "maintainers", "addedAt"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["gourmet-builder", "gourmet-react", "gourmet-server"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "version": {"type": "object", "properties": {"label": {"type": "string"}}, "required": ["label"]}, "dependencies": {"type": "array", "items": {}}, "license": {"type": "string"}, "pri_filename": {"type": "string"}, "webpage": {"type": "string"}}, "required": ["name", "description", "author", "repository", "version", "dependencies", "license", "pri_filename", "webpage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "com.cutehacks.gel", "description" : "A model for JSON objects with support for sorting and filtering", "author" : {"name" : "Jason Barron", "email" : "[email protected]"}, "repository" : {"type" : "GITHUB", "url" : "https://github.com/Cutehacks/gel.git"}, "version" : {"label" : "0.6.1"}, "dependencies" : [], "license" : "MIT", "pri_filename" : "com_cutehacks_gel.pri", "webpage" : "https://github.com/Cutehacks/gel"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "version": {"type": "object", "properties": {"label": {"type": "string"}}, "required": ["label"]}, "dependencies": {"type": "array", "items": {}}, "license": {"type": "string"}, "pri_filename": {"type": "string"}, "webpage": {"type": "string"}}, "required": ["name", "description", "author", "repository", "version", "dependencies", "license", "pri_filename", "webpage"], "$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"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"status": {"type": "string"}, "build": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["status", "build", "deploy"]}, "dependencies": {"type": "object", "properties": {"source-map-support": {"type": "string"}}, "required": ["source-map-support"]}, "devDependencies": {"type": "object", "properties": {"@types/aws-lambda": {"type": "string"}, "@types/node": {"type": "string"}, "aws-sdk": {"type": "string"}, "serverless": {"type": "string"}, "serverless-webpack": {"type": "string"}, "ts-loader": {"type": "string"}, "tslint": {"type": "string"}, "tslint-config-prettier": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-node-externals": {"type": "string"}}, "required": ["@types/aws-lambda", "@types/node", "aws-sdk", "serverless", "serverless-webpack", "ts-loader", "tslint", "tslint-config-prettier", "typescript", "webpack", "webpack-node-externals"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "dependencies", "devDependencies", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "message-broadcast", "version" : "1.0.0", "description" : "Simple message broadcaster using AWS WebSocket API", "main" : "src/handler.ts", "scripts" : {"status" : "sls info", "build" : "sls package", "deploy" : "sls deploy"}, "dependencies" : {"source-map-support" : "^0.5.10"}, "devDependencies" : {"@types/aws-lambda" : "^8.10.17", "@types/node" : "^10.12.18", "aws-sdk" : "^2.290.0", "serverless" : "^1.41.1", "serverless-webpack" : "^5.2.0", "ts-loader" : "^5.4.4", "tslint" : "^5.16.0", "tslint-config-prettier" : "^1.18.0", "typescript" : "^3.4.5", "webpack" : "^4.30.0", "webpack-node-externals" : "^1.7.2"}, "author" : "[email protected]", "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"status": {"type": "string"}, "build": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["status", "build", "deploy"]}, "dependencies": {"type": "object", "properties": {"source-map-support": {"type": "string"}}, "required": ["source-map-support"]}, "devDependencies": {"type": "object", "properties": {"@types/aws-lambda": {"type": "string"}, "@types/node": {"type": "string"}, "aws-sdk": {"type": "string"}, "serverless": {"type": "string"}, "serverless-webpack": {"type": "string"}, "ts-loader": {"type": "string"}, "tslint": {"type": "string"}, "tslint-config-prettier": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-node-externals": {"type": "string"}}, "required": ["@types/aws-lambda", "@types/node", "aws-sdk", "serverless", "serverless-webpack", "ts-loader", "tslint", "tslint-config-prettier", "typescript", "webpack", "webpack-node-externals"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "dependencies", "devDependencies", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "originalId": {"type": "integer"}, "rarity": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "load": {"type": "integer"}, "energy": {"type": "integer"}, "category": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "string"}, "type": {"type": "string"}}, "required": ["id", "category", "type"]}}}, "required": ["id", "originalId", "rarity", "name", "description", "load", "energy", "category"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "red_horned_lizard", "originalId" : 369133, "rarity" : 3, "name" : "L\u00e9zard \u00e0 cornes rouge", "description" : "Un petit l\u00e9zard avec des cornes sur sa t\u00eate qui vit cach\u00e9 dans des buissons.\\nLes l\u00e9zards rouges ont de belles \u00e9cailles et se d\u00e9barrassent de leur queue pour \u00e9chapper \u00e0 leurs pr\u00e9dateurs.\\nLes queues de l\u00e9zard ont des propri\u00e9t\u00e9s curatives lorsqu'elles sont moulues et r\u00e9duites en poudre. Certains alchimistes farfelus ont m\u00eame r\u00e9ussi \u00e0 en faire de la poudre explosive.\\nLorsqu'elle se s\u00e9pare du corps, la queue perd de sa vitalit\u00e9 et s'enroule sur elle-m\u00eame. Sa couleur devient \u00e9galement vert clair pour une raison que nul ne sait.\\nL'exp\u00e9riment\u00e9 Toby suppose que, en de rares occasions, l'\u00e9nergie dimensionnelle peut permettre aux queues coup\u00e9es des l\u00e9zards de se r\u00e9g\u00e9n\u00e9rer en un nouveau l\u00e9zard adulte. Cependant, cette th\u00e9orie n'a jamais \u00e9t\u00e9 test\u00e9e en raison des r\u00e8gles contre la cruaut\u00e9 envers les animaux en vigueur dans le royaume int\u00e9rieur.", "load" : 350, "energy" : 100, "category" : [{"id" : 9002, "category" : "Animaux d'ext\u00e9rieur", "type" : "Exterior"}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "originalId": {"type": "integer"}, "rarity": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "load": {"type": "integer"}, "energy": {"type": "integer"}, "category": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "string"}, "type": {"type": "string"}}, "required": ["id", "category", "type"]}}}, "required": ["id", "originalId", "rarity", "name", "description", "load", "energy", "category"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"lastUpdated" : 1655019279666, "username" : "The1Adventurer", "scores" : [{"xp" : 25537, "rank" : 382, "cardId" : 638}, {"xp" : 45457, "rank" : 152, "cardId" : 2}, {"xp" : 34107, "rank" : 87, "cardId" : 494}, {"xp" : 26398, "rank" : 176, "cardId" : 22}, {"xp" : 24246, "rank" : 273, "cardId" : 252}, {"xp" : 11810, "rank" : 446, "cardId" : 541}, {"xp" : 713, "rank" : 352, "cardId" : 666}, {"xp" : 14961, "rank" : 188, "cardId" : 624}, {"xp" : 18220, "rank" : 403, "cardId" : 489}, {"xp" : 36403, "rank" : 246, "cardId" : 34}, {"xp" : 42807, "rank" : 122, "cardId" : 24}, {"xp" : 10916, "rank" : 166, "cardId" : 606}]}
json_instruct
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"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" : "0x40b0d5f72f061d63b1506a9979de441d9fc4d085", "tool" : "osiris", "start" : 1564594671.2636516, "end" : 1564594673.8388581, "duration" : 2.5752065181732178, "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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id_5106": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_5106"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id_5106" : {"publicdate" : "2011-02-10 21:47:46", "title" : "The Prince and Betty"}}
json_instruct
{"type": "object", "properties": {"id_5106": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_5106"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"outDir": {"type": "string"}, "plugins": {"type": "array", "items": {"type": "object", "properties": {"transform": {"type": "string"}, "entrySourceFiles": {"type": "array", "items": {"type": "string"}}}, "required": ["transform", "entrySourceFiles"]}}, "stripInternal": {"type": "boolean"}}, "required": ["outDir", "plugins", "stripInternal"]}, "include": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "include"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"extends" : "./tsconfig.options.json", "compilerOptions" : {"outDir" : "lib/prod", "plugins" : [{"transform" : "ts-transformer-strip-const-enums", "entrySourceFiles" : ["./src/index.ts"]}, {"transform" : "ts-transformer-properties-rename", "entrySourceFiles" : ["./src/index.ts"]}], "stripInternal" : true}, "include" : ["src/**/*.ts"]}
json_instruct
{"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"outDir": {"type": "string"}, "plugins": {"type": "array", "items": {"type": "object", "properties": {"transform": {"type": "string"}, "entrySourceFiles": {"type": "array", "items": {"type": "string"}}}, "required": ["transform", "entrySourceFiles"]}}, "stripInternal": {"type": "boolean"}}, "required": ["outDir", "plugins", "stripInternal"]}, "include": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "include"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "(Unseen) event recognition via semantic compositionality.", "fields" : ["image retrieval", "contextual image classification", "principle of compositionality", "semantic gap", "scalability"], "abstract" : "Since high-level events in images (e.g. \u201cdinner\u201d, \u201cmotorcycle stunt\u201d, etc.) may not be directly correlated with their visual appearance, low-level visual features do not carry enough semantics to classify such events satisfactorily. This paper explores a fully compositional approach for event based image retrieval which is able to overcome this shortcoming. Furthermore, the approach is fully scalable in both adding new events and new primitives. Using the Pascal VOC 2007 dataset, our contributions are the following: (i) We apply the Faceted Analysis-Synthesis Theory (FAST) to build a hierarchy of 228 high-level events. (ii) We show that rule-based classifiers are better suited for compositional recognition of events than SVMs. In addition, rule-based classifiers provide semantically meaningful event descriptions which help bridging the semantic gap. (iii) We demonstrate that compositionality enables unseen event recognition: we can use rules learned from non-visual cues, together with object detectors to get reasonable performance on unseen event categories.", "citation" : "Citations (5)", "year" : "2012", "departments" : ["University of Trento", "University of Trento", "University of Trento", "University of Trento", "University of Trento"], "conf" : "cvpr", "authors" : ["Julian St\u00f6ttinger.....http://dblp.org/pers/hd/s/St=ouml=ttinger:Julian", "Jasper R. R. Uijlings.....http://dblp.org/pers/hd/u/Uijlings:Jasper_R=_R=", "Anand K. Pandey.....http://dblp.org/pers/hd/p/Pandey:Anand_K=", "Nicu Sebe.....http://dblp.org/pers/hd/s/Sebe:Nicu", "Fausto Giunchiglia.....http://dblp.org/pers/hd/g/Giunchiglia:Fausto"], "pages" : 8}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ETHEREUM YIELD", "symbol" : "ETHY", "address" : "0xB5050ff6D5Ff88524D4604941A90b24E17c3bC74", "decimals" : 18, "dharmaVerificationStatus" : "UNVERIFIED"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"Id": {"type": "integer"}, "Description": {"type": "string"}, "DialogueText": {"type": "string"}}, "required": ["Id", "Description", "DialogueText"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Id" : 596, "Description" : "Do I just go to a Dr to determine if it's a sinus infection or do I go get tested for COVID first? To not risk anyone in practice?\r\n\r\n", "DialogueText" : "Patient:\r\nDo I just go to a Dr to determine if it's a sinus infection or do I go get tested for COVID first? To not risk anyone in practice?\r\nDoctor:\r\nIn brief: Phone triage. Call your GP's office for instructions and identify local resources. Your symptoms are suggesting sinusitis (other causes still possible) that is frequently viral and self limited. Local regulations should also be followed in such circumstances. Self quarantine will work for all in trying to prevent the spread. Hydration and rest will also work regardless of what the cause for your symptoms is. Would you like to video or text chat with me? \r\n\r\n"}
json_instruct
{"type": "object", "properties": {"Id": {"type": "integer"}, "Description": {"type": "string"}, "DialogueText": {"type": "string"}}, "required": ["Id", "Description", "DialogueText"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"citations" : [{"textCitation" : "[See geo2sum2 on Metamath](http://us.metamath.org/mpegif/geo2sum2.html)"}], "names" : ["geo2sum2"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cN", "#T_wcel", "#T_cn0", "#T_wi", "#T_csu--1", "#T_vk", "#T_csu--2", "#T_cc0", "#T_cfzo", "#T_cN", "#T_c2", "#T_cexp", "#T_vk", "#T_wceq", "#T_c2", "#T_cexp", "#T_cN", "#T_cmin", "#T_c1", "#T_cN", "#T_vk"], "metaLanguage" : "METAMATH", "remarks" : " The value of the finite geometric series ` 1 + 2 + 4 + 8 + ` ... ` + 2 ^ ( N - 1 ) ` . (Contributed by Mario Carneiro, 7-Sep-2016.) ", "statement" : "geo2sum2 $p |- ( N e. NN0 -> sum_ k e. ( 0 ..^ N ) ( 2 ^ k ) = ( ( 2 ^ N ) - 1 ) ) $.\n$d N k $."}
json_instruct
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"900756139": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900756140": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900756141": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900756142": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900756139", "900756140", "900756141", "900756142"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"900756139" : {"nama" : "TPS 1", "dapil" : [8101, 18102, 2810401]}, "900756140" : {"nama" : "TPS 2", "dapil" : [8101, 18102, 2810401]}, "900756141" : {"nama" : "TPS 3", "dapil" : [8101, 18102, 2810401]}, "900756142" : {"nama" : "TPS 4", "dapil" : [8101, 18102, 2810401]}}
json_instruct
{"type": "object", "properties": {"900756139": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900756140": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900756141": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900756142": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900756139", "900756140", "900756141", "900756142"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"file_name": {"type": "string"}, "guid": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}, "exports": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "class": {"type": "object", "properties": {"package": {"type": "string"}, "name": {"type": "string"}}, "required": ["package", "name"]}, "super": {"type": "null"}, "template": {"type": "object", "properties": {"package": {"type": "string"}, "name": {"type": "string"}}, "required": ["package", "name"]}, "outer": {"type": "null"}, "properties": {"type": "object", "properties": {"ImportedSize": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}, "required": ["type", "value"]}, "LightingGuid": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}}, "required": ["type", "value"]}}, "required": ["ImportedSize", "LightingGuid"]}}, "required": ["name", "class", "super", "template", "outer", "properties"]}}}, "required": ["file_name", "guid", "exports"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"file_name" : "FactoryGame/Content/FactoryGame/-Shared/Particle/Texture/Lensflare.uasset", "guid" : {"a" : 2840842642, "b" : 1159149276, "c" : 2329423759, "d" : 3898332893}, "exports" : [{"name" : "Lensflare", "class" : {"package" : "/Script/Engine", "name" : "Texture2D"}, "super" : null, "template" : {"package" : "/Script/Engine", "name" : "Default__Texture2D"}, "outer" : null, "properties" : {"ImportedSize" : {"type" : "IntPoint", "value" : {"x" : 1024, "y" : 1024}}, "LightingGuid" : {"type" : "Guid", "value" : {"a" : 1386839040, "b" : 1308563999, "c" : 1662771899, "d" : 3660117537}}}}]}
json_instruct
{"type": "object", "properties": {"file_name": {"type": "string"}, "guid": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}, "exports": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "class": {"type": "object", "properties": {"package": {"type": "string"}, "name": {"type": "string"}}, "required": ["package", "name"]}, "super": {"type": "null"}, "template": {"type": "object", "properties": {"package": {"type": "string"}, "name": {"type": "string"}}, "required": ["package", "name"]}, "outer": {"type": "null"}, "properties": {"type": "object", "properties": {"ImportedSize": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}, "required": ["type", "value"]}, "LightingGuid": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}}, "required": ["type", "value"]}}, "required": ["ImportedSize", "LightingGuid"]}}, "required": ["name", "class", "super", "template", "outer", "properties"]}}}, "required": ["file_name", "guid", "exports"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"variants" : {"" : {"model" : "allthecompressed:block/deepslate_block_9x"}}}
json_instruct
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"HostConfigHash": {"type": "string"}, "CardHash": {"type": "string"}, "Error": {"type": "null"}}, "required": ["HostConfigHash", "CardHash", "Error"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"HostConfigHash" : "bad5110", "CardHash" : "1076b7f", "Error" : null}
json_instruct
{"type": "object", "properties": {"HostConfigHash": {"type": "string"}, "CardHash": {"type": "string"}, "Error": {"type": "null"}}, "required": ["HostConfigHash", "CardHash", "Error"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "1209070001", "nama" : "DOLOK PARMONANGAN"}, {"id" : "1209070002", "nama" : "NEGERI DOLOK"}, {"id" : "1209070003", "nama" : "GUNUNG MARIAH"}, {"id" : "1209070004", "nama" : "MARIHAT DOLOK"}, {"id" : "1209070005", "nama" : "MARIHAT RAJA"}, {"id" : "1209070006", "nama" : "TIGA DOLOK"}, {"id" : "1209070007", "nama" : "BANDAR DOLOK"}, {"id" : "1209070008", "nama" : "DOLOK TOMUAN"}, {"id" : "1209070009", "nama" : "UJUNG BONDAR"}, {"id" : "1209070010", "nama" : "SIATASAN"}, {"id" : "1209070011", "nama" : "PONDOK BULUH"}, {"id" : "1209070012", "nama" : "MARIHAT PONDOK"}, {"id" : "1209070013", "nama" : "MARIHAT MARSADA"}, {"id" : "1209070014", "nama" : "LUMBAN GORAT"}, {"id" : "1209070015", "nama" : "PALIANAOPAT"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : {"name" : "[deleted]"}, "date" : {"day" : 1513468800, "full" : 1513477940, "month" : 1512086400, "week" : 1513468800}, "id" : "t3_7kbc6o", "picture" : {"filesize" : 38334, "fullUrl" : "https://external-preview.redd.it/wSmFuSFnaS8ZyisWhb__IWcLes_XbdjspclDx8mStPA.jpg?auto=webp&s=ed555e643aabffe5ae27933c234b8e01a1351036", "hash" : "58d0f06f51", "height" : 360, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAJABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABgIH/8QAJRAAAQMEAQIHAAAAAAAAAAAAAQIDBAAFESESBjEjNDVRcnOy/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAL/xAAZEQEAAgMAAAAAAAAAAAAAAAABACECESL/2gAMAwEAAhEDEQA/ABXR15Zl2t+1PMRBFTxcbcdKk8V8sBSiMk5zj2Ge4pF1ffmExnWp7NtEuKA2YTSyNkDxQsdzsDGzqsnsnpk760fupuPmHPnUllxly6J//9k=", "url" : "https://external-preview.redd.it/wSmFuSFnaS8ZyisWhb__IWcLes_XbdjspclDx8mStPA.jpg?width=640&crop=smart&auto=webp&s=85bbae6afa01a3ee55609e13ead137dad5d5659f", "width" : 640}, "score" : {"comments" : 1, "downs" : 0, "ratio" : 0.97, "ups" : 52, "value" : 52}, "subreddit" : {"id" : "t5_2xy5e", "name" : "TerrainBuilding"}, "tags" : [], "title" : "I finished the first part of my modular dungeon tile terrain project. The dice tower looks great with it! I plan to add some chests, tables, traps, etc.", "url" : "https://www.reddit.com/r/TerrainBuilding/comments/7kbc6o/i_finished_the_first_part_of_my_modular_dungeon/"}
json_instruct
{"type": "object", "properties": {"author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"": {"type": "array", "items": {"type": "string"}}, "imgMeta": {"type": "string"}, "largeImageError": {"type": "string"}, "resourceOpenExternalButton": {"type": "string"}, "nativeBinaryError": {"type": "string"}, "sizeB": {"type": "string"}, "sizeKB": {"type": "string"}, "sizeMB": {"type": "string"}, "sizeGB": {"type": "string"}, "sizeTB": {"type": "string"}}, "required": ["", "imgMeta", "largeImageError", "resourceOpenExternalButton", "nativeBinaryError", "sizeB", "sizeKB", "sizeMB", "sizeGB", "sizeTB"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"" : ["--------------------------------------------------------------------------------------------", "Copyright (c) Microsoft Corporation. All rights reserved.", "Licensed under the Source EULA. See License.txt in the project root for license information.", "--------------------------------------------------------------------------------------------", "Do not edit this file. It is machine generated."], "imgMeta" : "{0}x{1} {2}", "largeImageError" : "L'image est trop grande pour \u00eatre affich\u00e9e dans l'\u00e9diteur. ", "resourceOpenExternalButton" : " Ouvrir l'image en utilisant un programme externe\u00a0?", "nativeBinaryError" : "Impossible d'afficher le fichier dans l'\u00e9diteur\u00a0: soit il est binaire, soit il est tr\u00e8s volumineux, soit il utilise un encodage de texte non pris en charge.", "sizeB" : "{0}\u00a0o", "sizeKB" : "{0}\u00a0Ko", "sizeMB" : "{0}\u00a0Mo", "sizeGB" : "{0}\u00a0Go", "sizeTB" : "{0}\u00a0To"}
json_instruct
{"type": "object", "properties": {"": {"type": "array", "items": {"type": "string"}}, "imgMeta": {"type": "string"}, "largeImageError": {"type": "string"}, "resourceOpenExternalButton": {"type": "string"}, "nativeBinaryError": {"type": "string"}, "sizeB": {"type": "string"}, "sizeKB": {"type": "string"}, "sizeMB": {"type": "string"}, "sizeGB": {"type": "string"}, "sizeTB": {"type": "string"}}, "required": ["", "imgMeta", "largeImageError", "resourceOpenExternalButton", "nativeBinaryError", "sizeB", "sizeKB", "sizeMB", "sizeGB", "sizeTB"], "$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"}, "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" : [[[148.875, 28.833333333333332], [148.875, 28.916666666666668], [149.0, 28.916666666666668], [149.0, 28.833333333333332], [148.875, 28.833333333333332]]]}, "properties" : {"code" : 434827, "url" : "http://madefor.github.io/0410/api/v1/434827.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/434827.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": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"t" : "marakam", "h" : [{"d" : [{"f" : "\u8d64\u8173\u8d70\u8def\u8173\u5e95\u523a\u75db\u96e3\u884c\u3002", "e" : ["\ufff9`Ma~`rakam~ `kako~ `a~ `romakat~ `i~ `s~`i~`'~`l~`ra~`'~`e~`l~`aca~`n~ `a~ `lalan~.\ufffa\ufffb\u6211\u8d64\u8173\u8d70\u5728\u788e\u77f3\u5b50\u8def\u4e0a\u8173\u5e95\u523a\u75db\u96e3\u884c\u3002"]}]}], "stem" : "rakam"}
json_instruct
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"peers": {"type": "object", "properties": {"ns2.sys.cloudsys.tmcs": {"type": "object", "properties": {"delay": {"type": "number"}, "jitter": {"type": "number"}, "lastReceived": {"type": "number"}, "peerType": {"type": "string"}, "reachabilityHistory": {"type": "array", "items": {"type": "boolean"}}, "condition": {"type": "string"}, "offset": {"type": "number"}, "peerIpAddr": {"type": "string"}, "pollInterval": {"type": "integer"}, "refid": {"type": "string"}, "stratumLevel": {"type": "integer"}}, "required": ["delay", "jitter", "lastReceived", "peerType", "reachabilityHistory", "condition", "offset", "peerIpAddr", "pollInterval", "refid", "stratumLevel"]}}, "required": ["ns2.sys.cloudsys.tmcs"]}}, "required": ["peers"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"peers" : {"ns2.sys.cloudsys.tmcs" : {"delay" : 0.426, "jitter" : 0.0, "lastReceived" : 1583162316.0, "peerType" : "unicast", "reachabilityHistory" : [true], "condition" : "reject", "offset" : -0.379, "peerIpAddr" : "10.75.33.5", "pollInterval" : 64, "refid" : "169.254.0.1", "stratumLevel" : 3}}}
json_instruct
{"type": "object", "properties": {"peers": {"type": "object", "properties": {"ns2.sys.cloudsys.tmcs": {"type": "object", "properties": {"delay": {"type": "number"}, "jitter": {"type": "number"}, "lastReceived": {"type": "number"}, "peerType": {"type": "string"}, "reachabilityHistory": {"type": "array", "items": {"type": "boolean"}}, "condition": {"type": "string"}, "offset": {"type": "number"}, "peerIpAddr": {"type": "string"}, "pollInterval": {"type": "integer"}, "refid": {"type": "string"}, "stratumLevel": {"type": "integer"}}, "required": ["delay", "jitter", "lastReceived", "peerType", "reachabilityHistory", "condition", "offset", "peerIpAddr", "pollInterval", "refid", "stratumLevel"]}}, "required": ["ns2.sys.cloudsys.tmcs"]}}, "required": ["peers"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"cagricolak": {"type": "string"}}, "required": ["cagricolak"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "pushed_with_swift_version": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "pushed_with_swift_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Bumerang", "version" : "0.5.2", "summary" : "Bumerang iOS platformu i\u00e7in geli\u015ftirilmi\u015f bir sunucu<->istemci haberle\u015fmesini sa\u011flayan Swift dili ile yaz\u0131lm\u0131\u015f bir k\u00fct\u00fcphanedir.", "description" : "Bumerang, \u00f6ncelikli olarak yerli yaz\u0131l\u0131m geli\u015ftiricileri hedef al\u0131narak geli\u015ftirilmi\u015f bir k\u00fct\u00fcphanedir. K\u00fct\u00fcphane'de temel ve ileri seviye ihtiya\u00e7 duyulabilecek sunucu istemci haberle\u015fmesi i\u00e7in gerekli \u00f6zellikler zamanla eklenicektir.'", "homepage" : "https://github.com/cagricolak/Bumerang", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"cagricolak" : "[email protected]"}, "source" : {"git" : "https://github.com/cagricolak/Bumerang.git", "tag" : "0.5.2"}, "platforms" : {"ios" : "9.0"}, "source_files" : "Bumerang/Classes/*.swift", "pushed_with_swift_version" : "3.0"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"cagricolak": {"type": "string"}}, "required": ["cagricolak"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "pushed_with_swift_version": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "pushed_with_swift_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"SpringBurger": {"type": "string"}, "SummerBurger": {"type": "string"}, "FallBurger": {"type": "string"}, "WinterBurger": {"type": "string"}}, "required": ["SpringBurger", "SummerBurger", "FallBurger", "WinterBurger"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"SpringBurger" : "Panino 'Sopravvivi' (prim)", "SummerBurger" : "Panino 'Sopravvivi' (est)", "FallBurger" : "Panino 'Sopravvivi' (aut)", "WinterBurger" : "Panino 'Sopravvivi' (inv)"}
json_instruct
{"type": "object", "properties": {"SpringBurger": {"type": "string"}, "SummerBurger": {"type": "string"}, "FallBurger": {"type": "string"}, "WinterBurger": {"type": "string"}}, "required": ["SpringBurger", "SummerBurger", "FallBurger", "WinterBurger"], "$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"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site-plan-url": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "deliverable": {"type": "string"}, "ownership-status": {"type": "string"}, "notes": {"type": "string"}, "hectares": {"type": "string"}, "site-address": {"type": "string"}, "start-date": {"type": "string"}, "planning-permission-type": {"type": "string"}, "point": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "name": {"type": "string"}, "organisation": {"type": "string"}, "site": {"type": "string"}, "planning-permission-history": {"type": "string"}, "planning-permission-date": {"type": "string"}, "planning-permission-status": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site-plan-url", "maximum-net-dwellings", "deliverable", "ownership-status", "notes", "hectares", "site-address", "start-date", "planning-permission-type", "point", "minimum-net-dwellings", "name", "organisation", "site", "planning-permission-history", "planning-permission-date", "planning-permission-status", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-2.42787, 53.58222]}, "properties" : {"site-plan-url" : "http://mappinggm.org.uk/gmodin/", "maximum-net-dwellings" : "7", "deliverable" : "yes", "ownership-status" : "not owned by a public authority", "notes" : "CHANGE OF USE AND CONVERSION FROM PUBLIC HOUSE (CLASS A4) TO 7NO. SELF CONTAINED FLATS (CLASS C3) 96306/16. http://mappinggm.org.uk/gmodin/", "hectares" : "0.02", "site-address" : "18 St Georges Street, Bolton, BL1 2EN", "start-date" : "2017-12-31", "planning-permission-type" : "full planning permission", "point" : "POINT(-2.42787 53.58222)", "minimum-net-dwellings" : "7", "name" : "HLA-296", "organisation" : "local-authority-eng:BOL", "site" : "HLA-296", "planning-permission-history" : "https://www.planningpa.bolton.gov.uk/online-applications-17/search.do?action=simple&searchType=Application", "planning-permission-date" : "2016-06-02", "planning-permission-status" : "permissioned", "slug" : "/brownfield-land/local-authority-eng/BOL/HLA-296", "entity" : 477250, "entry-date" : "2017-12-31"}}
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": {"site-plan-url": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "deliverable": {"type": "string"}, "ownership-status": {"type": "string"}, "notes": {"type": "string"}, "hectares": {"type": "string"}, "site-address": {"type": "string"}, "start-date": {"type": "string"}, "planning-permission-type": {"type": "string"}, "point": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "name": {"type": "string"}, "organisation": {"type": "string"}, "site": {"type": "string"}, "planning-permission-history": {"type": "string"}, "planning-permission-date": {"type": "string"}, "planning-permission-status": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site-plan-url", "maximum-net-dwellings", "deliverable", "ownership-status", "notes", "hectares", "site-address", "start-date", "planning-permission-type", "point", "minimum-net-dwellings", "name", "organisation", "site", "planning-permission-history", "planning-permission-date", "planning-permission-status", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"900136636": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900136637": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900136638": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900136639": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900136640": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900136641": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900136642": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900136643": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900136644": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900136645": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900136636", "900136637", "900136638", "900136639", "900136640", "900136641", "900136642", "900136643", "900136644", "900136645"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"900136636" : {"nama" : "TPS 01", "dapil" : [1802, 11805, 2180302]}, "900136637" : {"nama" : "TPS 02", "dapil" : [1802, 11805, 2180302]}, "900136638" : {"nama" : "TPS 03", "dapil" : [1802, 11805, 2180302]}, "900136639" : {"nama" : "TPS 04", "dapil" : [1802, 11805, 2180302]}, "900136640" : {"nama" : "TPS 05", "dapil" : [1802, 11805, 2180302]}, "900136641" : {"nama" : "TPS 06", "dapil" : [1802, 11805, 2180302]}, "900136642" : {"nama" : "TPS 07", "dapil" : [1802, 11805, 2180302]}, "900136643" : {"nama" : "TPS 08", "dapil" : [1802, 11805, 2180302]}, "900136644" : {"nama" : "TPS 09", "dapil" : [1802, 11805, 2180302]}, "900136645" : {"nama" : "TPS 10", "dapil" : [1802, 11805, 2180302]}}
json_instruct
{"type": "object", "properties": {"900136636": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900136637": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900136638": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900136639": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900136640": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900136641": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900136642": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900136643": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900136644": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900136645": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900136636", "900136637", "900136638", "900136639", "900136640", "900136641", "900136642", "900136643", "900136644", "900136645"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "recant", "definition" : "To withdraw or repudiate formally and publicly (opinions formerly expressed); to contradict, as a former declaration; to take back openly; to retract; to recall. How soon . . . ease would recant Vows made in pain, as violent and void! Milton. Syn. -- To retract; recall; revoke; abjure; disown; disavow. See Renounce.\n\nTo revoke a declaration or proposition; to unsay what has been said; to retract; as, convince me that I am wrong, and I will recant. Dryden."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"face_keypoints": {"type": "array", "items": {}}, "pose_keypoints": {"type": "array", "items": {"type": "number"}}, "hand_right_keypoints": {"type": "array", "items": {}}, "hand_left_keypoints": {"type": "array", "items": {}}}, "required": ["face_keypoints", "pose_keypoints", "hand_right_keypoints", "hand_left_keypoints"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.0, "people" : [{"face_keypoints" : [], "pose_keypoints" : [92.7244094488189, 49.5709090909091, 0.897019624710083, 95.244094488189, 71.68, 0.766503348946571, 58.9606299212598, 74.4727272727273, 0.700382724404335, 59.2125984251968, 125.207272727273, 0.584641769528389, 63.496062992126, 166.4, 0.160220505262259, 131.275590551181, 70.5163636363636, 0.666221387684345, 136.062992125984, 127.301818181818, 0.642730250954628, 129.511811023622, 189.672727272727, 0.456298276782036, 75.8425196850394, 189.905454545455, 0.266709280898795, 0, 0, 0, 0, 0, 0, 120.188976377953, 189.44, 0.29796829354018, 0, 0, 0, 0, 0, 0, 84.6614173228346, 41.1927272727273, 0.889993578195572, 100.787401574803, 41.4254545454545, 0.925980463624001, 73.8267716535433, 37.0036363636364, 0.745555460453033, 111.622047244094, 36.7709090909091, 0.658760957419872], "hand_right_keypoints" : [], "hand_left_keypoints" : []}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"face_keypoints": {"type": "array", "items": {}}, "pose_keypoints": {"type": "array", "items": {"type": "number"}}, "hand_right_keypoints": {"type": "array", "items": {}}, "hand_left_keypoints": {"type": "array", "items": {}}}, "required": ["face_keypoints", "pose_keypoints", "hand_right_keypoints", "hand_left_keypoints"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"image_name": {"type": "string"}, "image_height": {"type": "integer"}, "camera_gps": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "object", "properties": {"score": {"type": "number"}, "frontview": {"type": "boolean"}, "other": {"type": "object", "properties": {"region_attributes": {"type": "object", "properties": {"id": {"type": "number"}, "type": {"type": "string"}}, "required": ["id", "type"]}}, "required": ["region_attributes"]}, "category_id": {"type": "string"}, "segmentation": {"type": "string"}, "id": {"type": "string"}, "blurred": {"type": "boolean"}, "goodIllumination": {"type": "boolean"}}, "required": ["score", "frontview", "other", "category_id", "segmentation", "id", "blurred", "goodIllumination"]}}, "camera_id": {"type": "string"}, "image_width": {"type": "integer"}}, "required": ["image_name", "image_height", "camera_gps", "bbox", "camera_id", "image_width"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"image_name" : "lesion3470.png", "image_height" : 512, "camera_gps" : "", "bbox" : [{"score" : 1.0, "frontview" : true, "other" : {"region_attributes" : {"id" : 1.0, "type" : "car"}}, "category_id" : "car", "segmentation" : "197.0,281.0,205.0,284.0,208.0,293.0,215.0,299.0,225.0,302.0,231.0,306.0,229.0,315.0,225.0,327.0,219.0,338.0,208.0,348.0,197.0,356.0,184.0,358.0,171.0,359.0,160.0,358.0,150.0,354.0,137.0,344.0,133.0,339.0,128.0,328.0,133.0,321.0,141.0,321.0,154.0,322.0,163.0,327.0,175.0,323.0,186.0,317.0,192.0,312.0,195.0,304.0,196.0,295.0,196.0,283.0", "id" : "1", "blurred" : false, "goodIllumination" : true}, {"score" : 1.0, "frontview" : true, "other" : {"region_attributes" : {"id" : 2.0, "type" : "car"}}, "category_id" : "car", "segmentation" : "116.0,235.0,123.0,234.0,129.0,241.0,129.0,247.0,128.0,253.0,131.0,260.0,127.0,269.0,127.0,280.0,132.0,288.0,133.0,295.0,140.0,300.0,143.0,305.0,137.0,309.0,130.0,310.0,124.0,305.0,114.0,301.0,109.0,296.0,107.0,279.0,107.0,266.0,108.0,256.0,112.0,246.0", "id" : "2", "blurred" : false, "goodIllumination" : true}], "camera_id" : "", "image_width" : 512}
json_instruct
{"type": "object", "properties": {"image_name": {"type": "string"}, "image_height": {"type": "integer"}, "camera_gps": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "object", "properties": {"score": {"type": "number"}, "frontview": {"type": "boolean"}, "other": {"type": "object", "properties": {"region_attributes": {"type": "object", "properties": {"id": {"type": "number"}, "type": {"type": "string"}}, "required": ["id", "type"]}}, "required": ["region_attributes"]}, "category_id": {"type": "string"}, "segmentation": {"type": "string"}, "id": {"type": "string"}, "blurred": {"type": "boolean"}, "goodIllumination": {"type": "boolean"}}, "required": ["score", "frontview", "other", "category_id", "segmentation", "id", "blurred", "goodIllumination"]}}, "camera_id": {"type": "string"}, "image_width": {"type": "integer"}}, "required": ["image_name", "image_height", "camera_gps", "bbox", "camera_id", "image_width"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "server": {"type": "string"}}, "required": ["start", "server"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"algoliasearch": {"type": "string"}, "bcryptjs": {"type": "string"}, "config": {"type": "string"}, "cors": {"type": "string"}, "express": {"type": "string"}, "express-ip": {"type": "string"}, "express-validator": {"type": "string"}, "googleapis": {"type": "string"}, "gravatar": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "mongoose": {"type": "string"}, "nodemon": {"type": "string"}, "passport": {"type": "string"}, "passport-google-oauth20": {"type": "string"}, "passport-google-plus-token": {"type": "string"}, "pg": {"type": "string"}, "request": {"type": "string"}, "yelp-fusion": {"type": "string"}}, "required": ["algoliasearch", "bcryptjs", "config", "cors", "express", "express-ip", "express-validator", "googleapis", "gravatar", "jsonwebtoken", "mongoose", "nodemon", "passport", "passport-google-oauth20", "passport-google-plus-token", "pg", "request", "yelp-fusion"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "authserver", "version" : "1.0.0", "description" : "An online community for people solving health problem using TCM", "main" : "server.js", "scripts" : {"start" : "node server", "server" : "nodemon server"}, "author" : "Qi Zhang", "license" : "MIT", "dependencies" : {"algoliasearch" : "^3.35.1", "bcryptjs" : "^2.4.3", "config" : "^3.2.3", "cors" : "^2.8.5", "express" : "^4.17.1", "express-ip" : "^1.0.3", "express-validator" : "^6.2.0", "googleapis" : "^44.0.0", "gravatar" : "^1.8.0", "jsonwebtoken" : "^8.5.1", "mongoose" : "^5.7.5", "nodemon" : "^1.19.3", "passport" : "^0.4.0", "passport-google-oauth20" : "^2.0.0", "passport-google-plus-token" : "^2.1.0", "pg" : "^7.12.1", "request" : "^2.88.0", "yelp-fusion" : "^3.0.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"}, "server": {"type": "string"}}, "required": ["start", "server"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"algoliasearch": {"type": "string"}, "bcryptjs": {"type": "string"}, "config": {"type": "string"}, "cors": {"type": "string"}, "express": {"type": "string"}, "express-ip": {"type": "string"}, "express-validator": {"type": "string"}, "googleapis": {"type": "string"}, "gravatar": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "mongoose": {"type": "string"}, "nodemon": {"type": "string"}, "passport": {"type": "string"}, "passport-google-oauth20": {"type": "string"}, "passport-google-plus-token": {"type": "string"}, "pg": {"type": "string"}, "request": {"type": "string"}, "yelp-fusion": {"type": "string"}}, "required": ["algoliasearch", "bcryptjs", "config", "cors", "express", "express-ip", "express-validator", "googleapis", "gravatar", "jsonwebtoken", "mongoose", "nodemon", "passport", "passport-google-oauth20", "passport-google-plus-token", "pg", "request", "yelp-fusion"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$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#"}
["domp"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "2102051", "regency_id" : "2102", "name" : "TELUK SEBONG"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "G\ufffdNTAC", "frequency" : 2, "gender" : "male"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$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"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"app\\": {"type": "string"}}, "required": ["app\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"vlucas/phpdotenv": {"type": "string"}, "yenepay/php-sdk": {"type": "string"}}, "required": ["vlucas/phpdotenv", "yenepay/php-sdk"]}}, "required": ["name", "description", "autoload", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "rebuni/webprogramming", "description" : "Rebuni online education platform (ROEP) is a web based system which aim to connect colleges, teachers and students in one organized platform.", "autoload" : {"psr-4" : {"app\\" : "./"}}, "require" : {"vlucas/phpdotenv" : "^5.3", "yenepay/php-sdk" : "dev-master"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"app\\": {"type": "string"}}, "required": ["app\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"vlucas/phpdotenv": {"type": "string"}, "yenepay/php-sdk": {"type": "string"}}, "required": ["vlucas/phpdotenv", "yenepay/php-sdk"]}}, "required": ["name", "description", "autoload", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"year" : 2003, "sex" : "M", "n" : 5, "prop" : 2.38e-06}, {"year" : 2004, "sex" : "M", "n" : 13, "prop" : 6.15e-06}, {"year" : 2005, "sex" : "M", "n" : 24, "prop" : 0}, {"year" : 2006, "sex" : "M", "n" : 19, "prop" : 8.67e-06}, {"year" : 2007, "sex" : "M", "n" : 19, "prop" : 8.58e-06}, {"year" : 2008, "sex" : "M", "n" : 30, "prop" : 0}, {"year" : 2009, "sex" : "M", "n" : 41, "prop" : 0}, {"year" : 2010, "sex" : "M", "n" : 44, "prop" : 0}, {"year" : 2011, "sex" : "M", "n" : 83, "prop" : 0}, {"year" : 2012, "sex" : "M", "n" : 86, "prop" : 0}, {"year" : 2013, "sex" : "M", "n" : 91, "prop" : 0}, {"year" : 2014, "sex" : "M", "n" : 65, "prop" : 0}, {"year" : 2015, "sex" : "M", "n" : 46, "prop" : 0}, {"year" : 2016, "sex" : "M", "n" : 42, "prop" : 0}, {"year" : 2017, "sex" : "M", "n" : 55, "prop" : 0}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "[MMD Kancolle] summertime \u00d7 Prinz Eugen", "author" : "4bv61pcqwnt3089", "description" : "Comment\uff1a<br>\u30b4\u30fc\u30eb\u30c7\u30f3\u30a6\u30a3\u30fc\u30af\u4e2d\u3082\u5927\u4eba\u3057\u304f\u30b9\u30c6\u30a4\u30db\u30fc\u30e0\u3057\u3066\u304a\u308a\u307e\u3057\u305f\u304c<br>\u7686\u69d8\u3044\u304b\u304c\u304a\u904e\u3054\u3057\u3060\u3063\u305f\u3067\u3057\u3087\u3046\u304b\uff1f<br>\u3048\u3001\u30e2\u30fc\u30b7\u30e7\u30f3\u4f55\u3068\u306a\u304f\u305a\u308c\u3066\u306a\u3044\u304b\uff1f<br>\u6c17\u306e\u305b\u3044\u3067\u3042\u308b_(\u00b4\u0f40`\u300dundefined\u2220)_", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thumbnails/1676818/thumbnail-1676818_0006.jpg?itok=JehivMVj", "download" : "https://www.iwara.tv/api/video/9jn67cq4ezuzm22kg", "origin" : "https://www.iwara.tv/videos/9jn67cq4ezuzm22kg"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "chain": {"type": "string"}, "network": {"type": "string"}, "rpc": {"type": "array", "items": {"type": "string"}}, "faucets": {"type": "array", "items": {}}, "nativeCurrency": {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}}, "required": ["name", "symbol", "decimals"]}, "infoURL": {"type": "string"}, "shortName": {"type": "string"}, "chainId": {"type": "integer"}, "networkId": {"type": "integer"}}, "required": ["name", "chain", "network", "rpc", "faucets", "nativeCurrency", "infoURL", "shortName", "chainId", "networkId"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "AVIS Testnet", "chain" : "AVIS Testnet", "network" : "avis", "rpc" : ["https://seed5.evanesco.org:8547"], "faucets" : [], "nativeCurrency" : {"name" : "AVIS", "symbol" : "AVIS", "decimals" : 18}, "infoURL" : "https://evanesco.org/", "shortName" : "avis", "chainId" : 1201, "networkId" : 1201}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "chain": {"type": "string"}, "network": {"type": "string"}, "rpc": {"type": "array", "items": {"type": "string"}}, "faucets": {"type": "array", "items": {}}, "nativeCurrency": {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}}, "required": ["name", "symbol", "decimals"]}, "infoURL": {"type": "string"}, "shortName": {"type": "string"}, "chainId": {"type": "integer"}, "networkId": {"type": "integer"}}, "required": ["name", "chain", "network", "rpc", "faucets", "nativeCurrency", "infoURL", "shortName", "chainId", "networkId"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"900740654": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900740655": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900740656": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900740654", "900740655", "900740656"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"900740654" : {"nama" : "TPS 1", "dapil" : [7401, 17405, 2741103]}, "900740655" : {"nama" : "TPS 2", "dapil" : [7401, 17405, 2741103]}, "900740656" : {"nama" : "TPS 3", "dapil" : [7401, 17405, 2741103]}}
json_instruct
{"type": "object", "properties": {"900740654": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900740655": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900740656": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900740654", "900740655", "900740656"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 123407, "info" : {"name" : "Tema Amor Doce Lady Noir", "description" : "tema de miraculous ladybug para o site amor doce", "additionalInfo" : null, "format" : "uso", "category" : "amordoce", "createdAt" : "2016-01-22T20:48:51.000Z", "updatedAt" : "2016-01-22T20:48:51.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 310614, "name" : "EAH e MLB"}}, "stats" : {"installs" : {"total" : 120, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "123407-after.png", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document domain(\"amordoce.com\") {\r\n#container{\r\nbackground-image : url(http://imgur.com/rXwJzx4) !important ;\r\n}\r\n#container.connected #header { background-image : url(http://imgur.com/Fleh7FS) !important ;\r\n}\r\n.idcard-member { background : url(http://imgur.com/lr6Mkn8) no-repeat !important ;\r\n}\r\n}\r\n\r\n@-moz-document regexp(\"perfil amor doce\") {\r\n.idcard-member { background : url(http://imgur.com/lr6Mkn8) no-repeat !important ;\r\n}\r\n}"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "c62016b5052c8c62a004", "c" : {}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ast" : null, "code" : "'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\n\nvar identity = require('./bases/identity.js');\n\nvar base2 = require('./bases/base2.js');\n\nvar base8 = require('./bases/base8.js');\n\nvar base10 = require('./bases/base10.js');\n\nvar base16 = require('./bases/base16.js');\n\nvar base32 = require('./bases/base32.js');\n\nvar base36 = require('./bases/base36.js');\n\nvar base58 = require('./bases/base58.js');\n\nvar base64 = require('./bases/base64.js');\n\nvar sha2 = require('./hashes/sha2.js');\n\nvar identity$1 = require('./hashes/identity.js');\n\nvar raw = require('./codecs/raw.js');\n\nvar json = require('./codecs/json.js');\n\nrequire('./index.js');\n\nvar cid = require('./cid.js');\n\nvar hasher = require('./hashes/hasher.js');\n\nvar digest = require('./hashes/digest.js');\n\nvar varint = require('./varint.js');\n\nvar bytes = require('./bytes.js');\n\nconst bases = { ...identity,\n ...base2,\n ...base8,\n ...base10,\n ...base16,\n ...base32,\n ...base36,\n ...base58,\n ...base64\n};\nconst hashes = { ...sha2,\n ...identity$1\n};\nconst codecs = {\n raw,\n json\n};\nexports.CID = cid.CID;\nexports.hasher = hasher;\nexports.digest = digest;\nexports.varint = varint;\nexports.bytes = bytes;\nexports.bases = bases;\nexports.codecs = codecs;\nexports.hashes = hashes;", "map" : null, "metadata" : {}, "sourceType" : "script"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"axes": {"type": "string"}, "background": {"type": "string"}, "border-color": {"type": "string"}, "border-width": {"type": "string"}, "change-orientation": {"type": "string"}, "close": {"type": "string"}, "copied-to-clipboard": {"type": "string"}, "count": {"type": "string"}, "customize-layout": {"type": "string"}, "data-missing": {"type": "string"}, "drag-plot": {"type": "string"}, "font-color": {"type": "string"}, "font-family": {"type": "string"}, "font-size": {"type": "string"}, "general": {"type": "string"}, "given": {"type": "string"}, "histogram-title": {"type": "string"}, "in": {"type": "string"}, "intervalplot-title": {"type": "string"}, "layout": {"type": "string"}, "legend": {"type": "string"}, "linear-fit": {"type": "string"}, "number-of-edges": {"type": "string"}, "of": {"type": "string"}, "per": {"type": "string"}, "plot-copied-to-clipboard": {"type": "string"}, "points": {"type": "string"}, "proportion": {"type": "string"}, "qqplot-title": {"type": "string"}, "sample-quantiles": {"type": "string"}, "share": {"type": "string"}, "smoothed-fit": {"type": "string"}, "theoretical-quantiles": {"type": "string"}, "toggle-fullscreen": {"type": "string"}, "toggle-legend": {"type": "string"}, "variable-missing": {"type": "string"}, "vs": {"type": "string"}}, "required": ["axes", "background", "border-color", "border-width", "change-orientation", "close", "copied-to-clipboard", "count", "customize-layout", "data-missing", "drag-plot", "font-color", "font-family", "font-size", "general", "given", "histogram-title", "in", "intervalplot-title", "layout", "legend", "linear-fit", "number-of-edges", "of", "per", "plot-copied-to-clipboard", "points", "proportion", "qqplot-title", "sample-quantiles", "share", "smoothed-fit", "theoretical-quantiles", "toggle-fullscreen", "toggle-legend", "variable-missing", "vs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"axes" : "Axes", "background" : "Bakgrund", "border-color" : "F\u00e4rg p\u00e5 gr\u00e4nsen", "border-width" : "Bredd p\u00e5 gr\u00e4nsen", "change-orientation" : "\u00c4ndra legenden orientering", "close" : "St\u00e4ng", "copied-to-clipboard" : "Kopieras till urklipp", "count" : "R\u00e4kna", "customize-layout" : "Anpassa layouten", "data-missing" : "Uppgifter saknas.", "drag-plot" : "Dragplot", "font-color" : "Typsnittsf\u00e4rg", "font-family" : "Typsnittsfamilj", "font-size" : "Teckensnittsstorlek", "general" : "Allm\u00e4nt", "given" : "p\u00e5 f\u00f6ljande adress:", "histogram-title" : "Histogram av {{x}}", "in" : "p\u00e5", "intervalplot-title" : "Intervalldiagram ({{confidenceLevel}}% CI f\u00f6r medelv\u00e4rdena)", "layout" : "Layout", "legend" : "Legend", "linear-fit" : "Linj\u00e4r anpassning", "number-of-edges" : "Antal kanter: {{nEdges}}.", "of" : "p\u00e5", "per" : "per", "plot-copied-to-clipboard" : "Tomten har kopierats till ditt klippblock.", "points" : "Po\u00e4ng", "proportion" : "Andel", "qqplot-title" : "Normal QQ Plot av {{x}}", "sample-quantiles" : "Kvantiteter f\u00f6r urvalet", "share" : "Dela", "smoothed-fit" : "Utj\u00e4mnad passform", "theoretical-quantiles" : "Teoretiska kvoter", "toggle-fullscreen" : "V\u00e4xla till fullsk\u00e4rmsl\u00e4ge", "toggle-legend" : "V\u00e4xla legend", "variable-missing" : "Den variabel som ska ritas saknas.", "vs" : "vs."}
json_instruct
{"type": "object", "properties": {"axes": {"type": "string"}, "background": {"type": "string"}, "border-color": {"type": "string"}, "border-width": {"type": "string"}, "change-orientation": {"type": "string"}, "close": {"type": "string"}, "copied-to-clipboard": {"type": "string"}, "count": {"type": "string"}, "customize-layout": {"type": "string"}, "data-missing": {"type": "string"}, "drag-plot": {"type": "string"}, "font-color": {"type": "string"}, "font-family": {"type": "string"}, "font-size": {"type": "string"}, "general": {"type": "string"}, "given": {"type": "string"}, "histogram-title": {"type": "string"}, "in": {"type": "string"}, "intervalplot-title": {"type": "string"}, "layout": {"type": "string"}, "legend": {"type": "string"}, "linear-fit": {"type": "string"}, "number-of-edges": {"type": "string"}, "of": {"type": "string"}, "per": {"type": "string"}, "plot-copied-to-clipboard": {"type": "string"}, "points": {"type": "string"}, "proportion": {"type": "string"}, "qqplot-title": {"type": "string"}, "sample-quantiles": {"type": "string"}, "share": {"type": "string"}, "smoothed-fit": {"type": "string"}, "theoretical-quantiles": {"type": "string"}, "toggle-fullscreen": {"type": "string"}, "toggle-legend": {"type": "string"}, "variable-missing": {"type": "string"}, "vs": {"type": "string"}}, "required": ["axes", "background", "border-color", "border-width", "change-orientation", "close", "copied-to-clipboard", "count", "customize-layout", "data-missing", "drag-plot", "font-color", "font-family", "font-size", "general", "given", "histogram-title", "in", "intervalplot-title", "layout", "legend", "linear-fit", "number-of-edges", "of", "per", "plot-copied-to-clipboard", "points", "proportion", "qqplot-title", "sample-quantiles", "share", "smoothed-fit", "theoretical-quantiles", "toggle-fullscreen", "toggle-legend", "variable-missing", "vs"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "3510180015", "district_id" : "3510180", "name" : "SINGOTRUNAN"}
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": {"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" : "0x8fd3121013a07c57f0d69646e86e7a4880b467b7", "tool" : "manticore", "start" : 1563982812.9919102, "end" : 1563984614.749985, "duration" : 1801.758074760437, "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 an example JSON object that satisfies this schema: {"type": "object", "properties": {"Name": {"type": "string"}, "RelayDirs": {"type": "array", "items": {"type": "string"}}, "TemplateFile": {"type": "string"}}, "required": ["Name", "RelayDirs", "TemplateFile"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "devnet", "RelayDirs" : ["primary"], "TemplateFile" : "devnet.json"}
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "RelayDirs": {"type": "array", "items": {"type": "string"}}, "TemplateFile": {"type": "string"}}, "required": ["Name", "RelayDirs", "TemplateFile"], "$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"}, "email": {"type": "string"}, "password": {"type": "string"}}, "required": ["name", "email", "password"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "Josh", "email" : "[email protected]", "password" : "password"}, {"name" : "Greg", "email" : "[email protected]", "password" : "password"}, {"name" : "Aaron", "email" : "[email protected]", "password" : "password"}, {"name" : "Koalia", "email" : "[email protected]", "password" : "password"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "password": {"type": "string"}}, "required": ["name", "email", "password"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"": {"type": "string"}}, "required": [""]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "files"]}}, "required": ["name", "type", "license", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "felipeelia/cli-command-docs", "type" : "wp-cli-package", "license" : "MIT", "autoload" : {"psr-4" : {"" : "src/"}, "files" : ["cli-command-docs-command.php"]}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"": {"type": "string"}}, "required": [""]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "files"]}}, "required": ["name", "type", "license", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"object": {"type": "string"}, "callback_url": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "active": {"type": "boolean"}}, "required": ["object", "callback_url", "fields", "active"]}}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"data" : [{"object" : "user", "callback_url" : "http://fbgraphsample.heroku.com/subscription", "fields" : ["email"], "active" : true}]}
json_instruct
{"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"object": {"type": "string"}, "callback_url": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "active": {"type": "boolean"}}, "required": ["object", "callback_url", "fields", "active"]}}}, "required": ["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"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "whiteboard": {"type": "object", "properties": {"server": {"type": "string"}, "port": {"type": "integer"}}, "required": ["server", "port"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "nodemon": {"type": "string"}, "socket.io": {"type": "string"}, "pug": {"type": "string"}}, "required": ["express", "nodemon", "socket.io", "pug"]}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "clean-css": {"type": "string"}, "eslint": {"type": "string"}, "gulp": {"type": "string"}, "gulp-autoprefixer": {"type": "string"}, "gulp-babel": {"type": "string"}, "gulp-bump": {"type": "string"}, "gulp-clean-css": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-cssfmt": {"type": "string"}, "gulp-csslint": {"type": "string"}, "gulp-eslint": {"type": "string"}, "gulp-load-plugins": {"type": "string"}, "gulp-notify": {"type": "string"}, "gulp-plumber": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-uglify": {"type": "string"}}, "required": ["babel-core", "babel-preset-es2015", "clean-css", "eslint", "gulp", "gulp-autoprefixer", "gulp-babel", "gulp-bump", "gulp-clean-css", "gulp-concat", "gulp-cssfmt", "gulp-csslint", "gulp-eslint", "gulp-load-plugins", "gulp-notify", "gulp-plumber", "gulp-rename", "gulp-sass", "gulp-uglify"]}}, "required": ["name", "version", "description", "main", "whiteboard", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "whiteboard", "version" : "0.1.227", "description" : "A real-time multi-user collaborative whiteboard and chat", "main" : "index.js", "whiteboard" : {"server" : "node.mymacys.net", "port" : 2000}, "scripts" : {"start" : "gulp"}, "author" : "Gary Storey", "license" : "MIT", "dependencies" : {"express" : "^4.14.0", "nodemon" : "^1.11.0", "socket.io" : "^1.7.1", "pug" : "^2.0.0-beta6"}, "devDependencies" : {"babel-core" : "^6.20.0", "babel-preset-es2015" : "^6.18.0", "clean-css" : "^3.4.22", "eslint" : "^3.12.0", "gulp" : "^3.9.1", "gulp-autoprefixer" : "^2.0.0", "gulp-babel" : "^6.1.2", "gulp-bump" : "^2.5.1", "gulp-clean-css" : "^2.3.0", "gulp-concat" : "^2.4.1", "gulp-cssfmt" : "^0.2.0", "gulp-csslint" : "^0.1.5", "gulp-eslint" : "^3.0.1", "gulp-load-plugins" : "^1.3.0", "gulp-notify" : "^2.0.0", "gulp-plumber" : "^0.6.6", "gulp-rename" : "^1.2.0", "gulp-sass" : "^2.1.0", "gulp-uglify" : "^1.0.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "whiteboard": {"type": "object", "properties": {"server": {"type": "string"}, "port": {"type": "integer"}}, "required": ["server", "port"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "nodemon": {"type": "string"}, "socket.io": {"type": "string"}, "pug": {"type": "string"}}, "required": ["express", "nodemon", "socket.io", "pug"]}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "clean-css": {"type": "string"}, "eslint": {"type": "string"}, "gulp": {"type": "string"}, "gulp-autoprefixer": {"type": "string"}, "gulp-babel": {"type": "string"}, "gulp-bump": {"type": "string"}, "gulp-clean-css": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-cssfmt": {"type": "string"}, "gulp-csslint": {"type": "string"}, "gulp-eslint": {"type": "string"}, "gulp-load-plugins": {"type": "string"}, "gulp-notify": {"type": "string"}, "gulp-plumber": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-uglify": {"type": "string"}}, "required": ["babel-core", "babel-preset-es2015", "clean-css", "eslint", "gulp", "gulp-autoprefixer", "gulp-babel", "gulp-bump", "gulp-clean-css", "gulp-concat", "gulp-cssfmt", "gulp-csslint", "gulp-eslint", "gulp-load-plugins", "gulp-notify", "gulp-plumber", "gulp-rename", "gulp-sass", "gulp-uglify"]}}, "required": ["name", "version", "description", "main", "whiteboard", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["1936", "cubana de aviaci\u00c3\u00b3n", "cienfuegos", "cuba", "montreal", "canada", "0"], ["1936", "cubana de aviaci\u00c3\u00b3n", "cienfuegos", "cuba", "toronto", "canada", "0"], ["1936", "cubana de aviaci\u00c3\u00b3n", "montreal", "canada", "cienfuegos", "cuba", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1880, 7], [1881, 6], [1882, 9], [1883, 5], [1884, 8], [1885, 6], [1886, 10], [1888, 6], [1889, 14], [1890, 10], [1892, 12], [1893, 9], [1894, 12], [1895, 12], [1896, 10], [1897, 9], [1898, 11], [1899, 5], [1900, 20], [1901, 6], [1902, 8], [1903, 7], [1904, 11], [1905, 7], [1906, 6], [1907, 9], [1908, 7], [1909, 10], [1910, 10], [1911, 16], [1912, 19], [1913, 12], [1914, 20], [1915, 18], [1916, 16], [1917, 17], [1918, 19], [1919, 32], [1920, 26], [1921, 33], [1922, 15], [1923, 16], [1924, 27], [1925, 18], [1926, 23], [1927, 23], [1928, 25], [1929, 15], [1930, 20], [1931, 8], [1932, 18], [1933, 12], [1934, 12], [1935, 11], [1936, 10], [1937, 16], [1938, 13], [1939, 9], [1940, 15], [1942, 11], [1943, 12], [1944, 7], [1945, 9], [1946, 7], [1947, 10], [1948, 6], [1949, 12], [1950, 7], [1951, 6], [1952, 6], [1953, 8], [1954, 7], [1955, 14], [1956, 11], [1957, 9], [1958, 9], [1959, 11], [1960, 8], [1961, 12], [1962, 5], [1964, 7], [1965, 8], [1967, 7], [1968, 7], [1969, 9], [1970, 11], [1971, 6], [1972, 5], [1974, 5], [1975, 5], [1976, 5], [1978, 5], [1980, 5], [1982, 5], [1990, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"mohsen": {"type": "string"}}, "required": ["mohsen"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "pushed_with_swift_version": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "pushed_with_swift_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "SelectController", "version" : "0.02", "summary" : "SelectControllerController used for selecting options", "description" : "Select View Controller is a component for selecting options presented in a picker view which is dynamically created in controller", "homepage" : "https://gitlab.com/work.shakiba/SelectViewController", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"mohsen" : "[email protected]"}, "source" : {"git" : "https://gitlab.com/work.shakiba/SelectViewController", "tag" : "0.02"}, "platforms" : {"ios" : "9.0"}, "source_files" : "SelectController/Classes/**/*", "pushed_with_swift_version" : "3.0"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"mohsen": {"type": "string"}}, "required": ["mohsen"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "pushed_with_swift_version": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "pushed_with_swift_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Matt Magoffin": {"type": "string"}}, "required": ["Matt Magoffin"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "array", "items": {"type": "string"}}, "requires_arc": {"type": "boolean"}, "prefix_header_contents": {"type": "string"}, "dependencies": {"type": "object", "properties": {"CocoaLumberjack": {"type": "array", "items": {"type": "string"}}}, "required": ["CocoaLumberjack"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "platforms", "source", "source_files", "requires_arc", "prefix_header_contents", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "BRCocoaLumberjack", "version" : "2.0.0", "summary" : "Easy CocoaLumberjack for iOS.", "description" : "This project provides a way to integrate the\n[CocoaLumberjack](https://github.com/robbiehanson/CocoaLumberjack) project easily\ninto your own project with log levels configurable per Cocoa class, similar to what\nthe venerable [log4j](http://logging.apache.org/) provides in Java.", "homepage" : "https://github.com/Blue-Rocket/BRCocoaLumberjack", "license" : "Apache License, Version 2.0", "authors" : {"Matt Magoffin" : "[email protected]"}, "platforms" : {"ios" : "5.0"}, "source" : {"git" : "https://github.com/Blue-Rocket/BRCocoaLumberjack.git", "tag" : "2.0.0"}, "source_files" : ["BRCocoaLumberjack/BRCocoaLumberjack.h", "BRCocoaLumberjack/BRCocoaLumberjack/*.{h,m}"], "requires_arc" : true, "prefix_header_contents" : "#ifdef __OBJC__\n #import <BRCocoaLumberjack/BRCocoaLumberjack.h>\n#endif", "dependencies" : {"CocoaLumberjack" : ["~> 2.0"]}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Matt Magoffin": {"type": "string"}}, "required": ["Matt Magoffin"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "array", "items": {"type": "string"}}, "requires_arc": {"type": "boolean"}, "prefix_header_contents": {"type": "string"}, "dependencies": {"type": "object", "properties": {"CocoaLumberjack": {"type": "array", "items": {"type": "string"}}}, "required": ["CocoaLumberjack"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "platforms", "source", "source_files", "requires_arc", "prefix_header_contents", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"text": {"type": "array", "items": {"type": "object", "properties": {"desc": {"type": "null"}, "bounds": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}}, "required": ["desc", "bounds"]}}, "image": {"type": "array", "items": {"type": "object", "properties": {"desc": {"type": "null"}, "bounds": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}}, "required": ["desc", "bounds"]}}}, "required": ["text", "image"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : [{"desc" : null, "bounds" : [{"x" : 539, "y" : 762}, {"x" : 1464, "y" : 762}, {"x" : 1464, "y" : 1127}, {"x" : 539, "y" : 1127}]}, {"desc" : null, "bounds" : [{"x" : 677, "y" : 762}, {"x" : 1308, "y" : 762}, {"x" : 1308, "y" : 912}, {"x" : 677, "y" : 912}]}, {"desc" : null, "bounds" : [{"x" : 833, "y" : 930}, {"x" : 1202, "y" : 930}, {"x" : 1202, "y" : 984}, {"x" : 833, "y" : 984}]}, {"desc" : null, "bounds" : [{"x" : 539, "y" : 1055}, {"x" : 1464, "y" : 1055}, {"x" : 1464, "y" : 1127}, {"x" : 539, "y" : 1127}]}], "image" : [{"desc" : null, "bounds" : [{"x" : 575, "y" : 366}, {"x" : 1398, "y" : 366}, {"x" : 1398, "y" : 754}, {"x" : 575, "y" : 754}]}]}
json_instruct
{"type": "object", "properties": {"text": {"type": "array", "items": {"type": "object", "properties": {"desc": {"type": "null"}, "bounds": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}}, "required": ["desc", "bounds"]}}, "image": {"type": "array", "items": {"type": "object", "properties": {"desc": {"type": "null"}, "bounds": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}}, "required": ["desc", "bounds"]}}}, "required": ["text", "image"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "null"}}, "required": ["id", "source", "verse_id", "verse_count", "reference", "title", "html", "audit"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 8536, "source" : "clarke", "verse_id" : 18336, "verse_count" : 1, "reference" : "36:5", "title" : "", "html" : " <p> <em>I say \"Thou hast said\"\u2014</em>, Fourteen MSS. (three ancient) of Kennicott's and De Rossi's have it in the second person, <span class=\"greek-hebrew\">,\u05d0\u05de\u05e8\u05ea </span> <span class=\"translit\">, amarta</span>,; and so the other copy, <a class=\"ref\">2 Kings 18:20</a>. </p>\n\n <p> <em>But they are but vain words\u2014 </em> <span class=\"greek-hebrew\">,\u05e9\u05e4\u05ea\u05d9\u05dd \u05d3\u05d1\u05e8 </span> <span class=\"translit\">, debar sephathayim</span>, a word of the lips. Thou dost talk about counsels, but thou hast none; about strength, but there is none with thee. </p>", "audit" : null}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "null"}}, "required": ["id", "source", "verse_id", "verse_count", "reference", "title", "html", "audit"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "MultiPolygon", "coordinates" : [[[[-75.47045547499992, 40.60418766600002], [-75.47235105599997, 40.60365928100003], [-75.47496600399994, 40.60919938500006], [-75.47625069899992, 40.611877592000035], [-75.47433753499993, 40.61239836200007], [-75.46711002599993, 40.61435531200003], [-75.46709786799993, 40.61376834000003], [-75.46692654699994, 40.61322582300004], [-75.46646969099997, 40.612140788000026], [-75.46572729899995, 40.611055754000056], [-75.46538465699994, 40.61031336200005], [-75.46492110599995, 40.60963209900005], [-75.46472313499997, 40.60931229900006], [-75.46461653499993, 40.60896204300007], [-75.46444902099994, 40.60856610000007], [-75.46440333499996, 40.60813970100002], [-75.46443379199995, 40.60783513000006], [-75.46457084899997, 40.607621930000036], [-75.46492110599995, 40.60724121600003], [-75.46507339099995, 40.607028017000054], [-75.46508861999999, 40.60672344600004], [-75.46508861999999, 40.606464560000056], [-75.46495156299993, 40.606190446000014], [-75.46472792499996, 40.605773351000025], [-75.46609849499997, 40.60540215500003], [-75.47045547499992, 40.60418766600002]]]], "properties" : {"id" : "usa-pa-allentown-jordan-heightsold-fairgrounds-neighborhood", "type" : "neighborhood", "name" : "Jordan Heights/Old Fairgrounds", "code" : "763585"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"JavaScript": {"type": "integer"}}, "required": ["JavaScript"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"JavaScript" : 17716}
json_instruct
{"type": "object", "properties": {"JavaScript": {"type": "integer"}}, "required": ["JavaScript"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"addr": {"type": "string"}, "fields": {"type": "object", "properties": {"SLFB_XBUF_RX": {"type": "object", "properties": {"bits": {"type": "string"}}, "required": ["bits"]}, "SLFB_XBUF_TX": {"type": "object", "properties": {"bits": {"type": "string"}}, "required": ["bits"]}, "BYP_XBUF_RX": {"type": "object", "properties": {"bits": {"type": "string"}}, "required": ["bits"]}, "BYP_XBUF_TX": {"type": "object", "properties": {"bits": {"type": "string"}}, "required": ["bits"]}, "EN_OUT2_XBUF_TX": {"type": "object", "properties": {"bits": {"type": "string"}}, "required": ["bits"]}, "EN_TBUFIN_XBUF_RX": {"type": "object", "properties": {"bits": {"type": "string"}}, "required": ["bits"]}, "PD_XBUF_RX": {"type": "object", "properties": {"bits": {"type": "string"}}, "required": ["bits"]}, "PD_XBUF_TX": {"type": "object", "properties": {"bits": {"type": "string"}}, "required": ["bits"]}, "EN_G_XBUF": {"type": "object", "properties": {"bits": {"type": "string"}}, "required": ["bits"]}}, "required": ["SLFB_XBUF_RX", "SLFB_XBUF_TX", "BYP_XBUF_RX", "BYP_XBUF_TX", "EN_OUT2_XBUF_TX", "EN_TBUFIN_XBUF_RX", "PD_XBUF_RX", "PD_XBUF_TX", "EN_G_XBUF"]}, "default": {"type": "string"}}, "required": ["addr", "fields", "default"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"addr" : "0x0085", "fields" : {"SLFB_XBUF_RX" : {"bits" : "8"}, "SLFB_XBUF_TX" : {"bits" : "7"}, "BYP_XBUF_RX" : {"bits" : "6"}, "BYP_XBUF_TX" : {"bits" : "5"}, "EN_OUT2_XBUF_TX" : {"bits" : "4"}, "EN_TBUFIN_XBUF_RX" : {"bits" : "3"}, "PD_XBUF_RX" : {"bits" : "2"}, "PD_XBUF_TX" : {"bits" : "1"}, "EN_G_XBUF" : {"bits" : "0"}}, "default" : "00000000 00000001"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"addr": {"type": "string"}, "fields": {"type": "object", "properties": {"SLFB_XBUF_RX": {"type": "object", "properties": {"bits": {"type": "string"}}, "required": ["bits"]}, "SLFB_XBUF_TX": {"type": "object", "properties": {"bits": {"type": "string"}}, "required": ["bits"]}, "BYP_XBUF_RX": {"type": "object", "properties": {"bits": {"type": "string"}}, "required": ["bits"]}, "BYP_XBUF_TX": {"type": "object", "properties": {"bits": {"type": "string"}}, "required": ["bits"]}, "EN_OUT2_XBUF_TX": {"type": "object", "properties": {"bits": {"type": "string"}}, "required": ["bits"]}, "EN_TBUFIN_XBUF_RX": {"type": "object", "properties": {"bits": {"type": "string"}}, "required": ["bits"]}, "PD_XBUF_RX": {"type": "object", "properties": {"bits": {"type": "string"}}, "required": ["bits"]}, "PD_XBUF_TX": {"type": "object", "properties": {"bits": {"type": "string"}}, "required": ["bits"]}, "EN_G_XBUF": {"type": "object", "properties": {"bits": {"type": "string"}}, "required": ["bits"]}}, "required": ["SLFB_XBUF_RX", "SLFB_XBUF_TX", "BYP_XBUF_RX", "BYP_XBUF_TX", "EN_OUT2_XBUF_TX", "EN_TBUFIN_XBUF_RX", "PD_XBUF_RX", "PD_XBUF_TX", "EN_G_XBUF"]}, "default": {"type": "string"}}, "required": ["addr", "fields", "default"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"pli-tv-bu-vb-sk48:1.1": {"type": "string"}, "pli-tv-bu-vb-sk48:1.3.1": {"type": "string"}, "pli-tv-bu-vb-sk48:1.4": {"type": "string"}, "pli-tv-bu-vb-sk48:1.6.1": {"type": "string"}, "pli-tv-bu-vb-sk48:1.15": {"type": "string"}}, "required": ["pli-tv-bu-vb-sk48:1.1", "pli-tv-bu-vb-sk48:1.3.1", "pli-tv-bu-vb-sk48:1.4", "pli-tv-bu-vb-sk48:1.6.1", "pli-tv-bu-vb-sk48:1.15"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"pli-tv-bu-vb-sk48:1.1" : "ms2V_1924, msdiv624, ndp2.265, pts-cs48", "pli-tv-bu-vb-sk48:1.3.1" : "ms2V_1925", "pli-tv-bu-vb-sk48:1.4" : "dr2.447, ms2V_1926", "pli-tv-bu-vb-sk48:1.6.1" : "ms2V_1927, pts-vp-pli4.197, sya2.553", "pli-tv-bu-vb-sk48:1.15" : "ms2V_1928"}
json_instruct
{"type": "object", "properties": {"pli-tv-bu-vb-sk48:1.1": {"type": "string"}, "pli-tv-bu-vb-sk48:1.3.1": {"type": "string"}, "pli-tv-bu-vb-sk48:1.4": {"type": "string"}, "pli-tv-bu-vb-sk48:1.6.1": {"type": "string"}, "pli-tv-bu-vb-sk48:1.15": {"type": "string"}}, "required": ["pli-tv-bu-vb-sk48:1.1", "pli-tv-bu-vb-sk48:1.3.1", "pli-tv-bu-vb-sk48:1.4", "pli-tv-bu-vb-sk48:1.6.1", "pli-tv-bu-vb-sk48:1.15"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"artists": {"type": "array", "items": {"type": "object", "properties": {"attribute-list": {"type": "array", "items": {"type": "string"}}, "mbid": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["attribute-list", "mbid", "name", "type"]}}, "mbid": {"type": "string"}, "tags": {"type": "object", "properties": {"form": {"type": "string"}, "makam": {"type": "string"}, "usul": {"type": "string"}}, "required": ["form", "makam", "usul"]}, "title": {"type": "string"}, "works": {"type": "array", "items": {"type": "object", "properties": {"artists": {"type": "array", "items": {"type": "object", "properties": {"mbid": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["mbid", "name", "type"]}}, "mbid": {"type": "string"}, "score": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}, "title": {"type": "string"}}, "required": ["artists", "mbid", "score", "title"]}}}, "required": ["artists", "mbid", "tags", "title", "works"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"artists" : [{"attribute-list" : ["tanbur"], "mbid" : "65e0df9a-64a6-450c-acae-009a8c725661", "name" : "Necip G\u00fclses", "type" : "instrument"}, {"attribute-list" : ["nai"], "mbid" : "86299acc-2dd4-49d2-b20e-d1707c699d62", "name" : "Kudsi Erg\u00fcner", "type" : "instrument"}, {"attribute-list" : ["kanun"], "mbid" : "9300ce7f-ba52-4dd9-84cd-5314c0077170", "name" : "Hakan G\u00fcng\u00f6r", "type" : "instrument"}, {"attribute-list" : ["percussion"], "mbid" : "e504a080-2092-4855-9135-45914556ca70", "name" : "Vahit Anadolu", "type" : "instrument"}], "mbid" : "97be5bdd-cef0-4103-bbb7-bff77d6b0a30", "tags" : {"form" : "sazsemaisi", "makam" : "\u015fedaraban", "usul" : "aksaksemai"}, "title" : "Sedaraban Pesrevi", "works" : [{"artists" : [{"mbid" : "4cc5200e-a3f7-4d5d-8b15-9b10a8f9a9a2", "name" : "Tanburi Cemil Bey", "type" : "composer"}], "mbid" : "83291c8a-4ef1-4ffc-8b50-3fc03890f5a4", "score" : {"name" : "sedaraban--pesrev--fahte----tanburi_cemil_bey", "type" : "symbTr_v2"}, "title" : "Sedaraban Pesrevi"}]}
json_instruct
{"type": "object", "properties": {"artists": {"type": "array", "items": {"type": "object", "properties": {"attribute-list": {"type": "array", "items": {"type": "string"}}, "mbid": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["attribute-list", "mbid", "name", "type"]}}, "mbid": {"type": "string"}, "tags": {"type": "object", "properties": {"form": {"type": "string"}, "makam": {"type": "string"}, "usul": {"type": "string"}}, "required": ["form", "makam", "usul"]}, "title": {"type": "string"}, "works": {"type": "array", "items": {"type": "object", "properties": {"artists": {"type": "array", "items": {"type": "object", "properties": {"mbid": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["mbid", "name", "type"]}}, "mbid": {"type": "string"}, "score": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}, "title": {"type": "string"}}, "required": ["artists", "mbid", "score", "title"]}}}, "required": ["artists", "mbid", "tags", "title", "works"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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" : "3273150005", "district_id" : "3273150", "name" : "BABAKAN SURABAYA"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"datestamp": {"type": "string"}, "nameWithOwner": {"type": "string"}, "name": {"type": "string"}, "commits": {"type": "integer"}, "forkCount": {"type": "integer"}, "issues": {"type": "integer"}, "openIssues": {"type": "integer"}, "closedIssues": {"type": "integer"}, "pullRequests": {"type": "integer"}, "openPullRequests": {"type": "integer"}, "mergedPullRequests": {"type": "integer"}, "closedPullRequests": {"type": "integer"}, "stargazers": {"type": "integer"}, "watchers": {"type": "integer"}}, "required": ["datestamp", "nameWithOwner", "name", "commits", "forkCount", "issues", "openIssues", "closedIssues", "pullRequests", "openPullRequests", "mergedPullRequests", "closedPullRequests", "stargazers", "watchers"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"datestamp" : "2019-05-24", "nameWithOwner" : "pantsbuild/pants", "name" : "pants", "commits" : 6542, "forkCount" : 325, "issues" : 2573, "openIssues" : 839, "closedIssues" : 1734, "pullRequests" : 5228, "openPullRequests" : 103, "mergedPullRequests" : 2266, "closedPullRequests" : 2859, "stargazers" : 1142, "watchers" : 67}
json_instruct
{"type": "object", "properties": {"datestamp": {"type": "string"}, "nameWithOwner": {"type": "string"}, "name": {"type": "string"}, "commits": {"type": "integer"}, "forkCount": {"type": "integer"}, "issues": {"type": "integer"}, "openIssues": {"type": "integer"}, "closedIssues": {"type": "integer"}, "pullRequests": {"type": "integer"}, "openPullRequests": {"type": "integer"}, "mergedPullRequests": {"type": "integer"}, "closedPullRequests": {"type": "integer"}, "stargazers": {"type": "integer"}, "watchers": {"type": "integer"}}, "required": ["datestamp", "nameWithOwner", "name", "commits", "forkCount", "issues", "openIssues", "closedIssues", "pullRequests", "openPullRequests", "mergedPullRequests", "closedPullRequests", "stargazers", "watchers"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe": {"type": "string"}, "avatar-img": {"type": "string"}, "folderName": {"type": "string"}, "thumbUrl": {"type": "string"}}, "required": ["name", "size", "link", "created_at", "downloads", "linkid", "convert", "achorname", "subscribe", "avatar-img", "folderName", "thumbUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "docp-161_1", "size" : 1110419878, "link" : "https://streamtape.com/e/o2AGL48KrDiJlBw", "created_at" : "2022\u5e7403\u670818\u65e5 17:20:25", "downloads" : 0, "linkid" : "o2AGL48KrDiJlBw", "convert" : "converted", "achorname" : "\u4e38\u5b50\u5466", "subscribe" : "0\u4f4d\u8ba2\u9605\u8005", "avatar-img" : "https://huyaimg.msstatic.com/avatar/1022/07/ec5fef7c7662720286fbbb12395390_180_135.jpg?1628178596?458648", "folderName" : "DOCP-161 \u9694\u58c1\u5929\u5929\u79c0\u6069\u611b\u7684\u5c0f\u5169\u53e3\u5435\u67b6\u5f8c\u6293\u4f4f\u6a5f\u6703\u5f37\u4e0a\u4e86\u5de8\u4e73\u5973\u53cb \u85e4\u767d\u6843\u7fbd \u6df1\u7530\u8a60\u7f8e \u6dbc\u5ddd\u8a60\u7f8e", "thumbUrl" : "https://assets-cdn.jable.tv/contents/videos_screenshots/8000/8744/320x180/1.jpg"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe": {"type": "string"}, "avatar-img": {"type": "string"}, "folderName": {"type": "string"}, "thumbUrl": {"type": "string"}}, "required": ["name", "size", "link", "created_at", "downloads", "linkid", "convert", "achorname", "subscribe", "avatar-img", "folderName", "thumbUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"return": {"type": "array", "items": {"type": "object", "properties": {"name.count": {"type": "integer"}}, "required": ["name.count"]}}, "meta": {"type": "object", "properties": {"datasource": {"type": "string"}}, "required": ["datasource"]}}, "required": ["return", "meta"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"return" : [{"name.count" : 9}], "meta" : {"datasource" : "postgres"}}
json_instruct
{"type": "object", "properties": {"return": {"type": "array", "items": {"type": "object", "properties": {"name.count": {"type": "integer"}}, "required": ["name.count"]}}, "meta": {"type": "object", "properties": {"datasource": {"type": "string"}}, "required": ["datasource"]}}, "required": ["return", "meta"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"2447": {"type": "string"}, "2449": {"type": "string"}}, "required": ["2447", "2449"]}, "timeto": {"type": "object", "properties": {"2447": {"type": "number"}, "2449": {"type": "number"}}, "required": ["2447", "2449"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 2448, "title" : ["[Clovertooth Hall, Lockers]"], "description" : ["A rainbow of colors covers the curtain marking a locker booth to the north. A small bench rests against the south wall and more locker booths are visible to the east and west."], "paths" : ["Obvious exits: east, west"], "location" : "Icemule Trace", "wayto" : {"2447" : "east", "2449" : "west"}, "timeto" : {"2447" : 0.2, "2449" : 0.2}, "image" : "imt-clovertooth_hall-1546618992.png", "image_coords" : [1586, 939, 1686, 1008]}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"2447": {"type": "string"}, "2449": {"type": "string"}}, "required": ["2447", "2449"]}, "timeto": {"type": "object", "properties": {"2447": {"type": "number"}, "2449": {"type": "number"}}, "required": ["2447", "2449"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 101761489, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "923ee9d5d56c89560e703b37481fbe72", "wof:id" : 101761489, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [5.91159, 49.17313, 5.91159, 49.17313], "geometry" : {"coordinates" : [5.91159, 49.17313], "type" : "Point"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "content_in_root": {"type": "boolean"}, "domains": {"type": "array", "items": {"type": "string"}}, "homeassistant": {"type": "string"}, "render_readme": {"type": "boolean"}}, "required": ["name", "content_in_root", "domains", "homeassistant", "render_readme"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Timeslot", "content_in_root" : true, "domains" : ["timeslot"], "homeassistant" : "2021.12.0", "render_readme" : true}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "content_in_root": {"type": "boolean"}, "domains": {"type": "array", "items": {"type": "string"}}, "homeassistant": {"type": "string"}, "render_readme": {"type": "boolean"}}, "required": ["name", "content_in_root", "domains", "homeassistant", "render_readme"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"jest": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["jest", "webpack", "webpack-cli"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "js-testing-introduction", "version" : "1.0.0", "description" : "An introduction to JS testing", "main" : "app.js", "scripts" : {"start" : "webpack app.js --mode development --watch", "test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : ["js", "javascript", "testing", "jest", "unit", "tests", "integration", "tests", "e2e", "tests"], "author" : "Maximilian Schwarzm\u00fcller/ Academind GmbH", "license" : "ISC", "devDependencies" : {"jest" : "^26.6.3", "webpack" : "^4.20.2", "webpack-cli" : "^3.1.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"jest": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["jest", "webpack", "webpack-cli"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies"], "$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" : [[[123.5, 32.25], [123.5, 32.333333333333336], [123.625, 32.333333333333336], [123.625, 32.25], [123.5, 32.25]]]}, "properties" : {"code" : 482334, "url" : "http://madefor.github.io/0410/api/v1/482334.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/482334.geojson"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"rustc" : 14339930153574751747, "features" : "[]", "target" : 10002350141840078372, "profile" : 8248545651247322450, "path" : 1036222786711178230, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : ".fingerprint\\threadspawn-c58bfd0357a66c6e\\dep-test-bin-threadspawn-c58bfd0357a66c6e"}}], "rustflags" : [], "metadata" : 1103270788440540279}
json_instruct
{"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1989, 6], [1991, 5], [1993, 6], [1995, 7], [1996, 10], [1997, 5], [1998, 7], [1999, 11], [2000, 5], [2001, 5], [2002, 11], [2003, 12], [2004, 7], [2005, 12], [2006, 9], [2007, 7], [2008, 6], [2009, 6], [2013, 6]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["Combine the cubed potatoes, diced potatoes, broccoli, onion, milk, garlic powder, and chives in a slow cooker; cover, and cook on High for 4 hours.", "Stir the instant potato flakes and bread crumbs into the soup. Reduce heat to Low and simmer another 30 minutes. Serve hot."], "ingredients" : ["4 potatoes, peeled and cubed", "2 potatoes, peeled and diced", "1 head broccoli, diced", "1 onion, minced", "7 cups milk", "2 tablespoons garlic powder", "2 tablespoons minced fresh chives", "2 cups instant potato flakes", "1/4 cup dry bread crumbs"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Slow Cooker Potato Broccoli Soup", "url" : "http://allrecipes.com/recipe/203222/slow-cooker-potato-broccoli-soup/"}
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"Results": {"type": "object", "properties": {"Message": {"type": "string"}, "QueryID": {"type": "string"}, "QueryRows": {"type": "string"}, "IndianCountryRows": {"type": "string"}, "SVRows": {"type": "string"}, "CVRows": {"type": "string"}, "V3Rows": {"type": "string"}, "FEARows": {"type": "string"}, "InfFEARows": {"type": "string"}, "INSPRows": {"type": "string"}, "BioCVRows": {"type": "string"}, "BioV3Rows": {"type": "string"}, "VioLast4QRows": {"type": "string"}, "TotalPenalties": {"type": "string"}, "BadSystemIDs": {"type": "null"}, "IconBaseURL": {"type": "string"}, "PopUpBaseURL": {"type": "string"}, "ServiceBaseURL": {"type": "string"}, "QueryParameters": {"type": "array", "items": {"type": "object", "properties": {"QP": {"type": "string"}, "QV": {"type": "string"}}, "required": ["QP", "QV"]}}, "Facilities": {"type": "array", "items": {"type": "object", "properties": {"ObjectId": {"type": "string"}, "CWPName": {"type": "string"}, "SourceID": {"type": "string"}, "CWPStreet": {"type": "string"}, "CWPCity": {"type": "string"}, "CWPState": {"type": "string"}, "RegistryID": {"type": "string"}, "FacLat": {"type": "string"}, "FacLong": {"type": "string"}, "E90Exceeds1yr": {"type": "null"}}, "required": ["ObjectId", "CWPName", "SourceID", "CWPStreet", "CWPCity", "CWPState", "RegistryID", "FacLat", "FacLong", "E90Exceeds1yr"]}}}, "required": ["Message", "QueryID", "QueryRows", "IndianCountryRows", "SVRows", "CVRows", "V3Rows", "FEARows", "InfFEARows", "INSPRows", "BioCVRows", "BioV3Rows", "VioLast4QRows", "TotalPenalties", "BadSystemIDs", "IconBaseURL", "PopUpBaseURL", "ServiceBaseURL", "QueryParameters", "Facilities"]}}, "required": ["Results"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Results" : {"Message" : "Success", "QueryID" : "285", "QueryRows" : "1", "IndianCountryRows" : "0", "SVRows" : "0", "CVRows" : "0", "V3Rows" : "0", "FEARows" : "0", "InfFEARows" : "0", "INSPRows" : "1", "BioCVRows" : "0", "BioV3Rows" : "0", "VioLast4QRows" : "0", "TotalPenalties" : "$0", "BadSystemIDs" : null, "IconBaseURL" : "https://echo.epa.gov/app/map/icons/", "PopUpBaseURL" : "https://ordsint.rtpnc.epa.gov/ords/echo/cwa_rest_services.pop_up?p_id=", "ServiceBaseURL" : "https://ordsint.rtpnc.epa.gov/ords/echo/cwa_rest_services.get_facility_info", "QueryParameters" : [{"QP" : "output", "QV" : "JSON"}, {"QP" : "p_pid", "QV" : "ALR040033"}, {"QP" : "p_limit_addr", "QV" : "Y"}, {"QP" : "qcolumns", "QV" : "1,2,3,4,5"}], "Facilities" : [{"ObjectId" : "1", "CWPName" : "US ARMY REDSTONE ARSENAL MS4 PH II", "SourceID" : "ALR040033", "CWPStreet" : "BUILDING 4488", "CWPCity" : "REDSTONE ARSENAL", "CWPState" : "AL", "RegistryID" : "110020837601", "FacLat" : "34.625123", "FacLong" : "-86.640541", "E90Exceeds1yr" : null}]}}
json_instruct
{"type": "object", "properties": {"Results": {"type": "object", "properties": {"Message": {"type": "string"}, "QueryID": {"type": "string"}, "QueryRows": {"type": "string"}, "IndianCountryRows": {"type": "string"}, "SVRows": {"type": "string"}, "CVRows": {"type": "string"}, "V3Rows": {"type": "string"}, "FEARows": {"type": "string"}, "InfFEARows": {"type": "string"}, "INSPRows": {"type": "string"}, "BioCVRows": {"type": "string"}, "BioV3Rows": {"type": "string"}, "VioLast4QRows": {"type": "string"}, "TotalPenalties": {"type": "string"}, "BadSystemIDs": {"type": "null"}, "IconBaseURL": {"type": "string"}, "PopUpBaseURL": {"type": "string"}, "ServiceBaseURL": {"type": "string"}, "QueryParameters": {"type": "array", "items": {"type": "object", "properties": {"QP": {"type": "string"}, "QV": {"type": "string"}}, "required": ["QP", "QV"]}}, "Facilities": {"type": "array", "items": {"type": "object", "properties": {"ObjectId": {"type": "string"}, "CWPName": {"type": "string"}, "SourceID": {"type": "string"}, "CWPStreet": {"type": "string"}, "CWPCity": {"type": "string"}, "CWPState": {"type": "string"}, "RegistryID": {"type": "string"}, "FacLat": {"type": "string"}, "FacLong": {"type": "string"}, "E90Exceeds1yr": {"type": "null"}}, "required": ["ObjectId", "CWPName", "SourceID", "CWPStreet", "CWPCity", "CWPState", "RegistryID", "FacLat", "FacLong", "E90Exceeds1yr"]}}}, "required": ["Message", "QueryID", "QueryRows", "IndianCountryRows", "SVRows", "CVRows", "V3Rows", "FEARows", "InfFEARows", "INSPRows", "BioCVRows", "BioV3Rows", "VioLast4QRows", "TotalPenalties", "BadSystemIDs", "IconBaseURL", "PopUpBaseURL", "ServiceBaseURL", "QueryParameters", "Facilities"]}}, "required": ["Results"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "designation": {"type": "string"}, "mobile": {"type": "array", "items": {}}}, "required": ["name", "email", "designation", "mobile"]}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "website": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}, "briefDescription": {"type": "string"}, "yearOfEstablishment": {"type": "string"}, "regiseredAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "website", "organisationType", "telephone", "mainAddrress", "briefDescription", "yearOfEstablishment", "regiseredAddrress"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contacts" : [{"name" : "Dr. Satish Ghanta", "email" : "[email protected]", "designation" : "Director", "mobile" : []}], "guideStarURL" : "http://www.guidestarindia.org/Summary.aspx?CCReg=10419", "name" : "CHOICE FOUNDATION", "primaryEmail" : "[email protected]", "website" : "http://www.choicefoundation.in", "organisationType" : ["Direct Service", "Support"], "telephone" : ["919908162303"], "mainAddrress" : {"state" : "Telangana", "address" : ["3rd Floor, G. Pulla Reddy Sweets Building, Kothaguda X Roads", "Landmark residency, Kothaguda", "Hyderabad", "Rangareddy", "Telangana", "500081"]}, "briefDescription" : "MISSION:To provide access to state-of-the-art Tertiary Intensive& Emergency Medical Care for under privileged children.To promote preventive child healthcare and bring about awareness of good health practices through focused research on physical and mental health determinants by using Standard Pediatric Protocols.VISION:To ensure a future healthy generation for a healthy nation", "yearOfEstablishment" : "2012", "regiseredAddrress" : {"state" : "Telangana", "address" : ["F-202, Emkay Manor, Plot No 30, Main Road", "Srinagar Colony", "Hyderabad", "Telangana", "500073"]}}
json_instruct
{"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "designation": {"type": "string"}, "mobile": {"type": "array", "items": {}}}, "required": ["name", "email", "designation", "mobile"]}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "website": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}, "briefDescription": {"type": "string"}, "yearOfEstablishment": {"type": "string"}, "regiseredAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "website", "organisationType", "telephone", "mainAddrress", "briefDescription", "yearOfEstablishment", "regiseredAddrress"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["511724103001", "\u4e07\u798f\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["511724103200", "\u516d\u5830\u6751\u6c11\u59d4\u5458\u4f1a", "122", "0"], ["511724103201", "\u592a\u5e73\u6865\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["511724103202", "\u9f99\u53f0\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["511724103203", "\u5b89\u5c71\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["511724103204", "\u7fa4\u82f1\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["511724103205", "\u7682\u89d2\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["511724103206", "\u516d\u5408\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["511724103207", "\u53cc\u6c5f\u6751\u6c11\u59d4\u5458\u4f1a", "122", "0"], ["511724103208", "\u72ee\u6f6d\u6751\u6c11\u59d4\u5458\u4f1a", "122", "0"], ["511724103209", "\u77f3\u5cf0\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"ktquez/laravel-tinymce": {"type": "string"}, "laravelcollective/html": {"type": "string"}, "zizaco/entrust": {"type": "string"}, "jenssegers/model": {"type": "string"}}, "required": ["ktquez/laravel-tinymce", "laravelcollective/html", "zizaco/entrust", "jenssegers/model"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Larabuild\\Cms\\": {"type": "string"}}, "required": ["Larabuild\\Cms\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "version", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "larabuild/cms", "description" : "Laravel Theme management", "version" : "0.0.2", "authors" : [{"name" : "edgarravenhorst", "email" : "[email protected]"}], "require" : {"ktquez/laravel-tinymce" : "^1.0", "laravelcollective/html" : "^5.3", "zizaco/entrust" : "^1.7", "jenssegers/model" : "^1.1"}, "autoload" : {"psr-4" : {"Larabuild\\Cms\\" : "src/"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"ktquez/laravel-tinymce": {"type": "string"}, "laravelcollective/html": {"type": "string"}, "zizaco/entrust": {"type": "string"}, "jenssegers/model": {"type": "string"}}, "required": ["ktquez/laravel-tinymce", "laravelcollective/html", "zizaco/entrust", "jenssegers/model"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Larabuild\\Cms\\": {"type": "string"}}, "required": ["Larabuild\\Cms\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "version", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1909, 5], [1911, 6], [1912, 6], [1913, 5], [1914, 11], [1915, 9], [1916, 16], [1917, 15], [1918, 17], [1919, 18], [1920, 18], [1921, 12], [1922, 12], [1923, 6], [1924, 17], [1925, 20], [1926, 18], [1927, 19], [1928, 30], [1929, 32], [1930, 35], [1931, 36], [1932, 51], [1933, 32], [1934, 40], [1935, 42], [1936, 46], [1937, 64], [1938, 61], [1939, 57], [1940, 73], [1941, 85], [1942, 94], [1943, 71], [1944, 70], [1945, 98], [1946, 105], [1947, 123], [1948, 112], [1949, 85], [1950, 83], [1951, 90], [1952, 76], [1953, 98], [1954, 96], [1955, 132], [1956, 98], [1957, 78], [1958, 81], [1959, 72], [1960, 77], [1961, 59], [1962, 60], [1963, 87], [1964, 110], [1965, 109], [1966, 151], [1967, 245], [1968, 206], [1969, 183], [1970, 200], [1971, 204], [1972, 181], [1973, 175], [1974, 166], [1975, 172], [1976, 159], [1977, 180], [1978, 185], [1979, 185], [1980, 188], [1981, 187], [1982, 179], [1983, 221], [1984, 241], [1985, 301], [1986, 253], [1987, 336], [1988, 315], [1989, 273], [1990, 255], [1991, 269], [1992, 243], [1993, 221], [1994, 224], [1995, 226], [1996, 242], [1997, 264], [1998, 243], [1999, 199], [2000, 205], [2001, 210], [2002, 192], [2003, 185], [2004, 168], [2005, 182], [2006, 180], [2007, 193], [2008, 178], [2009, 180], [2010, 159], [2011, 165], [2012, 145], [2013, 181], [2014, 203]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"han\u00b7ne\u00b7qe\u1e07": {"type": "object", "properties": {"jos.19.33|6": {"type": "array", "items": {"type": "string"}}}, "required": ["jos.19.33|6"]}}, "required": ["han\u00b7ne\u00b7qe\u1e07"]}, "meanings": {"type": "object", "properties": {"adami": {"type": "integer"}}, "required": ["adami"]}, "meaningsCount": {"type": "integer"}, "occurences": {"type": "integer"}}, "required": ["pos", "translits", "meanings", "meaningsCount", "occurences"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"pos" : "proper", "translits" : {"han\u00b7ne\u00b7qe\u1e07" : {"jos.19.33|6" : ["and\uff64", "Adami Nekeb\uff64", "and Jabneel\uff64"]}}, "meanings" : {"adami" : 1}, "meaningsCount" : 1, "occurences" : 1}
json_instruct
{"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"han\u00b7ne\u00b7qe\u1e07": {"type": "object", "properties": {"jos.19.33|6": {"type": "array", "items": {"type": "string"}}}, "required": ["jos.19.33|6"]}}, "required": ["han\u00b7ne\u00b7qe\u1e07"]}, "meanings": {"type": "object", "properties": {"adami": {"type": "integer"}}, "required": ["adami"]}, "meaningsCount": {"type": "integer"}, "occurences": {"type": "integer"}}, "required": ["pos", "translits", "meanings", "meaningsCount", "occurences"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "git": {"type": "string"}}, "required": ["name", "description", "homepage", "author", "version", "git"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "spin", "description" : "Simple spinner package for Meteor", "homepage" : "https://github.com/sachag/meteor-spin", "author" : "Sacha Greif", "version" : "0.2.0", "git" : "https://github.com/SachaG/meteor-spin.git"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "git": {"type": "string"}}, "required": ["name", "description", "homepage", "author", "version", "git"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"timezone": {"type": "string"}}, "required": ["timezone"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {"timezone" : "America/Indiana/Winamac"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[-86.46705627441406, 41.171119689941406], [-86.46770477294922, 41.08400344848633], [-86.4665298461914, 40.997344970703125], [-86.46717834472656, 40.909332275390625], [-86.57965850830078, 40.91203308105469], [-86.58269500732422, 40.91203308105469], [-86.58634948730469, 40.91202926635742], [-86.69579315185547, 40.912811279296875], [-86.6988296508789, 40.91280746459961], [-86.81375885009766, 40.913028717041016], [-86.92929077148438, 40.91360092163086], [-86.93041229248047, 40.998435974121094], [-86.93095397949219, 41.08599853515625], [-86.93087005615234, 41.17220687866211], [-86.81491088867188, 41.172550201416016], [-86.69895935058594, 41.17278289794922], [-86.60009002685547, 41.171993255615234], [-86.58238983154297, 41.17200469970703], [-86.547607421875, 41.17202377319336], [-86.49085235595703, 41.17157745361328], [-86.47620391845703, 41.17112350463867], [-86.46705627441406, 41.171119689941406]]]]}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"timezone": {"type": "string"}}, "required": ["timezone"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"axes": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "centroid": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "part_id": {"type": "integer"}, "scales": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["axes", "centroid", "part_id", "scales"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"axes" : [[0.9621400237083435, -0.2721976935863495, -0.01396222598850727], [-0.035799916833639145, -0.07542701065540314, -0.9965084791183472], [0.2701941728591919, 0.9592805504798889, -0.08231599628925323]], "centroid" : [[1.5382497310638428], [0.2744763195514679], [3.3838067054748535]], "part_id" : 0, "scales" : [[0.8599997758865356], [0.16999998688697815], [0.18000000715255737]]}
json_instruct
{"type": "object", "properties": {"axes": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "centroid": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "part_id": {"type": "integer"}, "scales": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["axes", "centroid", "part_id", "scales"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d319-76", "text" : "August 6, 1956\nMr, Seymour N, Siegel\nDirector, Radio Station WNYC\n2>00 Municipal Building\nNew York 7, New York\nDear Sy:\nI\u2019ve read the draft of the Appendix to the Prix Italia, for Television entries#\nI see no objections. But since I\u2019m leaving today for Alabama and won\u2019t be in\nmuch before about September 6, I\u2019ve made a couple of marginal notes and passed\non to Schooley, in case anything occurs to him, if he has more time than I do\ntoday. If so you\u2019ll hear from him direct.\nDetails! l) two iaillian(s) lire (p,l)\n2) I assume (p,2) only NAEB member ETV Stations could broadcast under\nArticle 6c?\nArticle 10 s Only NAEB is involved from the U* S, Right?\nI assume the Organization can distribute prize money (Article 19)\nas it sees fit.\nLooks carefully and fairly done. Hope we can hit it sometime.\nOur best,\n\\\nHJSidfc\nHarry J, Skoraia\nExecutive Director"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"powers": {"type": "array", "items": {"type": "string"}}, "icon": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "order": {"type": "integer"}, "impact": {"type": "integer"}}, "required": ["powers", "icon", "order", "impact"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"powers" : ["origins:fall_immunity", "origins:sprint_jump", "origins:velvet_paws", "origins:nine_lives", "origins:scare_creepers", "origins:cat_vision"], "icon" : {"item" : "minecraft:orange_wool"}, "order" : 0, "impact" : 2}
json_instruct
{"type": "object", "properties": {"powers": {"type": "array", "items": {"type": "string"}}, "icon": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "order": {"type": "integer"}, "impact": {"type": "integer"}}, "required": ["powers", "icon", "order", "impact"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "7210050", "regency_id" : "7210", "name" : "NOKILALAKI"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"op": {"type": "string"}, "path": {"type": "string"}, "value": {"type": "object", "properties": {"ValueType": {"type": "string"}}, "required": ["ValueType"]}}, "required": ["op", "path", "value"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"op" : "add", "path" : "/PropertyTypes/AWS::WAFv2::RuleGroup.RateBasedStatementOne/Properties/Limit/Value", "value" : {"ValueType" : "AWS::WAFv2::RuleGroup.Rate.Limit"}}, {"op" : "add", "path" : "/PropertyTypes/AWS::WAFv2::RuleGroup.RateBasedStatementTwo/Properties/Limit/Value", "value" : {"ValueType" : "AWS::WAFv2::RuleGroup.Rate.Limit"}}, {"op" : "add", "path" : "/PropertyTypes/AWS::WAFv2::WebACL.RateBasedStatementOne/Properties/Limit/Value", "value" : {"ValueType" : "AWS::WAFv2::RuleGroup.Rate.Limit"}}, {"op" : "add", "path" : "/PropertyTypes/AWS::WAFv2::WebACL.RateBasedStatementTwo/Properties/Limit/Value", "value" : {"ValueType" : "AWS::WAFv2::RuleGroup.Rate.Limit"}}, {"op" : "add", "path" : "/PropertyTypes/AWS::WAFv2::RuleGroup.RateBasedStatementOne/Properties/AggregateKeyType/Value", "value" : {"ValueType" : "AWS::WAFv2::RuleGroup.Rate.AggregateKeyType"}}, {"op" : "add", "path" : "/PropertyTypes/AWS::WAFv2::RuleGroup.RateBasedStatementTwo/Properties/AggregateKeyType/Value", "value" : {"ValueType" : "AWS::WAFv2::RuleGroup.Rate.AggregateKeyType"}}, {"op" : "add", "path" : "/PropertyTypes/AWS::WAFv2::WebACL.RateBasedStatementOne/Properties/AggregateKeyType/Value", "value" : {"ValueType" : "AWS::WAFv2::RuleGroup.Rate.AggregateKeyType"}}, {"op" : "add", "path" : "/PropertyTypes/AWS::WAFv2::WebACL.RateBasedStatementTwo/Properties/AggregateKeyType/Value", "value" : {"ValueType" : "AWS::WAFv2::RuleGroup.Rate.AggregateKeyType"}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"op": {"type": "string"}, "path": {"type": "string"}, "value": {"type": "object", "properties": {"ValueType": {"type": "string"}}, "required": ["ValueType"]}}, "required": ["op", "path", "value"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"accountLinkingWhitelistedDomains": {"type": "null"}, "asin": {"type": "string"}, "averageRating": {"type": "integer"}, "canDisable": {"type": "boolean"}, "capabilities": {"type": "null"}, "category": {"type": "null"}, "description": {"type": "string"}, "enablement": {"type": "null"}, "exampleInteractions": {"type": "array", "items": {"type": "string"}}, "firstReleaseDate": {"type": "number"}, "homepageLinkText": {"type": "null"}, "homepageLinkUrl": {"type": "null"}, "id": {"type": "string"}, "imageAltText": {"type": "string"}, "imageUrl": {"type": "string"}, "inAppPurchasingSupported": {"type": "boolean"}, "launchPhrase": {"type": "string"}, "name": {"type": "string"}, "numberOfReviews": {"type": "integer"}, "pamsPartnerId": {"type": "null"}, "permissions": {"type": "null"}, "privacyPolicyUrl": {"type": "null"}, "shortDescription": {"type": "string"}, "skillTypes": {"type": "null"}, "stage": {"type": "string"}, "termsOfUseUrl": {"type": "null"}, "vendorId": {"type": "string"}, "vendorName": {"type": "string"}}, "required": ["accountLinkingWhitelistedDomains", "asin", "averageRating", "canDisable", "capabilities", "category", "description", "enablement", "exampleInteractions", "firstReleaseDate", "homepageLinkText", "homepageLinkUrl", "id", "imageAltText", "imageUrl", "inAppPurchasingSupported", "launchPhrase", "name", "numberOfReviews", "pamsPartnerId", "permissions", "privacyPolicyUrl", "shortDescription", "skillTypes", "stage", "termsOfUseUrl", "vendorId", "vendorName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"accountLinkingWhitelistedDomains" : null, "asin" : "B01MDN73MR", "averageRating" : 4, "canDisable" : true, "capabilities" : null, "category" : null, "description" : "This skill gives you the top science posts from reddit's r/Futurology from the last 24 hours. You can ask for the latest post, or ask for the first to the fifth post. This content is user generated and may not be suitable for all ages. You can ask in the following ways:\n\n- Alexa, ask Futurology News for the first post\n- Alexa, ask Futurology News for the fifth post\n- Alexa, ask Futurology News for the recent post\n- Etc.\n\nThis content is user generated, and although it is heavily moderated, it may not be suitable for all ages.", "enablement" : null, "exampleInteractions" : ["Alexa, ask Futurology News for the latest post", "Alexa, ask Futurology News for the third post", "Alexa, ask Futurology News for the latest news"], "firstReleaseDate" : 1477080928.776, "homepageLinkText" : null, "homepageLinkUrl" : null, "id" : "amzn1.ask.skill.41156b09-678d-4f09-8b3f-1f23821ecc19", "imageAltText" : "Futurology News icon", "imageUrl" : "https://github.com/dale3h/alexa-skills-list/raw/master/skills/B01MDN73MR/skill_icon", "inAppPurchasingSupported" : false, "launchPhrase" : "futurology news", "name" : "Futurology News", "numberOfReviews" : 1, "pamsPartnerId" : null, "permissions" : null, "privacyPolicyUrl" : null, "shortDescription" : "View the latest posts in the Futurology subreddit", "skillTypes" : null, "stage" : "live", "termsOfUseUrl" : null, "vendorId" : "M2C5UNU58ZVOEN", "vendorName" : "Noah's Arc Development"}
json_instruct
{"type": "object", "properties": {"accountLinkingWhitelistedDomains": {"type": "null"}, "asin": {"type": "string"}, "averageRating": {"type": "integer"}, "canDisable": {"type": "boolean"}, "capabilities": {"type": "null"}, "category": {"type": "null"}, "description": {"type": "string"}, "enablement": {"type": "null"}, "exampleInteractions": {"type": "array", "items": {"type": "string"}}, "firstReleaseDate": {"type": "number"}, "homepageLinkText": {"type": "null"}, "homepageLinkUrl": {"type": "null"}, "id": {"type": "string"}, "imageAltText": {"type": "string"}, "imageUrl": {"type": "string"}, "inAppPurchasingSupported": {"type": "boolean"}, "launchPhrase": {"type": "string"}, "name": {"type": "string"}, "numberOfReviews": {"type": "integer"}, "pamsPartnerId": {"type": "null"}, "permissions": {"type": "null"}, "privacyPolicyUrl": {"type": "null"}, "shortDescription": {"type": "string"}, "skillTypes": {"type": "null"}, "stage": {"type": "string"}, "termsOfUseUrl": {"type": "null"}, "vendorId": {"type": "string"}, "vendorName": {"type": "string"}}, "required": ["accountLinkingWhitelistedDomains", "asin", "averageRating", "canDisable", "capabilities", "category", "description", "enablement", "exampleInteractions", "firstReleaseDate", "homepageLinkText", "homepageLinkUrl", "id", "imageAltText", "imageUrl", "inAppPurchasingSupported", "launchPhrase", "name", "numberOfReviews", "pamsPartnerId", "permissions", "privacyPolicyUrl", "shortDescription", "skillTypes", "stage", "termsOfUseUrl", "vendorId", "vendorName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"title": {"type": "string"}, "genre": {"type": "string"}, "creators": {"type": "array", "items": {"type": "string"}}, "cast": {"type": "array", "items": {}}, "country_of_origin": {"type": "string"}, "seasons": {"type": "integer"}, "episodes": {"type": "integer"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}}, "required": ["title", "genre", "creators", "cast", "country_of_origin", "seasons", "episodes", "start_date", "end_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Frontier", "genre" : "anthology series", "creators" : ["Morton S. Fine", "David Friedkin"], "cast" : [], "country_of_origin" : "United States", "seasons" : 1, "episodes" : 31, "start_date" : "Sun Sep 25 00:00:00 EDT 1955", "end_date" : "Sun Sep 09 00:00:00 EDT 1956"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "genre": {"type": "string"}, "creators": {"type": "array", "items": {"type": "string"}}, "cast": {"type": "array", "items": {}}, "country_of_origin": {"type": "string"}, "seasons": {"type": "integer"}, "episodes": {"type": "integer"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}}, "required": ["title", "genre", "creators", "cast", "country_of_origin", "seasons", "episodes", "start_date", "end_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"<page title>": {"type": "string"}, "audio formats": {"type": "string"}, "auto focus": {"type": "string"}, "camera resolution": {"type": "string"}, "digital zoom": {"type": "string"}, "focal length": {"type": "string"}, "image format": {"type": "string"}, "image stablizer": {"type": "string"}, "manual focus": {"type": "string"}, "video format": {"type": "string"}, "video resolution": {"type": "string"}, "white balancing": {"type": "string"}}, "required": ["<page title>", "audio formats", "auto focus", "camera resolution", "digital zoom", "focal length", "image format", "image stablizer", "manual focus", "video format", "video resolution", "white balancing"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"<page title>" : "Wespro DV540 Price In India, Bangalore, Hyderabad, Delhi, Chennai, Mumbai, Pune, Kolkatta", "audio formats" : "WAV", "auto focus" : "Yes", "camera resolution" : "5.0 MP", "digital zoom" : "4x", "focal length" : "9.3 mm", "image format" : "JPEG", "image stablizer" : "Yes", "manual focus" : "Yes", "video format" : "AVI", "video resolution" : "640 x 480 pixels", "white balancing" : "Auto, Daylight, Tungsten, Fluorescent, Cloudy"}
json_instruct
{"type": "object", "properties": {"<page title>": {"type": "string"}, "audio formats": {"type": "string"}, "auto focus": {"type": "string"}, "camera resolution": {"type": "string"}, "digital zoom": {"type": "string"}, "focal length": {"type": "string"}, "image format": {"type": "string"}, "image stablizer": {"type": "string"}, "manual focus": {"type": "string"}, "video format": {"type": "string"}, "video resolution": {"type": "string"}, "white balancing": {"type": "string"}}, "required": ["<page title>", "audio formats", "auto focus", "camera resolution", "digital zoom", "focal length", "image format", "image stablizer", "manual focus", "video format", "video resolution", "white balancing"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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" : "0x4b354bc1cedd5887a3d7206a1e0b1f1882c446e0", "tool" : "osiris", "start" : 1564595708.1339996, "end" : 1564595711.1790855, "duration" : 3.045085906982422, "analysis" : []}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}, "layer1": {"type": "string"}}, "required": ["layer0", "layer1"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "minecraft:item/generated", "textures" : {"layer0" : "wolfarmor:items/leather_wolf_armor", "layer1" : "wolfarmor:items/leather_wolf_armor_overlay"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}, "layer1": {"type": "string"}}, "required": ["layer0", "layer1"]}}, "required": ["parent", "textures"], "$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"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}}, "required": ["grunt", "grunt-contrib-jshint"]}, "dependencies": {"type": "object", "properties": {"bluebird": {"type": "string"}, "chai": {"type": "string"}, "lodash": {"type": "string"}, "mocha": {"type": "string"}, "mysql": {"type": "string"}, "sequelize": {"type": "string"}, "umzug": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["bluebird", "chai", "lodash", "mocha", "mysql", "sequelize", "umzug", "yargs"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "node-app-testing-helpers-for-sequelize", "version" : "0.0.1", "description" : "A set of helpers for testing Node JavaScript applications with Sequelize", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/barmatz/node-app-testing-helpers-for-sequelize.git"}, "author" : {"name" : "Or Barmatz", "email" : "[email protected]"}, "license" : "MIT", "bugs" : {"url" : "https://github.com/barmatz/node-app-testing-helpers-for-sequelize/issues"}, "homepage" : "https://github.com/barmatz/node-app-testing-helpers-for-sequelize#readme", "devDependencies" : {"grunt" : "^0.4.5", "grunt-contrib-jshint" : "^0.11.2"}, "dependencies" : {"bluebird" : "^2.9.27", "chai" : "^3.0.0", "lodash" : "^3.9.3", "mocha" : "^2.2.5", "mysql" : "^2.7.0", "sequelize" : "^3.1.1", "umzug" : "^1.6.0", "yargs" : "^3.10.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}}, "required": ["grunt", "grunt-contrib-jshint"]}, "dependencies": {"type": "object", "properties": {"bluebird": {"type": "string"}, "chai": {"type": "string"}, "lodash": {"type": "string"}, "mocha": {"type": "string"}, "mysql": {"type": "string"}, "sequelize": {"type": "string"}, "umzug": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["bluebird", "chai", "lodash", "mocha", "mysql", "sequelize", "umzug", "yargs"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$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"}, "description": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "author", "main", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Lichess-Keyboard-Input", "version" : "0.0.1.8", "description" : "Use your keyboard to play chess", "author" : "Sentero-esp12", "main" : "code.js", "scripts" : {"start" : "code.js"}, "dependencies" : {}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "author", "main", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["Place cooked bacon in a large stockpot over medium-high heat; add potatoes, chicken broth, carrots, onion, parsley, celery seed, salt, and pepper. Bring mixture to a boil, cover stockpot with a lid, reduce heat to medium-low, and simmer, stirring frequently and slightly mashing potatoes, until potatoes are fully cooked, at least 20 minutes. Add extra chicken broth if needed.", "Whisk milk and flour together in a bowl or measuring cup until frothy; slowly pour into soup while constantly stirring. Bring soup back to a simmer and cook until soup is thickened, 3 to 5 minutes.", "Remove soup from heat and stir in American cheese until completely melted. Ladle soup into serving bowls and garnish with green onions."], "ingredients" : ["6 slices cooked bacon, crumbled, or more to taste", "6 cups peeled and cubed potatoes", "4 cups chicken broth, or more as needed", "2 carrots, shredded", "1 yellow onion, chopped", "1 tablespoon dried parsley", "1/2 teaspoon celery seed", "salt and ground black pepper to taste", "2 cups milk", "1/4 cup all-purpose flour", "4 slices American cheese, cut into small pieces", "6 green onions, chopped (optional)"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Becca's Potato Bacon Soup", "url" : "http://allrecipes.com/recipe/235443/beccas-potato-bacon-soup/"}
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"n_dim" : 34, "n_trials" : 80, "objective" : "markowitz_analytic_on_cube", "white" : "ultraopt_etpe", "black" : "bobyqa_default", "traceback" : ["passing", "passing"], "best_val" : [7.78182178263644, 0.5375313955104619], "best_x" : [[0.0, 0.5393644734467866, 0.4496180147795268, 0.0, 1.0, 0.0, 0.6358585321041521, 0.0, 0.0, 0.0, 0.3923820495021423, 0.0, 0.0, 0.005560045000789188, 0.12490859084270925, 0.10730061700747989, 0.0, 0.3737044841728981, 0.0, 0.03420111883005615, 0.0, 0.037039154130936836, 1.0, 0.46091337795370124, 0.8354768146230795, 0.0, 1.0, 0.0, 0.17151729484545034, 0.0, 0.25557259143608024, 0.0, 0.6175425218783246, 1.0], [1.0, 0.1826963298031745, 0.0, 0.0, 0.001068477952751501, 0.0, 0.0, 0.0, 0.0006046712261859877, 0.0, 0.006538941049173084, 0.029155431207216517, 0.008938305384124701, 0.0, 0.0, 0.04612360591780411, 0.0, 0.0043595826690888476, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.01416174503942676, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.026782287137609925, 0.02258709827097223]], "feval_count" : [80, 80], "n_trials_instructed" : [80, 80], "passing" : [true, true], "completed" : true, "points" : 0.0, "winner" : "bobyqa_default_cube", "loser" : "ultraopt_etpe_cube"}
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "FN Five-seveN MK2 FDE Geh\u00e4use 5,7 x 28 Pistole", "ShortName" : "FN 5-7 FDE", "Description" : "Die FN Five-Seven, markenrechtlich gesch\u00fctzt als Five-seveN, ist eine halbautomatische Pistole entwickelt und hergestellt von FN Herstal in Belgien. Modell mit einem FDE Gestell."}
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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" : "1406081001", "district_id" : "1406081", "name" : "PANTAI RAJA"}
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#"}