Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GMP doc: add missing elements to OVERALL in GET_AGGREGATES #2238

Merged
merged 2 commits into from
Jul 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 46 additions & 20 deletions src/schema_formats/XML/GMP.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -8107,35 +8107,61 @@ END:VCALENDAR
<summary>Aggregate data for all resources of the selected type</summary>
<pattern>
<e>count</e>
<e>min</e>
<e>max</e>
<e>mean</e>
<e>sum</e>
<e>c_count</e>
<any><e>stats</e></any>
</pattern>
<ele>
<name>count</name>
<summary>Overall number of resources</summary>
<pattern><t>integer</t></pattern>
</ele>
<ele>
<name>min</name>
<summary>Overall minimum value of the data column</summary>
<pattern><t>text</t></pattern>
</ele>
<ele>
<name>max</name>
<summary>Overall maximum value of the data column</summary>
<pattern><t>text</t></pattern>
</ele>
<ele>
<name>mean</name>
<summary>Overall arithmetic mean of the numeric values of the data</summary>
<pattern><t>text</t></pattern>
<name>c_count</name>
<summary>Cumulative number of resources</summary>
<description>For overall this is always the same as count.</description>
<pattern><t>integer</t></pattern>
</ele>
<ele>
<name>sum</name>
<summary>Overall sum of the numeric values of the data column</summary>
<pattern><t>text</t></pattern>
<name>stats</name>
<summary>Statistics of a data column</summary>
<pattern>
<attrib>
<name>column</name>
<summary>Name of the column the stats apply to</summary>
<type>text</type>
</attrib>
<e>min</e>
<e>max</e>
<e>mean</e>
<e>sum</e>
<e>c_sum</e>
</pattern>
<ele>
<name>min</name>
<summary>Overall minimum value of the data column</summary>
<pattern><t>text</t></pattern>
</ele>
<ele>
<name>max</name>
<summary>Overall maximum value of the data column</summary>
<pattern><t>text</t></pattern>
</ele>
<ele>
<name>mean</name>
<summary>Overall arithmetic mean of the numeric values of the data</summary>
<pattern><t>text</t></pattern>
</ele>
<ele>
<name>sum</name>
<summary>Overall sum of the numeric values of the data column</summary>
<pattern><t>text</t></pattern>
</ele>
<ele>
<name>c_sum</name>
<summary>Cumulative sum of the numeric values of the data column</summary>
<description>For overall this is always the same as sum.</description>
<pattern><t>text</t></pattern>
</ele>
</ele>
</ele>
<ele>
Expand Down
Loading