1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-13 13:48:59 +02:00

Deprecate properties of the application schema that we don't use.

This commit is contained in:
Thomas Heartman 2025-07-15 11:59:31 +02:00
parent 7910aa9130
commit 5e6fd733bf

View File

@ -6,13 +6,16 @@ export const createApplicationSchema = {
description: 'Reported application information from Unleash SDKs',
properties: {
appName: {
description: 'Name of the application',
deprecated: true,
description:
'Deprecated: Name of the application. This property is ignored. The app name is taken from the URL instead.',
type: 'string',
example: 'accounting',
},
sdkVersion: {
deprecated: true,
description:
'Which SDK and version the application reporting uses. Typically represented as `<identifier>:<version>`',
'Deprecated: Which SDK and version the application reporting uses. Typically represented as `<identifier>:<version>`. This is not used in the client_applications db table.',
type: 'string',
example: 'unleash-client-java:8.0.0',
},