You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use multiple schemas. and one base schema for shared definitions. mainly containing simple types.
What did you expect to happen
expected
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "/BaseTypes",
"title": "Base Types",
"definitions": {
"changeOfValue": {
"type": "number",
"minimum": 0,
"title": "Change Of Value offset",
"description": "Offset between old and new value needed before the new value is sent"
}
}
to output something like
## changeOfValue
Offset between old and new value needed before the new value is sent
`changeOfValue`- is optional
- Type: `number` ([Change Of Value offset](base-types-definitions-change-of-value-offset.md))
- cannot be null
- defined in: [Ping](base-types-definitions-change-of-value-offset.md"/DataCollector/PingModule#/properties/properties/properties/defaults/properties/changeOfValue")### changeOfValue Type`number` ([Change Of Value offset](base-types-definitions-change-of-value-offset.md))
### changeOfValue Constraints**minimum**: the value of this number must greater than or equal to: `0`
What happened
got output
# Base Types Definitions## Definitions group changeOfValue
Reference this group by using
`` `json
{"$ref":"/BaseTypes#/definitions/changeOfValue"}
`` `
| Property | Type | Required | Nullable | Defined by || :------- | ---- | -------- | -------- | :--------- |
It goes oke if the type within the definition is an Object
The text was updated successfully, but these errors were encountered:
What did you do
We use multiple schemas. and one base schema for shared definitions. mainly containing simple types.
What did you expect to happen
expected
to output something like
What happened
got output
It goes oke if the type within the definition is an Object
The text was updated successfully, but these errors were encountered: