spec.yaml
1 documentationUrl: https://docsurl.com 2 connectionSpecification: 3 $schema: http://json-schema.org/draft-07/schema# 4 title: Bitcoin Explorer Spec 5 type: object 6 required: 7 - wallets 8 additionalProperties: true 9 properties: 10 wallets: 11 title: Wallets 12 description: "List of wallet to scan" 13 type: array 14 items: 15 type: object 16 properties: 17 address: 18 title: Address 19 type: string 20 description: Address of the wallet 21 name: 22 title: Name 23 type: string 24 description: Name of the wallet 25 tags: 26 type: array 27 description: List of tags linked to the wallet 28 items: 29 type: string 30 backfill: 31 title: Backfill 32 type: boolean 33 description: If True then the entire history will be fetched. If False only yesterday's prices will be fetched