mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
chore: Add new schemas (no-changelog) (#13215)
This commit is contained in:
135
packages/nodes-base/nodes/Clockify/__schema__/v1.0.0/project/get.json
vendored
Normal file
135
packages/nodes-base/nodes/Clockify/__schema__/v1.0.0/project/get.json
vendored
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"clientId": {
|
||||
"type": "string"
|
||||
},
|
||||
"workspaceId": {
|
||||
"type": "string"
|
||||
},
|
||||
"billable": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"memberships": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"userId": {
|
||||
"type": "string"
|
||||
},
|
||||
"costRate": {
|
||||
"type": "null"
|
||||
},
|
||||
"targetId": {
|
||||
"type": "string"
|
||||
},
|
||||
"membershipType": {
|
||||
"type": "string"
|
||||
},
|
||||
"membershipStatus": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"userId",
|
||||
"hourlyRate",
|
||||
"costRate",
|
||||
"targetId",
|
||||
"membershipType",
|
||||
"membershipStatus"
|
||||
]
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"estimate": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"estimate": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"estimate",
|
||||
"type"
|
||||
]
|
||||
},
|
||||
"archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"duration": {
|
||||
"type": "string"
|
||||
},
|
||||
"clientName": {
|
||||
"type": "string"
|
||||
},
|
||||
"note": {
|
||||
"type": "string"
|
||||
},
|
||||
"costRate": {
|
||||
"type": "null"
|
||||
},
|
||||
"timeEstimate": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"estimate": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"active": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"includeNonBillable": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"estimate",
|
||||
"type",
|
||||
"resetOption",
|
||||
"active",
|
||||
"includeNonBillable"
|
||||
]
|
||||
},
|
||||
"template": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"public": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"hourlyRate",
|
||||
"clientId",
|
||||
"workspaceId",
|
||||
"billable",
|
||||
"memberships",
|
||||
"color",
|
||||
"estimate",
|
||||
"archived",
|
||||
"duration",
|
||||
"clientName",
|
||||
"note",
|
||||
"costRate",
|
||||
"timeEstimate",
|
||||
"budgetEstimate",
|
||||
"estimateReset",
|
||||
"template",
|
||||
"public"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user