Mit BuiltWith erstellte Datensatzfelder und Schema

Beschreibungen der in den BuiltWith-Datensätzen enthaltenen Felder in einfacher Sprache, mit dem technischen Parquet-Schema.

Felder in einfacher Sprache
FeldgruppeFelderWas es Ihnen sagt
WebseiteDomain, FirstIndexed, LastIndexedDie Wurzeldomäne und der Zeitraum, in dem BuiltWith sie beobachtet hat.
TechnologiegeschichteTechs, Name, FirstDetected, LastDetected, PathAuf der Website gefundene Technologien, wann sie erstmals und zuletzt erkannt wurden und, sofern verfügbar, der beobachtete Pfad.
UnternehmenCompanyName, Employees, VerticalVerfügbare Informationen zu Firmenidentität, Mitarbeiterzahl und Branchenklassifizierung.
StandortCountry, City, State, ZipVerfügbare Website- oder Firmenstandortsignale. Das Land verwendet zweistellige ISO-Codes.
Kommerzielle KostenvoranschlägeSpend, Revenue, SkuGeschätzte Technologieausgaben, Unternehmensumsatz und Anzahl der E-Commerce-Produkte, sofern verfügbar.
RanglistenPageRank, BwsRank, MajesticRank, UmbrellaRank, TrancoRankVerfügbare Traffic-, Autoritäts- und Popularitätsrankingsignale.
Kontakt und sozialeTelephones, SocialUrls, FollowersGeschäftliche Telefonnummern und öffentliche Social-Media-Links, die im Kontext einer Webseite gefunden wurden.
Technisches Parkettschema

Das untenstehende Schema ist direkt für Ingenieure zur Überprüfung von Feldnamen und Datentypen vorgesehen.

message data {
required binary Domain (UTF8);
optional binary Country (UTF8);
optional double Spend;
optional double Revenue;
optional int32 PageRank;
optional int32 BwsRank;
optional int32 MajesticRank;
optional int32 UmbrellaRank;
optional int32 TrancoRank;
optional int32 Employees;
optional binary Vertical (UTF8);
optional int32 Followers;
optional int32 Sku;
optional binary CompanyName (UTF8);
optional group Telephones (LIST) {
repeated group list {
optional binary element (UTF8);
}
}
optional group SocialUrls (LIST) {
repeated group list {
optional binary element (UTF8);
}
}
optional binary City (UTF8);
optional binary State (UTF8);
optional binary Zip (UTF8);
optional int96 FirstIndexed (TIMESTAMP_MILLIS);
optional int96 LastIndexed (TIMESTAMP_MILLIS);
optional group Techs (LIST) {
repeated group list {
optional group element {
optional binary Name (UTF8);
optional int96 FirstDetected (TIMESTAMP_MILLIS);
optional int96 LastDetected (TIMESTAMP_MILLIS);
optional binary Path (UTF8);
}
}
}
}