generated from ghga-de/microservice-repository-template
-
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.
- Loading branch information
Showing
19 changed files
with
500 additions
and
204 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
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
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -128,15 +128,15 @@ components: | |
facetable_fields: | ||
default: [] | ||
description: A list of the facetable fields for the resource type (leave | ||
empty to not use faceting) | ||
empty to not use faceting, use dotted notation for nested fields) | ||
items: | ||
$ref: '#/components/schemas/FieldLabel' | ||
title: Facetable Fields | ||
type: array | ||
selected_fields: | ||
default: [] | ||
description: A list of the returned fields for the resource type (leave | ||
empty to return all) | ||
empty to return all, use dotted notation for nested fields) | ||
items: | ||
$ref: '#/components/schemas/FieldLabel' | ||
title: Selected Fields | ||
|
@@ -177,6 +177,7 @@ components: | |
info: | ||
contact: | ||
email: [email protected] | ||
name: German Human Genome Phenome Archive (GHGA) | ||
license: | ||
name: Apache 2.0 | ||
summary: A service for searching metadata artifacts and filtering results. | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
"items": [ | ||
{ | ||
"eats": [ | ||
"bananas" | ||
], | ||
"id_": "1", | ||
"name": "Jack", | ||
"species": "monkey" | ||
}, | ||
{ | ||
"eats": [ | ||
"dog food", | ||
"treats" | ||
], | ||
"id_": "2", | ||
"name": "Bruiser", | ||
"species": "dog" | ||
}, | ||
{ | ||
"eats": [ | ||
"spaghetti", | ||
"meatballs" | ||
], | ||
"id_": "3", | ||
"name": "Lady", | ||
"species": "dog" | ||
}, | ||
{ | ||
"eats": [ | ||
"fish", | ||
"lasagna", | ||
"meatballs", | ||
"spaghetti", | ||
"treats" | ||
], | ||
"id_": "4", | ||
"name": "Garfield", | ||
"species": "cat" | ||
}, | ||
{ | ||
"eats": [ | ||
"fish", | ||
"shrimp" | ||
], | ||
"id_": "5", | ||
"name": "Flipper", | ||
"species": "dolphin" | ||
} | ||
] | ||
} |
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
Oops, something went wrong.