forked from Toaztr/specs
-
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.
feat: adds simulations endpoints to plans-parameters feat: lists all proper OAuth scopes fix: renames rental_investment endpoint to pinel fix: factorizes various structures
- Loading branch information
Showing
37 changed files
with
830 additions
and
1,137 deletions.
There are no files selected for viewing
Empty file.
Empty file.
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 |
---|---|---|
@@ -1,32 +1,25 @@ | ||
{ | ||
"title": "BudgetSimulation", | ||
"description": "Réponse d'un calcul de budget.", | ||
"allOf": [ | ||
{ | ||
"$ref": "./SimulationMetadata.v1.json" | ||
}, | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"type": { | ||
"type": "string", | ||
"default": "BUDGET", | ||
"description": "Type de simulation.", | ||
"enum": [ | ||
"BUDGET" | ||
] | ||
}, | ||
"parameters": { | ||
"$ref": "./BudgetParameters.v1.json" | ||
}, | ||
"results": { | ||
"$ref": "./BudgetResults.v1.json" | ||
} | ||
}, | ||
"required": [ | ||
"type", | ||
"parameters" | ||
"type": "object", | ||
"properties": { | ||
"type": { | ||
"type": "string", | ||
"default": "BUDGET", | ||
"description": "Type de simulation.", | ||
"enum": [ | ||
"BUDGET" | ||
] | ||
}, | ||
"parameters": { | ||
"$ref": "./BudgetParameters.v1.json" | ||
}, | ||
"results": { | ||
"$ref": "./BudgetResults.v1.json" | ||
} | ||
}, | ||
"required": [ | ||
"type", | ||
"parameters" | ||
] | ||
} |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
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 |
---|---|---|
@@ -1,32 +1,25 @@ | ||
{ | ||
"title": "DebtConsolidationSimulation", | ||
"description": "Réponse d'un rachat ou regroupement de crédits.", | ||
"allOf": [ | ||
{ | ||
"$ref": "./SimulationMetadata.v1.json" | ||
}, | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"type": { | ||
"type": "string", | ||
"default": "DEBT_CONSOLIDATION", | ||
"description": "Type de simulation.", | ||
"enum": [ | ||
"DEBT_CONSOLIDATION" | ||
] | ||
}, | ||
"parameters": { | ||
"$ref": "./DebtConsolidationParameters.v1.json" | ||
}, | ||
"results": { | ||
"$ref": "./DebtConsolidationResults.v1.json" | ||
} | ||
}, | ||
"required": [ | ||
"type", | ||
"parameters" | ||
"type": "object", | ||
"properties": { | ||
"type": { | ||
"type": "string", | ||
"default": "DEBT_CONSOLIDATION", | ||
"description": "Type de simulation.", | ||
"enum": [ | ||
"DEBT_CONSOLIDATION" | ||
] | ||
}, | ||
"parameters": { | ||
"$ref": "./DebtConsolidationParameters.v1.json" | ||
}, | ||
"results": { | ||
"$ref": "./DebtConsolidationResults.v1.json" | ||
} | ||
}, | ||
"required": [ | ||
"type", | ||
"parameters" | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
Empty file.
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 |
---|---|---|
@@ -1,32 +1,25 @@ | ||
{ | ||
"title": "FundingSimulation", | ||
"description": "Réponse d'un calcul de financement.", | ||
"allOf": [ | ||
{ | ||
"$ref": "./SimulationMetadata.v1.json" | ||
}, | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"type": { | ||
"type": "string", | ||
"default": "FUNDING", | ||
"description": "Type de simulation.", | ||
"enum": [ | ||
"FUNDING" | ||
] | ||
}, | ||
"parameters": { | ||
"$ref": "./FundingParameters.v1.json" | ||
}, | ||
"results": { | ||
"$ref": "./FundingResults.v1.json" | ||
} | ||
}, | ||
"required": [ | ||
"type", | ||
"parameters" | ||
"type": "object", | ||
"properties": { | ||
"type": { | ||
"type": "string", | ||
"default": "FUNDING", | ||
"description": "Type de simulation.", | ||
"enum": [ | ||
"FUNDING" | ||
] | ||
}, | ||
"parameters": { | ||
"$ref": "./FundingParameters.v1.json" | ||
}, | ||
"results": { | ||
"$ref": "./FundingResults.v1.json" | ||
} | ||
}, | ||
"required": [ | ||
"type", | ||
"parameters" | ||
] | ||
} |
Empty file.
Empty file.
Empty file.
Empty file.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.