diff --git a/url-schemes/exampleUrlScheme.json b/url-schemes/exampleUrlScheme.json index 6e37583..4136249 100644 --- a/url-schemes/exampleUrlScheme.json +++ b/url-schemes/exampleUrlScheme.json @@ -717,6 +717,38 @@ } } }, + "/service-sires": { + "get": { + "operationId": "get-service-sires", + "summary": "Get the service sires matching your query parameters - for now we only implement the query by some identifier, like lifetime number, ai-code, ... ", + "description": "# Purpose\nProvides the service sires.\nOnly animal fields relevant to service sires will be populated (location is not expected, for example).", + "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",