dymmerufc / web-dymmer-backend

Web dymmer backend
Other
0 stars 2 forks source link

Quality Measure JSON Structure #9

Open rgllima opened 5 years ago

rgllima commented 5 years ago

Suggest of JSON structure for supported quality measures on DyMMer

{
   _id: "Object Id",
   name: "Feature Model Name",
   initials: "Acronym of the measure",
   description: "Short description about feature model",
   computation: "Formula used to calculate the measure",
   author: "Creator"
}

Thus, standardized measures can be persisted in the database and retrieved when necessary. Decreases the coupling between the frontend and the backend.

publiosilva commented 5 years ago
{
   _id: "Object Id",
   file: "measureFile",
   name: "Measure Name",
   initials: "Acronym of the measure",
   description: "Short description about measure",
   computation: "Formula used to calculate the measure",
   author: "Creator"
}