Commit c2b365fd authored by Jérome Perrin's avatar Jérome Perrin

give a name to property list

parent 419476dc
...@@ -249,6 +249,7 @@ def overloaded_property(prop, overload): ...@@ -249,6 +249,7 @@ def overloaded_property(prop, overload):
# complex schemas (Dream.PropertyList) # complex schemas (Dream.PropertyList)
schema["processingTime"] = { schema["processingTime"] = {
"id": "processingTime", "id": "processingTime",
"name": "Processing Time",
"property_list": [ "property_list": [
schema["distributionType"], schema["distributionType"],
overloaded_property(schema["mean"], {"_default": 0.75}), overloaded_property(schema["mean"], {"_default": 0.75}),
...@@ -261,6 +262,7 @@ schema["processingTime"] = { ...@@ -261,6 +262,7 @@ schema["processingTime"] = {
schema["interarrivalTime"] = { schema["interarrivalTime"] = {
"id": "interarrivalTime", "id": "interarrivalTime",
"name": "Interarrival Time",
"property_list": [ "property_list": [
schema["distributionType"], schema["distributionType"],
schema["mean"], schema["mean"],
...@@ -274,6 +276,7 @@ schema["interarrivalTime"] = { ...@@ -274,6 +276,7 @@ schema["interarrivalTime"] = {
schema["failures"] = { schema["failures"] = {
"id": "failures", "id": "failures",
"name": "Failures",
"property_list": [ "property_list": [
schema["failureDistribution"], schema["failureDistribution"],
schema["MTTF"], schema["MTTF"],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment