25 lines
454 B
JSON
25 lines
454 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "Project import stats",
|
|
"type": "object",
|
|
"properties": {
|
|
"fetched": {
|
|
"type": "object",
|
|
"patternProperties": {
|
|
".*": {
|
|
"type": "integer"
|
|
}
|
|
}
|
|
},
|
|
"imported": {
|
|
"type": "object",
|
|
"patternProperties": {
|
|
".*": {
|
|
"type": "integer"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|