INPUT_OBJECT

LPCOInput

Represents Licenses, Permits, Certificates or Other (LPCO) issued by PGA and other government entities

link GraphQL Schema definition

  • input LPCOInput {
  • # Identifies the number assigned to the LPCO
  • number: String
  • # Indicates the reason for exemption from LPCO. See Appendix PGA for valid codes
  • exemptionCode: LPCOExemptionCode
  • # Identifies the quantity from the LPCO. Four decimal places are implied.
  • quantity: Float
  • # Identifies the date of the LPCO in MMDDCCYY (month, day, century, year) format.
  • # This date is either an expiration date, effective date, date issued or signed,
  • # or date application received.
  • date: Date
  • # Identifies the location of the issuer of the LPCO.
  • country: CountryCode
  • # Identifies the entity that issued the LPCO.
  • issuer: String
  • # Identifies the foreign country location of the foreign government issuer of the
  • # LPCO.
  • issuerLocation: CountryCode
  • # Free form regional description of the location within a country, of the agency
  • # issuing the LPCO.
  • regionDescription: String
  • }