mirror of
https://github.com/SpaceTradersAPI/api-docs.git
synced 2024-11-14 22:30:51 +01:00
add exchange property to market
This commit is contained in:
parent
d6ebdd8c14
commit
be7f82878e
@ -10,26 +10,21 @@
|
||||
"type": "array",
|
||||
"description": "The list of goods that are exported from this market.",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"symbol": {
|
||||
"type": "string",
|
||||
"description": "The symbol of the good."
|
||||
}
|
||||
}
|
||||
"$ref": "./TradeGood.json"
|
||||
}
|
||||
},
|
||||
"imports": {
|
||||
"type": "array",
|
||||
"description": "The list of goods that are sought as imports in this market.",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"symbol": {
|
||||
"type": "string",
|
||||
"description": "The symbol of the good."
|
||||
}
|
||||
"$ref": "./TradeGood.json"
|
||||
}
|
||||
},
|
||||
"exchange": {
|
||||
"type": "array",
|
||||
"description": "The list of goods that are bought and sold between agents at this market.",
|
||||
"items": {
|
||||
"$ref": "./TradeGood.json"
|
||||
}
|
||||
},
|
||||
"transactions": {
|
||||
@ -50,6 +45,7 @@
|
||||
"required": [
|
||||
"symbol",
|
||||
"exports",
|
||||
"imports"
|
||||
"imports",
|
||||
"exchange"
|
||||
]
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"type": "object",
|
||||
"attributes": {
|
||||
"properties": {
|
||||
"symbol": {
|
||||
"$ref": "./TradeSymbol.json"
|
||||
},
|
||||
@ -9,11 +9,11 @@
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"symbol",
|
||||
"name",
|
||||
"description"
|
||||
]
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user