Type Alias GeoscapeAddressElement

GeoscapeAddressElement: {
    autocompleteAttributes?: string[];
    defaultValue?: GeoscapeAddress;
    placeholderValue?: string;
    stateTerritoryFilter?: StatesAndTerritories[];
    type: "geoscapeAddress";
} & LookupFormElement & FormElementRequired & FormElementReadOnly

An element to allow the user to choose an address from the Geoscape service.

The element must have an id property that contains a universally unique identifier (UUID). The identifier must be a Version 4 (V4) UUID and must conform to the formatting requirements defined in this RFC 9562 specification: https://www.rfc-editor.org/rfc/rfc9562.html

Type declaration

  • OptionalautocompleteAttributes?: string[]

    Custom autocomplete attributes that will be added to the element during rendering

  • OptionaldefaultValue?: GeoscapeAddress
  • OptionalplaceholderValue?: string
  • OptionalstateTerritoryFilter?: StatesAndTerritories[]
  • type: "geoscapeAddress"