I am currently developing a fitness utility application and have reached the point where I need to populate it with a real data-set.
After quite a lot of research I found that there were literally no companies that allow their data-sets to be used openly. Now, although this is understandable I don't exactly understand how they can copyright their data when it comes to things like a fitness exercise.
For example, if we take a record from bodybuilding.com like:
{
name: "Barbell bench press",
type: "strength",
main_muscle: "chest",
other_muscles: ["shoulders", "triceps"],
equipment: "Barbell",
mechanics_type: "Compound",
level: "Beginner"
sport: "No"
force: "Push",
reputation: 9.2,
description: "Lie back on a flat bench. Using a medium width grip (a grip that creates
a 90-degree angle in the middle of the movement between the forearms
and the upper arms), lift the bar from the rack and hold it straight over
you with your arms locked.
........
........
When you are done, place the bar back in the rack."
}
How can this data be copyrighted if just recreating it would yield the same result, given that the values are not ambiguous/subjective?
The only thing I feel could be copyrighted is the sequence of words (phrasing) in the description – please correct me if I am wrong.
If this is the case: Would it be legal for someone to use the exact same data-set, rephrasing the words in the description? and, for example, replacing beginner with amateur?
Edit 1:
Except from the description and the reputation, all the other fields, and the data structure in itself are completely standardized. The exercise names are not thought of as so by the author of the data-set, they are standardized; the same is true for equipment names, force, level, etc. (again, excluding description and reputation field). So if one were to remove the description and reputation field, could it still be thought of a copyright infringement. Being that everything else is not subjective or does not require creativity to add?