schemars/schemars/tests/expected/remote_derive.json
Graham Esau 5ddd44a9e5 Regenerate all test expected outputs
Properties are now in a different order due to the preserve_order feature flag
2020-09-24 20:47:46 +01:00

55 lines
No EOL
968 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Process",
"type": "object",
"required": [
"command_line",
"wall_time"
],
"properties": {
"command_line": {
"type": "string"
},
"wall_time": {
"$ref": "#/definitions/Duration"
},
"user_cpu_time": {
"default": {
"nanos": 0,
"secs": 0
},
"allOf": [
{
"$ref": "#/definitions/Duration"
}
]
},
"system_cpu_time": {
"default": "0.000000000s",
"allOf": [
{
"$ref": "#/definitions/Duration"
}
]
}
},
"definitions": {
"Duration": {
"type": "object",
"required": [
"nanos",
"secs"
],
"properties": {
"secs": {
"type": "integer",
"format": "int64"
},
"nanos": {
"type": "integer",
"format": "int32"
}
}
}
}
}