P

Professional Search Guide.

Don't hunt for equipment. Discover it. Pharos utilizes a professional, attribute-first search protocol that lets you find the exact equipment you need in milliseconds.

01 // The Basic Query

You can search for equipment by simply typing the manufacturer or model directly into the CLI.

$ pkd manufacturer=hobart

02 // Physical Properties

Narrow your search by including electrical or physical requirements. Pharos ensures that your results match the site's infrastructure.

$ pkd manufacturer=vulcan voltage=208 phase=3

03 // Wildcard Cheat Sheet

* (Asterisk)

Zero or more characters

"ho*" finds Hobart and Honeywell.

+ (Plus)

One or more characters

"3+m" finds 30m but not 3m.

? (Question)

Exactly one character

"3?m" finds 30m and 3am.

[set] (Brackets)

One character from a set

"t[ao]nk" finds tank and tonk.

04 // Return Clause

Control what information is displayed. Use the return keyword to specify exactly which fields you want to see.

$ pkd manufacturer=3m return name model voltage

Full Technical Specification: search-specification.md