ServiceType

ServiceType
ServiceType

Class describing the type of a service. A service is a logical feature unit. One service may have multiple instances or several services. A service is identified by it service type. Services of the same service type should have identical features. A ServiceType (the combination of productId+typeId) should be globally unique. Product Id is used to identify a product. Type Id is used to identify a service type.

JSON Example
{
    "productId": "string",
    "serviceTypeId": "string",
    "typeId": "string",
    "serviceName": "string"
}
string
productId
Optional

The product ID of the service. The product ID can be used to group related services by organization. We recommend the use of Java package-style names to ensure uniqueness

string
serviceTypeId
Optional

The id of the serviceType should be generated based on productId and typeId.

string
typeId
Optional

The type ID of the service.We recommend the use of Java package-style names to ensure uniqueness.

string
serviceName
Optional

The name of the service type.

Property Of