"""
ServiceTier type represents the service tier associated with a Vendor.
This type contains information about the vendor's service tier configuration
including UUID, name, and display name.
Data is fetched from the ows-account endpoint '/vendors/service_tier/dataloader'.
"""
type ServiceTier @shareable {
    """
    Display name of the service tier
    """
    displayName: String!

    """
    Name of the service tier
    """
    name: String!

    """
    Unique identifier for the service tier
    """
    uuid: ID!
}
