Attribution-Entitäten werden in Feeds verwendet, um die vollständige Zuordnung der Datenquellen zu ermöglichen. Siehe auch DataSource.
Elemente
In der folgenden Tabelle sind die Elemente für Attribution aufgeführt:
| Element | Multiplizität | Typ | Beschreibung |
|---|---|---|---|
DataSourceId |
1 | IDREF |
Die objectId eines DataSource-Objekts. |
Attribution |
0 oder mehr | Attribution |
Bietet eine verkettete Attribution für Daten, die aus mehreren Quellen zusammengeführt wurden. |
Beispiele
XML
<!-- Represents "According to ABC via Issuer" --> <Attribution> <DataSourceId>issuer</DataSourceId> <Attribution><DataSourceId>abc</DataSourceId></Attribution> </Attribution> <!-- Represents "According to ABC & XYZ via Issuer" --> <Attribution> <DataSourceId>issuer</DataSourceId> <Attribution><DataSourceId>abc</DataSourceId></Attribution> <Attribution><DataSourceId>xyz</DataSourceId></Attribution> </Attribution>
JSON
"ResultsReportingStage": [ { "Attribution": { "DataSourceId": "issuer", "Attribution": [ { "DataSourceId": "abc" } ] } }, { "StageType": "official", "Attribution": { "DataSourceId": "issuer", "Attribution": [ { "DataSourceId": "abc" }, { "DataSourceId": "xyz" } ] } } ]