In the current project where I'm working on, we had a discussion about the language (English or Spanish) we should use to describe pathnames, fields, payloads, Etc.
I thought this was an easy topic, however, I couldn't find an accurate source where is described that English should be the standard for describing Webservice's components.
For example, assume we have a Rest API very simple with CRUD for creating Users
English
POST
/v1/users
GET
/v1/users/{uid}
DELETE
/v1/users/{uid}
PUT
/v1/users/{uid}
Spanish
POST
/v1/usuarios
GET
/v1/usuarios/{uid}
DELETE
/v1/usuarios/{uid}
PUT
/v1/usuarios/{uid}
I think this is not a problem, however, I want to understand if I need to follow a standard or if it doesn't matter which language I use for describing Webservice's components.
Probably, this is a primarily opinion-based question, if you think it is, please just address me with a comment.