Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add service-sires API - https://github.com/adewg/ICAR/issues/402 #405

Merged
merged 7 commits into from
Aug 24, 2023
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions url-schemes/exampleUrlScheme.json
Original file line number Diff line number Diff line change
Expand Up @@ -717,6 +717,38 @@
}
}
},
"/service-sires": {
"get": {
"operationId": "get-service-sires for a given id",

Check warning on line 722 in url-schemes/exampleUrlScheme.json

View workflow job for this annotation

GitHub Actions / Lint (push)

operation-operationId-valid-in-url

operationId must not characters that are invalid when used in URL.
erwinspeybroeck marked this conversation as resolved.
Show resolved Hide resolved
"summary": "Get the service sires matching your query parameters",
erwinspeybroeck marked this conversation as resolved.
Show resolved Hide resolved
"description": "# Purpose\nProvides the service sires\n",
erwinspeybroeck marked this conversation as resolved.
Show resolved Hide resolved
"tags": [
"ADE-1.3-registration"
],
"parameters": [{
"$ref": "#/components/parameters/identifier-scheme"
},
{
"$ref": "#/components/parameters/identifier-id"
}
],
"responses": {
"200": {
"description": "Successful. The response contains the service sires matching your query parameters",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/icarAnimalCoreCollection"
}
}
}
},
"default": {
"$ref": "#/components/responses/default"
}
}
}
},
"/locations/{location-scheme}/{location-id}/statistics": {
"get": {
"operationId": "get-statistics",
Expand Down
Loading