2019-12-04 20:38:33 +05:30
|
|
|
{
|
|
|
|
"type": "object",
|
|
|
|
"required": [
|
|
|
|
"project_id",
|
|
|
|
"https_only",
|
|
|
|
"access_control",
|
|
|
|
"source",
|
|
|
|
"prefix"
|
|
|
|
],
|
|
|
|
"properties": {
|
2023-06-20 00:43:36 +05:30
|
|
|
"project_id": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"https_only": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"access_control": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"source": {
|
|
|
|
"type": "object",
|
|
|
|
"required": [
|
|
|
|
"type",
|
|
|
|
"path"
|
|
|
|
],
|
|
|
|
"properties": {
|
|
|
|
"type": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": [
|
|
|
|
"file",
|
|
|
|
"zip"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"path": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"global_id": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"sha256": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"file_size": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"file_count": {
|
|
|
|
"type": [
|
|
|
|
"integer",
|
|
|
|
"null"
|
|
|
|
]
|
|
|
|
}
|
2019-12-04 20:38:33 +05:30
|
|
|
},
|
|
|
|
"additionalProperties": false
|
|
|
|
},
|
2023-06-20 00:43:36 +05:30
|
|
|
"prefix": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"unique_host": {
|
|
|
|
"type": [
|
|
|
|
"string",
|
|
|
|
"null"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"root_directory": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
2019-12-04 20:38:33 +05:30
|
|
|
},
|
|
|
|
"additionalProperties": false
|
|
|
|
}
|