schemars/docs/_includes/examples/remote_derive.schema.json
2024-05-13 18:33:55 +01:00

43 lines
764 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Process",
"type": "object",
"properties": {
"command_line": {
"type": "string"
},
"durations": {
"type": "array",
"items": {
"$ref": "#/definitions/Duration"
}
},
"wall_time": {
"$ref": "#/definitions/Duration"
}
},
"required": [
"command_line",
"wall_time",
"durations"
],
"definitions": {
"Duration": {
"type": "object",
"properties": {
"nanos": {
"type": "integer",
"format": "int32"
},
"secs": {
"type": "integer",
"format": "int64"
}
},
"required": [
"secs",
"nanos"
]
}
}
}