blob: 25581b328306a0e0e15532e20aa97df8e48d0bcb [file] [log] [blame]
{
"description": "A FIDL library",
"type": "object",
"allOf": [
{
"$ref": "common.json#/definitions/sdk_element"
},
{
"properties": {
"type": {
"allOf": [
{
"$ref": "common.json#/definitions/type"
},
{
"enum": [
"fidl_library"
]
}
]
},
"name": {
"description": "Name of the library",
"$ref": "common.json#/definitions/fidl_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/fidl_library_name"
}
}
},
"required": [
"deps",
"root",
"sources",
"name",
"type"
],
"additionalProperties": false
}
]
}