forked from stellar/stellar-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Documenting Account Responses stellar#2
- Loading branch information
1 parent
18227da
commit e64a461
Showing
6 changed files
with
113 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
components: | ||
schemas: | ||
Links: | ||
type: object | ||
properties: | ||
_links: | ||
type: object | ||
properties: | ||
self: | ||
$ref: '../instance_variables.yml#/components/schemas/link' | ||
next: | ||
$ref: '../instance_variables.yml#/components/schemas/link' | ||
prev: | ||
$ref: '../instance_variables.yml#/components/schemas/link' | ||
required: | ||
- self | ||
- next | ||
- prev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Sept 19: I have not determined how the links schema works in OpenApo | ||
# yet, therefore I am not sure the links will stay in this format. | ||
components: | ||
schemas: | ||
TransactionLink: | ||
properties: | ||
self: | ||
$ref: '../instance_variables.yml#/components/schemas/link' | ||
account: | ||
$ref: '../instance_variables.yml#/components/schemas/link' | ||
ledger: | ||
$ref: '../instance_variables.yml#/components/schemas/link' | ||
operations: | ||
$ref: '../instance_variables.yml#/components/schemas/link' | ||
effects: | ||
$ref: '../instance_variables.yml#/components/schemas/link' | ||
precedes: | ||
$ref: '../instance_variables.yml#/components/schemas/link' | ||
succeeds: | ||
$ref: '../instance_variables.yml#/components/schemas/link' | ||
transaction: | ||
$ref: '../instance_variables.yml#/components/schemas/link' | ||
required: | ||
- self | ||
- account | ||
- ledger | ||
- operations | ||
- effects | ||
- precedes | ||
- succeeds | ||
- transaction |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters