IDN "Get Source Schema by ID" API

Hello, I’ve been troubleshooting an issue with an IDN source. I would like to supply support with the schema for entitlements, accounts, and roles. When I used the GET source schema by ID API in any collection, I was receiving a syntactical error.

If I use the documentation to reproduce the error in a CURL command, I get the same error.

If I update the CURL command to remove the colons from the <schemaID> and <sourceID> sections of the URI, I get the desired result.

Fails:
curl -L -X GET 'https://<tenant>.api.identitynow.com/v3/sources/:<sourceId>/schemas/:<schemaId>'
Works:
curl -L -X GET 'https://<tenant>.api.identitynow.com/v3/sources/<sourceId>/schemas/<schemaId>'

I have what I need, but I thought I would report the behavior.