forked from opengeospatial/ogcapi-records
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from opengeospatial/master
Sync from master.
- Loading branch information
Showing
22 changed files
with
164 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
core/*.html | ||
core/*.pdf | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
"type": "string" | ||
}, | ||
{ | ||
"queryable": "externalid", | ||
"queryable": "externalId", | ||
"type": "string" | ||
}, | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,23 @@ | ||
[ | ||
{ | ||
"id": "id", | ||
"title": "Record Identifier", | ||
"description": "A unique record identifier assigned by the server.", | ||
"language": "en" | ||
}, | ||
{ | ||
"id": "updated", | ||
"title": "Updated", | ||
"description": "The more recent date on which the resource was changed.", | ||
"language": "en" | ||
}, | ||
{ | ||
"id": "extent", | ||
"title": "Spatio-Temporal Extent", | ||
"description": "The spatio-temporal coverage of the resource.", | ||
"language": "en" | ||
{ | ||
"$schema": "https://json-schema.org/draft/2019-09/schema", | ||
"$id": "https://data.example.com/collections/abc/sortables", | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"title": "Record Identifier", | ||
"description": "A unique record identifier assigned by the server.", | ||
"type": "string" | ||
}, | ||
"updated": { | ||
"title": "Updated", | ||
"description": "The more recent date on which the resource was changed.", | ||
"type": "string", | ||
"format": "date" | ||
}, | ||
"extent": { | ||
"title": "Spatio-Temporal Extent", | ||
"description": "The spatio-temporal coverage of the resource.", | ||
"type": "object" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
type: object | ||
required: | ||
- sortables | ||
properties: | ||
sortables: | ||
type: array | ||
items: | ||
$ref: ../schemas/sortable.yaml | ||
title: Sortables | ||
description: Describes the properties that can be used to sort the results | ||
additionalProperties: | ||
$ref: 'https://raw.githubusercontent.com/OAI/OpenAPI-Specification/master/schemas/v3.0/schema.json#/definitions/Schema' |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
core/standard/recommendations/sorting/REC_sortables-schema.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[[rec_sorting_sortables-schema]] | ||
[width="90%",cols="2,6a"] | ||
|=== | ||
^|*Recommendation {counter:rec-id}* |*/rec/sorting/sortables-schema* | ||
^|A |Each property SHOULD have a human readable title (`title`) and where | ||
necessary a description (`description`). | ||
^|B |Each property SHOULD have a single type (`type`). | ||
|=== |
Oops, something went wrong.