Hello Ellen.
Create service only creates entity in DB, it doesn't do anything else.
If you want to check one or many columns on their uniqueness, then you need before each calling create service invoke FIND(query) service with where parameter , where you can check input value
1) Add query service to the page
2) add js to where parameter
3) on success event for query service add js
if (data.length == 0) {
createService.execute({});
}
Code above will check if result is 0 , thus entity with such name wasn't found, this means you can call your create service.
Don't forget to write real name of your service on the page
Note:
createService.execute({}); - this line will invoke your create service with mapping