12 lines
302 B
Plaintext
12 lines
302 B
Plaintext
|
|
{
|
||
|
|
"$schema" = "http://json-schema.org/draft-07/schema#",
|
||
|
|
title = "built-artifact",
|
||
|
|
type = "object",
|
||
|
|
required = ["path", "crate_name", "ok"],
|
||
|
|
properties = {
|
||
|
|
path = { type = "string" },
|
||
|
|
crate_name = { type = "string" },
|
||
|
|
ok = { type = "boolean" },
|
||
|
|
},
|
||
|
|
}
|