Skip to content

Commit

Permalink
docs(clearly-defined): Add (links to) rate limit documentation
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Schuberth <sebastian@doubleopen.org>
  • Loading branch information
sschuberth committed Nov 14, 2024
1 parent 2b7f063 commit aee88f2
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ interface ClearlyDefinedService {
*/
enum class Server(val apiUrl: String, val webUrl: String? = null, val projectUrl: String? = null) {
/**
* The production server.
* The production server. Endpoints are rate limited (e.g. "/curations" to 250 requests per minute), see
* https://docs.clearlydefined.io/docs/get-involved/using-data#production-instance-rate-limits
*/
PRODUCTION(
"https://api.clearlydefined.io",
Expand All @@ -103,7 +104,8 @@ interface ClearlyDefinedService {
),

/**
* The development server.
* The development server. Endpoints are rate limited (e.g. "/curations" to 250 requests per minute), see
* https://docs.clearlydefined.io/docs/get-involved/using-data#development-instance-rate-limits.
*/
DEVELOPMENT(
"https://dev-api.clearlydefined.io",
Expand Down

0 comments on commit aee88f2

Please sign in to comment.