@nju33/json-schema
Version:
[](https://www.npmjs.com/package/@nju33/json-schema)
24 lines (23 loc) • 447 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema",
"title": "JSON schema for .circleci/config.yml",
"definitions": {
"default": {
"type": "object",
"properties": {
"only": {
"type": "array",
"items": {
"type": "string"
}
},
"ignore": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}