{"id":13567333,"url":"https://github.com/jsonsystems/json-schema","last_synced_at":"2025-04-04T01:31:47.546Z","repository":{"id":217323887,"uuid":"118183079","full_name":"jsonsystems/json-schema","owner":"jsonsystems","description":"JSONSchema.Net Public Repository","archived":true,"fork":false,"pushed_at":"2022-04-28T17:30:15.000Z","size":2292,"stargazers_count":665,"open_issues_count":0,"forks_count":64,"subscribers_count":21,"default_branch":"master","last_synced_at":"2024-05-19T13:15:52.739Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jsonsystems.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-01-19T21:59:15.000Z","updated_at":"2024-06-28T09:07:28.333Z","dependencies_parsed_at":null,"dependency_job_id":"7aa9ce4e-30d2-425f-ba83-99daa9fd596d","html_url":"https://github.com/jsonsystems/json-schema","commit_stats":null,"previous_names":["jsonsystems/json-schema"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsonsystems%2Fjson-schema","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsonsystems%2Fjson-schema/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsonsystems%2Fjson-schema/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsonsystems%2Fjson-schema/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jsonsystems","download_url":"https://codeload.github.com/jsonsystems/json-schema/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247107816,"owners_count":20884793,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T13:02:28.703Z","updated_at":"2025-04-04T01:31:42.533Z","avatar_url":"https://github.com/jsonsystems.png","language":null,"funding_links":[],"categories":["HarmonyOS","Others","Misc"],"sub_categories":["Windows Manager"],"readme":"# Repo Archived\nPlease use https://github.com/jsonsystems/public\n\n\n\n\n# Welcome to JSONschema.Net\n\n[![Hex.pm](https://img.shields.io/hexpm/l/plug.svg)]()\n\n1.  [Contact](#contact)\n2.  [What is JSONSchema.Net?](#what-is-jsonschemanet)\n3.  [Who uses JSONSchema.Net?](#who-uses-jsonschemanet)\n4.  [What is JSONSchema.Net’s goal?](#what-is-jsonschemanets-goal)\n5.  [How can your organization benefit from using JSONSchema.Net?](#how-can-your-organization-benefit-from-using-jsonschemanet)\n6.  [Specifications](#specifications)\n7.  [About](#about)\n8.  [Cookie Policy](#cookie-policy)\n9.  [Privacy Policy](#privacy-policy)\n\n### Contact\n\n- Email: info@jsonschema.net\n\n### What is JSONSchema.Net?\n\n[JSONSchema.Net](https://www.jsonschema.net) is a web application that generates JSON schema from JSON. JSON Schema is generated according to\nthe [JSON Schema Validation: A Vocabulary for Structural Validation of JSON](http://json-schema.org/latest/json-schema-validation.html).\n\n### Who uses JSONSchema.Net?\n\nAnyone wishing to generate JSON schema from JSON. Typical users are web developers and mobile app developers. Some educational institutions also use [JSONSchema.Net](https://www.jsonschema.net) to teach JSON Schema and the core options defined by [JSON Schema Validation](http://json-schema.org/latest/json-schema-validation.html).\n\n### What is JSONSchema.Net’s goal?\n\nJSON Schema is great, but can be verbose. For example, a single empty JSON object, `{}`, can be described by:\n\n```\n{\n  \"$schema\": \"http://json-schema.org/draft-04/schema#\",\n  \"additionalProperties\": true,\n  \"definitions\": {},\n  \"id\": \"http://example.com/example.json\",\n  \"properties\": {\n    \"description\": \"This accepts anything, as long as it's valid JSON.\",\n    \"title\": \"Empty Object\"\n  },\n  \"type\": [\n    \"object\",\n    \"null\"\n  ]\n}\n```\n\nEven schemas for small APIs can quickly become hundreds of lines long. Writing schemas by hand is tedious and time consuming, and often impractical. JSONSchema.Net makes schema generation quick and painless.\n\n### How can your organization benefit from using JSONSchema.Net?\n\n[JSONSchema.Net](https://www.jsonschema.net) can save you and anyone on your team a lot of time. If your software uses JSON, it's good practice to validate any (JSON) data it receives, against a schema.\n\n### Specifications\n\nJSON Schema specificaiton is split into three parts\n\n1.  Core - The basic foundation of JSON Schema.\n2.  Validation - The validation keywords of JSON Schema.\n3.  Hyper-Schema - The hyper-media keywords of JSON Schema.\n\nJSONSchema.Net follows the Validation part of the overall specification. [json-schema.org/specification.html](http://json-schema.org/specification.html) is a good place to learning more.\n\nVersioning of JSON Schema specifications can be confusing. [json-schema.org](http://json-schema.org) maintains a helpful list of [specification-links](http://json-schema.org/specification-links.html). In reverse chronological order:\n\n- Latest Snapshot (work in progress)\n- Draft 7\n- Draft 6\n- Draft 5\n- Draft 4\n- Draft 3\n- Drafts 0/1/2\n\nEach version updates (to varying degrees) the three parts of JSON Schema specification: Core, Validation, and Hyper-Schema.\n\n### About\n\nCreated by Jack Wootton. Copyright 2017. Apache Licensed.\n\n### Cookie Policy\nOur cookie policy can be read at [cookies.md](https://github.com/jsonsystems/json-schema/blob/master/cookies.md)\n\n### Privacy Policy\nOur privacy policy can be read at [privacy.md](https://github.com/jsonsystems/json-schema/blob/master/privacy.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjsonsystems%2Fjson-schema","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjsonsystems%2Fjson-schema","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjsonsystems%2Fjson-schema/lists"}