blob: 0a47835443140d24f99f43374a8dbb8b9b6169dd [file] [log] [blame]
{
"description": "A BANJO library",
"type": "object",
"allOf": [
{
"$ref": "common.json#/definitions/sdk_element"
},
{
"properties": {
"type": {
"description": "Marker for this type of element",
"type": "string",
"enum": [
"banjo_library"
]
},
"name": {
"description": "Name of the library",
"$ref": "common.json#/definitions/banjo_library_name"
},
"sources": {
"description": "List of library sources",
"type": "array",
"items": {
"$ref": "common.json#/definitions/file"
}
}
},
"required": [
"name",
"sources",
"type"
]
}
]
}