Properties
| Name | Type | Description |
|---|---|---|
| identity | array | |
| name | string | Library name |
| sourcePath | string | Path to the library archive |
| targets | array | |
| deploymentOrder | integer | |
| links | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LibDeployment",
"title": "LibDeployment",
"type": "object",
"properties": {
"identity": {
"type": "array",
"items": {
"type": "string"
}
},
"name": {
"type": "string",
"description": "Library name"
},
"sourcePath": {
"type": "string",
"description": "Path to the library archive"
},
"targets": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Identity"
}
},
"deploymentOrder": {
"type": "integer"
},
"links": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Link"
}
}
}
}