Skip to content
Snippets Groups Projects
Commit 02f9a588 authored by Lars Trieloff's avatar Lars Trieloff
Browse files

[trivial] fix schema name

parent 5413e41e
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* [Abstract](./abstract.schema.md)`https://example.com/schemas/abstract` * [Abstract](./abstract.schema.md)`https://example.com/schemas/abstract`
* [Arrays](./arrays.schema.md)`https://example.com/schemas/arrays` * [Arrays](./arrays.schema.md)`https://example.com/schemas/arrays`
* [Enumerated ](./complex.schema.md)`https://example.com/schemas/complex` * [Complex References ](./complex.schema.md)`https://example.com/schemas/complex`
* [Constant Types](./constants.schema.md)`https://example.com/schemas/constants` * [Constant Types](./constants.schema.md)`https://example.com/schemas/constants`
* [Custom](./custom.schema.md)`https://example.com/schemas/custom` * [Custom](./custom.schema.md)`https://example.com/schemas/custom`
* [Deeply Extending](./deepextending.schema.md)`https://example.com/schemas/deepextending` * [Deeply Extending](./deepextending.schema.md)`https://example.com/schemas/deepextending`
......
...@@ -3,7 +3,7 @@ template: reference ...@@ -3,7 +3,7 @@ template: reference
foo: bar foo: bar
--- ---
# Enumerated Schema # Complex References Schema
``` ```
https://example.com/schemas/complex https://example.com/schemas/complex
...@@ -17,16 +17,16 @@ This is an example schema that uses types defined in other schemas. ...@@ -17,16 +17,16 @@ This is an example schema that uses types defined in other schemas.
## Schema Hierarchy ## Schema Hierarchy
* Enumerated `https://example.com/schemas/complex` * Complex References `https://example.com/schemas/complex`
* [Abstract](abstract.schema.md) `https://example.com/schemas/abstract` * [Abstract](abstract.schema.md) `https://example.com/schemas/abstract`
* [Simple](simple.schema.md) `https://example.com/schemas/simple` * [Simple](simple.schema.md) `https://example.com/schemas/simple`
# Enumerated Properties # Complex References Properties
| Property | Type | Required | Defined by | | Property | Type | Required | Defined by |
|----------|------|----------|------------| |----------|------|----------|------------|
| [refabstract](#refabstract) | complex | **Required** | Enumerated (this schema) | | [refabstract](#refabstract) | complex | **Required** | Complex References (this schema) |
| [refnamed](#refnamed) | complex | Optional | Enumerated (this schema) | | [refnamed](#refnamed) | complex | Optional | Complex References (this schema) |
## refabstract ## refabstract
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
], ],
"$schema": "http://json-schema.org/draft-06/schema#", "$schema": "http://json-schema.org/draft-06/schema#",
"$id": "https://example.com/schemas/complex", "$id": "https://example.com/schemas/complex",
"title": "Enumerated ", "title": "Complex References ",
"type": "object", "type": "object",
"description": "This is an example schema that uses types defined in other schemas.", "description": "This is an example schema that uses types defined in other schemas.",
"properties": { "properties": {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment