blob: 63b0c610fb1b4ea1cdbd16a9d5dbc07fbfd3e240 [file] [log] [blame]
{
"description": "A BANJO library",
"type": "object",
"allOf": [
{
"$ref": "common.json#/definitions/sdk_element"
},
{
"properties": {
"type": {
"allOf": [
{
"$ref": "common.json#/definitions/type"
},
{
"enum": [
"banjo_library"
]
}
]
},
"name": {
"description": "Name of the library",
"$ref": "common.json#/definitions/banjo_library_name"
},
"root": {
"description": "The root of the element in the SDK",
"type": "string"
},
"sources": {
"description": "List of library sources",
"type": "array",
"items": {
"$ref": "common.json#/definitions/file"
}
},
"deps": {
"description": "List of libraries this library depends on",
"type": "array",
"items": {
"$ref": "common.json#/definitions/banjo_library_name"
}
}
},
"required": [
"deps",
"root",
"sources",
"name",
"type"
],
"additionalProperties": false
}
]
}