diff options
Diffstat (limited to 'rust/fatcat-api/api')
| -rw-r--r-- | rust/fatcat-api/api/swagger.yaml | 80 | 
1 files changed, 80 insertions, 0 deletions
| diff --git a/rust/fatcat-api/api/swagger.yaml b/rust/fatcat-api/api/swagger.yaml index e8026c8d..0b1ca88a 100644 --- a/rust/fatcat-api/api/swagger.yaml +++ b/rust/fatcat-api/api/swagger.yaml @@ -76,6 +76,22 @@ paths:      post:        operationId: "create_container_batch"        parameters: +      - name: "autoaccept" +        in: "query" +        description: "If true, and editor is authorized, batch is accepted all at\ +          \ once" +        required: false +        type: "boolean" +        formatString: "{:?}" +        example: "Some(true)" +      - name: "editgroup" +        in: "query" +        description: "Editgroup to auto-accept and apply to all entities (required\ +          \ if 'autoaccept' is True)" +        required: false +        type: "string" +        formatString: "{:?}" +        example: "Some(\"editgroup_example\".to_string())"        - in: "body"          name: "entity_list"          required: true @@ -492,6 +508,22 @@ paths:      post:        operationId: "create_creator_batch"        parameters: +      - name: "autoaccept" +        in: "query" +        description: "If true, and editor is authorized, batch is accepted all at\ +          \ once" +        required: false +        type: "boolean" +        formatString: "{:?}" +        example: "Some(true)" +      - name: "editgroup" +        in: "query" +        description: "Editgroup to auto-accept and apply to all entities (required\ +          \ if 'autoaccept' is True)" +        required: false +        type: "string" +        formatString: "{:?}" +        example: "Some(\"editgroup_example\".to_string())"        - in: "body"          name: "entity_list"          required: true @@ -962,6 +994,22 @@ paths:      post:        operationId: "create_file_batch"        parameters: +      - name: "autoaccept" +        in: "query" +        description: "If true, and editor is authorized, batch is accepted all at\ +          \ once" +        required: false +        type: "boolean" +        formatString: "{:?}" +        example: "Some(true)" +      - name: "editgroup" +        in: "query" +        description: "Editgroup to auto-accept and apply to all entities (required\ +          \ if 'autoaccept' is True)" +        required: false +        type: "string" +        formatString: "{:?}" +        example: "Some(\"editgroup_example\".to_string())"        - in: "body"          name: "entity_list"          required: true @@ -1375,6 +1423,22 @@ paths:      post:        operationId: "create_release_batch"        parameters: +      - name: "autoaccept" +        in: "query" +        description: "If true, and editor is authorized, batch is accepted all at\ +          \ once" +        required: false +        type: "boolean" +        formatString: "{:?}" +        example: "Some(true)" +      - name: "editgroup" +        in: "query" +        description: "Editgroup to auto-accept and apply to all entities (required\ +          \ if 'autoaccept' is True)" +        required: false +        type: "string" +        formatString: "{:?}" +        example: "Some(\"editgroup_example\".to_string())"        - in: "body"          name: "entity_list"          required: true @@ -1842,6 +1906,22 @@ paths:      post:        operationId: "create_work_batch"        parameters: +      - name: "autoaccept" +        in: "query" +        description: "If true, and editor is authorized, batch is accepted all at\ +          \ once" +        required: false +        type: "boolean" +        formatString: "{:?}" +        example: "Some(true)" +      - name: "editgroup" +        in: "query" +        description: "Editgroup to auto-accept and apply to all entities (required\ +          \ if 'autoaccept' is True)" +        required: false +        type: "string" +        formatString: "{:?}" +        example: "Some(\"editgroup_example\".to_string())"        - in: "body"          name: "entity_list"          required: true | 
