Era.Common.DataDefinition.Repository.Package

Description

Repository installation package identification.

Properties

Name JsonSchemaType Description
package_app_id string Package ppplication ID, as read from the repository.
package_description string Description of the package (only used for displaying).
package_lang string Package language, as read from the repository.
package_name string Display name of the package (only used for displaying).
package_os string Package application operating system, as read from the repository.
package_os_systems string Operating system of the package (only used for displaying).
package_platform string Package platform, as read from the repository.
package_version string Package application version, as read from the repository.

Dual message (request/response)

No dual message.

Referenced in messages

Era.Common.DataDefinition.Locations.CompanySetupInstallerConfiguration
Era.Common.DataDefinition.Repository.BundleInstallerConfig
Era.Common.NetworkMessage.ConsoleApi.Repository.RpcApplicationVersionCheckRequest
Era.Common.NetworkMessage.ConsoleApi.Repository.RpcApplicationVersionCheckResponse

JsonSchema

{
    "title": "Era.Common.DataDefinition.Repository.Package",
    "type": "object",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "required": [
        "Era.Common.DataDefinition.Repository.Package"
    ],
    "properties": {
        "Era.Common.DataDefinition.Repository.Package": {
            "$ref": "#/definitions/Package"
        }
    },
    "definitions": {
        "Package": {
            "additionalProperties": false,
            "type": "object",
            "properties": {
                "package_app_id": {
                    "maxLength": 1024,
                    "type": "string"
                },
                "package_description": {
                    "maxLength": 1024,
                    "type": "string"
                },
                "package_lang": {
                    "maxLength": 1024,
                    "type": "string"
                },
                "package_name": {
                    "maxLength": 1024,
                    "type": "string"
                },
                "package_os": {
                    "maxLength": 1024,
                    "type": "string"
                },
                "package_os_systems": {
                    "maxLength": 1024,
                    "type": "string"
                },
                "package_platform": {
                    "maxLength": 1024,
                    "type": "string"
                },
                "package_version": {
                    "maxLength": 1024,
                    "type": "string"
                }
            }
        }
    }
}