diff options
| author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-22 21:41:35 -0800 | 
|---|---|---|
| committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-22 21:50:29 -0800 | 
| commit | 09475b87821142c5cd36c6b90fb97deb2a058312 (patch) | |
| tree | 2f57b9623a8f8938e8d13b4441e8861b19e6e533 /rust/fatcat-api-spec/api | |
| parent | 83d5c49f5093b1820b625e1b3a1e21fc7242f79e (diff) | |
| download | fatcat-09475b87821142c5cd36c6b90fb97deb2a058312.tar.gz fatcat-09475b87821142c5cd36c6b90fb97deb2a058312.zip  | |
allow passing description+extra to batch endpoints
Pretty messy, but I needed some way to do this.
In particular, requires json.dumps() in python code, for now. Blech.
Diffstat (limited to 'rust/fatcat-api-spec/api')
| -rw-r--r-- | rust/fatcat-api-spec/api/swagger.yaml | 84 | 
1 files changed, 84 insertions, 0 deletions
diff --git a/rust/fatcat-api-spec/api/swagger.yaml b/rust/fatcat-api-spec/api/swagger.yaml index ca5c8838..927bb941 100644 --- a/rust/fatcat-api-spec/api/swagger.yaml +++ b/rust/fatcat-api-spec/api/swagger.yaml @@ -135,6 +135,18 @@ paths:          type: "string"          formatString: "{:?}"          example: "Some(\"editgroup_id_example\".to_string())" +      - name: "description" +        in: "query" +        required: false +        type: "string" +        formatString: "{:?}" +        example: "Some(\"description_example\".to_string())" +      - name: "extra" +        in: "query" +        required: false +        type: "string" +        formatString: "{:?}" +        example: "Some(\"extra_example\".to_string())"        - in: "body"          name: "entity_list"          required: true @@ -981,6 +993,18 @@ paths:          type: "string"          formatString: "{:?}"          example: "Some(\"editgroup_id_example\".to_string())" +      - name: "description" +        in: "query" +        required: false +        type: "string" +        formatString: "{:?}" +        example: "Some(\"description_example\".to_string())" +      - name: "extra" +        in: "query" +        required: false +        type: "string" +        formatString: "{:?}" +        example: "Some(\"extra_example\".to_string())"        - in: "body"          name: "entity_list"          required: true @@ -1891,6 +1915,18 @@ paths:          type: "string"          formatString: "{:?}"          example: "Some(\"editgroup_id_example\".to_string())" +      - name: "description" +        in: "query" +        required: false +        type: "string" +        formatString: "{:?}" +        example: "Some(\"description_example\".to_string())" +      - name: "extra" +        in: "query" +        required: false +        type: "string" +        formatString: "{:?}" +        example: "Some(\"extra_example\".to_string())"        - in: "body"          name: "entity_list"          required: true @@ -2750,6 +2786,18 @@ paths:          type: "string"          formatString: "{:?}"          example: "Some(\"editgroup_id_example\".to_string())" +      - name: "description" +        in: "query" +        required: false +        type: "string" +        formatString: "{:?}" +        example: "Some(\"description_example\".to_string())" +      - name: "extra" +        in: "query" +        required: false +        type: "string" +        formatString: "{:?}" +        example: "Some(\"extra_example\".to_string())"        - in: "body"          name: "entity_list"          required: true @@ -3519,6 +3567,18 @@ paths:          type: "string"          formatString: "{:?}"          example: "Some(\"editgroup_id_example\".to_string())" +      - name: "description" +        in: "query" +        required: false +        type: "string" +        formatString: "{:?}" +        example: "Some(\"description_example\".to_string())" +      - name: "extra" +        in: "query" +        required: false +        type: "string" +        formatString: "{:?}" +        example: "Some(\"extra_example\".to_string())"        - in: "body"          name: "entity_list"          required: true @@ -4288,6 +4348,18 @@ paths:          type: "string"          formatString: "{:?}"          example: "Some(\"editgroup_id_example\".to_string())" +      - name: "description" +        in: "query" +        required: false +        type: "string" +        formatString: "{:?}" +        example: "Some(\"description_example\".to_string())" +      - name: "extra" +        in: "query" +        required: false +        type: "string" +        formatString: "{:?}" +        example: "Some(\"extra_example\".to_string())"        - in: "body"          name: "entity_list"          required: true @@ -5360,6 +5432,18 @@ paths:          type: "string"          formatString: "{:?}"          example: "Some(\"editgroup_id_example\".to_string())" +      - name: "description" +        in: "query" +        required: false +        type: "string" +        formatString: "{:?}" +        example: "Some(\"description_example\".to_string())" +      - name: "extra" +        in: "query" +        required: false +        type: "string" +        formatString: "{:?}" +        example: "Some(\"extra_example\".to_string())"        - in: "body"          name: "entity_list"          required: true  | 
