Created
March 18, 2020 02:23
-
-
Save michelealbano/c7ef72864f8e4241e8478ab996a5a510 to your computer and use it in GitHub Desktop.
problems with arrays in form for C client generation
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
openapi: 3.0.0 | |
info: | |
title: Skycoin REST API. | |
version: 0.25.1 | |
paths: | |
/api/v1/wallet/transaction: | |
post: | |
description: Creates a signed transaction | |
operationId: walletTransaction | |
requestBody: | |
content: | |
application/x-www-form-urlencoded: | |
schema: | |
properties: | |
to: | |
items: | |
properties: | |
address: | |
type: string | |
type: array | |
required: true | |
responses: | |
"200": | |
description: Returns blocks between a start and end point. | |
servers: | |
- url: http://127.0.0.1:6420/ | |
- url: https://127.0.0.1:6420/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment