json.schema.entity.applications.configuration.private.external.collateAIAppPrivateConfig.json Maven / Gradle / Ivy
{
"$id": "https://open-metadata.org/schema/entity/applications/configuration/private/external/collateAIAppConfig.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "CollateAIAppPrivateConfig",
"description": "PRivate Configuration for the CollateAI External Application.",
"type": "object",
"javaType": "org.openmetadata.schema.entity.app.external.CollateAIAppPrivateConfig",
"definitions": {
"collateAILimits": {
"description": "Limits for the CollateAI Application.",
"type": "object",
"javaType": "org.openmetadata.schema.entity.app.external.collateAI.CollateAILimits",
"properties": {
"descriptions": {
"description": "Maximum number of descriptions generated by the CollateAI",
"type": "integer"
},
"queries": {
"description": "Maximum number of queries generated by CollateAI.",
"type": "integer"
},
"billingCycleStart": {
"description": "Start of the billing cycle.",
"$ref": "../../../../../type/basic.json#/definitions/date"
}
}
}
},
"properties": {
"waiiInstance": {
"title": "WAII Instance",
"description": "WAII API host URL",
"type": "string",
"format": "URI",
"default": "https://tweakit.waii.ai/api/"
},
"collateURL": {
"title": "Collate URL",
"description": "Collate Server public URL. WAII will use this information to interact with the server. E.g., https://sandbox.getcollate.io",
"type": "string",
"format": "URI"
},
"token": {
"title": "WAII API Token",
"description": "WAII API Token",
"type": "string",
"format": "password"
},
"limits": {
"title": "Limits",
"description": "Limits for the CollateAI Application.",
"$ref": "#/definitions/collateAILimits"
}
},
"additionalProperties": false,
"required": ["waiiInstance", "collateURL", "token", "limits"]
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy