javiercasares / hosting-directory

The JSON Schema and tools for the WordPress Hosting Directory
GNU General Public License v2.0
1 stars 0 forks source link

Some Ideas on Hosting Provider Information #2

Open marcarmengou opened 1 month ago

marcarmengou commented 1 month ago

Some ideas about the information that could be displayed about the hosts in the future WordPress hosting provider directory:

at-benni commented 1 month ago

The backup duration isn't always a straightforward single number of days. Consider a scenario where you have daily backups for the past 7 days, followed by 4 weekly backups, and then 4 monthly backups. You'd have a backup that dates back 5 months. How do you quantify this backup schedule with just an integer?

marcarmengou commented 1 month ago

"Standardizing" information can be one of the frictions in some specific aspects such as this.

There are vendors that use a number of days, while others use "daily" or "weekly" copies. Some do not say what total number of copies they store, nor for how long, while others do.

Perhaps in this case it would be more convenient:

Backups

Where to draw the line on granularity of information? Do you have any better ideas about this?

at-benni commented 1 month ago

I think something like this would fit:

{
  "backups": [
    {"daily": 7},
    {"weekly": 4},
    {"monthly": 4}
  ]
}

another example

{
  "backups": [
    {"daily": 14}
  ]
}