# INSERT_SERVICE_NAME_HERE

## Description
*A brief narrative description of the microservice / application. What, in general
does it do?*

## Endpoints
*What endpoints does this service expose to clients? Look in handlers.py*

| endpoint | method | description |
|----------|--------|-------------|
| health   | GET    | monitor for health |

## Data
*What kind of data does this application store, and how?*

| database | type(s) of data     | engine  | shared? | notes |
|----------|---------------------|---------|---------|--------|
| art_relations | financial, pii, etc | mysql | yes | this is a big db |


## Service dependencies
*What internal services does this service use? Look in constans/service_name.py*

| service | uses |
|--------------------|---------|
| ows-something | looking up somethings |

### Language
*What is the primary implementation language of this service (e.g. PHP, Python, or Javascript)?*

### Frameworks
*What third-party frameworks does this service use? Check out requirements.txt*

### Common Failures
*Look at failures in Sentry for guidance?*

-----

## Questions:

* What are categories of "types of data"
* What counts as a framework? Do versions matter?
* Should service dependencies include endpoints used?

### Goals

This document should cover:
* Description of the microservice
* Programming language and framework
* Function of the service
	* What types of tasks it handles
	* What types of data processing it performs
* What type of data does this service store?
* How is data for this service stored?
	* Shared or dedicated storage?
