From cc3ad3a3eb838d924f6b7ed7034f41e41cdf8c96 Mon Sep 17 00:00:00 2001 From: Adam Voss Date: Mon, 8 May 2017 10:04:21 -0500 Subject: [PATCH] Move section from docs to examples This addresses the ambiguity of whether these are blessed schemas or example schemas. --- documentation.md | 12 ------------ examples.md | 11 +++++++++++ 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/documentation.md b/documentation.md index 354b0c25..26beca65 100644 --- a/documentation.md +++ b/documentation.md @@ -27,15 +27,3 @@ The latest meta-schema is draft-06. | [Core/Validation Meta-Schema](http://json-schema.org/schema) | Used for schemas written for pure validation. | | [Hyper Meta-Schema](http://json-schema.org/hyper-schema) | Used for schemas written for validation and hyper-linking. | -Standard schemas ----------------- - -These sample schemas describe simple data structures which can be expressed as JSON: - -|-----------------------------------------------------|---------------------------------------------------------------------------------| -| [Geographic Coordinate](http://json-schema.org/geo) | a location as longitude and latitude | -| [Card](http://json-schema.org/card) | a microformat-style representation of a person, company, organization, or place | -| [Calendar](http://json-schema.org/calendar) | a microformat-style representation of an event | -| [Address](http://json-schema.org/address) | a microformat-style representation of a street address | - - diff --git a/examples.md b/examples.md index 86ce80fb..633e45fe 100644 --- a/examples.md +++ b/examples.md @@ -28,6 +28,17 @@ Here is a basic example of a JSON Schema: } ``` +Example schemas +--------------- + +These sample schemas describe simple data structures which can be expressed as JSON: + +|-----------------------------------------------------|---------------------------------------------------------------------------------| +| [Geographic Coordinate](http://json-schema.org/geo) | a location as longitude and latitude | +| [Card](http://json-schema.org/card) | a microformat-style representation of a person, company, organization, or place | +| [Calendar](http://json-schema.org/calendar) | a microformat-style representation of an event | +| [Address](http://json-schema.org/address) | a microformat-style representation of a street address | + Walkthroughs ------------