OBJECT

ProviderType

link GraphQL Schema definition

  • type ProviderType implements Node {
  • id: ID!
  • # Name of the provider type
  • name: String!
  • code: String
  • # The type of credit this provider type is associated with, e.g., 'AMA PRA
  • # Category 1 Creditâ„¢'
  • creditType: String
  • # Should we prefer this type of user signup with NPI?
  • preferredArchetype: ProviderTypePreferredArchetype!
  • # Additional codes for the provider type
  • additionalCodes: [String!]
  • # Is this provider type featured?
  • featured: Boolean!
  • # Is this provider type active? By default queries only return active provider
  • # types.
  • active: Boolean!
  • # Sort order for the provider type
  • sortOrder: Int!
  • certifyingBoards: [CertifyingBoard!]
  • licenseRequirements: [LicenseRequirement!]
  • licenses: [LicenseHistory!]
  • articleFeeds: [ArticleFeed!]
  • }