Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
beat
beat.core
Commits
20de5fde
Commit
20de5fde
authored
Apr 25, 2019
by
Jaden
Browse files
[schema] use "integer" to specify integer types
parent
837b8660
Pipeline
#30870
passed with stage
in 21 minutes and 50 seconds
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
beat/core/schema/common/1.json
View file @
20de5fde
...
...
@@ -90,8 +90,7 @@
},
"version"
:
{
"type"
:
"number"
,
"multipleOf"
:
1.0
,
"type"
:
"integer"
,
"minimum"
:
1.0
}
...
...
beat/core/schema/execution/1.json
View file @
20de5fde
...
...
@@ -109,9 +109,8 @@
"oneOf"
:
[
{
"type"
:
"null"
},
{
"type"
:
"number"
,
"multipleOf"
:
1.0
,
"minimum"
:
0.0
"type"
:
"integer"
,
"minimum"
:
0
}
]
},
...
...
beat/core/schema/statistics/1.json
View file @
20de5fde
...
...
@@ -75,14 +75,12 @@
},
"memory_in_bytes"
:
{
"type"
:
"number"
,
"multipleOf"
:
1.0
,
"type"
:
"integer"
,
"minimum"
:
0
},
"counter"
:
{
"type"
:
"number"
,
"multipleOf"
:
1.0
,
"type"
:
"integer"
,
"minimum"
:
0
},
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment