{
  "openapi": "3.0.0",
  "info": {
    "title": "V2 API",
    "version": "2.0",
    "description": "",
    "contact": {
      "email": "anymarketdev@db1.com.br",
      "name": "ANYMARKET Developers",
      "url": "http://developers.anymarket.com.br/"
    },
    "x-logo": {
      "url": "https://anymarket.com.br/wp-content/uploads/2018/07/icon-anymarket-300x300.png"
    },
    "x-preferred": true,
    "x-providerName": "V2 API"
  },
  "servers": [
    {
      "url": "https://sandbox-api.anymarket.com.br/v2",
      "description": "Sandbox"
    },
    {
      "url": "https://api.anymarket.com.br/v2",
      "description": "Produção"
    }
  ],
  "security": [
    {
      "gumgaToken": []
    }
  ],
  "tags": [
    {
      "name": "Callback",
      "description": "Gestión de callbacks"
    },
    {
      "name": "Campanhas",
      "description": "Gerenciamento de Campanhas"
    },
    {
      "name": "Categorias",
      "description": "Gerenciamento de categorias"
    },
    {
      "name": "Cotar Frete",
      "description": "Gerenciamento de frete"
    },
    {
      "name": "Emissão de Etiquetas",
      "description": "Gerenciamento de emissão de etiquetas"
    },
    {
      "name": "Grupo de caracteristica",
      "description": "Gerenciamento de grupo de caracteristica"
    },
    {
      "name": "Estoque",
      "description": "Gerenciamento de stock"
    },
    {
      "name": "Local de Estoque",
      "description": "Gerenciamento de Locais de Estoque"
    },
    {
      "name": "Feed pedido",
      "description": "Gerenciamento de feed de pedidos"
    },
    {
      "name": "Feed produto",
      "description": "Gerenciamento de feed de produtos"
    },
    {
      "name": "Feed transmissão",
      "description": "Gerenciamento de feed de transmissão"
    },
    {
      "name": "Imagem",
      "description": "Gerenciamento de imagens"
    },
    {
      "name": "Marcas",
      "description": "Gestión de marcas"
    },
    {
      "name": "Mensageria",
      "description": "Gerenciamento de mensagens nos pedidos"
    },
    {
      "name": "Monitoramento de Erro",
      "description": "Monitoramento de erros"
    },
    {
      "name": "Pedido",
      "description": "Gestión de Pedido"
    },
    {
      "name": "Fulfillment",
      "description": "Gerenciamento de pedidos fulfillment"
    },
    {
      "name": "Devolução",
      "description": "Gerenciamento de devolução"
    },
    {
      "name": "Perguntas",
      "description": "Gerenciamento de perguntas"
    },
    {
      "name": "Produto",
      "description": "Gerenciamento de produtos"
    },
    {
      "name": "Promoção",
      "description": "Gerenciamento de regras de preço (Promoções)"
    },
    {
      "name": "SKU",
      "description": "Gestión de skus"
    },
    {
      "name": "SKU Marketplace",
      "description": "Gestión de anuncios"
    },
    {
      "name": "Template",
      "description": "Gestión de Templates"
    },
    {
      "name": "Transmissão",
      "description": "Gerenciamento de transmissões"
    },
    {
      "name": "Tipos de variação",
      "description": "Gerenciamento de tipos de variação"
    },
    {
      "name": "Valores de variação",
      "description": "Gerenciamento de valores de variação"
    },
    {
      "name": "Documentos Fiscais",
      "description": "Gerenciamento de documentos fiscais"
    },
    {
      "name": "Feed preço de transmissão",
      "description": "Gerenciamento de feed de preço de transmissão"
    },
    {
      "name": "Feed reserva",
      "description": "Gerenciamento de feed de reservas"
    },
    {
      "name": "Perfis de Acesso",
      "description": "Gerenciamento de perfis de acesso"
    },
    {
      "name": "Preço",
      "description": "Gerenciamento de preços"
    },
    {
      "name": "Usuários",
      "description": "Gerenciamento de usuários"
    }
  ],
  "paths": {
    "/brands": {
      "get": {
        "summary": "/brands",
        "operationId": "get-brands",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "links": {
                      "type": "array",
                      "description": "Referências de paginação",
                      "items": {
                        "type": "object",
                        "properties": {
                          "rel": {
                            "type": "string",
                            "description": "Relacionamento do hyperlink",
                            "example": "next"
                          },
                          "href": {
                            "type": "string",
                            "description": "URL de definição do recurso",
                            "example": "https://.../v2/component?limit=5&offset=5"
                          }
                        }
                      }
                    },
                    "content": {
                      "type": "array",
                      "description": "Lista de marcas",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "ID da marca",
                            "minimum": 0
                          },
                          "name": {
                            "type": "string",
                            "description": "Nome da marca",
                            "minLength": 1,
                            "maxLength": 120
                          },
                          "reducedName": {
                            "type": "string",
                            "description": "Nome reduzido da marca",
                            "minLength": 0,
                            "maxLength": 30
                          },
                          "partnerId": {
                            "type": "string",
                            "description": "ID da marca no parceiro",
                            "minLength": 0,
                            "maxLength": 255
                          }
                        }
                      }
                    },
                    "page": {
                      "type": "object",
                      "properties": {
                        "size": {
                          "type": "integer",
                          "maximum": 100
                        },
                        "totalElements": {
                          "type": "integer",
                          "minimum": 0
                        },
                        "totalPages": {
                          "type": "integer",
                          "minimum": 0
                        },
                        "number": {
                          "type": "integer",
                          "minimum": 0
                        }
                      }
                    }
                  }
                },
                "examples": {
                  "example-2": {
                    "value": {
                      "links": [
                        {
                          "rel": "next",
                          "href": "https://.../v2/component?limit=5&offset=5"
                        }
                      ],
                      "content": [
                        {
                          "id": 0,
                          "name": "string",
                          "reducedName": "string",
                          "partnerId": "string"
                        }
                      ],
                      "page": {
                        "size": 5,
                        "totalElements": 0,
                        "totalPages": 1,
                        "number": 1
                      }
                    }
                  },
                  "example-1": {
                    "value": {
                      "links": [
                        {
                          "rel": "next",
                          "href": "https://.../v2/component?limit=5&offset=5"
                        }
                      ],
                      "content": [
                        {
                          "id": 123456,
                          "name": "Brastemp",
                          "reducedName": "brastemp",
                          "partnerId": "marca-001-brastemp"
                        }
                      ],
                      "page": {
                        "size": 5,
                        "totalElements": 0,
                        "totalPages": 1,
                        "number": 1
                      }
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "description": "# Consulta Marcas\nConsulta todas las marcas",
        "parameters": [
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/sort"
          },
          {
            "$ref": "#/components/parameters/name"
          },
          {
            "$ref": "#/components/parameters/partnerId"
          }
        ],
        "tags": [
          "Marcas"
        ]
      },
      "post": {
        "summary": "/brands",
        "operationId": "post-brands",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "integer",
                      "description": "ID da marca",
                      "minimum": 0
                    },
                    "name": {
                      "type": "string",
                      "description": "Nome da marca",
                      "minLength": 1,
                      "maxLength": 120
                    },
                    "reducedName": {
                      "type": "string",
                      "description": "Nome reduzido da marca",
                      "minLength": 0,
                      "maxLength": 30
                    },
                    "partnerId": {
                      "type": "string",
                      "description": "ID da marca no parceiro",
                      "minLength": 0,
                      "maxLength": 255
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "id": 0,
                      "name": "string",
                      "reducedName": "string",
                      "partnerId": "string"
                    }
                  },
                  "example-1": {
                    "value": {
                      "id": 1987032,
                      "name": "teste co po",
                      "reducedName": "testcop"
                    }
                  }
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "description": "# Crear Marca\nCrear una marca con los datos facilitados",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/BrandAdd"
              }
            }
          },
          "description": ""
        },
        "tags": [
          "Marcas"
        ]
      }
    },
    "/brands/{id}": {
      "get": {
        "summary": "/brands/{id}",
        "operationId": "get-brands-id",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "integer",
                      "description": "ID da marca",
                      "minimum": 0
                    },
                    "name": {
                      "type": "string",
                      "description": "Nome da marca",
                      "minLength": 1,
                      "maxLength": 120
                    },
                    "reducedName": {
                      "type": "string",
                      "description": "Nome reduzido da marca",
                      "minLength": 0,
                      "maxLength": 30
                    }
                  }
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "name": "string",
                      "reducedName": "string"
                    }
                  },
                  "stoplight-example-1": {
                    "value": {
                      "id": 1987032,
                      "name": "teste co po",
                      "reducedName": "testcop"
                    }
                  }
                }
              }
            },
            "headers": {}
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "description": "# Consulta marca\nConsulta los detalles de una marca",
        "parameters": [],
        "tags": [
          "Marcas"
        ]
      },
      "parameters": [
        {
          "schema": {
            "type": "integer",
            "format": "int64",
            "minimum": 1
          },
          "name": "id",
          "in": "path",
          "description": "ID da marca generado por ANYMARKET",
          "required": true
        }
      ],
      "delete": {
        "summary": "/brands/{id}",
        "operationId": "delete-brands-id",
        "responses": {
          "204": {
            "description": "No Content"
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)"
          }
        },
        "description": "# Excluye marca\nExcluye una marca",
        "tags": [
          "Marcas"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {}
              }
            }
          },
          "description": ""
        }
      },
      "put": {
        "summary": "/brands/{id}",
        "operationId": "put-brands-id",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "integer",
                      "description": "ID da marca",
                      "minimum": 0
                    },
                    "name": {
                      "type": "string",
                      "description": "Nome da marca",
                      "minLength": 1,
                      "maxLength": 255
                    },
                    "reducedName": {
                      "type": "string",
                      "description": "Nome reduzido da marca",
                      "minLength": 0,
                      "maxLength": 30
                    }
                  }
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "name": "string",
                      "reducedName": "string"
                    }
                  },
                  "stoplight-example-1": {
                    "value": {
                      "id": 0,
                      "name": "string",
                      "reducedName": "string"
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "description": "# Actualizar marca\nActualizar datos de marca",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/BrandAdd"
              }
            }
          }
        },
        "tags": [
          "Marcas"
        ]
      }
    },
    "/callbacks": {
      "post": {
        "summary": "/callbacks",
        "operationId": "post-callbacks",
        "responses": {
          "201": {
            "description": "Created",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "integer",
                      "description": "ID interno",
                      "minimum": 0,
                      "maximum": 9999999999
                    },
                    "url": {
                      "type": "string",
                      "description": "URL do callback",
                      "minLength": 1,
                      "maxLength": 255
                    },
                    "token": {
                      "type": "string",
                      "description": "Token da Conta ANYMARKET"
                    },
                    "orderActive": {
                      "type": "boolean",
                      "description": "Indica se o ANYMARKET deve encaminhar callback de pedido"
                    },
                    "productActive": {
                      "type": "boolean",
                      "description": "Indica se o ANYMARKET deve encaminhar callback de produto"
                    },
                    "transmissionActive": {
                      "type": "boolean",
                      "description": "Indica se o ANYMARKET deve encaminhar callback de transmissão"
                    },
                    "questionActive ": {
                      "type": "boolean",
                      "description": "Indica se o ANYMARKET deve encaminhar callback de pergunta"
                    }
                  }
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "url": "example.com",
                      "token": "string",
                      "orderActive": true,
                      "productActive": true,
                      "transmissionActive": true,
                      "questionActive ": true
                    }
                  }
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "description": "# Cria Callback\nCria una callback con los datos dados",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "url": {
                    "type": "string",
                    "description": "URL de Callback"
                  },
                  "token": {
                    "type": "string",
                    "description": "Token da Conta ANYMARKET"
                  },
                  "orderActive": {
                    "type": "boolean",
                    "description": "Indica se o ANYMARKET deve encaminhar callback de pedido"
                  },
                  "productActive": {
                    "type": "boolean",
                    "description": "Indica se o ANYMARKET deve encaminhar callback de produto"
                  },
                  "transmissionActive": {
                    "type": "boolean",
                    "description": "Indica se o ANYMARKET deve encaminhar callback de transmissão"
                  },
                  "questionActive ": {
                    "type": "boolean",
                    "description": "Indica se o ANYMARKET deve encaminhar callback de pergunta"
                  }
                }
              },
              "examples": {
                "example-1": {
                  "value": {
                    "url": "example.com",
                    "token": "string",
                    "orderActive": true,
                    "productActive": true,
                    "transmissionActive": true,
                    "questionActive ": true
                  }
                },
                "stoplight-example-1": {
                  "value": {
                    "id": 0,
                    "url": "example.com",
                    "token": "string",
                    "orderActive": true,
                    "productActive": true,
                    "transmissionActive": true,
                    "questionActive ": true
                  }
                }
              }
            }
          },
          "description": ""
        },
        "tags": [
          "Callback"
        ]
      },
      "parameters": [],
      "get": {
        "summary": "/callbacks",
        "operationId": "get-callbacks",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Page_CallBack"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "links": [
                        {
                          "rel": "next",
                          "href": "https://.../v2/component?limit=5&offset=5"
                        }
                      ],
                      "content": [
                        {
                          "id": 0,
                          "url": "example.com",
                          "token": "string",
                          "orderActive": true,
                          "productActive": true,
                          "transmissionActive": true,
                          "questionActive ": true
                        }
                      ],
                      "page": {
                        "size": 5,
                        "totalElements": 0,
                        "totalPages": 1,
                        "number": 1
                      }
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "description": "# Consulta Callbacks \nConsulta todos los callbacks disponibles",
        "parameters": [
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/sort"
          }
        ],
        "tags": [
          "Callback"
        ],
        "x-internal": true,
        "x-stoplight": {
          "id": "q85f0ckemeksm"
        }
      }
    },
    "/callbacks/{id}": {
      "get": {
        "summary": "/callbacks/{id}",
        "operationId": "get-callbacks-id",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CallBack"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "url": "example.com",
                      "token": "string",
                      "orderActive": true,
                      "productActive": true,
                      "transmissionActive": true,
                      "questionActive ": true
                    }
                  }
                }
              }
            },
            "headers": {}
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          }
        },
        "description": "# Consulta Callback\nConsulta los detalles de un callback",
        "parameters": [],
        "tags": [
          "Callback"
        ]
      },
      "parameters": [
        {
          "schema": {
            "type": "integer",
            "format": "int64",
            "minimum": 1
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID do callback generado pelo ANYMARKET"
        }
      ],
      "delete": {
        "summary": "/callbacks/{id}",
        "operationId": "delete-callback-id",
        "responses": {
          "204": {
            "description": "No Content"
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          }
        },
        "description": "# Excluye Callback\nExcluye un callback",
        "tags": [
          "Callback"
        ]
      },
      "put": {
        "summary": "/callbacks/{id}",
        "operationId": "put-callbacks-id",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "integer",
                      "description": "ID interno"
                    },
                    "url": {
                      "type": "string",
                      "description": "URL do callback",
                      "minLength": 1,
                      "maxLength": 255
                    },
                    "token": {
                      "type": "string",
                      "description": "Token da Conta ANYMARKET"
                    },
                    "orderActive": {
                      "type": "boolean",
                      "description": "Indica se o ANYMARKET deve encaminhar callback de pedido"
                    },
                    "productActive": {
                      "type": "boolean",
                      "description": "Indica se o ANYMARKET deve encaminhar callback de produto"
                    },
                    "transmissionActive": {
                      "type": "boolean",
                      "description": "Indica se o ANYMARKET deve encaminhar callback de transmissão"
                    },
                    "questionActive ": {
                      "type": "boolean",
                      "description": "Indica se o ANYMARKET deve encaminhar callback de pergunta"
                    }
                  }
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "url": "string",
                      "token": "string",
                      "orderActive": true,
                      "productActive": true,
                      "transmissionActive": true,
                      "questionActive ": true
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "description": "# Actualizar Callback\nActualizar los datos de una callback",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CallBackPost"
              }
            }
          }
        },
        "tags": [
          "Callback"
        ]
      }
    },
    "/campaigns": {
      "get": {
        "summary": "/campaigns",
        "operationId": "get-campaigns",
        "description": "# Consulta Campanha\nRetorna por paginação TODAS campanhas cadastradas",
        "parameters": [
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "status",
            "description": "Os status podem ser SCHEDULED, ACTIVE e FINALIZED."
          },
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "limit",
            "description": "Quantidade de registro da paginação, valor máximo 100."
          },
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "offset",
            "description": "Quantidade de registros deslocados na paginação."
          }
        ],
        "tags": [
          "Campanhas"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "pageSize": {
                      "type": "integer"
                    },
                    "count": {
                      "type": "integer"
                    },
                    "start": {
                      "type": "integer"
                    },
                    "values": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "integer"
                          },
                          "title": {
                            "type": "string"
                          },
                          "idAccount": {
                            "type": "string"
                          },
                          "accountName": {
                            "type": "string"
                          },
                          "description": {
                            "type": "string"
                          },
                          "initialDate": {
                            "type": "string"
                          },
                          "finalDate": {
                            "type": "string"
                          },
                          "marketplace": {
                            "type": "string"
                          },
                          "status": {
                            "type": "string"
                          },
                          "productsCount": {
                            "type": "integer"
                          }
                        }
                      }
                    }
                  }
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "pageSize": 0,
                      "count": 0,
                      "start": 0,
                      "values": [
                        {
                          "id": 0,
                          "title": "string",
                          "idAccount": "string",
                          "accountName": "string",
                          "description": "string",
                          "initialDate": "string",
                          "finalDate": "string",
                          "marketplace": "string",
                          "status": "string",
                          "productsCount": 0
                        }
                      ]
                    }
                  },
                  "stoplight-example-1": {
                    "value": {
                      "pageSize": 5,
                      "count": 64,
                      "start": 0,
                      "values": [
                        {
                          "id": 203,
                          "title": "Automação1662035570679",
                          "idAccount": "1",
                          "accountName": "ECOMMERCE",
                          "description": "Campanha de testes automatizados",
                          "initialDate": "2022-09-03T09:32:42.041Z",
                          "finalDate": "2022-09-07T09:32:42.041Z",
                          "marketplace": "ECOMMERCE",
                          "status": "SCHEDULED",
                          "productsCount": 0
                        },
                        {
                          "id": 206,
                          "title": "Automação1662036323424",
                          "idAccount": "1",
                          "accountName": "ECOMMERCE",
                          "description": "Campanha de testes automatizados",
                          "initialDate": "2022-09-03T09:45:14.789Z",
                          "finalDate": "2022-09-07T09:45:14.789Z",
                          "marketplace": "ECOMMERCE",
                          "status": "FINALIZED",
                          "productsCount": 0
                        },
                        {
                          "id": 209,
                          "title": "Automação1662038893910",
                          "idAccount": "1",
                          "accountName": "ECOMMERCE",
                          "description": "Campanha de testes automatizados",
                          "initialDate": "2022-09-03T10:28:05.454Z",
                          "finalDate": "2022-09-07T10:28:05.454Z",
                          "marketplace": "ECOMMERCE",
                          "status": "FINALIZED",
                          "productsCount": 0
                        },
                        {
                          "id": 263,
                          "title": "Automação1672060413770",
                          "idAccount": "1",
                          "accountName": "ECOMMERCE",
                          "description": "Campanha de testes automatizados",
                          "initialDate": "2022-12-28T13:12:42.733Z",
                          "finalDate": "2023-01-01T13:12:42.733Z",
                          "marketplace": "ECOMMERCE",
                          "status": "FINALIZED",
                          "productsCount": 0
                        },
                        {
                          "id": 262,
                          "title": "Automação1672060393631",
                          "idAccount": "1",
                          "accountName": "ECOMMERCE",
                          "description": "Campanha de testes automatizados",
                          "initialDate": "2022-12-28T13:12:42.651Z",
                          "finalDate": "2023-01-01T13:12:42.651Z",
                          "marketplace": "ECOMMERCE",
                          "status": "ACTIVE",
                          "productsCount": 0
                        }
                      ]
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "400",
                      "message": "O campo 'status' na url está em formato incorreto. Verifique a documentação para maiores detalhes."
                    }
                  },
                  "stoplight-example-1": {
                    "value": {
                      "code": "400",
                      "message": "O campo 'status' na url está em formato incorreto. Verifique a documentação para maiores detalhes."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "parameters": [],
      "post": {
        "summary": "/campaigns",
        "tags": [
          "Campanhas"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "integer"
                    },
                    "title": {
                      "type": "string"
                    },
                    "marketplace": {
                      "type": "string"
                    },
                    "idAccount": {
                      "type": "integer"
                    },
                    "description": {
                      "type": "string"
                    },
                    "initialDate": {
                      "type": "string",
                      "format": "date-time"
                    },
                    "finalDate": {
                      "type": "string",
                      "format": "date-time"
                    },
                    "overrideCampaignItens": {
                      "type": "boolean"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "id": 0,
                      "title": "string",
                      "marketplace": "string",
                      "idAccount": 0,
                      "description": "string",
                      "initialDate": "2024-08-24T14:15:22Z",
                      "finalDate": "2024-08-24T15:15:22Z",
                      "overrideCampaignItens": true
                    }
                  }
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "code": "422",
                      "message": "[O campo title deve ter no máximo 35 caracteres]"
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "post-campaigns",
        "description": "# Criar campanha\nCria uma campanha com os dados informados",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "title",
                  "initialDate",
                  "finalDate",
                  "marketplace"
                ],
                "properties": {
                  "title": {
                    "type": "string",
                    "description": "Nome da campanha",
                    "maxLength": 35
                  },
                  "initialDate": {
                    "type": "string",
                    "format": "date-time",
                    "description": "Data inicial"
                  },
                  "finalDate": {
                    "type": "string",
                    "format": "date-time",
                    "description": "Data Final"
                  },
                  "marketplace": {
                    "type": "string",
                    "description": "Marketplace da campanha"
                  },
                  "idAccount": {
                    "type": "integer",
                    "description": "ID da conta utilizada no MARKETPLACE"
                  },
                  "description": {
                    "type": "string",
                    "description": "Descrição da campanha",
                    "maxLength": 100
                  },
                  "overrideCampaignItens": {
                    "type": "boolean",
                    "description": "Sobrescrever itens em outras campanhas",
                    "default": false
                  }
                }
              }
            }
          },
          "description": ""
        }
      }
    },
    "/campaigns/{id}": {
      "get": {
        "summary": "/campaigns/{id}",
        "operationId": "get-campaigns-id",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Campaign"
                },
                "examples": {}
              }
            },
            "headers": {}
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          }
        },
        "description": "# Consulta Campaña\nConsulta los detalles de una campaña",
        "parameters": [],
        "tags": [
          "Campanhas"
        ]
      },
      "put": {
        "summary": "/campaigns/{id}",
        "operationId": "put-campaigns",
        "tags": [
          "Campanhas"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "integer"
                    },
                    "title": {
                      "type": "string"
                    },
                    "marketplace": {
                      "type": "string"
                    },
                    "idAccount": {
                      "type": "integer"
                    },
                    "description": {
                      "type": "string"
                    },
                    "initialDate": {
                      "type": "string",
                      "format": "date-time"
                    },
                    "finalDate": {
                      "type": "string",
                      "format": "date-time"
                    },
                    "overrideCampaignItens": {
                      "type": "boolean"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "id": 0,
                      "title": "string",
                      "marketplace": "string",
                      "idAccount": 0,
                      "description": "string",
                      "initialDate": "2019-08-24T14:15:22Z",
                      "finalDate": "2019-08-24T14:15:22Z",
                      "overrideCampaignItens": false
                    }
                  }
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "code": "422",
                      "message": "Uma campanha já finalizada não pode ser alterada!"
                    }
                  }
                }
              }
            }
          }
        },
        "description": "# Atualizar campanha\n\nAtualiza uma campanha com os dados informados.\n\n> O método `PUT` substitui completamente o recurso. \n>\n> Todos os campos obrigatórios devem ser enviados, mesmo que não tenham sido modificados.\n>\n> Campos omitidos podem ser redefinidos ou apagados.\n>\n> Use este método quando quiser sobrescrever todas as informações.",
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "title",
                  "initialDate",
                  "finalDate",
                  "marketplace"
                ],
                "properties": {
                  "title": {
                    "type": "string",
                    "description": "Nome da campanha\n`<= 35 characters`"
                  },
                  "initialDate": {
                    "type": "string",
                    "format": "date-time",
                    "description": "Data inicial"
                  },
                  "finalDate": {
                    "type": "string",
                    "format": "date-time",
                    "description": "Data Final"
                  },
                  "marketplace": {
                    "type": "string",
                    "description": "Marketplace da campanha"
                  },
                  "idAccount": {
                    "type": "integer",
                    "description": "ID da conta utilizada no MARKETPLACE"
                  },
                  "description": {
                    "type": "string",
                    "description": "Descrição da campanha\n`<= 100 characters`"
                  },
                  "overrideCampaignItens": {
                    "type": "boolean",
                    "description": "Sobrescrever itens em outras campanhas",
                    "default": false
                  }
                }
              },
              "examples": {}
            }
          }
        }
      },
      "parameters": [
        {
          "schema": {
            "type": "integer",
            "format": "int64",
            "minimum": 1
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID da campaña generado por ANYMARKET"
        }
      ]
    },
    "/campaigns/{id}/products": {
      "parameters": [
        {
          "schema": {
            "type": "integer",
            "format": "int64",
            "minimum": 1
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID da campanha gerado pelo ANYMARKET"
        }
      ],
      "get": {
        "summary": "/campaigns/{id}/products",
        "tags": [
          "Campanhas"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "pageSize": {
                      "type": "integer"
                    },
                    "count": {
                      "type": "integer"
                    },
                    "start": {
                      "type": "integer"
                    },
                    "values": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "integer"
                          },
                          "sku": {
                            "type": "string"
                          },
                          "codInMarketplace": {
                            "type": "string"
                          },
                          "regularPrice": {
                            "type": "number"
                          },
                          "discountPrice": {
                            "type": "number"
                          }
                        }
                      }
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "pageSize": 0,
                      "count": 0,
                      "start": 0,
                      "values": [
                        {
                          "id": 0,
                          "sku": "string",
                          "codInMarketplace": "string",
                          "regularPrice": 0,
                          "discountPrice": 0
                        }
                      ]
                    }
                  },
                  "stoplight-Example 1": {
                    "value": {
                      "pageSize": 5,
                      "count": 163,
                      "start": 0,
                      "values": [
                        {
                          "id": 12879,
                          "sku": "MKP002099002586",
                          "codInMarketplace": "MLB4735784160",
                          "regularPrice": 1944.8,
                          "discountPrice": 1934.8
                        },
                        {
                          "id": 12746,
                          "sku": "MKP002099004566",
                          "codInMarketplace": "MLB4735861148",
                          "regularPrice": 899.9,
                          "discountPrice": 889.9
                        },
                        {
                          "id": 12818,
                          "sku": "MKP002097005340",
                          "codInMarketplace": "MLB4735784570",
                          "regularPrice": 2794.8,
                          "discountPrice": 2784.8
                        },
                        {
                          "id": 12755,
                          "sku": "MKP002098020510",
                          "codInMarketplace": "MLB4735822152",
                          "regularPrice": 1073.8,
                          "discountPrice": 1063.8
                        },
                        {
                          "id": 12881,
                          "sku": "MKP002099005668",
                          "codInMarketplace": "MLB4735796512",
                          "regularPrice": 1916.8,
                          "discountPrice": 1906.8
                        }
                      ]
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "code": "404",
                      "message": "Recurso com o id 'xxx' não encontrado"
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "get-campaigns-id-products",
        "description": "# Consulta Produtos da Campanha\nRetorna por paginação TODOS os produtos cadastrados na campanha",
        "parameters": [
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "limit",
            "description": "Quantidade de registro da paginação, valor máximo 100."
          },
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "offset",
            "description": "Quantidade de registros deslocados na paginação."
          }
        ]
      },
      "post": {
        "summary": "/campaigns/{id}/products",
        "tags": [
          "Campanhas"
        ],
        "responses": {
          "200": {
            "description": "OK"
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "code": "400",
                      "message": "O campo 'id' na url está em formato incorreto. Verifique a documentação para maiores detalhes."
                    }
                  },
                  "Example 2": {
                    "value": {
                      "code": "400",
                      "message": "O parâmetro 'file' é obrigatório, consulte a documentação para maiores informações."
                    }
                  },
                  "stoplight-Example 1": {
                    "value": {
                      "code": "400",
                      "message": "O campo 'id' na url está em formato incorreto. Verifique a documentação para maiores detalhes."
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "code": "404",
                      "message": "Recurso com o id 'xxx' não encontrado."
                    }
                  },
                  "stoplight-Example 1": {
                    "value": {
                      "code": "404",
                      "message": "Recurso com o id 'xxx' não encontrado."
                    }
                  }
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "code": "422",
                      "message": "File not supported"
                    }
                  },
                  "stoplight-Example 1": {
                    "value": {
                      "code": "422",
                      "message": "File not supported"
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "code": "500",
                      "message": "Content type 'null' not supported"
                    }
                  },
                  "stoplight-Example 1": {
                    "value": {
                      "code": "500",
                      "message": "Content type 'null' not supported"
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "post-campaigns-id-products",
        "description": "# Gerencia produtos de uma campanha\nEndpoint para a importação de planilha dos produtos de uma campanha",
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "required": [
                  "file"
                ],
                "properties": {
                  "file": {
                    "type": "string",
                    "description": "key: File <br> value: Arquivo XLS ou XLSX"
                  }
                }
              },
              "examples": {
                "Example 1": {
                  "value": {
                    "file": "string"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/campaigns/{id}/inactivate": {
      "parameters": [
        {
          "schema": {
            "type": "integer",
            "format": "int64",
            "minimum": 1
          },
          "name": "id",
          "in": "path",
          "description": "ID da campanha gerado pelo ANYMARKET",
          "required": true
        }
      ],
      "post": {
        "summary": "/campaigns/{id}/inactivate",
        "tags": [
          "Campanhas"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string"
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "integer"
                        },
                        "title": {
                          "type": "string"
                        },
                        "idAccount": {
                          "type": "integer"
                        },
                        "accountName": {
                          "type": "string"
                        },
                        "initialDate": {
                          "type": "string",
                          "format": "date-time"
                        },
                        "finalDate": {
                          "type": "string",
                          "format": "date-time"
                        },
                        "marketplace": {
                          "type": "string"
                        },
                        "status": {
                          "type": "string"
                        },
                        "productsCount": {
                          "type": "integer"
                        },
                        "override": {
                          "type": "boolean",
                          "default": false
                        }
                      }
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "message": "Campanha encerrada com sucesso!",
                      "data": {
                        "id": 0,
                        "title": "teste",
                        "idAccount": 0,
                        "accountName": "ECOMMERCE",
                        "initialDate": "2019-08-24T14:15:22Z",
                        "finalDate": "2019-08-24T14:15:22Z",
                        "marketplace": "ECOMMERCE",
                        "status": "FINALIZED",
                        "productsCount": 0,
                        "override": false
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "code": "400",
                      "message": "O campo 'id' na url está em formato incorreto. Verifique a documentação para maiores detalhes."
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "code": "404",
                      "message": "Recurso com o id '0' não encontrado"
                    }
                  }
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "code": "422",
                      "message": "Método POST não suportado para path solicitado. Verifique a documentação para maiores detalhes."
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "post-campaigns-id-inactivate",
        "description": "# Inativar Campanha\nEncerrar uma campanha previamente criada"
      }
    },
    "/categories": {
      "get": {
        "summary": "/categories",
        "operationId": "get-categories",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Page_Category"
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "links": [
                        {
                          "rel": "next",
                          "href": "https://.../v2/{rota}?limit=5&offset=5"
                        }
                      ],
                      "content": [
                        {
                          "id": 0,
                          "name": "string",
                          "path": "string",
                          "partnerId": "string",
                          "priceFactor": 0,
                          "definitionPriceScope": "SKU"
                        }
                      ],
                      "page": {
                        "size": 5,
                        "totalElements": 0,
                        "totalPages": 0,
                        "number": 1
                      }
                    }
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "description": "# Consulta Categorias \nConsulta todas las categorías que estan en el primer nivel de la jerarquía,\npor ejemplo:\n\n\n- Electrónica\n   - Accesorios\n   - Televisión inteligente\n- Deportes y Ocio\n   - Aptitud física\n   - Fútbol\n- Pequeños accesorios\n   - Cafeteras\n   - Batidoras\n\nEn este caso, las categorías que se recuperarán serán Electrónica, Deporte y Ocio y Pequeños Electrodomésticos",
        "tags": [
          "Categorias"
        ]
      },
      "post": {
        "summary": "/categories",
        "operationId": "post-categories",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CategoryGET"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "description": "# Crear Categoria\nCrear una categoría con los datos dados",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string",
                    "description": "Nome da categoria",
                    "maxLength": 80
                  },
                  "partnerId": {
                    "type": "string",
                    "description": "ID da categoria no parceiro",
                    "maxLength": 80
                  },
                  "priceFactor": {
                    "type": "integer",
                    "description": "Fator de preço",
                    "minimum": 0,
                    "maximum": 13215646465465
                  },
                  "definitionPriceScope": {
                    "type": "string",
                    "description": "SKU (Manual, eu controlo o preço pelo SKU), SKU_MARKETPLACE (Manual, eu controlo o preço pelo anúncio) ou COST (Automático, pela mudança do custo)",
                    "enum": [
                      "SKU",
                      "SKU_MARKETPLACE",
                      "COST"
                    ]
                  },
                  "parent": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "integer",
                        "description": "ID da categoria gerado pelo ANYMARKET",
                        "minimum": 0,
                        "maximum": 99999999999
                      }
                    }
                  }
                }
              },
              "examples": {
                "example-1": {
                  "value": {
                    "name": "string",
                    "partnerId": "string",
                    "priceFactor": 0,
                    "definitionPriceScope": "SKU",
                    "parent": {
                      "id": 0
                    }
                  }
                },
                "stoplight-example-1": {
                  "value": {
                    "id": 0,
                    "name": "string",
                    "partnerId": "string",
                    "priceFactor": 0,
                    "definitionPriceScope": "SKU",
                    "parent": {
                      "id": 0
                    }
                  }
                }
              }
            }
          },
          "description": ""
        },
        "tags": [
          "Categorias"
        ]
      },
      "parameters": []
    },
    "/categories/{id}": {
      "get": {
        "summary": "/categories/{id}",
        "operationId": "get-categories-id",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "integer",
                      "description": "ID interno"
                    },
                    "name": {
                      "type": "string",
                      "description": "Nome da categoria"
                    },
                    "path": {
                      "type": "string",
                      "description": "Diretório e subdiretórios da categoria"
                    },
                    "parent": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "integer",
                          "description": "ID da categoria \"PAI\""
                        },
                        "partnerId": {
                          "type": "string",
                          "description": "ID da categoria \"PAI\" no parceiro"
                        }
                      }
                    },
                    "partnerId": {
                      "type": "string",
                      "description": "ID da categoria no parceiro"
                    },
                    "priceFactor": {
                      "type": "integer",
                      "description": "Fator de preço"
                    },
                    "children": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "ID da categoria \"FILHA\""
                          },
                          "name": {
                            "type": "string",
                            "description": "Nome da categoria \"FILHA\""
                          },
                          "path": {
                            "type": "string",
                            "description": "Diretório e subdiretórios da categoria"
                          },
                          "partnerId": {
                            "type": "string",
                            "description": "ID da categoria \"FILHA\" no parceiro"
                          },
                          "priceFactor": {
                            "type": "integer",
                            "description": "Fator de preço"
                          },
                          "definitionPriceScope": {
                            "type": "string",
                            "description": "SKU (Manual, eu controlo o preço pelo SKU), SKU_MARKETPLACE (Manual, eu controlo o preço pelo anúncio) ou COST (Automático, pela mudança do custo)"
                          }
                        }
                      }
                    },
                    "definitionPriceScope": {
                      "type": "string",
                      "description": "SKU (Manual, eu controlo o preço pelo SKU), SKU_MARKETPLACE (Manual, eu controlo o preço pelo anúncio) ou COST (Automático, pela mudança do custo)"
                    }
                  }
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "name": "string",
                      "path": "string",
                      "parent": {
                        "id": 0,
                        "partnerId": "string"
                      },
                      "partnerId": "string",
                      "priceFactor": 0,
                      "children": [
                        {
                          "id": 0,
                          "name": "string",
                          "path": "string",
                          "partnerId": "string",
                          "priceFactor": 0,
                          "definitionPriceScope": "SKU"
                        }
                      ],
                      "definitionPriceScope": "SKU"
                    }
                  },
                  "stoplight-example-1": {
                    "value": {
                      "id": 1794222,
                      "name": "Testetetetet1",
                      "path": "Testetetetet/Testetetetet1",
                      "parent": {
                        "id": 1794218,
                        "partnerId": "757878"
                      },
                      "partnerId": "7547878",
                      "priceFactor": 1,
                      "children": [
                        {
                          "id": 1794224,
                          "name": "Testetetetet10",
                          "path": "Testetetetet/Testetetetet1/Testetetetet10",
                          "partnerId": "75478678",
                          "priceFactor": 1,
                          "definitionPriceScope": "SKU"
                        }
                      ],
                      "definitionPriceScope": "SKU"
                    }
                  }
                }
              }
            },
            "headers": {}
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          }
        },
        "description": "# Consulta Categoria\nRecupera los datos de la categoría dada y las categorías secundarias, si las hay.",
        "parameters": [],
        "tags": [
          "Categorias"
        ]
      },
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID da categoria gerada por ANYMARKET"
        }
      ],
      "put": {
        "summary": "/categories/{id}",
        "operationId": "put-categories-id",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CategoryFullPath"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "description": "# Actualizar Categoria\nActualizar datos de categoría",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CategoryPOST"
              }
            }
          }
        },
        "tags": [
          "Categorias"
        ]
      },
      "delete": {
        "summary": "/categories/{id}",
        "operationId": "delete-categories-id",
        "responses": {
          "204": {
            "description": "No Content"
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          }
        },
        "description": "# Excluye Categoría \nExcluye una categoría",
        "tags": [
          "Categorias"
        ]
      }
    },
    "/categories/fullPath": {
      "get": {
        "summary": "/categories/fullPath",
        "operationId": "get-categories-fullPath",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "integer",
                        "description": "ID da categoria gerado pelo ANYMARKET"
                      },
                      "name": {
                        "type": "string",
                        "description": "Nome da categoria"
                      },
                      "path": {
                        "type": "string",
                        "description": "Caminho da categoria"
                      },
                      "partnerId": {
                        "type": "string",
                        "description": "partnerId"
                      },
                      "priceFactor": {
                        "type": "integer",
                        "description": "Fator de preço"
                      },
                      "totalProducts": {
                        "type": "integer",
                        "description": "Total de produtos contidos na categoria"
                      },
                      "children": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "integer",
                              "description": "ID interno"
                            },
                            "name": {
                              "type": "string",
                              "description": "Nome da categoria \"FILHA\""
                            },
                            "path": {
                              "type": "string",
                              "description": "Caminho da categoria"
                            },
                            "parent": {
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "integer",
                                  "description": "ID interno"
                                },
                                "partnerId": {
                                  "type": "string",
                                  "description": "ID da categoria no parceiro"
                                }
                              }
                            },
                            "partnerId": {
                              "type": "string",
                              "description": "ID da categoria no parceiro"
                            },
                            "priceFactor": {
                              "type": "integer",
                              "description": "priceFactor"
                            },
                            "totalProducts": {
                              "type": "integer",
                              "description": "Total de produtos contidos na categoria"
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "examples": {
                  "example-1": {
                    "value": [
                      {
                        "id": 0,
                        "name": "string",
                        "path": "string",
                        "partnerId": "string",
                        "priceFactor": 0,
                        "totalProducts": 0,
                        "children": {
                          "id": 0,
                          "name": "string",
                          "path": "string",
                          "partnerId": "string",
                          "priceFactor": 0,
                          "totalProducts": 1,
                          "definitionPriceScope": "SKU",
                          "parent": {
                            "id": 0,
                            "parnerId": "string"
                          },
                          "children": {}
                        }
                      }
                    ]
                  },
                  "stoplight-example-1": {
                    "value": [
                      {
                        "id": 1771102,
                        "name": "Brinquedos",
                        "path": "Brinquedos",
                        "partnerId": "87",
                        "priceFactor": 1,
                        "totalProducts": 0,
                        "children": [
                          {
                            "id": 1771137,
                            "name": "Brinquedos para Bebês",
                            "path": "Brinquedos/Brinquedos para Bebês",
                            "parent": {
                              "id": 1771102,
                              "partnerId": "87"
                            },
                            "partnerId": "371",
                            "priceFactor": 1,
                            "totalProducts": 2
                          }
                        ]
                      }
                    ]
                  }
                }
              }
            },
            "headers": {}
          }
        },
        "description": "# Categorías de consulta con jerarquías\nConsulta todas las categorías y todos los niveles de jerarquía, por ejemplo:\n\n- Electrónica\n   - Accesorios\n     - Cables y Conectores\n       - Cable coaxial\n         - Televisión inteligente\n - Deportes y Ocio\n   - Aptitud física\n     - Masculino\n       - Bermudas\n         - Fútbol\n     - Femenino\n       - regata\n         Fútbol\n - Pequeños accesorios\n   - Cafeteras\n   - Batidoras\n\nTodas las categorías y cada uno de los subniveles se enumerarán respectivamente hasta el final de la jerarquía.\n",
        "parameters": [],
        "tags": [
          "Categorias"
        ]
      },
      "parameters": []
    },
    "/printtag/{type}": {
      "parameters": [
        {
          "schema": {
            "type": "string",
            "enum": [
              "PDF",
              "ZPL",
              "ZPL2"
            ]
          },
          "name": "type",
          "in": "path",
          "required": true,
          "description": "Tipo de nota a generar (PDF, ZPL2)"
        }
      ],
      "post": {
        "tags": [
          "Emissão de Etiquetas"
        ],
        "summary": "/printtag/{type}",
        "description": "# Generar etiquetas\nGenere etiquetas para pedidos informados",
        "responses": {
          "200": {
            "description": "Bad request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PrintTag"
                },
                "examples": {
                  "ZPL": {
                    "value": {
                      "content": "^XA^MCY^CI28^LH5,15^FX  HEADER  ^FS^FX Logo_Meli ^FS^FO20,10^GFA,800,800,10,,:::::::::::O0FF,M07JFE,L07FC003FE,K07EL07E,J01EN078,J07P0E,I01CP038,I07R0E,001CK01FK038,003L0IFK0C,0078J03803CJ0E,0187J06I07I01D8,0300F00F8J0FEFE0C,02003IFK01J06,04I01C6P02,08K0401FM01,1L08060CM083K0100C02M0C2M01001M046K0306I0CL064K0198I02L024Q01L02CR08K03CR04K03FR02K03FFQ01J07!C1FQ0C007E3C03EP0203F03C0078O010F003CI0EF1N0F8003CI070C4M06I03CI02003CL02I03CI02P02I036I03N0106I066I01J08J0C4I067J0EI08J078I0E38I03I0E00406I01C3CI01800100204I01C3CJ0FI080118I03C1EJ03800801FJ0780FK0C008018J0F,078J07C0823J01F,07EJ01C1C36J07E,03FK031C3K0FC,01FCJ01E18J01F8,00FER07F,007F8P01FE,003FFP0FFC,I0FFEN07FF,I03FFCL03FFC,J0IFCJ03IF,J07PFE,K0PF,K01NF8,L01LF8,N0JF,,:::::::::::^FS^FO120,20^A0N,24,24^FH^FDANYMARKET SA _2E_2D ANYMARKET SA _2E #123456789^FS^FO120,43^A0N,24,24^FH^FB550,2,0,L^FDAv_2E Carneiro Leao_2D2 Andar 563, Zona 1^FS^FO120,90^A0N,24,24^FH^FB550,1,0,L^FDMaringa, BR-PR - 87014010^FS^FO120,120^A0N,24,24^FDPack ID: 10000^FS^FO272,117^A0N,27,27^FD01234567890^FS^FX LAST CLUSTER  ^FS^FO20,150^GB210,45,45^FS^FO20,156^A0N,45,45^FB210,1,0,C^FR^FDXSP1^FS^FX END LAST CLUSTER  ^FS^FO480,150^GB330,40,40^FS^FO410,160^A0N,22,22^FB460,1,0,C^FR^FH^FDENTREGAR NA COLETA^FS^FX  Shipment_Number_Bar_Code  ^FS^FO230,210^BY3,,0^BCN,160,N,N,N^FD>:01234567890^FS^FO95,385^A0N,30,30^FB390,1,0,R^FD423127^FS^FO488,381^A0N,35,35^FB400,1,0,L^FD60443^FS^FX  END_HEADER  ^FS^FX  CUSTOM_DATA  ^FS^FO0,580^A0N,175,175^FB630,1,0,R^FDSRD1^FS^FO670,640^A0N,47,47^FB200,1,0,L^FD09:00^FS^FO0,790^A0N,28,28^FB600,1,0,R^FDXSP1 > XSP9 > SRD1 > ^FS^FO605,785^A0N,40,40^FD4^FS^FO0,830^A0N,38,38^FB820,1,0,C^FDTER 06/06/2023   CEP: 87014010   NF: 1234567^FS^FX  END CUSTOM_DATA  ^FS^FO0,950^GB850,0,2^FS^FX  RECEIVER ZONE  ^FS^FO30,970^A0N,26,26^FB600,2,0,L^FH^FDDB1 Global Software SA (DB1GLOBALSOFTWARE)^FS^FO30,1030^A0N,26,26^FB600,2,0,L^FH^FDEndere_C3_A7o: Av Carneiro Leao, 563 - 2º Andar_2c Zona 1^FS^FO30,1090^A0N,30,30^FDCEP: 87014010^FS^FO30,1089^A0N,30,30^FDCEP: 87014010^FS^FO30,1121^A0N,26,26^FB600,2,1000,L^FH^FDCidade de destino: Maringa_2c Parana^FS^FO30,1150^A0N,26,26^FB600,5,0,L^FH^FDComplemento: Sobreloja Centro Empresarial Le Monde_2E^FS^FX  QR Code  ^FS^FO650,985^BY2,2,0^BQN,2,5^FDLA,{\"id\":\"01234567890\",\"t\":\"lm\"}^FS^FO650,1130^GB105,40,40^FS^FO650,1135^A0N,35,35^FB105,1,0,C^FR^FDR^FS^FX  END_FOOTER  ^FS^XZ"
                    }
                  }
                }
              },
              "application/pdf": {
                "schema": {
                  "type": "object",
                  "properties": {}
                },
                "examples": {
                  "file=PLP": {
                    "value": "Arquivo.pdf"
                  },
                  "type = PDF ou ZIP": {
                    "value": "Arquivo.pdf ou Arquivo.zip"
                  }
                }
              },
              "application/zip": {
                "schema": {
                  "type": "object",
                  "properties": {}
                },
                "examples": {
                  "type = PDF": {
                    "value": "Arquivo.zip"
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          },
          "409": {
            "description": "Conflict",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "409",
                      "message": "As etiquetas dos seguintes pedidos [id dos pedidos] não estão prontas para download, tente novamente mais tarde"
                    }
                  },
                  "Example 1": {
                    "value": {
                      "code": "409",
                      "message": "As etiquetas dos seguintes pedidos [id dos pedidos] não estão prontas para download, tente novamente mais tarde"
                    }
                  }
                }
              }
            },
            "headers": {}
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/500"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PrintTagPost"
              }
            }
          }
        },
        "parameters": [
          {
            "schema": {
              "type": "string",
              "enum": [
                "TXT",
                "PLP"
              ]
            },
            "in": "query",
            "name": "file",
            "description": "Se puede ingresar \"TXT\" o \"PLP\" cuando el tipo es ZPL2. Cuando se informa TXT, se devuelve un JSON con el contenido del TXT proporcionado por Marketplace, cuando se informa PLP, la devolución es un PDF con el PLP."
          }
        ],
        "operationId": "post-printtag-type"
      }
    },
    "/stocks": {
      "get": {
        "summary": "/stocks",
        "tags": [
          "Estoque"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "links": {
                      "type": "array",
                      "description": "Referências de paginação",
                      "items": {
                        "type": "object",
                        "properties": {
                          "rel": {
                            "type": "string",
                            "description": "Relacionamento do hyperlink",
                            "example": "next"
                          },
                          "href": {
                            "type": "string",
                            "description": "URL de definição do recurso",
                            "example": "https://.../v2/component?limit=5&offset=5"
                          }
                        }
                      }
                    },
                    "content": {
                      "type": "array",
                      "description": "Lista de estoques",
                      "items": {
                        "type": "object",
                        "properties": {
                          "stockKeepingUnit": {
                            "type": "object",
                            "description": "Objeto SKU",
                            "properties": {
                              "id": {
                                "type": "integer",
                                "description": "ID do SKU gerado pelo ANYMARKET"
                              },
                              "title": {
                                "type": "string",
                                "description": "Título do SKY"
                              },
                              "partnerId": {
                                "type": "string",
                                "description": "ID do parceiro"
                              }
                            }
                          },
                          "stockLocal": {
                            "type": "object",
                            "description": "Local de Estoque",
                            "properties": {
                              "id": {
                                "type": "integer",
                                "description": "ID do estoque gerado pelo ANYMARKET"
                              },
                              "oi": {
                                "type": "object",
                                "properties": {
                                  "value": {
                                    "type": "string",
                                    "description": "Identificador da Conta ANYMARKET"
                                  }
                                }
                              },
                              "name": {
                                "type": "string",
                                "description": "Nome do Estoque"
                              },
                              "virtual": {
                                "type": "boolean",
                                "description": "Identifica se é estoque virtual"
                              },
                              "defaultLocal": {
                                "type": "boolean",
                                "description": "Identifica se é o estoque principal"
                              },
                              "priorityPoints": {
                                "type": "integer",
                                "description": "Pontos de prioridade para Múltiplos CDs"
                              }
                            }
                          },
                          "amount": {
                            "type": "integer",
                            "description": "Quantidade em estoque"
                          },
                          "reservationAmount": {
                            "type": "integer",
                            "description": "Quantidade em Reserva"
                          },
                          "availableAmount": {
                            "type": "integer",
                            "description": "Quantidade de estoque disponível"
                          },
                          "price": {
                            "type": "integer",
                            "description": "Preço de Custo"
                          },
                          "active": {
                            "type": "boolean",
                            "description": "Identifica se o estoque está ativo"
                          },
                          "additionalTime": {
                            "type": "integer",
                            "description": "Crossdocking"
                          },
                          "lastStockUpdate": {
                            "type": "string",
                            "description": "Data da última atualização"
                          },
                          "skuLocationDescription": {
                            "type": "string",
                            "description": "Local de Estoque"
                          }
                        }
                      }
                    },
                    "page": {
                      "type": "object",
                      "properties": {
                        "size": {
                          "type": "integer",
                          "description": "Tamanho da página"
                        },
                        "totalElements": {
                          "type": "integer",
                          "description": "Total de elementos existentes"
                        },
                        "totalPages": {
                          "type": "integer",
                          "description": "Total de páginas disponíveis"
                        },
                        "number": {
                          "type": "integer",
                          "description": "Número da página atual"
                        }
                      }
                    }
                  }
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "links": [
                        {
                          "rel": "string",
                          "href": "string"
                        }
                      ],
                      "content": [
                        {
                          "stockKeepingUnit": {
                            "id": 0,
                            "title": "string",
                            "partnerId": "string"
                          },
                          "stockLocal": {
                            "id": 0,
                            "oi": {
                              "value": "string"
                            },
                            "name": "string",
                            "virtual": true,
                            "defaultLocal": true,
                            "priorityPoints": 0
                          },
                          "amount": 0,
                          "reservationAmount": 0,
                          "availableAmount": 0,
                          "price": 0,
                          "active": true,
                          "additionalTime": 0,
                          "lastStockUpdate": "string"
                        }
                      ],
                      "page": {
                        "size": 0,
                        "totalElements": 0,
                        "totalPages": 0,
                        "number": 0
                      }
                    }
                  },
                  "stoplight-example-1": {
                    "value": {
                      "links": [
                        {
                          "rel": "next",
                          "href": "https://.../v2/component?limit=5&offset=5"
                        }
                      ],
                      "content": [
                        {
                          "stockKeepingUnit": {
                            "id": 0,
                            "title": "string",
                            "partnerId": "string"
                          },
                          "stockLocal": {
                            "id": 0,
                            "oi": {
                              "value": "string"
                            },
                            "name": "string",
                            "virtual": true,
                            "defaultLocal": true,
                            "priorityPoints": 0
                          },
                          "amount": 0,
                          "reservationAmount": 0,
                          "availableAmount": 0,
                          "price": 0,
                          "active": true,
                          "additionalTime": 0,
                          "lastStockUpdate": "2019-08-24T14:15:22Z"
                        }
                      ],
                      "page": {
                        "size": 5,
                        "totalElements": 0,
                        "totalPages": 1,
                        "number": 1
                      }
                    }
                  }
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "operationId": "get-stocks",
        "description": "# Consultar Inventarios\nConsultar los detalles de un inventario\n\n> La consulta se puede realizar a través de los filtros utilizados en la consulta. Si no se especifica ningún filtro, y la devolución tiene más de 50 mil registros, se utilizará la devolución total de registros **(totalElements)** con valor aproximado, por razones de rendimiento.",
        "parameters": [
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "idSku",
            "description": "Atributo para filtrar por ID do SKU"
          },
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "idStockLocal",
            "description": "Atributo para filtrar por id do inventario local"
          },
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "sku",
            "description": "Atributo para filtrar por SKU"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/sort"
          },
          {
            "$ref": "#/components/parameters/sortDirection"
          },
          {
            "schema": {
              "type": "boolean"
            },
            "in": "query",
            "name": "hasReservation",
            "description": "Atributo para filtras os estoques que possuem reserva"
          }
        ]
      },
      "post": {
        "summary": "/stocks",
        "operationId": "post-stocks",
        "responses": {
          "204": {
            "description": "No Content"
          },
          "400": {
            "description": "Bad Request"
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "tags": [
          "Estoque"
        ],
        "description": "# Crear inventario\n Se creará stock para el SKU y se informará la ubicación de stock con toda la información de cantidad, costo y plazo adicional",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "type": "object",
                  "required": [
                    "partnerId",
                    "quantity",
                    "cost",
                    "stockLocalId"
                  ],
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "ID do SKU gerado pelo ANYMARKET"
                    },
                    "partnerId": {
                      "type": "string",
                      "description": "Código do SKU do parceiro"
                    },
                    "quantity": {
                      "type": "integer",
                      "description": "Quantidade de estoque"
                    },
                    "cost": {
                      "type": "integer",
                      "description": "Preço de Custo. A partir desse custo será calculado o preço final do produto caso o tipo do cálculo de preço esteja como automático"
                    },
                    "additionalTime": {
                      "type": "integer",
                      "description": "Prazo Adicional para entrega do produto. Também chamado de 'crossdocking' este é o prazo de preparo de cada produto para envio, seja de fabricação, aquisição, embalagem ou redirecionamento de local. Utilizado em marketplaces como B2W e VIA. Caso não informado, manterá o valor atual."
                    },
                    "stockLocalId": {
                      "type": "integer",
                      "description": "ID do Local de Estoque, caso não informado será criado no local padrão definido."
                    },
                    "skuLocationDescription": {
                      "type": "string",
                      "description": "Local de Estoque"
                    }
                  }
                }
              },
              "examples": {
                "example-1": {
                  "value": [
                    {
                      "id": 0,
                      "partnerId": "string",
                      "quantity": 0,
                      "cost": 0,
                      "additionalTime": 0,
                      "stockLocalId": 0
                    }
                  ]
                },
                "stoplight-example-1": {
                  "value": [
                    {
                      "partnerId": "naomexerIntelipost",
                      "quantity": 50,
                      "cost": 1000,
                      "additionalTime": 0,
                      "stockLocalId": 18448
                    }
                  ]
                }
              }
            }
          },
          "description": "<!-- theme: warning -->\n> #### Atenção!\n>\n> Tamanho máximo do lote é de **200 itens.**"
        }
      },
      "put": {
        "summary": "/stocks",
        "operationId": "put-stocks",
        "responses": {
          "204": {
            "description": "No Content"
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "description": "# Inventario de cambios\n Se utilizará para actualizar stock, plazo adicional o costo promedio. La operación de stock se realiza en lote, es decir, es posible enviar uno o más SKU para su actualización.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "integer",
                      "description": "ID do SKU gerado pelo ANYMARKET"
                    },
                    "partnerId": {
                      "type": "string",
                      "description": "Código do SKU do parceiro"
                    },
                    "quantity": {
                      "type": "number",
                      "description": "Quantidade em estoque",
                      "minimum": 0
                    },
                    "cost": {
                      "type": "number",
                      "description": "Custo médio do SKU no estoque. A partir desse custo será calculado o preço final do produto caso o tipo do cálculo de preço esteja como automático.",
                      "minimum": 0
                    },
                    "additionalTime": {
                      "type": "integer",
                      "description": "Prazo Adicional para entrega do produto. Também chamado de 'crossdocking' este é o prazo de preparo de cada produto para envio, seja de fabricação, aquisição, embalagem ou redirecionamento de local. Utilizado em marketplaces como B2W e CNOVA. Caso não informado, manterá o valor atual.\n"
                    },
                    "stockLocalId": {
                      "type": "integer",
                      "description": "ID do Local de Estoque"
                    },
                    "skuLocationDescription": {
                      "type": "string",
                      "description": "Local de Estoque"
                    }
                  },
                  "required": [
                    "partnerId",
                    "quantity"
                  ]
                }
              },
              "examples": {
                "Example 1": {
                  "value": [
                    {
                      "id": 0,
                      "partnerId": "string",
                      "quantity": 0,
                      "cost": 0,
                      "additionalTime": 0,
                      "stockLocalId": 0
                    }
                  ]
                },
                "stoplight-Example 1": {
                  "value": [
                    {
                      "id": 0,
                      "partnerId": "string",
                      "quantity": 0,
                      "cost": 0,
                      "additionalTime": 0,
                      "stockLocalId": 0
                    }
                  ]
                }
              }
            }
          },
          "description": "<!-- theme: warning -->\n> #### Atenção!\n>\n> Tamanho máximo do lote é de **200 itens**."
        },
        "tags": [
          "Estoque"
        ]
      }
    },
    "/stocks/batch": {
      "put": {
        "summary": "/stocks/batch",
        "operationId": "put-stocks-batch",
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "array",
                      "description": "SKUs atualizados com Sucesso",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "ID do SKU e Mensagem de erro dee Atualização"
                          }
                        }
                      }
                    },
                    "errors": {
                      "type": "array",
                      "description": "SKUs com erro de Atualização",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "ID do SKU e Mensagem de erro dee Atualização"
                          }
                        }
                      }
                    }
                  }
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "success": [
                        {
                          "SKU1": "Atualizado com sucesso"
                        },
                        {
                          "SKU2": "Atualizado com sucesso"
                        }
                      ],
                      "errors": [
                        {
                          "SKU3": "Erro ao processar: Quantidade, Custo, Prazo Adicional ou Localização do produto devem ser informados"
                        }
                      ]
                    }
                  },
                  "stoplight-example-1": {
                    "value": {
                      "success": {
                        "id": "string"
                      },
                      "errors": {
                        "id": "string"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request"
          }
        },
        "description": "# Altera Estoque\nSerá utilizada para realizar a atualização de estoque, prazo adicional ou do custo médio. A operação de estoque é realizada em batch, ou seja é possível enviar um ou mais SKUs para atualização.\n\n> O método `PUT` substitui completamente o recurso. \n>\n> Todos os campos obrigatórios devem ser enviados, mesmo que não tenham sido modificados.\n>\n> Campos omitidos podem ser redefinidos ou apagados.\n>\n> Use este método quando quiser sobrescrever todas as informações.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "type": "object",
                  "required": [
                    "partnerId",
                    "quantity"
                  ],
                  "properties": {
                    "id": {
                      "type": "integer",
                      "description": "ID do SKU gerado pelo ANYMARKET"
                    },
                    "partnerId": {
                      "type": "string",
                      "description": "Código do SKU do parceiro"
                    },
                    "quantity": {
                      "type": "integer",
                      "description": "Quantidade em estoque"
                    },
                    "cost": {
                      "type": "integer",
                      "description": "Custo médio do SKU no estoque. A partir desse custo será calculado o preço final do produto caso o tipo do cálculo de preço esteja como automático."
                    },
                    "additionalTime": {
                      "type": "integer",
                      "description": "Prazo Adicional para entrega do produto. Também chamado de 'crossdocking' este é o prazo de preparo de cada produto para envio, seja de fabricação, aquisição, embalagem ou redirecionamento de local. Utilizado em marketplaces como Americanas e VIA. Caso não informado, manterá o valor atual."
                    },
                    "stockLocalId": {
                      "type": "integer",
                      "description": "ID do Local de Estoque"
                    }
                  }
                }
              },
              "examples": {
                "Example 1": {
                  "value": [
                    {
                      "id": 0,
                      "partnerId": "string",
                      "quantity": 0,
                      "cost": 0,
                      "additionalTime": 0,
                      "stockLocalId": 0
                    }
                  ]
                },
                "example-1": {
                  "value": [
                    {
                      "id": 0,
                      "partnerId": "string",
                      "quantity": 0,
                      "cost": 0,
                      "additionalTime": 0,
                      "stockLocalId": 0
                    }
                  ]
                }
              }
            }
          },
          "description": "<!-- theme: warning -->\n> #### Atenção!\n>\n> Tamanho máximo do lote é de **200 itens**."
        },
        "tags": [
          "Estoque"
        ]
      },
      "parameters": []
    },
    "/stocks/fulfillment/{marketplace}/{idSku}": {
      "parameters": [
        {
          "schema": {
            "$ref": "#/components/schemas/EnumMarketplaces"
          },
          "name": "marketplace",
          "in": "path",
          "required": true,
          "description": "Identificador do marketplace."
        },
        {
          "schema": {
            "type": "string"
          },
          "name": "idSku",
          "in": "path",
          "required": true,
          "description": "Id do SKU do ANYMARKET."
        }
      ],
      "get": {
        "summary": "/stocks/fulfillment/{marketplace}/{idSku}",
        "tags": [
          "Fulfillment"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/StockFulfillmentGet"
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/400"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "operationId": "get-stocks-fulfillment",
        "description": "# Consulta estoque fulfillment por marketplace e idSku\nUtilizada para listar os estoques fulfillment do SKU em cada centro de distribuição do marketplace.\nParâmetro 'marketplace' podendo ser:\n- B2W_NEW_API\n- MERCADO_LIVRE\n- OUTROS\n<!-- theme: warning -->\n> #### Atenção!\n>\n> Atributo **'marketplace'** deve ser caixa alta (maiúsculo) pois trata-se de um ENUM."
      }
    },
    "/stocks/locals": {
      "get": {
        "summary": "/stocks/locals",
        "tags": [
          "Local de Estoque"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/StockLocalGet"
                  }
                }
              }
            }
          }
        },
        "operationId": "get-stocks-locals",
        "description": "# Consulta Locais de Inventario\nSe utiliza para enumerar los datos de Local de Inventario."
      },
      "post": {
        "summary": "/stocks/locals",
        "operationId": "post-stocks-locals",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "",
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string",
                      "minLength": 1
                    },
                    "data": {
                      "$ref": "#/components/schemas/StockLocalGet"
                    }
                  }
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "message": "Estoque criado com sucesso!",
                      "data": {
                        "id": 1,
                        "name": "string",
                        "virtual": true,
                        "distributor": "string",
                        "defaultLocal": true,
                        "zipCode": "string"
                      }
                    }
                  },
                  "stoplight-example-1": {
                    "value": {
                      "message": "Estoque criado com sucesso!",
                      "data": {
                        "id": 3586,
                        "name": "stringqwe",
                        "virtual": false,
                        "defaultLocal": false
                      }
                    }
                  }
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "description": "# Crear Local de Inventario\n Se utiliza para crear los datos de Local de Inventario.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/StockLocalPost"
              }
            }
          }
        },
        "tags": [
          "Local de Estoque"
        ]
      }
    },
    "/stocks/locals/{id}": {
      "get": {
        "summary": "/stocks/locals/{id}",
        "tags": [
          "Local de Estoque"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/StockLocalGet"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          }
        },
        "operationId": "get-stocks-locals-id",
        "description": "# Consulta Local de Inventario\nUtilizada para buscar local de estoque por id."
      },
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID do Local de Inventario generado por ANYMARKET"
        }
      ],
      "delete": {
        "summary": "/stocks/locals/{id}",
        "operationId": "delete-stocks-locals-id",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "",
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string",
                      "minLength": 1
                    },
                    "data": {
                      "type": "integer",
                      "format": "int64",
                      "minimum": 1
                    }
                  },
                  "required": [
                    "message",
                    "data"
                  ]
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "message": "Local de Estoque removido com sucesso!",
                      "data": 1
                    }
                  },
                  "stoplight-example-1": {
                    "value": {
                      "message": "Local de Estoque removido com sucesso!",
                      "data": 3586
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "description": "# Excluye Local de Inventario\nExcluye o Local de Inventario",
        "tags": [
          "Local de Estoque"
        ]
      },
      "put": {
        "summary": "/stocks/locals/{id}",
        "operationId": "put-stocks-locals-id",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "",
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string",
                      "minLength": 1
                    },
                    "data": {
                      "$ref": "#/components/schemas/StockLocalGet"
                    }
                  }
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "message": "Atualizado com sucesso!",
                      "data": {
                        "id": 1,
                        "name": "string",
                        "virtual": true,
                        "defaultLocal": true,
                        "zipCode": "string"
                      }
                    }
                  },
                  "stoplight-example-1": {
                    "value": {
                      "message": "Estoque criado com sucesso!",
                      "data": {
                        "id": 3586,
                        "name": "stringqwe",
                        "virtual": false,
                        "defaultLocal": false
                      }
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "description": "# Cambio Local de Inventario\nSe utiliza para cambiar los datos de Locais de Inventario.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/StockLocalPost"
              }
            }
          }
        },
        "tags": [
          "Local de Estoque"
        ]
      }
    },
    "/orders/feeds": {
      "get": {
        "summary": "/orders/feeds",
        "tags": [
          "Feed pedido"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "maxItems": 10,
                  "items": {
                    "$ref": "#/components/schemas/OrderFeed"
                  }
                }
              }
            }
          }
        },
        "operationId": "get-orders-feeds",
        "description": "# Consultar todos los pedidos modificados\n Cuando se crea o cambia un pedido en ANYMARKET, está disponible para su consulta a través de este feed y está disponible durante 30 días. El resultado de la consulta del feed devuelve 10 elementos disponibles aleatoriamente.",
        "parameters": [
          {
            "$ref": "#/components/parameters/limit"
          }
        ]
      },
      "parameters": []
    },
    "/orders/feeds/{id}": {
      "put": {
        "summary": "/orders/feeds/{id}",
        "operationId": "put-orders-feeds-id",
        "responses": {
          "204": {
            "description": "No Content"
          },
          "400": {
            "description": "Bad Request"
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          }
        },
        "tags": [
          "Feed pedido"
        ],
        "description": "# Marcar el feed como procesado\n Tras consultar el pedido a través del feed, es necesario marcarlo como leído. Si no está marcado, se seguirá trayendo a la cita.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "description": "",
                "type": "object",
                "properties": {
                  "token": {
                    "type": "string",
                    "minLength": 1,
                    "format": "uuid",
                    "description": "Token recuperado na consulta do feed"
                  }
                },
                "required": [
                  "token"
                ]
              },
              "examples": {
                "example-1": {
                  "value": {
                    "token": "string"
                  }
                }
              }
            }
          },
          "description": "Dados para atualização do feed"
        },
        "parameters": [
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "description": "Status recuperado no momento da consulta do pedido, caso este parâmetro seja enviado apenas o status informado será marcado como lido. Por padrão são marcados como lidos todos os feeds do pedido em questão  ",
            "name": "status"
          }
        ]
      },
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID de pedido generado por ANYMARKET"
        }
      ]
    },
    "/orders/feeds/batch": {
      "put": {
        "summary": "/orders/feeds/batch",
        "operationId": "put-orders-feeds-batch",
        "responses": {
          "204": {
            "description": "No Content"
          },
          "400": {
            "description": "Bad Request"
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          }
        },
        "tags": [
          "Feed pedido"
        ],
        "description": "# Marca vários feeds como processados de uma vez\nApós consulta de diversos pedidos através do feed, é preciso marcá-los como lidos. Caso não sejam marcados, continuarão retornandos na consulta. Por este endpoint é possível fazer a confirmação de leitura em massa de vários pedidos.\n\n> O método `PUT` substitui completamente o recurso. \n>\n> Todos os campos obrigatórios devem ser enviados, mesmo que não tenham sido modificados.\n>\n> Campos omitidos podem ser redefinidos ou apagados.\n>\n> Use este método quando quiser sobrescrever todas as informações.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "type": "object",
                  "required": [
                    "id",
                    "token",
                    "type"
                  ],
                  "properties": {
                    "id": {
                      "type": "integer",
                      "description": "Id da notificação do pedido",
                      "example": 188443520
                    },
                    "status": {
                      "type": "string",
                      "description": "Status do pedido no momento do GET no pedido, caso queira fazer a confirmação por status",
                      "example": "PENDING"
                    },
                    "token": {
                      "type": "string",
                      "description": "Token recuperado na consulta do feed",
                      "format": "uuid",
                      "example": "c74952c9-f181-4ea5-81d2-adeee74215c4"
                    },
                    "type": {
                      "type": "string",
                      "description": "Tipo da notificação",
                      "example": "ORDER"
                    }
                  }
                }
              },
              "examples": {
                "Example 1": {
                  "value": [
                    {
                      "id": 188443520,
                      "status": "PENDING",
                      "token": "c74952c9-f181-4ea5-81d2-adeee74215c4",
                      "type": "ORDER"
                    },
                    {
                      "id": 188443520,
                      "status": "PENDING",
                      "token": "c74952c9-f181-4ea5-81d2-adeee74215c4",
                      "type": "ORDER"
                    }
                  ]
                },
                "stoplight-Example 1": {
                  "value": [
                    {
                      "id": 188443520,
                      "status": "PAID_WAITING_SHIP",
                      "token": "c74952c9-f181-4ea5-81d2-adeee74215c4",
                      "type": "ORDER"
                    },
                    {
                      "id": 188443328,
                      "status": "PAID_WAITING_SHIP",
                      "token": "5238ba67-57b6-4097-9f75-14c3b2ae6a78",
                      "type": "ORDER"
                    }
                  ]
                }
              }
            }
          },
          "description": "Dados para atualização do feed"
        },
        "parameters": []
      },
      "parameters": []
    },
    "/transmissions/feeds": {
      "get": {
        "summary": "/transmissions/feeds",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "maxItems": 10,
                  "items": {
                    "$ref": "#/components/schemas/TransmissionsFeed"
                  }
                }
              }
            }
          }
        },
        "operationId": "get-transmissions-feeds",
        "description": "# Ver todas las transmisiones cambiadas\n Cuando se crea o cambia un SKU en ANYMARKET, está disponible para su consulta a través de este feed y está disponible durante 30 días. Si no se informa un límite, el resultado de la consulta del feed devuelve 10 artículos disponibles al azar",
        "tags": [
          "Feed transmissão"
        ],
        "parameters": [
          {
            "$ref": "#/components/parameters/limit"
          }
        ]
      },
      "parameters": []
    },
    "/transmissions/feeds/{id}": {
      "put": {
        "summary": "/transmissions/feeds/{id}",
        "operationId": "put-transmissions-feeds-id",
        "responses": {
          "204": {
            "description": "No Content"
          },
          "400": {
            "description": "Bad Request"
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          }
        },
        "description": "# Marcar el feed como procesado\n Después de consultar el producto a través del feed, es necesario marcarlo como leído. Si no está marcado, se seguirá trayendo a la cita.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "description": "",
                "type": "object",
                "properties": {
                  "token": {
                    "type": "string",
                    "minLength": 1,
                    "format": "uuid",
                    "description": "Token recuperado na consulta do feed"
                  }
                },
                "required": [
                  "token"
                ]
              },
              "examples": {
                "example-1": {
                  "value": {
                    "token": "string"
                  }
                }
              }
            }
          },
          "description": "Dados para atualização do feed"
        },
        "tags": [
          "Feed transmissão"
        ]
      },
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID do SKU generado por ANYMARKET"
        }
      ]
    },
    "/transmissions/feeds/batch": {
      "put": {
        "summary": "/transmissions/feeds/batch",
        "operationId": "put-transmissions-feeds-batch",
        "responses": {
          "204": {
            "description": "No Content"
          },
          "400": {
            "description": "Bad Request"
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          }
        },
        "description": "# Marca vários feeds de transmissão como processados de uma vez\nApós consulta de diversas transmissões através do feed, é preciso marcá-los como lidos. Caso não sejam marcados, continuarão retornandos na consulta. Por este endpoint é possível fazer a confirmação de leitura em massa de vários pedidos.\n\n> O método `PUT` substitui completamente o recurso. \n>\n> Todos os campos obrigatórios devem ser enviados, mesmo que não tenham sido modificados.\n>\n> Campos omitidos podem ser redefinidos ou apagados.\n>\n> Use este método quando quiser sobrescrever todas as informações.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "type": "object",
                  "required": [
                    "id",
                    "token",
                    "type"
                  ],
                  "properties": {
                    "id": {
                      "type": "integer",
                      "description": "Id da notificação de transmissão",
                      "example": 188443520
                    },
                    "status": {
                      "type": "string",
                      "description": "Evento que originou a transmissão",
                      "example": "CREATED"
                    },
                    "token": {
                      "type": "string",
                      "description": "Token recuperado na consulta do feed",
                      "format": "uuid",
                      "example": "c74952c9-f181-4ea5-81d2-adeee74215c4"
                    },
                    "type": {
                      "type": "string",
                      "description": "Tipo da notificação",
                      "example": "TRANSMISSIONS"
                    }
                  }
                }
              },
              "examples": {
                "Example 1": {
                  "value": [
                    {
                      "id": 188443520,
                      "status": "CREATE",
                      "token": "c74952c9-f181-4ea5-81d2-adeee74215c4",
                      "type": "TRANSMISSION"
                    },
                    {
                      "id": 188443520,
                      "status": "UPDATE",
                      "token": "c74952c9-f181-4ea5-81d2-adeee74215c4",
                      "type": "TRANSMISSION"
                    }
                  ]
                },
                "stoplight-Example 1": {
                  "value": [
                    {
                      "id": 188443520,
                      "status": "PAID_WAITING_SHIP",
                      "token": "c74952c9-f181-4ea5-81d2-adeee74215c4",
                      "type": "ORDER"
                    },
                    {
                      "id": 188443328,
                      "status": "PAID_WAITING_SHIP",
                      "token": "5238ba67-57b6-4097-9f75-14c3b2ae6a78",
                      "type": "ORDER"
                    }
                  ]
                }
              }
            }
          },
          "description": "Dados para atualização do feed de transmissão"
        },
        "parameters": [],
        "tags": [
          "Feed transmissão"
        ]
      },
      "parameters": []
    },
    "/transmissions-price/feeds": {
      "get": {
        "summary": "/transmissions-price/feeds",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "maxItems": 10,
                  "items": {
                    "$ref": "#/components/schemas/TransmissionsPriceFeed"
                  }
                }
              }
            }
          }
        },
        "operationId": "get-transmissions-price-feeds",
        "description": "# Consulta as alterações de preço nas transmissões\nQuando uma alteração de preço de transmissão é realizada no ANYMARKET,  o mesmo é disponibilizado para consulta través desse feed e fica disponível por 30 dias (se foi lido, 30 dias a partir da data de leitura, se não foi lido, 30 dias a partir da data de edição.). \n\n\nO caso não informado um limit o resultado da consulta de feed retorna 100 itens disponíveis aleatóriamente\n\n<!-- theme: warning -->\n> #### Atenção!\n>\n> Só serão retornadas as operações configuradas pelo seller no painel do ANYMARKET.\n\nApós leitura dos itens dos FEED, é necessário realizar um PUT para confirmar a leitura.",
        "tags": [
          "Feed preço de transmissão"
        ],
        "parameters": [
          {
            "$ref": "#/components/parameters/limit"
          }
        ]
      },
      "parameters": []
    },
    "/transmissions-price/feeds/{id}": {
      "put": {
        "summary": "/transmissions-price/feeds/{id}",
        "operationId": "put-transmissions-price-feeds-id",
        "responses": {
          "204": {
            "description": "No Content"
          },
          "400": {
            "description": "Bad Request"
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          }
        },
        "description": "# Marca o feed como processado\nApós consulta da atualização de preço nas transmissões através do feed, é preciso marcá-lo como lido. Caso não seja marcado, o mesmo continuará a ser trazido na consulta.\n\n> O método `PUT` substitui completamente o recurso. \n>\n> Todos os campos obrigatórios devem ser enviados, mesmo que não tenham sido modificados.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "description": "",
                "type": "object",
                "properties": {
                  "token": {
                    "type": "string",
                    "minLength": 1,
                    "format": "uuid",
                    "description": "Token recuperado na consulta do feed"
                  }
                },
                "required": [
                  "token"
                ]
              },
              "examples": {
                "example-1": {
                  "value": {
                    "token": "string"
                  }
                }
              }
            }
          },
          "description": "Dados de identificação do feed que será marcado como lido"
        },
        "tags": [
          "Feed preço de transmissão"
        ]
      },
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID da notificação gerado pelo ANYMARKET"
        }
      ]
    },
    "/transmissions-price/feeds/batch": {
      "put": {
        "summary": "/transmissions-price/feeds/batch",
        "operationId": "put-transmissions-price-feeds-batch",
        "responses": {
          "204": {
            "description": "No Content"
          },
          "400": {
            "description": "Bad Request"
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          }
        },
        "description": "# Marca vários feeds de atualização de preço nas transmissões como processados em lote\nApós consulta de diversas atualização de preço nas transmissões através do feed, é preciso marcá-los como lidos. Caso não sejam marcados, continuarão retornandos na consulta. Por este endpoint é possível fazer a confirmação de leitura em massa de vários transmissões.\n\n> O método `PUT` substitui completamente o recurso. \n>\n> Todos os campos obrigatórios devem ser enviados, mesmo que não tenham sido modificados.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "type": "object",
                  "required": [
                    "id",
                    "token"
                  ],
                  "properties": {
                    "id": {
                      "type": "integer",
                      "description": "Id da notificação de transmissão",
                      "example": 188443520
                    },
                    "token": {
                      "type": "string",
                      "description": "Token recuperado na consulta do feed",
                      "format": "uuid",
                      "example": "c74952c9-f181-4ea5-81d2-adeee74215c4"
                    }
                  }
                }
              },
              "examples": {
                "Example 1": {
                  "value": [
                    {
                      "id": 188443520,
                      "token": "c74952c9-f181-4ea5-81d2-adeee74215c4"
                    },
                    {
                      "id": 188443520,
                      "token": "c74952c9-f181-4ea5-81d2-adeee74215c4"
                    }
                  ]
                },
                "stoplight-Example 1": {
                  "value": [
                    {
                      "id": 188443520,
                      "token": "c74952c9-f181-4ea5-81d2-adeee74215c4"
                    },
                    {
                      "id": 188443328,
                      "token": "5238ba67-57b6-4097-9f75-14c3b2ae6a78"
                    }
                  ]
                }
              }
            }
          },
          "description": "Dados de identificação do feed que será marcado como lido"
        },
        "parameters": [],
        "tags": [
          "Feed preço de transmissão"
        ]
      },
      "parameters": []
    },
    "/reservations/feeds": {
      "get": {
        "summary": "/reservations/feeds",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "integer",
                      "example": 13
                    },
                    "token": {
                      "type": "string",
                      "example": "5238ba67-57b6-4097-9f75-14c3b2ae6a78"
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "get-reservations-feeds",
        "description": "# Consulta todos as reservas de estoque alteradas\nQuando uma reserva de estoque é criada ou alterada no ANYMARKET,  a mesmo é disponibilizada para consulta través desse feed e fica disponível por 30 dias (se foi lido, 30 dias a partir da data de leitura, se não foi lido, 30 dias a partir da data de criação/edição.). \n\n\nO caso não informado um limit o resultado da consulta de feed retorna 100 itens disponíveis aleatóriamente\n\n<!-- theme: warning -->\n> #### Atenção!\n>\n> Só serão retornadas as operações configuradas pelo seller no painel do ANYMARKET.\n\nApós leitura dos itens dos FEED, é necessário realizar um PUT para confirmar a leitura.",
        "parameters": [
          {
            "$ref": "#/components/parameters/limit"
          }
        ],
        "tags": [
          "Feed reserva"
        ]
      },
      "parameters": []
    },
    "/reservations/feeds/{id}": {
      "put": {
        "summary": "/reservations/feeds/{id}",
        "operationId": "put-reservations-feeds-id",
        "responses": {
          "204": {
            "description": "No Content"
          },
          "400": {
            "description": "Bad Request"
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          }
        },
        "description": "# Marca o feed como processado\nApós consulta da reserva através do feed, é preciso marcá-lo como lido. Caso não seja marcado, o mesmo continuará a ser trazido na consulta.\n\n> O método `PUT` substitui completamente o recurso. \n>\n> Todos os campos obrigatórios devem ser enviados, mesmo que não tenham sido modificados.\n>\n> Campos omitidos podem ser redefinidos ou apagados.\n>\n> Use este método quando quiser sobrescrever todas as informações.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "description": "",
                "type": "object",
                "properties": {
                  "token": {
                    "type": "string",
                    "minLength": 1,
                    "format": "uuid",
                    "description": "Token recuperado na consulta do feed"
                  }
                },
                "required": [
                  "token"
                ]
              },
              "examples": {
                "example-1": {
                  "value": {
                    "token": "string"
                  }
                }
              }
            }
          },
          "description": "Dados para atualização do feed"
        },
        "tags": [
          "Feed reserva"
        ]
      },
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID do SKU gerado pelo ANYMARKET"
        }
      ]
    },
    "/reservations/feeds/batch": {
      "put": {
        "summary": "/reservations/feeds/batch",
        "operationId": "put-reservations-feeds-batch",
        "responses": {
          "204": {
            "description": "No Content"
          },
          "400": {
            "description": "Bad Request"
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          }
        },
        "description": "# Marca vários feeds de reserva de estoque como processados de uma vez\nApós consulta de diversas reservas de estoque através do feed, é preciso marcá-los como lidos. Caso não sejam marcados, continuarão retornandos na consulta. Por este endpoint é possível fazer a confirmação de leitura em massa de vários pedidos.\n\n> O método `PUT` substitui completamente o recurso. \n>\n> Todos os campos obrigatórios devem ser enviados, mesmo que não tenham sido modificados.\n>\n> Campos omitidos podem ser redefinidos ou apagados.\n>\n> Use este método quando quiser sobrescrever todas as informações.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "type": "object",
                  "required": [
                    "id",
                    "token",
                    "type"
                  ],
                  "properties": {
                    "id": {
                      "type": "integer",
                      "description": "Id da notificação de reserva de estoque",
                      "example": 188443520
                    },
                    "status": {
                      "type": "string",
                      "description": "Evento da reserva",
                      "example": "CREATED"
                    },
                    "token": {
                      "type": "string",
                      "description": "Token recuperado na consulta do feed",
                      "format": "uuid",
                      "example": "c74952c9-f181-4ea5-81d2-adeee74215c4"
                    },
                    "type": {
                      "type": "string",
                      "description": "Tipo da notificação",
                      "example": "STOCK_RESERVATION"
                    }
                  }
                }
              },
              "examples": {
                "Example 1": {
                  "value": [
                    {
                      "id": 188443520,
                      "status": "CREATE",
                      "token": "c74952c9-f181-4ea5-81d2-adeee74215c4",
                      "type": "STOCK_RESERVATION"
                    },
                    {
                      "id": 188443520,
                      "status": "UPDATE",
                      "token": "c74952c9-f181-4ea5-81d2-adeee74215c4",
                      "type": "STOCK_RESERVATION"
                    }
                  ]
                },
                "stoplight-Example 1": {
                  "value": [
                    {
                      "id": 188443520,
                      "status": "PAID_WAITING_SHIP",
                      "token": "c74952c9-f181-4ea5-81d2-adeee74215c4",
                      "type": "ORDER"
                    },
                    {
                      "id": 188443328,
                      "status": "PAID_WAITING_SHIP",
                      "token": "5238ba67-57b6-4097-9f75-14c3b2ae6a78",
                      "type": "ORDER"
                    }
                  ]
                }
              }
            }
          },
          "description": "Dados para atualização do feed de transmissão"
        },
        "parameters": [],
        "tags": [
          "Feed reserva"
        ]
      },
      "parameters": []
    },
    "/freight/quotes": {
      "post": {
        "summary": "/freight/quotes",
        "operationId": "post-freight-quotes",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/FreightResponse"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "description": "# Cotización de valores de flete\n Cotización de valores de flete para el objeto informado",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/FreightRequest"
              }
            }
          }
        },
        "tags": [
          "Cotar Frete"
        ]
      }
    },
    "/products/{productId}/images": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "productId",
          "in": "path",
          "required": true,
          "description": "ID del producto generado por ANYMARKET"
        }
      ],
      "get": {
        "summary": "/products/{productId}/images",
        "tags": [
          "Imagem"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Image"
                  }
                },
                "examples": {
                  "example-1": {
                    "value": [
                      {
                        "id": 0,
                        "index": 0,
                        "main": true,
                        "url": "http://example.com",
                        "thumbnailUrl": "http://example.com",
                        "lowResolutionUrl": "http://example.com",
                        "standardUrl": "http://example.com",
                        "originalImage": "http://example.com",
                        "variation": "string",
                        "status": "UNPROCESSED",
                        "statusMessage": "string",
                        "standardWidth": -2147483648,
                        "standardHeight": -2147483648,
                        "originalWidth": -2147483648,
                        "originalHeight": -2147483648
                      }
                    ]
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          }
        },
        "operationId": "get-products-productId-images",
        "description": "# Consultar todas las imágenes de un producto\n Consultar todas las imágenes de un producto"
      },
      "post": {
        "summary": "/products/{productId}/images",
        "operationId": "post-products-productId-images",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "integer",
                      "description": "ID da imagem gerado pelo ANYMARKET"
                    },
                    "index": {
                      "type": "integer",
                      "description": "Índice da imagem, ou seja, posição da imagem no cadastro no produto; inicia-se em 1 e limita-se a quantidade de imagens no produto"
                    },
                    "main": {
                      "type": "boolean",
                      "description": "Determina se a imagem é principal"
                    },
                    "url": {
                      "type": "string",
                      "description": "URL original da imagem"
                    },
                    "variation": {
                      "type": "string",
                      "description": "Valor de Variação da Imagem"
                    },
                    "status": {
                      "type": "string",
                      "description": "Determina qual é o status da imagem",
                      "enum": [
                        "UNPROCESSED",
                        "PROCESSED",
                        "ERROR"
                      ]
                    },
                    "standardWidth": {
                      "type": "integer",
                      "description": "Dimensão padrão de largura da imagem"
                    },
                    "standardHeight": {
                      "type": "integer",
                      "description": "Dimensão padrão de altura da imagem"
                    },
                    "originalWidth": {
                      "type": "integer",
                      "description": "Dimensão original de largura da imagem"
                    },
                    "originalHeight": {
                      "type": "integer",
                      "description": "Dimensão original de altura da imagem"
                    }
                  }
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "index": 0,
                      "main": true,
                      "url": "string",
                      "variation": "string",
                      "status": "UNPROCESSED",
                      "standardWidth": 0,
                      "standardHeight": 0,
                      "originalWidth": 0,
                      "originalHeight": 0
                    }
                  },
                  "stoplight-example-1": {
                    "value": {
                      "id": 2523770137,
                      "index": 2,
                      "main": true,
                      "url": "https://static.netshoes.com.br/produtos/bola-de-futebol-campo-nike-mercurial-fade/58/HZM-1897-058/HZM-1897-058_zoom3.jpg?ts=1564483160&ims=544x",
                      "variation": "Azul",
                      "status": "UNPROCESSED",
                      "standardWidth": 0,
                      "standardHeight": 0,
                      "originalWidth": 0,
                      "originalHeight": 0
                    }
                  }
                }
              },
              "application/xml": {
                "schema": {
                  "type": "object",
                  "properties": {}
                },
                "examples": {
                  "example-1": {
                    "value": {}
                  }
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "description": "# Crear una imagen con los datos dados\n Crea una imagen con los datos dados. Si se informa un índice para la imagen, ANYMARKET mantendrá el índice, manteniendo siempre el índice dentro del número de imágenes informadas para el producto. Si no se informa, se asignará en secuencia a partir de 1. Si se informa la imagen como principal, ANYMARKET validará si no hay otra imagen marcada como principal",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ImagePost"
              },
              "examples": {
                "example-1": {
                  "value": {
                    "index": 0,
                    "main": true,
                    "url": "string",
                    "variation": "string"
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Imagem"
        ]
      },
      "put": {
        "summary": "/products/{productId}/images",
        "operationId": "put-products-productId-images",
        "responses": {
          "200": {
            "description": "OK"
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "description": "# Edite el índice y/o principal de la imagen informada\n Si el índice informado es mayor que el número de imágenes del producto, la operación será ignorada. Si el índice informado es el mismo que otra imagen, entonces se cambiarán los índices. Si la imagen se cambia a principal y ya hay una primera imagen con el mismo marcado, la primera imagen ya no será principal.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ImagePut"
              },
              "examples": {
                "example-1": {
                  "value": {
                    "id": 0,
                    "index": 0,
                    "main": true
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Imagem"
        ]
      }
    },
    "/products/{productId}/images/{imageId}": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "productId",
          "in": "path",
          "required": true,
          "description": "ID de producto generado por ANYMARKET"
        },
        {
          "schema": {
            "type": "integer"
          },
          "name": "imageId",
          "in": "path",
          "required": true,
          "description": "ID da imagen generada por ANYMARKET"
        }
      ],
      "get": {
        "summary": "/products/{productId}/images/{imageId}",
        "tags": [
          "Imagem"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Image"
                  }
                },
                "examples": {
                  "example-1": {
                    "value": [
                      {
                        "id": 0,
                        "index": 0,
                        "main": true,
                        "url": "http://example.com",
                        "thumbnailUrl": "http://example.com",
                        "lowResolutionUrl": "http://example.com",
                        "standardUrl": "http://example.com",
                        "originalImage": "http://example.com",
                        "variation": "string",
                        "status": "UNPROCESSED",
                        "statusMessage": "string",
                        "standardWidth": -2147483648,
                        "standardHeight": -2147483648,
                        "originalWidth": -2147483648,
                        "originalHeight": -2147483648
                      }
                    ]
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          }
        },
        "operationId": "get-products-productId-images-imageId",
        "description": "# Consultar los detalles de una imagen\n Consultar los detalles de una imagen"
      },
      "delete": {
        "summary": "/products/{productId}/images/{imageId}",
        "operationId": "delete-products-productId-images-imageId",
        "responses": {
          "204": {
            "description": "No Content"
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          }
        },
        "description": "# Eliminar la imagen informada\n Eliminar la imagen informada",
        "tags": [
          "Imagem"
        ]
      }
    },
    "/messages/order/{id}": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID de pedido proporcionado por ANYMARKET"
        }
      ],
      "post": {
        "summary": "/messages/order/{id}",
        "tags": [
          "Mensageria"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string",
                      "description": "Texto da mensagem para o comprador do pedido"
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request"
          }
        },
        "operationId": "get-messages-order-id",
        "description": "# Enviar un mensaje al comprador del pedido a Mercado Livre\n Envía un mensaje al comprador de la orden en Mercado Libre al mercado.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "description": "",
                "type": "object",
                "properties": {
                  "message": {
                    "type": "string",
                    "minLength": 1
                  }
                },
                "required": [
                  "message"
                ]
              },
              "examples": {
                "example-1": {
                  "value": {
                    "message": "string"
                  }
                }
              }
            }
          },
          "description": "Mensagem para o comprador"
        }
      }
    },
    "/monitorings": {
      "post": {
        "summary": "/monitorings",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": [
                    "partnerId",
                    "origin",
                    "message",
                    "createdAt",
                    "type",
                    "status"
                  ],
                  "properties": {
                    "partnerId": {
                      "type": "string",
                      "description": "ID do monitoramento - controle no parceiro",
                      "minLength": 1
                    },
                    "origin": {
                      "type": "string",
                      "description": "Nome do integrador",
                      "minLength": 1
                    },
                    "message": {
                      "type": "string",
                      "description": "Resumo da mensagem de erro",
                      "minLength": 1,
                      "maxLength": 500
                    },
                    "details": {
                      "type": "string",
                      "description": "Detalhes da mensagem de erro",
                      "minLength": 1,
                      "maxLength": 4000
                    },
                    "createdAt": {
                      "type": "string",
                      "description": "Data de entrada do registro"
                    },
                    "type": {
                      "type": "string",
                      "description": "Tipo de monitoramento",
                      "enum": [
                        "ALERT",
                        "INTERNAL_ERROR",
                        "CRITICAL_ERROR"
                      ]
                    },
                    "retryCallbackURL": {
                      "type": "string",
                      "description": "URL da API do integrador"
                    },
                    "status": {
                      "type": "string",
                      "description": "Tipo de satus do monitoramento",
                      "enum": [
                        "PENDING",
                        "RETRYING",
                        "CANCELLED",
                        "CONCLUED"
                      ]
                    }
                  }
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "partnerId": "order-1",
                      "origin": "ERP",
                      "message": "Erro ao importar pedido 1",
                      "details": "Erro ao importar pedido 1 por falta do mapegamento de transportadora.",
                      "createdAt": "2021-11-25T20:30:00-03:00",
                      "type": "CRITICAL_ERROR",
                      "retryCallbackURL": "https//callback.meusite.meu/orders/1",
                      "status": "PENDING"
                    }
                  },
                  "stoplight-example-1": {
                    "value": {
                      "partnerId": "string",
                      "origin": "string",
                      "message": "string",
                      "details": "string",
                      "createdAt": "2019-08-24T14:15:22Z",
                      "type": "ALERT",
                      "retryCallbackURL": "http://example.com",
                      "status": "PENDING"
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "post-monitorings",
        "description": "# Crear un registro para monitorear\n Crear un registro para monitorear",
        "tags": [
          "Monitoramento de Erro"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/MonitoringPost"
              },
              "examples": {
                "Example 1": {
                  "value": {
                    "partnerId": "order-1",
                    "origin": "ERP",
                    "message": "Erro ao importar pedido 1",
                    "details": "Erro ao importar pedido 1 por falta do mapegamento de transportadora.",
                    "createdAt": "2021-11-25T20:30:00-03:00",
                    "type": "CRITICAL_ERROR",
                    "retryCallbackURL": "https://callback.meusite.meu/orders/1",
                    "status": "PENDING"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/monitorings/{id}": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID do monitoramento generado por ANYMARKET"
        }
      ],
      "put": {
        "summary": "/monitorings/{id}",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Monitoring"
                }
              }
            }
          }
        },
        "operationId": "put-monitorings-id",
        "description": "# Actualiza los datos de un evento monitoreado\n Actualiza los datos de un evento monitoreado",
        "tags": [
          "Monitoramento de Erro"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/MonitoringPut"
              }
            }
          }
        },
        "x-internal": true,
        "x-stoplight": {
          "id": "2mdj8q4hlsa0s"
        }
      }
    },
    "/orders": {
      "get": {
        "tags": [
          "Pedido"
        ],
        "summary": "/orders",
        "description": "# Consulta de pedidos\n Consultar detalles del pedido\n\n> La consulta se puede realizar a través de los filtros informados en la query. Si no se especifica ningún filtro, la respuesta estará limitada a los registros creados en los últimos 120 días.\n\n> Cuando se informen los parámetros createdAfter (fecha inicial de creación) y createdBefore (fecha final de creación), el sistema validará que el intervalo solicitado esté dentro del límite máximo de 120 días.\n\n> Si solo se informa el parámetro createdAfter, se devolverán los registros comprendidos entre la fecha inicial informada y el período máximo de 120 días a partir de esa fecha.\n\n> Si solo se informa el parámetro createdBefore, se devolverán los registros comprendidos entre la fecha final informada y el período máximo de 120 días retroactivos.\n\n> Cuando se informen los parámetros updatedAfter (actualizado después de) y updatedBefore (actualizado antes de), el sistema validará que el intervalo solicitado esté dentro del límite máximo de 7 días.\n\n> En caso de no informar filtros y que el volumen de datos supere los 30 mil registros, el campo totalElements será devuelto con un valor aproximado, por razones de rendimiento.\n",
        "parameters": [
          {
            "name": "createdAfter",
            "in": "query",
            "description": "Creado a partir de",
            "required": false,
            "schema": {
              "type": "string",
              "format": "date-time",
              "example": "2021-11-25T14:00:00-03:00"
            }
          },
          {
            "name": "createdBefore",
            "in": "query",
            "description": "Creado antes",
            "required": false,
            "schema": {
              "type": "string",
              "format": "date-time",
              "example": "2021-11-25T20:30:00-03:00"
            }
          },
          {
            "name": "status",
            "in": "query",
            "description": "Atributo para filtrar por Status del pedido",
            "schema": {
              "type": "string",
              "enum": [
                "PENDING",
                "DELIVERY_ISSUE",
                "PAID_WAITING_SHIP",
                "INVOICED",
                "PAID_WAITING_DELIVERY",
                "CONCLUDED",
                "CANCELED"
              ]
            }
          },
          {
            "$ref": "#/components/parameters/marketplaceQuery"
          },
          {
            "name": "marketplaceId",
            "in": "query",
            "description": "Atributo para filtrar por ID de pedido en Marketplace",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/sort"
          },
          {
            "$ref": "#/components/parameters/sortDirection"
          },
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "partnerId",
            "description": "Atributo para filtrar pelo ID do Pedido no Integrador"
          },
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "shippingId",
            "description": "Id de envio do marketplace, utilizado para otimizar a consulta de pedidos Mercado Livre"
          },
          {
            "schema": {
              "type": "string",
              "format": "date-time",
              "example": "2021-11-25T14:00:00-03:00"
            },
            "in": "query",
            "name": "updatedAfter",
            "description": "Actualizado después de"
          },
          {
            "schema": {
              "type": "string",
              "format": "date-time",
              "example": "2021-11-25T20:30:00-03:00"
            },
            "in": "query",
            "name": "updatedBefore",
            "description": "Actualizado antes de"
          }
        ],
        "operationId": "get-orders",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Page_Order"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "code": "422",
                      "message": "O parâmetro '%s' com a data informada '%s', está em formato incorreto. Por favor verificar a documentação"
                    }
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {}
        }
      },
      "post": {
        "summary": "/orders",
        "operationId": "post-orders",
        "responses": {
          "201": {
            "description": "Created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Order"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "accountName": "string",
                      "marketPlaceId": "string",
                      "marketPlaceNumber": "string",
                      "partnerId": "string",
                      "marketPlace": "string",
                      "subChannel": "string",
                      "subChannelNormalized": "string",
                      "createdAt": "2019-08-24T14:15:22Z",
                      "paymentDate": "2019-08-24T14:15:22Z",
                      "cancelDate": "2019-08-24T14:15:22Z",
                      "shippingOptionId": "string",
                      "transmissionStatus": "string",
                      "status": "PENDING",
                      "marketPlaceStatus": "string",
                      "marketPlaceStatusComplement": "string",
                      "documentIntermediator": "string",
                      "intermediateRegistrationId": "string",
                      "documentPaymentInstitution": "string",
                      "fulfillment": true,
                      "discount": 0,
                      "freight": 0,
                      "interestValue": 0,
                      "gross": 0,
                      "total": 0,
                      "marketPlaceUrl": "string",
                      "marketPlaceShipmentStatus": "string",
                      "invoice": {
                        "accessKey": "string",
                        "series": "string",
                        "number": "string",
                        "date": "2019-08-24T14:15:22Z",
                        "cfop": "string",
                        "companyStateTaxId": "string",
                        "linkNfe": "string",
                        "invoiceLink": "string",
                        "extraDescription": "string"
                      },
                      "shipping": {
                        "city": "string",
                        "state": "string",
                        "stateNameNormalized": "string",
                        "country": "string",
                        "countryAcronymNormalized": "string",
                        "countryNameNormalized": "string",
                        "address": "string",
                        "number": "string",
                        "neighborhood": "string",
                        "street": "string",
                        "comment": "string",
                        "reference": "string",
                        "zipCode": "string",
                        "receiverName": "string",
                        "promisedShippingTime": "2019-08-24T14:15:22Z"
                      },
                      "billingAddress": {
                        "city": "string",
                        "state": "string",
                        "stateNameNormalized": "string",
                        "country": "string",
                        "countryAcronymNormalized": "string",
                        "countryNameNormalized": "string",
                        "street": "string",
                        "number": "string",
                        "neighborhood": "string",
                        "comment": "string",
                        "reference": "string",
                        "zipCode": "string"
                      },
                      "anymarketAddress": {
                        "state": "string",
                        "city": "string",
                        "zipCode": "string",
                        "neighborhood": "string",
                        "address": "string",
                        "street": "string",
                        "number": "string",
                        "comment": "string",
                        "reference": "string",
                        "receiverName": "string",
                        "promisedShippingTime": "string"
                      },
                      "buyer": {
                        "marketPlaceId": "string",
                        "name": "string",
                        "email": "string",
                        "document": "string",
                        "documentType": "string",
                        "phone": "string",
                        "cellPhone": "string",
                        "documentNumberNormalized": "string"
                      },
                      "payments": [
                        {
                          "method": "string",
                          "status": "string",
                          "value": 0,
                          "installments": 0,
                          "marketplaceId": "string",
                          "gatewayFee": 0,
                          "marketplaceFee": 0,
                          "paymentMethodNormalized": "string",
                          "paymentDetailNormalized": "string"
                        }
                      ],
                      "items": [
                        {
                          "product": {
                            "id": 0,
                            "title": "string"
                          },
                          "sku": {
                            "id": 0,
                            "title": "string",
                            "partnerId": "string",
                            "externalId": "string",
                            "ean": "string"
                          },
                          "amount": 0,
                          "unit": 0,
                          "gross": 0,
                          "total": 0,
                          "discount": 0,
                          "shippings": [
                            {
                              "id": 0,
                              "shippingtype": "string",
                              "shippingCarrierNormalized": "string",
                              "shippingCarrierTypeNormalized": "string"
                            }
                          ],
                          "stocks": [
                            {
                              "stockLocalId": 0,
                              "stockName": "string",
                              "amount": 0
                            }
                          ],
                          "marketPlaceId": "string",
                          "orderItemId": "string",
                          "idInMarketPlace": "string",
                          "officialStoreId": "string",
                          "officialStoreName": "string",
                          "listingType": "string",
                          "freeShipping": true
                        }
                      ],
                      "tracking": {
                        "url": "string",
                        "number": "string",
                        "carrier": "string",
                        "carrierDocument": "string",
                        "date": "2019-08-24T14:15:22Z",
                        "deliveredDate": "2019-08-24T14:15:22Z",
                        "estimateDate": "2019-08-24T14:15:22Z",
                        "shippedDate": "2019-08-24T14:15:22Z"
                      },
                      "deliverStatus": "UNKNOWN",
                      "idAccount": 0,
                      "pickup": {
                        "id": 0,
                        "description": "string",
                        "partnerId": 0,
                        "marketplaceId": "string",
                        "receiverName": "string"
                      },
                      "metadata": {
                        "number-of-packages": "1",
                        "cdZipCode": "string",
                        "needInvoiceXML": "true"
                      },
                      "discountMetadata": [
                        {
                          "type": [
                            "COUPON"
                          ]
                        }
                      ]
                    }
                  }
                }
              }
            }
          }
        },
        "description": "# Crear un pedido con los datos dados\n Crea un pedido con los datos introducidos. Generalmente utilizado por socios de comercio electrónico.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostOrder"
              },
              "examples": {
                "example-1": {
                  "value": {
                    "id": 0,
                    "accountName": "string",
                    "marketPlaceId": "string",
                    "marketPlaceNumber": "string",
                    "partnerId": "string",
                    "marketPlace": "string",
                    "subChannel": "string",
                    "subChannelNormalized": "string",
                    "createdAt": "2022-02-24T14:15:22Z",
                    "paymentDate": "2022-02-24T14:15:22Z",
                    "cancelDate": "2022-02-24T14:15:22Z",
                    "shippingOptionId": "string",
                    "transmissionStatus": "string",
                    "status": "PENDING",
                    "marketPlaceStatus": "string",
                    "marketPlaceStatusComplement": "string",
                    "documentIntermediator": "string",
                    "intermediateRegistrationId": "string",
                    "documentPaymentInstitution": "string",
                    "fulfillment": true,
                    "discount": 0,
                    "freight": 0,
                    "interestValue": 0,
                    "gross": 0,
                    "total": 0,
                    "marketPlaceUrl": "string",
                    "marketPlaceShipmentStatus": "string",
                    "invoice": {
                      "accessKey": "string",
                      "series": "string",
                      "number": "string",
                      "date": "2022-02-24T14:15:22Z",
                      "cfop": "string",
                      "companyStateTaxId": "string",
                      "linkNfe": "string",
                      "invoiceLink": "string",
                      "extraDescription": "string"
                    },
                    "shipping": {
                      "city": "string",
                      "state": "string",
                      "stateNameNormalized": "string",
                      "country": "string",
                      "countryAcronymNormalized": "string",
                      "countryNameNormalized": "string",
                      "address": "string",
                      "number": "string",
                      "neighborhood": "string",
                      "street": "string",
                      "comment": "string",
                      "reference": "string",
                      "zipCode": "string",
                      "receiverName": "string",
                      "promisedShippingTime": "2019-08-24T14:15:22Z"
                    },
                    "billingAddress": {
                      "city": "string",
                      "state": "string",
                      "stateNameNormalized": "string",
                      "country": "string",
                      "countryAcronymNormalized": "string",
                      "countryNameNormalized": "string",
                      "street": "string",
                      "number": "string",
                      "neighborhood": "string",
                      "comment": "string",
                      "reference": "string",
                      "zipCode": "string"
                    },
                    "anymarketAddress": {
                      "state": "string",
                      "city": "string",
                      "zipCode": "string",
                      "neighborhood": "string",
                      "address": "string",
                      "street": "string",
                      "number": "string",
                      "comment": "string",
                      "reference": "string",
                      "receiverName": "string",
                      "promisedShippingTime": "string"
                    },
                    "buyer": {
                      "marketPlaceId": "string",
                      "name": "string",
                      "email": "string",
                      "document": "string",
                      "documentType": "string",
                      "phone": "string",
                      "cellPhone": "string",
                      "documentNumberNormalized": "string"
                    },
                    "payments": [
                      {
                        "method": "string",
                        "status": "string",
                        "value": 0,
                        "installments": 0,
                        "marketplaceId": "string",
                        "gatewayFee": 0,
                        "marketplaceFee": 0,
                        "paymentMethodNormalized": "string",
                        "paymentDetailNormalized": "string"
                      }
                    ],
                    "items": [
                      {
                        "product": {
                          "id": 0,
                          "title": "string"
                        },
                        "sku": {
                          "id": 0,
                          "title": "string",
                          "partnerId": "string",
                          "externalId": "string",
                          "ean": "string"
                        },
                        "amount": 0,
                        "unit": 0,
                        "gross": 0,
                        "total": 0,
                        "discount": 0,
                        "shippings": [
                          {
                            "id": 0,
                            "shippingtype": "string",
                            "shippingCarrierNormalized": "string",
                            "shippingCarrierTypeNormalized": "string"
                          }
                        ],
                        "stocks": [
                          {
                            "stockLocalId": 0,
                            "stockName": "string",
                            "amount": 0
                          }
                        ],
                        "marketPlaceId": "string",
                        "orderItemId": "string",
                        "idInMarketPlace": "string",
                        "officialStoreId": "string",
                        "officialStoreName": "string",
                        "listingType": "string",
                        "freeShipping": true
                      }
                    ],
                    "tracking": {
                      "url": "string",
                      "number": "string",
                      "carrier": "string",
                      "carrierDocument": "string",
                      "date": "2019-08-24T14:15:22Z",
                      "deliveredDate": "2019-08-24T14:15:22Z",
                      "estimateDate": "2019-08-24T14:15:22Z",
                      "shippedDate": "2019-08-24T14:15:22Z"
                    },
                    "deliverStatus": "UNKNOWN",
                    "idAccount": 0,
                    "pickup": {
                      "id": 0,
                      "description": "string",
                      "partnerId": 0,
                      "marketplaceId": "string",
                      "receiverName": "string"
                    },
                    "metadata": {
                      "number-of-packages": "1",
                      "cdZipCode": "string",
                      "needInvoiceXML": "true"
                    },
                    "discountMetadata": [
                      {
                        "type": [
                          "COUPON"
                        ]
                      }
                    ]
                  }
                }
              }
            }
          },
          "description": ""
        },
        "tags": [
          "Pedido"
        ]
      }
    },
    "/orders/reservations": {
      "get": {
        "tags": [
          "Pedido"
        ],
        "summary": "/orders/reservations",
        "description": "# Consulta Pedidos\nConsulta o pedido em reserva\n",
        "parameters": [
          {
            "$ref": "#/components/parameters/marketplaceQuery"
          },
          {
            "name": "marketplaceId",
            "in": "query",
            "description": "Atributo para filtrar pelo ID do Pedido no Marketplace",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "operationId": "get-orders-reservations",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "links": {
                      "type": "array",
                      "description": "Referências de paginação",
                      "minItems": 1,
                      "maxItems": 1,
                      "items": {
                        "type": "object",
                        "properties": {
                          "rel": {
                            "type": "string",
                            "description": "Relacionamento do hyperlink",
                            "example": "next"
                          },
                          "href": {
                            "type": "string",
                            "description": "URL de definição do recurso",
                            "example": "https://.../v2/component?limit=5&offset=5"
                          }
                        }
                      }
                    },
                    "content": {
                      "type": "array",
                      "description": "Lista de pedidos",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "ID do pedido gerado pelo ANYMARKET"
                          },
                          "accountName": {
                            "type": "string",
                            "description": "Identificador da conta do Marketplace"
                          },
                          "marketPlaceId": {
                            "type": "string",
                            "description": "ID interno do pedido no marketplace"
                          },
                          "marketPlaceNumber": {
                            "type": "string",
                            "description": "ID público do pedido no marketplace"
                          },
                          "partnerId": {
                            "type": "string",
                            "description": "Código do pedido no parceiro. Uma vez informado, não poderá ser alterado"
                          },
                          "marketPlace": {
                            "type": "string",
                            "description": "Descritivo de qual marketplace o pedido pertence"
                          },
                          "subChannel": {
                            "type": "string",
                            "description": "Site onde foi realizado o pedido (conforme recebido pelo marketplace. Pode ser nulo caso o marketplace não possua subcanal)"
                          },
                          "subChannelNormalized": {
                            "type": "string",
                            "description": "Site onde foi realizado o pedido (normalizado pelo ANYMARKET. Pode ser nulo)"
                          },
                          "createdAt": {
                            "type": "string",
                            "description": "Data de criação do pedido"
                          },
                          "paymentDate": {
                            "type": "string",
                            "description": "Data de pagamento do pedido"
                          },
                          "cancelDate": {
                            "type": "string",
                            "description": "Data de cancelamento do pedido"
                          },
                          "shippingOptionId": {
                            "type": "string",
                            "description": "ID do Envio de cada Marketplace"
                          },
                          "transmissionStatus": {
                            "type": "string",
                            "description": "Status da transmissão\n\nOK: Pedido sincronizado com sucesso com o Marketplace\nERROR: Ocorreu erro na sincronização com o Marketplace\nWAITING: Aguardando sincronização com o Marketplace",
                            "enum": [
                              "OK",
                              "ERROR",
                              "WAITING"
                            ]
                          },
                          "status": {
                            "type": "string",
                            "description": "Status do pedido\n\nCONCLUDED: Pedido entregue (é a última situação do pedido). Mudando para essa situação é necessário informar: data de entrega\nCANCELED: Cancelado\nINVOICED: Faturado. Mudando para essa situação é necessário informar: número da nota, número de série, data de emissão e chave de acesso\nPAID_WAITING_DELIVERY: Enviado (aguardando entrega). Mudando para essa situação é necessário informar: URL de rastreamento, número de rastreio, nome da transportadora, data de envio\nPAID_WAITING_SHIP: Pago (está aguardando envio)\nPENDING: Pendente (Ainda não foi pago. Existe parâmetro para que o ANYMARKET importe do MarketPlace o pedido que ainda não foi pago)",
                            "enum": [
                              "PENDING",
                              "DELIVERY_ISSUE",
                              "PAID_WAITING_SHIP",
                              "INVOICED",
                              "PAID_WAITING_DELIVERY",
                              "CONCLUDED",
                              "CANCELED"
                            ]
                          },
                          "marketPlaceStatus": {
                            "type": "string",
                            "description": "Situação do pedido no marketplace. Cada marketplace possui situações diferentes. Ex: no mercado livre não existe a situação faturado"
                          },
                          "marketPlaceStatusComplement": {
                            "type": "string",
                            "description": "Informação complementar à situação do pedido no marketplace. Cada marketplace possui situações diferentes. Ex: na Dafiti o pedido pode ser marcado como falha de entrega e a causa pode ser armazenada nesse atributo"
                          },
                          "documentIntermediator": {
                            "type": "string",
                            "description": "Identificador de intermediador da Transação CNPJ"
                          },
                          "intermediateRegistrationId": {
                            "type": "string",
                            "description": "Identificador do cadastro (vendedor ou usuário) no intermediador"
                          },
                          "documentPaymentInstitution": {
                            "type": "string",
                            "description": "Identificador de Instituição de pagamento CNPJ"
                          },
                          "fulfillment": {
                            "type": "boolean",
                            "description": "Identifica se o pedido é fulfillment"
                          },
                          "discount": {
                            "type": "integer",
                            "description": "Desconto do pedido"
                          },
                          "freight": {
                            "type": "integer",
                            "description": "Valor de frete"
                          },
                          "interestValue": {
                            "type": "integer",
                            "description": "Valor dos juros"
                          },
                          "gross": {
                            "type": "integer",
                            "description": "Total bruto sem o valor de frete"
                          },
                          "total": {
                            "type": "integer",
                            "description": "Total do pedido com o valor de frete"
                          },
                          "marketPlaceUrl": {
                            "type": "string",
                            "description": "URL do pedido no Marketplace"
                          },
                          "marketPlaceShipmentStatus": {
                            "type": "string",
                            "description": "Situação de envio do pedido no marketplace. Cada Marketplace possui situações diferentes"
                          },
                          "invoice": {
                            "type": "object",
                            "properties": {
                              "accessKey": {
                                "type": "string",
                                "description": "Chave de acesso da nota fiscal"
                              },
                              "series": {
                                "type": "string",
                                "description": "Número de série da nota fiscal"
                              },
                              "number": {
                                "type": "string",
                                "description": "Número da nota fiscal"
                              },
                              "date": {
                                "type": "string",
                                "description": "Data de emissão da nota fiscal (Necessário informar o fuso horario)"
                              },
                              "cfop": {
                                "type": "string",
                                "description": "Código Fiscal de Operações e Prestações, esse campo será obrigátorio caso seja utilizado 'Mercado Envio Coleta'"
                              },
                              "companyStateTaxId": {
                                "type": "string",
                                "description": "Inscrição Estadual quando o comprador é uma Pessoa Jurídica (CNPJ), esse campo será obrigátorio caso seja utilizado 'Mercado Envios Coleta'; é possível utilizar 'ISENTO'"
                              },
                              "linkNfe": {
                                "type": "string",
                                "description": "Campo para inserir a URL para consulta da nota fiscal"
                              },
                              "invoiceLink": {
                                "type": "string",
                                "description": "Campo para inserir a URL onde está armazenada o PDF ou o XML da nota fiscal (utilizado para a integração da Garbarino)"
                              },
                              "extraDescription": {
                                "type": "string",
                                "description": "Campo para observações"
                              },
                              "fiscalMetadata": {
                                "type": "object",
                                "description": "Metadados fiscais complementares da nota fiscal",
                                "properties": {
                                  "operationType": {
                                    "type": "string",
                                    "description": "Tipo de operação fiscal (ex.: entrada, saida)"
                                  },
                                  "emissionType": {
                                    "type": "string",
                                    "description": "Tipo de emissão da nota fiscal (ex.: normal, contingencia)"
                                  },
                                  "authorizationProtocol": {
                                    "type": "string",
                                    "description": "Protocolo de autorização da nota fiscal"
                                  }
                                }
                              }
                            },
                            "required": [
                              "accessKey",
                              "date"
                            ]
                          },
                          "shipping": {
                            "type": "object",
                            "required": [
                              "city",
                              "state",
                              "stateNameNormalized",
                              "country",
                              "countryAcronymNormalized",
                              "countryNameNormalized",
                              "address",
                              "number",
                              "neighborhood",
                              "street",
                              "zipCode",
                              "receiverName",
                              "promisedShippingTime"
                            ],
                            "properties": {
                              "city": {
                                "type": "string",
                                "description": "Cidade"
                              },
                              "state": {
                                "type": "string",
                                "description": "Sigla do Estado padronizado internamente pelo ANYMARKET. Pode ser nulo se o state for nulo ou o valor enviado pelo Marketplace, se ele for desconhecido."
                              },
                              "stateNameNormalized": {
                                "type": "string",
                                "description": "Nome do Estado padronizado internamente pelo ANYMARKET. Pode ser nulo se o state for nulo ou UNKNOWN para desconhecido."
                              },
                              "country": {
                                "type": "string",
                                "description": "País (Campo original, cadastrado pelo Marketplace ou Ecommerce)"
                              },
                              "countryAcronymNormalized": {
                                "type": "string",
                                "description": "Sigla do País padronizado internamente pelo ANYMARKET. Pode ser nulo se o country for nulo ou desconhecido."
                              },
                              "countryNameNormalized": {
                                "type": "string",
                                "description": "Nome do País padronizado internamente pelo ANYMARKET. Pode ser nulo se o country for nulo ou UNKNOWN para desconhecido."
                              },
                              "address": {
                                "type": "string",
                                "description": "Endereço"
                              },
                              "number": {
                                "type": "string",
                                "description": "Número"
                              },
                              "neighborhood": {
                                "type": "string",
                                "description": "Bairro"
                              },
                              "street": {
                                "type": "string",
                                "description": "Rua"
                              },
                              "comment": {
                                "type": "string",
                                "description": "Complemento"
                              },
                              "reference": {
                                "type": "string",
                                "description": "Referência"
                              },
                              "zipCode": {
                                "type": "string",
                                "description": "CEP"
                              },
                              "receiverName": {
                                "type": "string",
                                "description": "Nome do remetente para entrega"
                              },
                              "promisedShippingTime": {
                                "type": "string",
                                "description": "Data acordada para entrega"
                              }
                            }
                          },
                          "billingAddress": {
                            "type": "object",
                            "properties": {
                              "city": {
                                "type": "string",
                                "description": "Cidade"
                              },
                              "state": {
                                "type": "string",
                                "description": "Sigla do Estado padronizado internamente pelo ANYMARKET. Pode ser nulo se o state for nulo ou o valor enviado pelo Marketplace, se ele for desconhecido."
                              },
                              "stateNameNormalized": {
                                "type": "string",
                                "description": "Nome do Estado padronizado internamente pelo ANYMARKET. Pode ser nulo se o state for nulo ou UNKNOWN para desconhecido."
                              },
                              "country": {
                                "type": "string",
                                "description": "País (Campo original, cadastrado pelo Marketplace ou Ecommerce)"
                              },
                              "countryAcronymNormalized": {
                                "type": "string",
                                "description": "Sigla do País padronizado internamente pelo ANYMARKET. Pode ser nulo se o country for nulo ou desconhecido."
                              },
                              "countryNameNormalized": {
                                "type": "string",
                                "description": "Nome do País padronizado internamente pelo ANYMARKET. Pode ser nulo se o country for nulo ou UNKNOWN para desconhecido."
                              },
                              "street": {
                                "type": "string",
                                "description": "Rua"
                              },
                              "number": {
                                "type": "string",
                                "description": "Número"
                              },
                              "neighborhood": {
                                "type": "string",
                                "description": "Bairro"
                              },
                              "comment": {
                                "type": "string",
                                "description": "Complemento"
                              },
                              "reference": {
                                "type": "string",
                                "description": "Referência"
                              },
                              "zipCode": {
                                "type": "string",
                                "description": "CEP"
                              }
                            },
                            "required": [
                              "city",
                              "state",
                              "stateNameNormalized",
                              "country",
                              "countryAcronymNormalized",
                              "countryNameNormalized",
                              "street",
                              "number",
                              "neighborhood",
                              "zipCode"
                            ]
                          },
                          "anymarketAddress": {
                            "type": "object",
                            "required": [
                              "state",
                              "city",
                              "zipCode",
                              "neighborhood",
                              "address",
                              "street",
                              "number",
                              "receiverName",
                              "promisedShippingTime"
                            ],
                            "properties": {
                              "state": {
                                "type": "string",
                                "description": "Sigla do Estado padronizado internamente pelo ANYMARKET. Pode ser nulo se o state for nulo ou o valor enviado pelo Marketplace, se ele for desconhecido."
                              },
                              "city": {
                                "type": "string",
                                "description": "Cidade"
                              },
                              "zipCode": {
                                "type": "string",
                                "description": "CEP"
                              },
                              "neighborhood": {
                                "type": "string",
                                "description": "Bairro"
                              },
                              "address": {
                                "type": "string",
                                "description": "Endereço"
                              },
                              "street": {
                                "type": "string",
                                "description": "Rua"
                              },
                              "number": {
                                "type": "string",
                                "description": "Número"
                              },
                              "comment": {
                                "type": "string",
                                "description": "Complemento"
                              },
                              "reference": {
                                "type": "string",
                                "description": "Referência"
                              },
                              "receiverName": {
                                "type": "string",
                                "description": "Nome do remetente para entrega"
                              },
                              "promisedShippingTime": {
                                "type": "string",
                                "description": "Data estimada de entrega"
                              }
                            }
                          },
                          "buyer": {
                            "type": "object",
                            "required": [
                              "name",
                              "email",
                              "document",
                              "documentType",
                              "phone"
                            ],
                            "properties": {
                              "marketPlaceId": {
                                "type": "string",
                                "description": "ID no marketplace. Essa informação pode não existir para algum marketplace ou ecommerce."
                              },
                              "name": {
                                "type": "string",
                                "description": "Nome do comprador"
                              },
                              "email": {
                                "type": "string",
                                "description": "E-mail do comprador"
                              },
                              "document": {
                                "type": "string",
                                "description": "Número do documento. Essa informação pode não ser preenchida para algum Marketplace ou e-commerce."
                              },
                              "documentType": {
                                "type": "string",
                                "description": "Tipo do documento. Valores possíveis: CPF, CNPJ, OTHER"
                              },
                              "phone": {
                                "type": "string",
                                "description": "Telefone do comprador"
                              },
                              "cellPhone": {
                                "type": "string",
                                "description": "Celular do comprador"
                              },
                              "documentNumberNormalized": {
                                "type": "string",
                                "description": "Número do documento normalizado pelo ANYMARKET. Somente números. Caso o document não seja um CPF ou CNPJ este campo irá retornar nulo."
                              }
                            }
                          },
                          "payments": {
                            "type": "array",
                            "description": "Dados referente a pagamento (Será enviado pelo Marketplace)",
                            "items": {
                              "type": "object",
                              "properties": {
                                "method": {
                                  "type": "string",
                                  "description": "Método de pagamento. (Campo original, enviado pelo Marketplace ou Ecommerce)"
                                },
                                "status": {
                                  "type": "string",
                                  "description": "Status do pagamento enviado pelo marketplace"
                                },
                                "value": {
                                  "type": "integer",
                                  "description": "Valor do pagamento (Em caso de cobrança de juros, o valor é adicionado ao total da compra. Ex: Mercado livre)"
                                },
                                "installments": {
                                  "type": "integer",
                                  "description": "Número de parcelas do meio do pagamento. Deve-se dividir o número de parcelas pelo valor para encontrar o valor de cada parcela."
                                },
                                "marketplaceId": {
                                  "type": "string",
                                  "description": "ID do pagamento enviado pelo marketplace. Alguns marketplaces não disponibilizam o id, podendo o valor estar nulo ou com um valor fixo \"1\" dependendo da regra. (Exemplo- Cnova sempre tem apenas um pagamento para a compra, então o id do pagamento pode ser sempre \"1\")"
                                },
                                "gatewayFee": {
                                  "type": "integer",
                                  "description": "Taxa referente ao gateway de pagamento (Ex: MercadoPago)."
                                },
                                "marketplaceFee": {
                                  "type": "integer",
                                  "description": "Taxa referente ao Marketplace."
                                },
                                "paymentMethodNormalized": {
                                  "type": "string",
                                  "description": "Método de pagamento padronizado internamente pelo ANYMARKET. Caso for um valor desconhecido internamente irá retornar UNKNOWN. Se o method for nulo, este campo também será nulo."
                                },
                                "paymentDetailNormalized": {
                                  "type": "string",
                                  "description": "Detalhamento do método de pagamento padronizado internamente pelo ANYMARKET. Caso for um valor desconhecido internamente irá retornar UNKNOWN. Se o method for nulo, este campo também será nulo."
                                }
                              },
                              "required": [
                                "method",
                                "value"
                              ]
                            }
                          },
                          "items": {
                            "type": "array",
                            "description": "Dados referente aos produtos comprados",
                            "items": {
                              "type": "object",
                              "properties": {
                                "product": {
                                  "type": "object",
                                  "required": [
                                    "id",
                                    "title"
                                  ],
                                  "properties": {
                                    "id": {
                                      "type": "integer",
                                      "description": "ID do produto gerado pelo ANYMARKET"
                                    },
                                    "title": {
                                      "type": "string",
                                      "description": "Título do produto",
                                      "maxLength": 150
                                    }
                                  }
                                },
                                "sku": {
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "integer"
                                    },
                                    "title": {
                                      "type": "string"
                                    },
                                    "partnerId": {
                                      "type": "string"
                                    },
                                    "externalId": {
                                      "type": "string"
                                    },
                                    "ean": {
                                      "type": "string"
                                    }
                                  }
                                },
                                "amount": {
                                  "type": "integer",
                                  "description": "Quantidade do item"
                                },
                                "unit": {
                                  "type": "integer",
                                  "description": "Preço do item"
                                },
                                "gross": {
                                  "type": "integer",
                                  "description": "Valor bruto do item (amount * unit)"
                                },
                                "total": {
                                  "type": "integer",
                                  "description": "Total do item com desconto aplicado (gross - discount)"
                                },
                                "discount": {
                                  "type": "integer",
                                  "description": "Desconto do item"
                                },
                                "shippings": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "integer"
                                      },
                                      "shippingtype": {
                                        "type": "string"
                                      },
                                      "shippingCarrierNormalized": {
                                        "type": "string"
                                      },
                                      "shippingCarrierTypeNormalized": {
                                        "type": "string"
                                      }
                                    }
                                  }
                                },
                                "stocks": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "stockLocalId": {
                                        "type": "integer"
                                      },
                                      "stockName": {
                                        "type": "string"
                                      },
                                      "amount": {
                                        "type": "integer"
                                      }
                                    }
                                  }
                                },
                                "marketPlaceId": {
                                  "type": "string"
                                },
                                "orderItemId": {
                                  "type": "string"
                                },
                                "idInMarketPlace": {
                                  "type": "string"
                                },
                                "officialStoreId": {
                                  "type": "string"
                                },
                                "officialStoreName": {
                                  "type": "string"
                                },
                                "listingType": {
                                  "type": "string"
                                },
                                "freeShipping": {
                                  "type": "boolean"
                                }
                              },
                              "required": [
                                "product",
                                "sku",
                                "amount",
                                "unit",
                                "gross",
                                "total",
                                "discount"
                              ]
                            }
                          },
                          "tracking": {
                            "type": "object",
                            "properties": {
                              "url": {
                                "type": "string",
                                "description": "URL para o rastreamento"
                              },
                              "number": {
                                "type": "string",
                                "description": "Número de rastreio"
                              },
                              "carrier": {
                                "type": "string",
                                "description": "Nome da transportadora"
                              },
                              "carrierDocument": {
                                "type": "string",
                                "description": "CNPJ da transportadora"
                              },
                              "date": {
                                "type": "string",
                                "description": "Data do rastreio (Necessário informar o fuso horario)"
                              },
                              "deliveredDate": {
                                "type": "string",
                                "description": "Data de entrega ao Cliente (Necessário informar o fuso horario)"
                              },
                              "estimateDate": {
                                "type": "string",
                                "description": "Data estimada (Necessário informar o fuso horario)"
                              },
                              "shippedDate": {
                                "type": "string",
                                "description": "Data em que foi entregue a transportadora (Necessário informar o fuso horario)"
                              }
                            },
                            "required": [
                              "estimateDate",
                              "shippedDate"
                            ]
                          },
                          "deliverStatus": {
                            "type": "string",
                            "description": "Status do pedido\n\nUNKNOWN: Envio pendente\nIN_TRANSIT: Pedido Enviado DELIVERED: Pedido entregue",
                            "enum": [
                              "UNKNOWN",
                              "IN_TRANSIT",
                              "DELIVERED",
                              "HOLD_FOR_PICKUP",
                              "DELAYED",
                              "DELIVERED_LATE"
                            ]
                          },
                          "idAccount": {
                            "type": "integer",
                            "description": "ID da conta gerado automático pelo ANYMARKET"
                          },
                          "pickup": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "integer",
                                "description": "ID da loja no ANYMARKET"
                              },
                              "description": {
                                "type": "string",
                                "description": "Nome da loja"
                              },
                              "partnerId": {
                                "type": "integer",
                                "description": "Código da loja no parceiro"
                              },
                              "marketplaceId": {
                                "type": "string",
                                "description": "ID da loja no marketplace"
                              },
                              "receiverName": {
                                "type": "string",
                                "description": "Nome de quem retira o pedido na loja"
                              }
                            }
                          },
                          "metadata": {
                            "type": "object",
                            "description": "Campos adicionais do pedido.",
                            "properties": {
                              "number-of-packages": {
                                "type": "string",
                                "description": "Quantidade de volumes para a impressão de etiqueta (B2W Nova Api)",
                                "default": "1"
                              },
                              "cdZipCode": {
                                "type": "string",
                                "description": "CEP do Centro de Distribuição referente ao CNPJ de faturamento do pedido"
                              },
                              "needInvoiceXML": {
                                "type": "string",
                                "description": "Caso o marketplace exija a integração do arquivo XML com os dados de faturamento"
                              },
                              "paymentConnector": {
                                "type": "string",
                                "description": "Informações de pagamento dos pedidos (VTEX Marketplace)"
                              }
                            }
                          },
                          "": {
                            "type": "string"
                          }
                        },
                        "required": [
                          "id",
                          "accountName",
                          "marketPlaceId",
                          "marketPlaceNumber",
                          "marketPlace",
                          "createdAt",
                          "marketPlaceStatus",
                          "discount",
                          "freight",
                          "interestValue",
                          "gross",
                          "total",
                          "shipping",
                          "anymarketAddress",
                          "buyer",
                          "payments",
                          "items",
                          "deliverStatus",
                          "idAccount"
                        ]
                      }
                    },
                    "page": {
                      "type": "object",
                      "properties": {
                        "size": {
                          "type": "integer",
                          "description": "Tamanho da página"
                        },
                        "totalElements": {
                          "type": "integer",
                          "description": "Total de elementos existentes"
                        },
                        "totalPages": {
                          "type": "integer",
                          "description": "Total de páginas disponíveis"
                        },
                        "number": {
                          "type": "integer",
                          "description": "Número da página atual"
                        }
                      }
                    }
                  }
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "links": [
                        {
                          "rel": "next",
                          "href": "https://.../v2/component?limit=5&offset=5"
                        }
                      ],
                      "content": [
                        {
                          "id": 0,
                          "accountName": "string",
                          "marketPlaceId": "string",
                          "marketPlaceNumber": "string",
                          "partnerId": "string",
                          "marketPlace": "string",
                          "subChannel": "string",
                          "subChannelNormalized": "string",
                          "createdAt": "2019-08-24T14:15:22Z",
                          "paymentDate": "2019-08-24T14:15:22Z",
                          "cancelDate": "2019-08-24T14:15:22Z",
                          "shippingOptionId": "string",
                          "transmissionStatus": "OK",
                          "status": "PENDING",
                          "marketPlaceStatus": "string",
                          "marketPlaceStatusComplement": "string",
                          "documentIntermediator": "string",
                          "intermediateRegistrationId": "string",
                          "documentPaymentInstitution": "string",
                          "fulfillment": true,
                          "discount": 0,
                          "freight": 0,
                          "interestValue": 0,
                          "gross": 0,
                          "total": 0,
                          "marketPlaceUrl": "string",
                          "marketPlaceShipmentStatus": "string",
                          "invoice": {
                            "accessKey": "string",
                            "series": "string",
                            "number": "string",
                            "date": "2019-08-24T14:15:22Z",
                            "cfop": "string",
                            "companyStateTaxId": "string",
                            "linkNfe": "string",
                            "invoiceLink": "string",
                            "extraDescription": "string"
                          },
                          "shipping": {
                            "city": "string",
                            "state": "string",
                            "stateNameNormalized": "string",
                            "country": "string",
                            "countryAcronymNormalized": "string",
                            "countryNameNormalized": "string",
                            "address": "string",
                            "number": "string",
                            "neighborhood": "string",
                            "street": "string",
                            "comment": "string",
                            "reference": "string",
                            "zipCode": "string",
                            "receiverName": "string",
                            "promisedShippingTime": "2019-08-24T14:15:22Z"
                          },
                          "billingAddress": {
                            "city": "string",
                            "state": "string",
                            "stateNameNormalized": "string",
                            "country": "string",
                            "countryAcronymNormalized": "string",
                            "countryNameNormalized": "string",
                            "street": "string",
                            "number": "string",
                            "neighborhood": "string",
                            "comment": "string",
                            "reference": "string",
                            "zipCode": "string"
                          },
                          "anymarketAddress": {
                            "state": "string",
                            "city": "string",
                            "zipCode": "string",
                            "neighborhood": "string",
                            "address": "string",
                            "street": "string",
                            "number": "string",
                            "comment": "string",
                            "reference": "string",
                            "receiverName": "string",
                            "promisedShippingTime": "string"
                          },
                          "buyer": {
                            "marketPlaceId": "string",
                            "name": "string",
                            "email": "string",
                            "document": "string",
                            "documentType": "string",
                            "phone": "string",
                            "cellPhone": "string",
                            "documentNumberNormalized": "string"
                          },
                          "payments": [
                            {
                              "method": "string",
                              "status": "string",
                              "value": 0,
                              "installments": 0,
                              "marketplaceId": "string",
                              "gatewayFee": 0,
                              "marketplaceFee": 0,
                              "paymentMethodNormalized": "string",
                              "paymentDetailNormalized": "string"
                            }
                          ],
                          "items": [
                            {
                              "product": {
                                "id": 0,
                                "title": "string"
                              },
                              "sku": {
                                "id": 0,
                                "title": "string",
                                "partnerId": "string",
                                "externalId": "string",
                                "ean": "string"
                              },
                              "amount": 0,
                              "unit": 0,
                              "gross": 0,
                              "total": 0,
                              "discount": 0,
                              "shippings": [
                                {
                                  "id": 0,
                                  "shippingtype": "string",
                                  "shippingCarrierNormalized": "string",
                                  "shippingCarrierTypeNormalized": "string"
                                }
                              ],
                              "stocks": [
                                {
                                  "stockLocalId": 0,
                                  "stockName": "string",
                                  "amount": 0
                                }
                              ],
                              "marketPlaceId": "string",
                              "orderItemId": "string",
                              "idInMarketPlace": "string",
                              "officialStoreId": "string",
                              "officialStoreName": "string",
                              "listingType": "string",
                              "freeShipping": true
                            }
                          ],
                          "tracking": {
                            "url": "string",
                            "number": "string",
                            "carrier": "string",
                            "carrierDocument": "string",
                            "date": "2019-08-24T14:15:22Z",
                            "deliveredDate": "2019-08-24T14:15:22Z",
                            "estimateDate": "2019-08-24T14:15:22Z",
                            "shippedDate": "2019-08-24T14:15:22Z"
                          },
                          "deliverStatus": "UNKNOWN",
                          "idAccount": 0,
                          "pickup": {
                            "id": 0,
                            "description": "string",
                            "partnerId": 0,
                            "marketplaceId": "string",
                            "receiverName": "string"
                          },
                          "metadata": {
                            "number-of-packages": "1",
                            "cdZipCode": "string",
                            "needInvoiceXML": "true",
                            "paymentConnector": "string"
                          }
                        }
                      ],
                      "page": {
                        "size": 5,
                        "totalElements": 0,
                        "totalPages": 1,
                        "number": 1
                      }
                    }
                  },
                  "stoplight-example-1": {
                    "value": {
                      "links": [
                        {
                          "rel": "next",
                          "href": "https://.../v2/component?limit=5&offset=5"
                        }
                      ],
                      "content": [
                        {
                          "id": 0,
                          "accountName": "string",
                          "marketPlaceId": "string",
                          "marketPlaceNumber": "string",
                          "partnerId": "string",
                          "marketPlace": "string",
                          "subChannel": "string",
                          "subChannelNormalized": "string",
                          "createdAt": "2019-08-24T14:15:22Z",
                          "paymentDate": "2019-08-24T14:15:22Z",
                          "cancelDate": "2019-08-24T14:15:22Z",
                          "shippingOptionId": "string",
                          "transmissionStatus": "string",
                          "status": "PENDING",
                          "marketPlaceStatus": "string",
                          "marketPlaceStatusComplement": "string",
                          "documentIntermediator": "string",
                          "intermediateRegistrationId": "string",
                          "documentPaymentInstitution": "string",
                          "fulfillment": true,
                          "discount": 0,
                          "freight": 0,
                          "interestValue": 0,
                          "gross": 0,
                          "total": 0,
                          "marketPlaceUrl": "string",
                          "marketPlaceShipmentStatus": "string",
                          "invoice": {
                            "accessKey": "string",
                            "series": "string",
                            "number": "string",
                            "date": "2019-08-24T14:15:22Z",
                            "cfop": "string",
                            "companyStateTaxId": "string",
                            "linkNfe": "string",
                            "invoiceLink": "string",
                            "extraDescription": "string"
                          },
                          "shipping": {
                            "city": "string",
                            "state": "string",
                            "stateNameNormalized": "string",
                            "country": "string",
                            "countryAcronymNormalized": "string",
                            "countryNameNormalized": "string",
                            "address": "string",
                            "number": "string",
                            "neighborhood": "string",
                            "street": "string",
                            "comment": "string",
                            "reference": "string",
                            "zipCode": "string",
                            "receiverName": "string",
                            "promisedShippingTime": "2019-08-24T14:15:22Z"
                          },
                          "billingAddress": {
                            "city": "string",
                            "state": "string",
                            "stateNameNormalized": "string",
                            "country": "string",
                            "countryAcronymNormalized": "string",
                            "countryNameNormalized": "string",
                            "street": "string",
                            "number": "string",
                            "neighborhood": "string",
                            "comment": "string",
                            "reference": "string",
                            "zipCode": "string"
                          },
                          "anymarketAddress": {
                            "state": "string",
                            "city": "string",
                            "zipCode": "string",
                            "neighborhood": "string",
                            "address": "string",
                            "street": "string",
                            "number": "string",
                            "comment": "string",
                            "reference": "string",
                            "receiverName": "string",
                            "promisedShippingTime": "string"
                          },
                          "buyer": {
                            "marketPlaceId": "string",
                            "name": "string",
                            "email": "string",
                            "document": "string",
                            "documentType": "string",
                            "phone": "string",
                            "cellPhone": "string",
                            "documentNumberNormalized": "string"
                          },
                          "payments": [
                            {
                              "method": "string",
                              "status": "string",
                              "value": 0,
                              "installments": 0,
                              "marketplaceId": "string",
                              "gatewayFee": 0,
                              "marketplaceFee": 0,
                              "paymentMethodNormalized": "string",
                              "paymentDetailNormalized": "string"
                            }
                          ],
                          "items": [
                            {
                              "product": {
                                "id": 0,
                                "title": "string"
                              },
                              "sku": {
                                "id": 0,
                                "title": "string",
                                "partnerId": "string",
                                "externalId": "string",
                                "ean": "string"
                              },
                              "amount": 0,
                              "unit": 0,
                              "gross": 0,
                              "total": 0,
                              "discount": 0,
                              "shippings": [
                                {
                                  "id": 0,
                                  "shippingtype": "string",
                                  "shippingCarrierNormalized": "string",
                                  "shippingCarrierTypeNormalized": "string"
                                }
                              ],
                              "customizations": {
                                "customizationType": "string",
                                "customizationQuantity": 0,
                                "customizationPrice": 0,
                                "customizationValue": "string"
                              },
                              "stocks": [
                                {
                                  "stockLocalId": 0,
                                  "stockName": "string",
                                  "amount": 0
                                }
                              ],
                              "marketPlaceId": "string",
                              "orderItemId": "string",
                              "idInMarketPlace": "string",
                              "officialStoreId": "string",
                              "officialStoreName": "string",
                              "listingType": "string",
                              "freeShipping": true
                            }
                          ],
                          "tracking": {
                            "url": "string",
                            "number": "string",
                            "carrier": "string",
                            "carrierDocument": "string",
                            "date": "2019-08-24T14:15:22Z",
                            "deliveredDate": "2019-08-24T14:15:22Z",
                            "estimateDate": "2019-08-24T14:15:22Z",
                            "shippedDate": "2019-08-24T14:15:22Z"
                          },
                          "deliverStatus": "UNKNOWN",
                          "idAccount": 0,
                          "pickup": {
                            "id": 0,
                            "description": "string",
                            "partnerId": 0,
                            "marketplaceId": "string",
                            "receiverName": "string"
                          },
                          "metadata": {
                            "number-of-packages": "1",
                            "cdZipCode": "string",
                            "needInvoiceXML": "true",
                            "paymentConnector": "string"
                          }
                        }
                      ],
                      "page": {
                        "size": 5,
                        "totalElements": 0,
                        "totalPages": 1,
                        "number": 1
                      }
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "404",
                      "message": "Recurso com o id '%s' não encontrado."
                    }
                  }
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "422",
                      "message": "O parâmetro '%s' com a data informada '%s', está em formato incorreto. Por favor verificar a documentação"
                    }
                  }
                }
              }
            }
          }
        }
      },
      "parameters": [],
      "post": {
        "summary": "/orders/reservations",
        "operationId": "post-orders-reservations",
        "responses": {
          "201": {
            "description": "Created",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "integer"
                    },
                    "marketPlaceId": {
                      "type": "string"
                    },
                    "marketPlace": {
                      "type": "string"
                    },
                    "total": {
                      "type": "integer"
                    },
                    "items": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "amount": {
                            "type": "integer"
                          },
                          "sku": {
                            "type": "object",
                            "properties": {
                              "partnerId": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "x-examples": {
                    "Example 1": {
                      "id": 7,
                      "marketPlaceId": "1020301",
                      "marketPlace": "MARKETPLACE_TESTE",
                      "total": 150,
                      "items": [
                        {
                          "amount": 1,
                          "sku": {
                            "partnerId": "ProdutoAPIV21663352881193"
                          }
                        }
                      ]
                    }
                  }
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "accountName": "string",
                      "marketPlaceId": "string",
                      "marketPlaceNumber": "string",
                      "partnerId": "string",
                      "marketPlace": "string",
                      "subChannel": "string",
                      "subChannelNormalized": "string",
                      "createdAt": "2019-08-24T14:15:22Z",
                      "paymentDate": "2019-08-24T14:15:22Z",
                      "cancelDate": "2019-08-24T14:15:22Z",
                      "shippingOptionId": "string",
                      "transmissionStatus": "string",
                      "status": "PENDING",
                      "marketPlaceStatus": "string",
                      "marketPlaceStatusComplement": "string",
                      "documentIntermediator": "string",
                      "intermediateRegistrationId": "string",
                      "documentPaymentInstitution": "string",
                      "fulfillment": true,
                      "discount": 0,
                      "freight": 0,
                      "interestValue": 0,
                      "gross": 0,
                      "total": 0,
                      "marketPlaceUrl": "string",
                      "marketPlaceShipmentStatus": "string",
                      "invoice": {
                        "accessKey": "string",
                        "series": "string",
                        "number": "string",
                        "date": "2019-08-24T14:15:22Z",
                        "cfop": "string",
                        "companyStateTaxId": "string",
                        "linkNfe": "string",
                        "invoiceLink": "string",
                        "extraDescription": "string"
                      },
                      "shipping": {
                        "city": "string",
                        "state": "string",
                        "stateNameNormalized": "string",
                        "country": "string",
                        "countryAcronymNormalized": "string",
                        "countryNameNormalized": "string",
                        "address": "string",
                        "number": "string",
                        "neighborhood": "string",
                        "street": "string",
                        "comment": "string",
                        "reference": "string",
                        "zipCode": "string",
                        "receiverName": "string",
                        "promisedShippingTime": "2019-08-24T14:15:22Z"
                      },
                      "billingAddress": {
                        "city": "string",
                        "state": "string",
                        "stateNameNormalized": "string",
                        "country": "string",
                        "countryAcronymNormalized": "string",
                        "countryNameNormalized": "string",
                        "street": "string",
                        "number": "string",
                        "neighborhood": "string",
                        "comment": "string",
                        "reference": "string",
                        "zipCode": "string"
                      },
                      "anymarketAddress": {
                        "state": "string",
                        "city": "string",
                        "zipCode": "string",
                        "neighborhood": "string",
                        "address": "string",
                        "street": "string",
                        "number": "string",
                        "comment": "string",
                        "reference": "string",
                        "receiverName": "string",
                        "promisedShippingTime": "string"
                      },
                      "buyer": {
                        "marketPlaceId": "string",
                        "name": "string",
                        "email": "string",
                        "document": "string",
                        "documentType": "string",
                        "phone": "string",
                        "cellPhone": "string",
                        "documentNumberNormalized": "string"
                      },
                      "payments": [
                        {
                          "method": "string",
                          "status": "string",
                          "value": 0,
                          "installments": 0,
                          "marketplaceId": "string",
                          "gatewayFee": 0,
                          "marketplaceFee": 0,
                          "paymentMethodNormalized": "string",
                          "paymentDetailNormalized": "string"
                        }
                      ],
                      "items": [
                        {
                          "product": {
                            "id": 0,
                            "title": "string"
                          },
                          "sku": {
                            "id": 0,
                            "title": "string",
                            "partnerId": "string",
                            "externalId": "string",
                            "ean": "string"
                          },
                          "amount": 0,
                          "unit": 0,
                          "gross": 0,
                          "total": 0,
                          "discount": 0,
                          "shippings": [
                            {
                              "id": 0,
                              "shippingtype": "string",
                              "shippingCarrierNormalized": "string",
                              "shippingCarrierTypeNormalized": "string"
                            }
                          ],
                          "stocks": [
                            {
                              "stockLocalId": 0,
                              "stockName": "string",
                              "amount": 0
                            }
                          ],
                          "marketPlaceId": "string",
                          "orderItemId": "string",
                          "idInMarketPlace": "string",
                          "officialStoreId": "string",
                          "officialStoreName": "string",
                          "listingType": "string",
                          "freeShipping": true
                        }
                      ],
                      "tracking": {
                        "url": "string",
                        "number": "string",
                        "carrier": "string",
                        "carrierDocument": "string",
                        "date": "2019-08-24T14:15:22Z",
                        "deliveredDate": "2019-08-24T14:15:22Z",
                        "estimateDate": "2019-08-24T14:15:22Z",
                        "shippedDate": "2019-08-24T14:15:22Z"
                      },
                      "deliverStatus": "UNKNOWN",
                      "idAccount": 0,
                      "pickup": {
                        "id": 0,
                        "description": "string",
                        "partnerId": 0,
                        "marketplaceId": "string",
                        "receiverName": "string"
                      },
                      "metadata": {
                        "number-of-packages": "1",
                        "cdZipCode": "string",
                        "needInvoiceXML": "true"
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "description": "# Cria uma reserva",
        "tags": [
          "Pedido"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "x-examples": {
                  "Example 1": {
                    "id": 7,
                    "marketPlaceId": "1020301",
                    "marketPlace": "MARKETPLACE_TESTE",
                    "total": 150,
                    "items": [
                      {
                        "amount": 1,
                        "sku": {
                          "partnerId": "ProdutoAPIV21663352881193"
                        }
                      }
                    ]
                  }
                },
                "properties": {
                  "marketPlaceId": {
                    "type": "string"
                  },
                  "marketPlace": {
                    "type": "string"
                  },
                  "total": {
                    "type": "integer"
                  },
                  "items": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "amount": {
                          "type": "integer"
                        },
                        "sku": {
                          "type": "object",
                          "properties": {
                            "partnerId": {
                              "type": "string"
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "x-internal": true,
        "x-stoplight": {
          "id": "7577rkj4qstu0"
        }
      }
    },
    "/orders/{id}": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID de pedido generado por ANYMARKET"
        }
      ],
      "get": {
        "summary": "/orders/{id}",
        "tags": [
          "Pedido"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Order"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          }
        },
        "operationId": "get-orders-id",
        "description": "# Consultar los detalles de un pedido\n Consultar los detalles de un pedido",
        "parameters": []
      }
    },
    "/orders/{id}/quote-id": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID do pedido gerado pelo ANYMARKET"
        }
      ],
      "get": {
        "summary": "/orders/{id}/quote-id",
        "tags": [
          "Pedido"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OrderQuoteId"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          }
        },
        "operationId": "get-orders-id-quote-id",
        "description": "# Consulta informações de auditoria da cotação de frete.\nConsulta informações de auditoria da cotação de frete.",
        "parameters": []
      }
    },
    "/orders/{id}(Pago)": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID de pedido generado por ANYMARKET"
        }
      ],
      "put": {
        "summary": "/orders/{id} (Pago)",
        "operationId": "put-orders-id",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Order"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "accountName": "string",
                      "marketPlaceId": "string",
                      "marketPlaceNumber": "string",
                      "partnerId": "string",
                      "marketPlace": "string",
                      "subChannel": "string",
                      "subChannelNormalized": "string",
                      "createdAt": "2019-08-24T14:15:22Z",
                      "paymentDate": "2019-08-24T14:15:22Z",
                      "cancelDate": "2019-08-24T14:15:22Z",
                      "shippingOptionId": "string",
                      "transmissionStatus": "string",
                      "status": "PENDING",
                      "marketPlaceStatus": "string",
                      "marketPlaceStatusComplement": "string",
                      "documentIntermediator": "string",
                      "intermediateRegistrationId": "string",
                      "documentPaymentInstitution": "string",
                      "fulfillment": true,
                      "discount": 0,
                      "freight": 0,
                      "interestValue": 0,
                      "gross": 0,
                      "total": 0,
                      "marketPlaceUrl": "string",
                      "marketPlaceShipmentStatus": "string",
                      "invoice": {
                        "accessKey": "string",
                        "series": "string",
                        "number": "string",
                        "date": "2019-08-24T14:15:22Z",
                        "cfop": "string",
                        "companyStateTaxId": "string",
                        "linkNfe": "string",
                        "invoiceLink": "string",
                        "extraDescription": "string"
                      },
                      "shipping": {
                        "city": "string",
                        "state": "string",
                        "stateNameNormalized": "string",
                        "country": "string",
                        "countryAcronymNormalized": "string",
                        "countryNameNormalized": "string",
                        "address": "string",
                        "number": "string",
                        "neighborhood": "string",
                        "street": "string",
                        "comment": "string",
                        "reference": "string",
                        "zipCode": "string",
                        "receiverName": "string",
                        "promisedShippingTime": "2019-08-24T14:15:22Z"
                      },
                      "billingAddress": {
                        "city": "string",
                        "state": "string",
                        "stateNameNormalized": "string",
                        "country": "string",
                        "countryAcronymNormalized": "string",
                        "countryNameNormalized": "string",
                        "street": "string",
                        "number": "string",
                        "neighborhood": "string",
                        "comment": "string",
                        "reference": "string",
                        "zipCode": "string"
                      },
                      "anymarketAddress": {
                        "state": "string",
                        "city": "string",
                        "zipCode": "string",
                        "neighborhood": "string",
                        "address": "string",
                        "street": "string",
                        "number": "string",
                        "comment": "string",
                        "reference": "string",
                        "receiverName": "string",
                        "promisedShippingTime": "string"
                      },
                      "buyer": {
                        "marketPlaceId": "string",
                        "name": "string",
                        "email": "string",
                        "document": "string",
                        "documentType": "string",
                        "phone": "string",
                        "cellPhone": "string",
                        "documentNumberNormalized": "string"
                      },
                      "payments": [
                        {
                          "method": "string",
                          "status": "string",
                          "value": 0,
                          "installments": 0,
                          "marketplaceId": "string",
                          "gatewayFee": 0,
                          "marketplaceFee": 0,
                          "paymentMethodNormalized": "string",
                          "paymentDetailNormalized": "string"
                        }
                      ],
                      "items": [
                        {
                          "product": {
                            "id": 0,
                            "title": "string"
                          },
                          "sku": {
                            "id": 0,
                            "title": "string",
                            "partnerId": "string",
                            "externalId": "string",
                            "ean": "string"
                          },
                          "amount": 0,
                          "unit": 0,
                          "gross": 0,
                          "total": 0,
                          "discount": 0,
                          "shippings": [
                            {
                              "id": 0,
                              "shippingtype": "string",
                              "shippingCarrierNormalized": "string",
                              "shippingCarrierTypeNormalized": "string"
                            }
                          ],
                          "customizations": {
                            "customizationType": "string",
                            "customizationQuantity": 0,
                            "customizationPrice": 0,
                            "customizationValue": "string"
                          },
                          "stocks": [
                            {
                              "stockLocalId": 0,
                              "stockName": "string",
                              "amount": 0
                            }
                          ],
                          "marketPlaceId": "string",
                          "orderItemId": "string",
                          "idInMarketPlace": "string",
                          "officialStoreId": "string",
                          "officialStoreName": "string",
                          "listingType": "string",
                          "freeShipping": true
                        }
                      ],
                      "tracking": {
                        "url": "string",
                        "number": "string",
                        "carrier": "string",
                        "carrierDocument": "string",
                        "date": "2019-08-24T14:15:22Z",
                        "deliveredDate": "2019-08-24T14:15:22Z",
                        "estimateDate": "2019-08-24T14:15:22Z",
                        "shippedDate": "2019-08-24T14:15:22Z"
                      },
                      "deliverStatus": "UNKNOWN",
                      "idAccount": 0,
                      "pickup": {
                        "id": 0,
                        "description": "string",
                        "partnerId": 0,
                        "marketplaceId": "string",
                        "receiverName": "string"
                      },
                      "metadata": {
                        "number-of-packages": "1",
                        "cdZipCode": "string",
                        "needInvoiceXML": "true"
                      }
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OrderUpdatePaid"
              },
              "examples": {
                "example-1": {
                  "value": {
                    "status": "PAID_WAITING_SHIP"
                  }
                }
              }
            }
          },
          "description": "Dados do pedido"
        },
        "description": "# Actualiza los datos del pedido informado (Pagado)\n Actualiza la información del pedido informado. Los datos de actualización no son obligatorios y si alguno de ellos no es informado, el pedido quedará con los datos vigentes.",
        "tags": [
          "Pedido"
        ]
      }
    },
    "/orders/{id}(Faturado)": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID de pedido generado por ANYMARKET"
        }
      ],
      "put": {
        "summary": "/orders/{id} (Faturado)",
        "operationId": "put-orders-id-faturado",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Order"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OrderUpdateInvoiced"
              }
            }
          },
          "description": "Dados do pedido"
        },
        "description": "# Actualiza los datos del pedido informado (Facturado)\n Actualiza la información del pedido informado. Los datos de actualización no son obligatorios y si alguno de ellos no es informado, el pedido quedará con los datos vigentes.",
        "tags": [
          "Pedido"
        ]
      }
    },
    "/orders/{id}(Enviado - Em Transito)": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID de pedido generado por ANYMARKET"
        }
      ],
      "put": {
        "summary": "/orders/{id} (Enviado - Em Transito)",
        "operationId": "put-orders-id-enviado",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Order"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "accountName": "string",
                      "marketPlaceId": "string",
                      "marketPlaceNumber": "string",
                      "partnerId": "string",
                      "marketPlace": "string",
                      "subChannel": "string",
                      "subChannelNormalized": "string",
                      "createdAt": "2019-08-24T14:15:22Z",
                      "paymentDate": "2019-08-24T14:15:22Z",
                      "cancelDate": "2019-08-24T14:15:22Z",
                      "shippingOptionId": "string",
                      "transmissionStatus": "string",
                      "status": "PENDING",
                      "marketPlaceStatus": "string",
                      "marketPlaceStatusComplement": "string",
                      "documentIntermediator": "string",
                      "intermediateRegistrationId": "string",
                      "documentPaymentInstitution": "string",
                      "fulfillment": true,
                      "discount": 0,
                      "freight": 0,
                      "interestValue": 0,
                      "gross": 0,
                      "total": 0,
                      "marketPlaceUrl": "string",
                      "marketPlaceShipmentStatus": "string",
                      "invoice": {
                        "accessKey": "string",
                        "series": "string",
                        "number": "string",
                        "date": "2019-08-24T14:15:22Z",
                        "cfop": "string",
                        "companyStateTaxId": "string",
                        "linkNfe": "string",
                        "invoiceLink": "string",
                        "extraDescription": "string"
                      },
                      "shipping": {
                        "city": "string",
                        "state": "string",
                        "stateNameNormalized": "string",
                        "country": "string",
                        "countryAcronymNormalized": "string",
                        "countryNameNormalized": "string",
                        "address": "string",
                        "number": "string",
                        "neighborhood": "string",
                        "street": "string",
                        "comment": "string",
                        "reference": "string",
                        "zipCode": "string",
                        "receiverName": "string",
                        "promisedShippingTime": "2019-08-24T14:15:22Z"
                      },
                      "billingAddress": {
                        "city": "string",
                        "state": "string",
                        "stateNameNormalized": "string",
                        "country": "string",
                        "countryAcronymNormalized": "string",
                        "countryNameNormalized": "string",
                        "street": "string",
                        "number": "string",
                        "neighborhood": "string",
                        "comment": "string",
                        "reference": "string",
                        "zipCode": "string"
                      },
                      "anymarketAddress": {
                        "state": "string",
                        "city": "string",
                        "zipCode": "string",
                        "neighborhood": "string",
                        "address": "string",
                        "street": "string",
                        "number": "string",
                        "comment": "string",
                        "reference": "string",
                        "receiverName": "string",
                        "promisedShippingTime": "string"
                      },
                      "buyer": {
                        "marketPlaceId": "string",
                        "name": "string",
                        "email": "string",
                        "document": "string",
                        "documentType": "string",
                        "phone": "string",
                        "cellPhone": "string",
                        "documentNumberNormalized": "string"
                      },
                      "payments": [
                        {
                          "method": "string",
                          "status": "string",
                          "value": 0,
                          "installments": 0,
                          "marketplaceId": "string",
                          "gatewayFee": 0,
                          "marketplaceFee": 0,
                          "paymentMethodNormalized": "string",
                          "paymentDetailNormalized": "string"
                        }
                      ],
                      "items": [
                        {
                          "product": {
                            "id": 0,
                            "title": "string"
                          },
                          "sku": {
                            "id": 0,
                            "title": "string",
                            "partnerId": "string",
                            "externalId": "string",
                            "ean": "string"
                          },
                          "amount": 0,
                          "unit": 0,
                          "gross": 0,
                          "total": 0,
                          "discount": 0,
                          "shippings": [
                            {
                              "id": 0,
                              "shippingtype": "string",
                              "shippingCarrierNormalized": "string",
                              "shippingCarrierTypeNormalized": "string"
                            }
                          ],
                          "customizations": {
                            "customizationType": "string",
                            "customizationQuantity": 0,
                            "customizationPrice": 0,
                            "customizationValue": "string"
                          },
                          "stocks": [
                            {
                              "stockLocalId": 0,
                              "stockName": "string",
                              "amount": 0
                            }
                          ],
                          "marketPlaceId": "string",
                          "orderItemId": "string",
                          "idInMarketPlace": "string",
                          "officialStoreId": "string",
                          "officialStoreName": "string",
                          "listingType": "string",
                          "freeShipping": true
                        }
                      ],
                      "tracking": {
                        "url": "string",
                        "number": "string",
                        "carrier": "string",
                        "carrierDocument": "string",
                        "date": "2019-08-24T14:15:22Z",
                        "deliveredDate": "2019-08-24T14:15:22Z",
                        "estimateDate": "2019-08-24T14:15:22Z",
                        "shippedDate": "2019-08-24T14:15:22Z"
                      },
                      "deliverStatus": "UNKNOWN",
                      "idAccount": 0,
                      "pickup": {
                        "id": 0,
                        "description": "string",
                        "partnerId": 0,
                        "marketplaceId": "string",
                        "receiverName": "string"
                      },
                      "metadata": {
                        "number-of-packages": "1",
                        "cdZipCode": "string",
                        "needInvoiceXML": "true"
                      }
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OrderUpdateDelivery"
              },
              "examples": {}
            }
          },
          "description": "Dados do pedido"
        },
        "description": "# Actualiza la información del pedido informado (Enviado - En Tránsito)\n Actualiza la información del pedido informado. Los datos de actualización no son obligatorios y si alguno de ellos no es informado, el pedido quedará con los datos vigentes.",
        "tags": [
          "Pedido"
        ]
      }
    },
    "/orders/{id}(Concluido)": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID de pedido generado por ANYMARKET"
        }
      ],
      "put": {
        "summary": "/orders/{id} (Concluido)",
        "operationId": "put-orders-id-concluido",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Order"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "accountName": "string",
                      "marketPlaceId": "string",
                      "marketPlaceNumber": "string",
                      "partnerId": "string",
                      "marketPlace": "string",
                      "subChannel": "string",
                      "subChannelNormalized": "string",
                      "createdAt": "2019-08-24T14:15:22Z",
                      "paymentDate": "2019-08-24T14:15:22Z",
                      "cancelDate": "2019-08-24T14:15:22Z",
                      "shippingOptionId": "string",
                      "transmissionStatus": "string",
                      "status": "PENDING",
                      "marketPlaceStatus": "string",
                      "marketPlaceStatusComplement": "string",
                      "documentIntermediator": "string",
                      "intermediateRegistrationId": "string",
                      "documentPaymentInstitution": "string",
                      "fulfillment": true,
                      "discount": 0,
                      "freight": 0,
                      "interestValue": 0,
                      "gross": 0,
                      "total": 0,
                      "marketPlaceUrl": "string",
                      "marketPlaceShipmentStatus": "string",
                      "invoice": {
                        "accessKey": "string",
                        "series": "string",
                        "number": "string",
                        "date": "2019-08-24T14:15:22Z",
                        "cfop": "string",
                        "companyStateTaxId": "string",
                        "linkNfe": "string",
                        "invoiceLink": "string",
                        "extraDescription": "string"
                      },
                      "shipping": {
                        "city": "string",
                        "state": "string",
                        "stateNameNormalized": "string",
                        "country": "string",
                        "countryAcronymNormalized": "string",
                        "countryNameNormalized": "string",
                        "address": "string",
                        "number": "string",
                        "neighborhood": "string",
                        "street": "string",
                        "comment": "string",
                        "reference": "string",
                        "zipCode": "string",
                        "receiverName": "string",
                        "promisedShippingTime": "2019-08-24T14:15:22Z"
                      },
                      "billingAddress": {
                        "city": "string",
                        "state": "string",
                        "stateNameNormalized": "string",
                        "country": "string",
                        "countryAcronymNormalized": "string",
                        "countryNameNormalized": "string",
                        "street": "string",
                        "number": "string",
                        "neighborhood": "string",
                        "comment": "string",
                        "reference": "string",
                        "zipCode": "string"
                      },
                      "anymarketAddress": {
                        "state": "string",
                        "city": "string",
                        "zipCode": "string",
                        "neighborhood": "string",
                        "address": "string",
                        "street": "string",
                        "number": "string",
                        "comment": "string",
                        "reference": "string",
                        "receiverName": "string",
                        "promisedShippingTime": "string"
                      },
                      "buyer": {
                        "marketPlaceId": "string",
                        "name": "string",
                        "email": "string",
                        "document": "string",
                        "documentType": "string",
                        "phone": "string",
                        "cellPhone": "string",
                        "documentNumberNormalized": "string"
                      },
                      "payments": [
                        {
                          "method": "string",
                          "status": "string",
                          "value": 0,
                          "installments": 0,
                          "marketplaceId": "string",
                          "gatewayFee": 0,
                          "marketplaceFee": 0,
                          "paymentMethodNormalized": "string",
                          "paymentDetailNormalized": "string"
                        }
                      ],
                      "items": [
                        {
                          "product": {
                            "id": 0,
                            "title": "string"
                          },
                          "sku": {
                            "id": 0,
                            "title": "string",
                            "partnerId": "string",
                            "externalId": "string",
                            "ean": "string"
                          },
                          "amount": 0,
                          "unit": 0,
                          "gross": 0,
                          "total": 0,
                          "discount": 0,
                          "shippings": [
                            {
                              "id": 0,
                              "shippingtype": "string",
                              "shippingCarrierNormalized": "string",
                              "shippingCarrierTypeNormalized": "string"
                            }
                          ],
                          "customizations": {
                            "customizationType": "string",
                            "customizationQuantity": 0,
                            "customizationPrice": 0,
                            "customizationValue": "string"
                          },
                          "stocks": [
                            {
                              "stockLocalId": 0,
                              "stockName": "string",
                              "amount": 0
                            }
                          ],
                          "marketPlaceId": "string",
                          "orderItemId": "string",
                          "idInMarketPlace": "string",
                          "officialStoreId": "string",
                          "officialStoreName": "string",
                          "listingType": "string",
                          "freeShipping": true
                        }
                      ],
                      "tracking": {
                        "url": "string",
                        "number": "string",
                        "carrier": "string",
                        "carrierDocument": "string",
                        "date": "2019-08-24T14:15:22Z",
                        "deliveredDate": "2019-08-24T14:15:22Z",
                        "estimateDate": "2019-08-24T14:15:22Z",
                        "shippedDate": "2019-08-24T14:15:22Z"
                      },
                      "deliverStatus": "UNKNOWN",
                      "idAccount": 0,
                      "pickup": {
                        "id": 0,
                        "description": "string",
                        "partnerId": 0,
                        "marketplaceId": "string",
                        "receiverName": "string"
                      },
                      "metadata": {
                        "number-of-packages": "1",
                        "cdZipCode": "string",
                        "needInvoiceXML": "true"
                      }
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OrderUpdateConcluded"
              },
              "examples": {
                "example-1": {
                  "value": {
                    "status": "CONCLUDED",
                    "tracking": {
                      "deliveredDate": "2019-08-24T14:15:22Z"
                    }
                  }
                }
              }
            }
          },
          "description": "Dados do pedido"
        },
        "description": "# Actualiza los datos del pedido informado (Completado)\n Actualiza la información del pedido informado. Los datos de actualización no son obligatorios y si alguno de ellos no es informado, el pedido quedará con los datos vigentes.",
        "tags": [
          "Pedido"
        ]
      }
    },
    "/orders/{id}(Cancelado)": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID de pedido generado por ANYMARKET"
        }
      ],
      "put": {
        "summary": "/orders/{id} (Cancelado)",
        "operationId": "put-orders-id-cancelado",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Order"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "accountName": "string",
                      "marketPlaceId": "string",
                      "marketPlaceNumber": "string",
                      "partnerId": "string",
                      "marketPlace": "string",
                      "subChannel": "string",
                      "subChannelNormalized": "string",
                      "createdAt": "2022-02-24T14:15:22Z",
                      "paymentDate": "2022-02-24T14:15:22Z",
                      "cancelDate": "2022-02-24T14:15:22Z",
                      "shippingOptionId": "string",
                      "transmissionStatus": "string",
                      "status": "PENDING",
                      "marketPlaceStatus": "string",
                      "marketPlaceStatusComplement": "string",
                      "documentIntermediator": "string",
                      "intermediateRegistrationId": "string",
                      "documentPaymentInstitution": "string",
                      "fulfillment": true,
                      "discount": 0,
                      "freight": 0,
                      "interestValue": 0,
                      "gross": 0,
                      "total": 0,
                      "marketPlaceUrl": "string",
                      "marketPlaceShipmentStatus": "string",
                      "invoice": {
                        "accessKey": "string",
                        "series": "string",
                        "number": "string",
                        "date": "2022-02-24T14:15:22Z",
                        "cfop": "string",
                        "companyStateTaxId": "string",
                        "linkNfe": "string",
                        "invoiceLink": "string",
                        "extraDescription": "string"
                      },
                      "shipping": {
                        "city": "string",
                        "state": "string",
                        "stateNameNormalized": "string",
                        "country": "string",
                        "countryAcronymNormalized": "string",
                        "countryNameNormalized": "string",
                        "address": "string",
                        "number": "string",
                        "neighborhood": "string",
                        "street": "string",
                        "comment": "string",
                        "reference": "string",
                        "zipCode": "string",
                        "receiverName": "string",
                        "promisedShippingTime": "2019-08-24T14:15:22Z"
                      },
                      "billingAddress": {
                        "city": "string",
                        "state": "string",
                        "stateNameNormalized": "string",
                        "country": "string",
                        "countryAcronymNormalized": "string",
                        "countryNameNormalized": "string",
                        "street": "string",
                        "number": "string",
                        "neighborhood": "string",
                        "comment": "string",
                        "reference": "string",
                        "zipCode": "string"
                      },
                      "anymarketAddress": {
                        "state": "string",
                        "city": "string",
                        "zipCode": "string",
                        "neighborhood": "string",
                        "address": "string",
                        "street": "string",
                        "number": "string",
                        "comment": "string",
                        "reference": "string",
                        "receiverName": "string",
                        "promisedShippingTime": "string"
                      },
                      "buyer": {
                        "marketPlaceId": "string",
                        "name": "string",
                        "email": "string",
                        "document": "string",
                        "documentType": "string",
                        "phone": "string",
                        "cellPhone": "string",
                        "documentNumberNormalized": "string"
                      },
                      "payments": [
                        {
                          "method": "string",
                          "status": "string",
                          "value": 0,
                          "installments": 0,
                          "marketplaceId": "string",
                          "gatewayFee": 0,
                          "marketplaceFee": 0,
                          "paymentMethodNormalized": "string",
                          "paymentDetailNormalized": "string"
                        }
                      ],
                      "items": [
                        {
                          "product": {
                            "id": 0,
                            "title": "string"
                          },
                          "sku": {
                            "id": 0,
                            "title": "string",
                            "partnerId": "string",
                            "externalId": "string",
                            "ean": "string"
                          },
                          "amount": 0,
                          "unit": 0,
                          "gross": 0,
                          "total": 0,
                          "discount": 0,
                          "shippings": [
                            {
                              "id": 0,
                              "shippingtype": "string",
                              "shippingCarrierNormalized": "string",
                              "shippingCarrierTypeNormalized": "string"
                            }
                          ],
                          "customizations": {
                            "customizationType": "string",
                            "customizationQuantity": 0,
                            "customizationPrice": 0,
                            "customizationValue": "string"
                          },
                          "stocks": [
                            {
                              "stockLocalId": 0,
                              "stockName": "string",
                              "amount": 0
                            }
                          ],
                          "marketPlaceId": "string",
                          "orderItemId": "string",
                          "idInMarketPlace": "string",
                          "officialStoreId": "string",
                          "officialStoreName": "string",
                          "listingType": "string",
                          "freeShipping": true
                        }
                      ],
                      "tracking": {
                        "url": "string",
                        "number": "string",
                        "carrier": "string",
                        "carrierDocument": "string",
                        "date": "2019-08-24T14:15:22Z",
                        "deliveredDate": "2019-08-24T14:15:22Z",
                        "estimateDate": "2019-08-24T14:15:22Z",
                        "shippedDate": "2019-08-24T14:15:22Z"
                      },
                      "deliverStatus": "UNKNOWN",
                      "idAccount": 0,
                      "pickup": {
                        "id": 0,
                        "description": "string",
                        "partnerId": 0,
                        "marketplaceId": "string",
                        "receiverName": "string"
                      },
                      "metadata": {
                        "number-of-packages": "1",
                        "cdZipCode": "string",
                        "needInvoiceXML": "true"
                      }
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OrderUpdateCanceled"
              },
              "examples": {
                "example-1": {
                  "value": {
                    "cancellationCode": "string",
                    "cancelDetails": "string",
                    "status": "CANCELED"
                  }
                }
              }
            }
          },
          "description": "Dados do pedido"
        },
        "description": "# Actualiza los datos del pedido informado (Cancelado)\n Actualiza la información del pedido informado. Los datos de actualización no son obligatorios y si alguno de ellos no es informado, el pedido quedará con los datos vigentes.",
        "tags": [
          "Pedido"
        ]
      }
    },
    "/orders/{id}/nfe/type/{type}": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID de pedido generado por ANYMARKET"
        },
        {
          "schema": {
            "type": "string",
            "enum": [
              "sale",
              "sale_return",
              "sale_devolution",
              "gift",
              "inbound",
              "devolution",
              "inbound_devolution",
              "inbound_return",
              "inbound_supplier_return",
              "symbolic_inbound",
              "symbolic_inbound_return",
              "purchase",
              "removal",
              "symbolic_removal"
            ]
          },
          "name": "type",
          "in": "path",
          "required": true,
          "description": "Tipo XML deseado"
        }
      ],
      "get": {
        "summary": "/orders/{id}/nfe/type/{type}",
        "tags": [
          "Pedido"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/XmlFulfillment"
                  }
                },
                "examples": {}
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "operationId": "get-orders-id-nfe-type-type",
        "description": "# Buscar en el XML de NF-e\n Devuelve el NF-e Xml para el vendedor. Se debe enviar el tipo de NF-e deseado.\n\nAtributo 'type' podendo ser:\n- sale\n- sale_return\n- sale_devolution\n- gift\n- inbound\n- devolution\n- inbound_devolution\n- inbound_return\n- inbound_supplier_return\n- symbolic_inbound\n- symbolic_inbound_return\n- purchase\n- removal\n- symbolic_removal\n",
        "deprecated": true
      }
    },
    "/orders/{id}/inbound/marketplace/{marketplace}": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID de banco enviado pela callback gerado pelo ANYMARKET"
        },
        {
          "schema": {
            "$ref": "#/components/schemas/EnumMarketplaces"
          },
          "name": "marketplace",
          "in": "path",
          "required": true,
          "description": "Identificador do marketplace."
        }
      ],
      "get": {
        "summary": "/orders/{id}/inbound/marketplace/{marketplace}",
        "tags": [
          "Pedido"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/XmlFulfillment"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "operationId": "get-orders-id-inbound-marketplace-marketplace",
        "description": "# Busca o XML da NF-e\nRetorna o Xml da NF-e do tipo Inbound para o Seller. Deve ser enviado o marketplace da NF-e desejada.\n\nAtributo 'marketplace' podendo ser:\n- MERCADO_LIVRE\n- VIA_VAREJO\n- E OUTROS\n\n<!-- theme: warning -->\n> #### Atenção!\n>\n> Atributo **'marketplace'** deve ser caixa alta (maiúsculo) pois trata-se de um ENUM.",
        "deprecated": true
      }
    },
    "/fulfillment/{marketplace}/documents": {
      "parameters": [
        {
          "schema": {
            "$ref": "#/components/schemas/EnumMarketplaces"
          },
          "name": "marketplace",
          "in": "path",
          "required": true,
          "description": "Identificador do marketplace."
        }
      ],
      "get": {
        "summary": "/fulfillment/{marketplace}/documents",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "links": {
                      "type": "array",
                      "description": "Referências de paginação",
                      "items": {
                        "type": "object",
                        "properties": {
                          "rel": {
                            "type": "string",
                            "description": "Relacionamento do hyperlink"
                          },
                          "href": {
                            "type": "string",
                            "description": "URL de definição do recurso"
                          }
                        }
                      }
                    },
                    "content": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "ID do Documento Fiscal"
                          },
                          "idOrder": {
                            "type": "integer",
                            "description": "ID do Pedido (quando a nota for ligada a um pedido)"
                          },
                          "url": {
                            "type": "string",
                            "description": "URL do Documento"
                          },
                          "marketplace": {
                            "$ref": "#/components/schemas/EnumMarketplaces"
                          },
                          "type": {
                            "$ref": "#/components/schemas/EnumTypeFulfillment"
                          }
                        }
                      }
                    },
                    "page": {
                      "type": "object",
                      "properties": {
                        "size": {
                          "type": "integer",
                          "description": "Tamanho da página"
                        },
                        "totalElements": {
                          "type": "integer",
                          "description": "Total de elementos existentes"
                        },
                        "totalPages": {
                          "type": "integer",
                          "description": "Total de páginas disponíveis"
                        },
                        "number": {
                          "type": "integer",
                          "description": "Número da página atual"
                        }
                      }
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "links": [
                        {
                          "rel": "next",
                          "href": "http://api.anymarket.com.br/v2/fulfillment/MAGAZINE_LUIZA/documents?offset=5"
                        }
                      ],
                      "content": [
                        {
                          "id": 43109,
                          "idOrder": 107032238,
                          "url": "https://s3.us-east-1.amazonaws.com/xml.anymarket.com.br/anymarket-magazineluiza-nfe/transactionType-sale/transactionStatus-autorizadas/152273594.LU-1201170398354422-05012023-220027.xml",
                          "marketplace": "MAGAZINE_LUIZA",
                          "type": "SALE"
                        }
                      ],
                      "page": {
                        "size": 5,
                        "totalElements": 8120,
                        "totalPages": 1624,
                        "number": 0
                      }
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              },
              "application/xml": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "code": "404",
                      "message": "Documento não encontrado."
                    }
                  }
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "operationId": "get-fulfillment-documents",
        "description": "# Busca documentos fiscais do Fulfillment\nBusca documentos fiscais do Fulfillment do seller, disponibilizados pelos Marketplaces\n\nAtributo 'marketplace' podendo ser:\n- MAGAZINE_LUIZA\n- MERCADO_LIVRE\n- B2W_NEW_API\n- AMAZON_GLOBAL_API\n\n<!-- theme: warning -->\n> #### Atenção!\n>\n> Atributo **'marketplace'** deve ser caixa alta (maiúsculo) pois trata-se de um ENUM.\n<!-- theme: warning -->\n> #### Para MERCADO_LIVRE:\n>\n> Caso o parâmetro *\"createdBefore\"* não seja informado, será considerado o valor de *\"createdAfter\"* acrescido de um mês.  \n> Caso o parâmetro *\"createdAfter\"* não seja informado, será considerado o valor de *\"createdBefore\"* subtraído de um mês.  \n> Se ambos os parâmetros não forem informados, *\"createdBefore\"* assumirá a data atual e *\"createdAfter\"* será definido como um mês antes dessa data.",
        "parameters": [
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "idOrder",
            "description": "ID do Pedido (quando a nota for ligada a um pedido)"
          },
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "idDocument",
            "description": "ID do Documento Fiscal"
          },
          {
            "schema": {
              "$ref": "#/components/schemas/EnumTypeFulfillment"
            },
            "in": "query",
            "name": "type",
            "description": "Tipo do documento (Ex: Sale, Inbound e etc.)"
          },
          {
            "schema": {
              "type": "string",
              "example": "2022-11-25T14:00:00-03:00",
              "format": "date-time"
            },
            "in": "query",
            "name": "createdAfter",
            "description": "Criado a partir de"
          },
          {
            "schema": {
              "type": "string",
              "example": "2022-11-25T20:30:00-03:00",
              "format": "date-time"
            },
            "in": "query",
            "name": "createdBefore",
            "description": "Criado antes de "
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/offset"
          }
        ],
        "tags": [
          "Fulfillment"
        ]
      }
    },
    "/orders/{id}/nfe": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "description": "ID de pedido generado por ANYMARKET",
          "required": true
        }
      ],
      "put": {
        "summary": "/orders/{id}/nfe",
        "tags": [
          "Pedido"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {}
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/400"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                },
                "examples": {}
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/500"
                },
                "examples": {
                  "orders/{id}/nfe 1": {
                    "value": {
                      "code": "500",
                      "message": "Ocorreu um erro ao atualizar o documento fiscal para o marketplace. Erro: O Mercado Livre não permite o envio do XML da nota fiscal para a seguinte combinação de status e substatus do shipment do pedido no Mercado Livre. (Status: pending, Substatus: buffered, Id. no Marketplace: 20000012345678901)"
                    }
                  },
                  "orders/{id}/nfe 2": {
                    "value": {
                      "code": "500",
                      "message": "Ocorreu um erro ao atualizar o documento fiscal para o marketplace. Erro: O Limite de Nota Fiscal salva na venda foi atingido no Mercado Livre."
                    }
                  },
                  "orders/{id}/nfe 3": {
                    "value": {
                      "code": "500",
                      "message": "Ocorreu um erro ao atualizar o documento fiscal para o marketplace. Erro: Erro ao faturar pedido: Erro: ''??invalid_invoice_emission_date??''"
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "get-orders-id-nfe",
        "description": "# Enviar el XML de NF-e\n  Envíe el XML de NF-e al Marketplace. Solo tienes que enviar el contenido XML.",
        "requestBody": {
          "content": {
            "application/xml": {
              "schema": {
                "type": "string"
              },
              "examples": {
                "XML": {
                  "value": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<nfeProc xmlns=\"http://www.portalfiscal.inf.br/nfe\" versao=\"4.00\">\n<NFe xmlns=\"http://www.portalfiscal.inf.br/nfe\">\n<infNFe versao=\"4.00\" Id=\"NFe41190908328657000194550015624654251041433087\">\n<ide>\n<cUF>41</cUF>\n<cNF>04143308</cNF>\n<natOp>Venda de mercadorias</natOp>\n<mod>55</mod>\n<serie>1</serie>\n<nNF>562465425</nNF>\n<dhEmi>2019-09-11T15:57:56-03:00</dhEmi>\n<tpNF>1</tpNF>\n<idDest>1</idDest>\n<cMunFG>4115200</cMunFG>\n<tpImp>1</tpImp>\n<tpEmis>1</tpEmis>\n<cDV>7</cDV>\n<tpAmb>2</tpAmb>\n<finNFe>1</finNFe>\n<indFinal>1</indFinal>\n<indPres>9</indPres>\n<procEmi>0</procEmi>\n<verProc>Bling 1.0</verProc>\n</ide>\n<emit>\n<CNPJ>08328657000194</CNPJ>\n<xNome>Anymarket DB1</xNome>\n<enderEmit>\n<xLgr>Av. Advogado Horacio Raccanello Filho</xLgr>\n<nro>5410</nro>\n<xBairro>Novo Centro</xBairro>\n<cMun>4115200</cMun>\n<xMun>Maringa</xMun>\n<UF>PR</UF>\n<CEP>87020035</CEP>\n<cPais>1058</cPais>\n<xPais>Brasil</xPais>\n<fone>4430336300</fone>\n</enderEmit>\n<IE>9038912540</IE>\n<CRT>1</CRT>\n</emit>\n<dest>\n<CPF>42159270130</CPF>\n<xNome>NF-E EMITIDA EM AMBIENTE DE HOMOLOGACAO - SEM VALOR FISCAL</xNome>\n<enderDest>\n<xLgr>Praca Amabile Giroldo</xLgr>\n<nro>100</nro>\n<xCpl>maca, area, avo, avo</xCpl>\n<xBairro>Zona 04</xBairro>\n<cMun>4115200</cMun>\n<xMun>Maringa</xMun>\n<UF>PR</UF>\n<CEP>87014280</CEP>\n<cPais>1058</cPais>\n<xPais>Brasil</xPais>\n<fone>4432202020</fone>\n</enderDest>\n<indIEDest>9</indIEDest>\n<email>ttest.7y5snb2-oge3dcojrgmztcmbt@mail.com</email>\n</dest>\n<det nItem=\"1\">\n<prod>\n<cProd>AKCI00990ZPTODAVIDA</cProd>\n<cEAN>SEM GTIN</cEAN>\n<xProd>NOTA FISCAL EMITIDA EM AMBIENTE DE HOMOLOGACAO - SEM VALOR FISCAL</xProd>\n<NCM>01029000</NCM>\n<CFOP>5102</CFOP>\n<uCom>1</uCom>\n<qCom>1.0000</qCom>\n<vUnCom>160.00</vUnCom>\n<vProd>160.00</vProd>\n<cEANTrib>SEM GTIN</cEANTrib>\n<uTrib>1</uTrib>\n<qTrib>1.0000</qTrib>\n<vUnTrib>160.00</vUnTrib>\n<indTot>1</indTot>\n<nItemPed>1</nItemPed>\n</prod>\n<imposto>\n<vTotTrib>25.92</vTotTrib>\n<ICMS>\n<ICMSSN102>\n<orig>0</orig>\n<CSOSN>400</CSOSN>\n</ICMSSN102>\n</ICMS>\n<IPI>\n<cEnq>301</cEnq>\n<IPINT>\n<CST>52</CST>\n</IPINT>\n</IPI>\n<PIS>\n<PISNT>\n<CST>07</CST>\n</PISNT>\n</PIS>\n<COFINS>\n<COFINSNT>\n<CST>07</CST>\n</COFINSNT>\n</COFINS>\n</imposto>\n</det>\n<total>\n<ICMSTot>\n<vBC>0.00</vBC>\n<vICMS>0.00</vICMS>\n<vICMSDeson>0</vICMSDeson>\n<vFCP>0.00</vFCP>\n<vBCST>0.00</vBCST>\n<vST>0.00</vST>\n<vFCPST>0.00</vFCPST>\n<vFCPSTRet>0.00</vFCPSTRet>\n<vProd>160.00</vProd>\n<vFrete>0.00</vFrete>\n<vSeg>0.00</vSeg>\n<vDesc>0.00</vDesc>\n<vII>0.00</vII>\n<vIPI>0.00</vIPI>\n<vIPIDevol>0.00</vIPIDevol>\n<vPIS>0.00</vPIS>\n<vCOFINS>0.00</vCOFINS>\n<vOutro>0.00</vOutro>\n<vNF>160.00</vNF>\n<vTotTrib>25.92</vTotTrib>\n</ICMSTot>\n</total>\n<transp>\n<modFrete>0</modFrete>\n<transporta>\n<xNome>DESCONHECIDO</xNome>\n</transporta>\n<vol>\n<pesoL>0.000</pesoL>\n<pesoB>0.000</pesoB>\n</vol>\n</transp>\n<cobr>\n<fat>\n<nFat>562465425</nFat>\n<vOrig>160.00</vOrig>\n<vDesc>0</vDesc>\n<vLiq>160.00</vLiq>\n</fat>\n<dup>\n<nDup>001</nDup>\n<dVenc>2019-09-11</dVenc>\n<vDup>160.00</vDup>\n</dup>\n</cobr>\n<pag>\n<detPag>\n<tPag>01</tPag>\n<vPag>160.00</vPag>\n</detPag>\n</pag>\n<infAdic>\n<infCpl>Total aproximado de tributos: R$ 25,92 (16,20%) Federais R$ 6,72 (4,20%) Estaduais R$ 19,20 (12,00%) . Fonte IBPT.<br /></infCpl>\n</infAdic>\n<infRespTec>\n<CNPJ>01056417000139</CNPJ>\n<xContato>Jonatan Fracasso da Silva</xContato>\n<email>fiscal@bling.com.br</email>\n<fone>05430550479</fone>\n</infRespTec>\n</infNFe>\n<Signature xmlns=\"http://www.w3.org/2000/09/xmldsig#\">\n<SignedInfo>\n<CanonicalizationMethod Algorithm=\"http://www.w3.org/TR/2001/REC-xml-c14n-20010315\"/>\n<SignatureMethod Algorithm=\"http://www.w3.org/2000/09/xmldsig#rsa-sha1\"/>\n<Reference URI=\"#NFe41190908328657000194550015624654251041433087\">\n<Transforms>\n<Transform Algorithm=\"http://www.w3.org/2000/09/xmldsig#enveloped-signature\"/>\n<Transform Algorithm=\"http://www.w3.org/TR/2001/REC-xml-c14n-20010315\"/>\n</Transforms>\n<DigestMethod Algorithm=\"http://www.w3.org/2000/09/xmldsig#sha1\"/>\n<DigestValue>JYjiWB7sFoiM7jQckhdvLsSBpQw=</DigestValue>\n</Reference>\n</SignedInfo>\n<SignatureValue>H6DfZXCiFcypfHAXdaotLTU2hSJxaCCDIEHkU84eioyd4VVSqYu/0FbBAYnmlb5xGbqio59fzlZ2P7OvR4UogYcW32jT95HfuB2wkUxIbCPzI14uEQzm7Sve8NG+0H0Oge1U/vTApeZHcGfVsQiGCRItvDUVuGJ50qPCGONz1BV6yBO9cr9WxtA2AhOklb4uShPrb+08W+LZ2ReYKLND5vJVofEmUE9jU1hgFGm/WM2zMgauKNqgJr2/nlPI13PxyxYZ6QTC7EenkEJdr+L9ziWzN5haFQ7mw2jtVQOwpnU5KQBbfmpyWZKQ9sUDPOrnr9y73iKGrPAf6cvTNEhZAA==</SignatureValue>\n<KeyInfo>\n<X509Data>\n<X509Certificate>MIIHwDCCBaigAwIBAgIIRD0ZAig/4BIwDQYJKoZIhvcNAQELBQAwgYkxCzAJBgNVBAYTAkJSMRMwEQYDVQQKEwpJQ1AtQnJhc2lsMTQwMgYDVQQLEytBdXRvcmlkYWRlIENlcnRpZmljYWRvcmEgUmFpeiBCcmFzaWxlaXJhIHYyMRIwEAYDVQQLEwlBQyBTT0xVVEkxGzAZBgNVBAMTEkFDIFNPTFVUSSBNdWx0aXBsYTAeFw0xOTAyMjgxODA0MTBaFw0yMDAyMjgxNzM1MDBaMIHfMQswCQYDVQQGEwJCUjETMBEGA1UEChMKSUNQLUJyYXNpbDE0MDIGA1UECxMrQXV0b3JpZGFkZSBDZXJ0aWZpY2Fkb3JhIFJhaXogQnJhc2lsZWlyYSB2MjESMBAGA1UECxMJQUMgU09MVVRJMRswGQYDVQQLExJBQyBTT0xVVEkgTXVsdGlwbGExGjAYBgNVBAsTEUNlcnRpZmljYWRvIFBKIEExMTgwNgYDVQQDEy9EQjEgU0lTVEVNQVMgRSBDT05TVUxUT1JJQSBMVERBLjowODMyODY1NzAwMDE5NDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJAMfqYQn+K1ZVA1mikdSoUdeP9JU1zcj9JW30yqcRgHqYeNvVZwSPGSpNBURTpdJq+a2QEUXrqe9xLDCWNbPV6M4Br3cq7JOSc4lC31gt6JxhBXrm9cRQvcu0Kyh7h8DF8aHcFEW2rr8xGXQdiguR3Gs1bgPUdpqRQNQ5nq5oaoGdbIjbRWkNLSV9LXZP/PW6KIRdCMBby4ly7TbEt1WwU2az625TOnlVLL0ISHKdNAcKwtDM53OEq+FXp4nmfO7LULo5IB57Zzj97Xz4wyNyir/9nh1lX3cc/i8AlcTYVPtK1u/h1Id/UZK53mb9yo0FMLRf+nHXI9q7g7AUjZHycCAwEAAaOCAtIwggLOMFQGCCsGAQUFBwEBBEgwRjBEBggrBgEFBQcwAoY4aHR0cDovL2NjZC5hY3NvbHV0aS5jb20uYnIvbGNyL2FjLXNvbHV0aS1tdWx0aXBsYS12MS5wN2IwHQYDVR0OBBYEFGbSSAwEwrPZAgM8DFShvCbMJ+50MAkGA1UdEwQCMAAwHwYDVR0jBBgwFoAUNa4xFPZe0npPWP40qBpnlwrEmwcwXgYDVR0gBFcwVTBTBgZgTAECASYwSTBHBggrBgEFBQcCARY7aHR0cHM6Ly9jY2QuYWNzb2x1dGkuY29tLmJyL2RvY3MvZHBjLWFjLXNvbHV0aS1tdWx0aXBsYS5wZGYwgd4GA1UdHwSB1jCB0zA+oDygOoY4aHR0cDovL2NjZC5hY3NvbHV0aS5jb20uYnIvbGNyL2FjLXNvbHV0aS1tdWx0aXBsYS12MS5jcmwwP6A9oDuGOWh0dHA6Ly9jY2QyLmFjc29sdXRpLmNvbS5ici9sY3IvYWMtc29sdXRpLW11bHRpcGxhLXYxLmNybDBQoE6gTIZKaHR0cDovL3JlcG9zaXRvcmlvLmljcGJyYXNpbC5nb3YuYnIvbGNyL0FDU09MVVRJL2FjLXNvbHV0aS1tdWx0aXBsYS12MS5jcmwwDgYDVR0PAQH/BAQDAgXgMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDBDCBugYDVR0RBIGyMIGvgRhjb250cm9sYWRvcmlhQGRiMS5jb20uYnKgJQYFYEwBAwKgHBMaQUxFWEFORFJFIERBIFNJTFZBIFJFWkVOREWgGQYFYEwBAwOgEBMOMDgzMjg2NTcwMDAxOTSgOAYFYEwBAwSgLxMtMDYxMDE5ODAwMzAwNzQ1Nzk2MzAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwoBcGBWBMAQMHoA4TDDAwMDAwMDAwMDAwMDANBgkqhkiG9w0BAQsFAAOCAgEAYTnjjqwxA3Yg4YYBf+tArw2SshV2IXb5IqqmFtRWBiHlIgwwc8VgGsJEM8nJwFX5htPTtySX4RCETTbh/GKBYjp42T+v1udKuDYohoTdm1TrYvarXkFXKqQ6HBzDFtLPo4VfsKbAe/31S5OtYvb536Qtj6e+5S000RH5nCHsfcqgShZHkdLuMpQqjawaCVccfERlK/3iN4S9pYryy+zgeb158rNOKUZU4DVj2yhNO3JKvUmvPuyHpUnAqGA35qZkCSLCPl4AEi4RyjCE5DAwGp20gMF5xXZwZD+rszTzILpXUfyqAjL2uarkSJrhRmXGT7i2cQHzez2HrLzLBI8vgalzk98RcX1GNiQlUueEWH2xseh/nyi3YjOkFIyhzvQuACTs6Ou4xYPW/3xkclNivc44lomEzmT16yZrrxD7AdlH4om1+Hrcr216AiekIO72Ggl2bjKt10vFtb9NlEmrpBq9+KcKbL4v2QNOESHsDQXnxgi0XuECdw3Jkj4X0IYbN8h4RkKvYiCTi5bgLH685XkU2WgGYAtvTAlmIvTlMDhskKv6cmHp5C0b2GPvC8WMncq5bwNqjLDhwH/qSsqsJT7s2qypj+mzokuMpjJ8noVy5LU0on6p5QOnO31mMbYmvHFbhbigl9OHe94liqVnJdChVlQD3j74EelQwZjCrZw=</X509Certificate>\n</X509Data>\n</KeyInfo>\n</Signature>\n</NFe>\n<protNFe versao=\"4.00\">\n<infProt>\n<tpAmb>2</tpAmb>\n<verAplic>PR-v4_4_9</verAplic>\n<chNFe>41190908328657000194550015624654251041433087</chNFe>\n<dhRecbto>2019-09-11T15:57:57-03:00</dhRecbto>\n<nProt>141190000835627</nProt>\n<digVal>JYjiWB7sFoiM7jQckhdvLsSBpQw=</digVal>\n<cStat>100</cStat>\n<xMotivo>Autorizado o uso da NF-e</xMotivo>\n</infProt>\n</protNFe>\n</nfeProc>"
                }
              }
            }
          },
          "description": "Conteúdo do XML"
        }
      }
    },
    "/orders/{id}/fiscalDocument": {
      "parameters": [
        {
          "schema": {
            "type": "integer",
            "format": "int64"
          },
          "name": "id",
          "in": "path",
          "description": "ID del pedido en ANYMARKET.",
          "required": true
        }
      ],
      "post": {
        "summary": "/orders/{id}/fiscalDocument",
        "tags": [
          "Pedido"
        ],
        "parameters": [
          {
            "schema": {
              "type": "string",
              "format": "uuid"
            },
            "name": "packageId",
            "in": "query",
            "description": "Identificador del paquete del pedido al que pertenece la factura. Obligatorio cuando el pedido tiene paquetes; no debe informarse cuando el pedido no tiene paquetes.",
            "required": false
          }
        ],
        "responses": {
          "200": {
            "description": "Factura registrada con éxito en el paquete.",
            "content": {}
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/400"
                },
                "examples": {
                  "packageId obrigatório": {
                    "value": {
                      "code": "400",
                      "message": "O parâmetro packageId é obrigatório quando o pedido possui pacotes."
                    }
                  },
                  "PACKAGE_ALREADY_INVOICED": {
                    "value": {
                      "code": "400",
                      "message": "O pacote informado já possui nota fiscal associada (PACKAGE_ALREADY_INVOICED)."
                    }
                  }
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/500"
                },
                "examples": {
                  "orders/{id}/nfe 1": {
                    "value": {
                      "code": "500",
                      "message": "Ocorreu um erro ao atualizar o documento fiscal para o marketplace. Erro: O Mercado Livre não permite o envio do XML da nota fiscal para a seguinte combinação de status e substatus do shipment do pedido no Mercado Livre. (Status: pending, Substatus: buffered, Id. no Marketplace: 20000012345678901)"
                    }
                  },
                  "orders/{id}/nfe 2": {
                    "value": {
                      "code": "500",
                      "message": "Ocorreu um erro ao atualizar o documento fiscal para o marketplace. Erro: O Limite de Nota Fiscal salva na venda foi atingido no Mercado Livre."
                    }
                  },
                  "orders/{id}/nfe 3": {
                    "value": {
                      "code": "500",
                      "message": "Ocorreu um erro ao atualizar o documento fiscal para o marketplace. Erro: Erro ao faturar pedido: Erro: ''??invalid_invoice_emission_date??''"
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "get-orders-id-fiscaDocument",
        "description": "# Envía la Factura (PDF o XML)\n\nRegistra la factura en un paquete del pedido y envía el documento al Marketplace. El endpoint no retorna body en la respuesta (void).\n\n## Parámetros\n\n| Parámetro | Tipo | Obligatoriedad | Descripción |\n|-----------|------|----------------|-------------|\n| id (path) | Long | Obligatorio | ID del pedido en ANYMARKET. |\n| packageId (query) | UUID | Obligatorio cuando el pedido tiene paquetes; no debe informarse cuando el pedido no tiene paquetes | Identificador del paquete del pedido al que pertenece la factura. |\n\n## Body (multipart/form-data)\n\n| Campo | Tipo | Obligatoriedad | Descripción |\n|-------|------|----------------|-------------|\n| file | File (PDF o XML) | Obligatorio | Archivo de la factura. |\n| number | String | Obligatorio | Número de la factura. |\n| date | String (ISO 8601) | Obligatorio | Fecha de emisión. Ej: 2026-05-05T10:00:00-03:00. |\n| accessKey | String | Opcional | Clave de acceso de la NF-e. |\n| series | String | Opcional | Serie de la factura. |\n| cfop | String | Opcional | Código Fiscal de Operaciones y Prestaciones. |\n| companyStateTaxId | String | Opcional | Inscripción estadual de la empresa emisora. |\n| linkNfe | String | Opcional | URL para consulta de la NF-e. |\n| invoiceLink | String | Opcional | URL donde está almacenado el PDF o XML de la factura. |\n| extraDescription | String | Opcional | Campo para observaciones. |\n| operationType | String | Opcional | Tipo de operación fiscal. |\n| emissionType | String | Opcional | Tipo de emisión de la factura. |\n| authorizationProtocol | String | Opcional | Protocolo de autorización de la factura. |\n\n> **Importante:** Los paquetes facturados se vuelven inmutables — no pueden ser editados, eliminados o cancelados.\n\n## Códigos de retorno\n\n| Código | Descripción |\n|--------|-------------|\n| 200 | Factura registrada con éxito en el paquete. |\n| 400 | `packageId obligatorio` — el pedido tiene paquetes y la solicitud no informó packageId. |\n| 400 | `PACKAGE_ALREADY_INVOICED` — el paquete informado ya tiene una factura asociada. |\n\n## Ejemplo de curl\n\n```bash\ncurl --location 'https://sandbox-api.anymarket.com.br/v2/orders/6565/fiscalDocument' \\\n  --header 'gumgaToken: <su_token>' \\\n  --form 'file=@\"/ruta/a/nota-fiscal.pdf\"' \\\n  --form 'packageId=\"476ae5cb-2cc2-4e4e-9f42-22def0f06378\"' \\\n  --form 'date=\"2026-05-15T10:00:00-03:00\"' \\\n  --form 'number=\"1234\"' \\\n  --form 'accessKey=\"352505123456780001955500100000123412345\"' \\\n  --form 'series=\"1\"' \\\n  --form 'invoiceLink=\"https://example.com/danfe/1234.pdf\"' \\\n  --form 'linkNfe=\"https://example.com/nfe/1234.xml\"' \\\n  --form 'cfop=\"6102\"' \\\n  --form 'companyStateTaxId=\"123456789\"' \\\n  --form 'extraDescription=\"Venda de mercadoria\"' \\\n  --form 'operationType=\"1\"' \\\n  --form 'emissionType=\"1\"' \\\n  --form 'authorizationProtocol=\"135260005473993\"'\n```",
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "required": [
                  "file",
                  "number",
                  "date"
                ],
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary",
                    "description": "Arquivo da nota fiscal (PDF ou XML)."
                  },
                  "number": {
                    "type": "string",
                    "description": "Número da nota fiscal."
                  },
                  "date": {
                    "type": "string",
                    "format": "date-time",
                    "description": "Data de emissão da nota fiscal (ISO 8601). Ex: 2026-05-05T10:00:00-03:00."
                  },
                  "accessKey": {
                    "type": "string",
                    "description": "Chave de acesso da NF-e."
                  },
                  "series": {
                    "type": "string",
                    "description": "Série da nota fiscal."
                  },
                  "cfop": {
                    "type": "string",
                    "description": "Código Fiscal de Operações e Prestações."
                  },
                  "companyStateTaxId": {
                    "type": "string",
                    "description": "Inscrição estadual da empresa emissora."
                  },
                  "linkNfe": {
                    "type": "string",
                    "description": "URL para consulta da NF-e."
                  },
                  "invoiceLink": {
                    "type": "string",
                    "description": "URL onde está armazenado o PDF ou XML da nota fiscal."
                  },
                  "extraDescription": {
                    "type": "string",
                    "description": "Campo para observações."
                  },
                  "operationType": {
                    "type": "string",
                    "description": "Tipo de operação fiscal."
                  },
                  "emissionType": {
                    "type": "string",
                    "description": "Tipo de emissão da nota fiscal."
                  },
                  "authorizationProtocol": {
                    "type": "string",
                    "description": "Protocolo de autorização da nota fiscal."
                  }
                }
              }
            }
          }
        }
      }
    },
    "/questions": {
      "get": {
        "summary": "/questions",
        "tags": [
          "Perguntas"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Page_Questions"
                }
              }
            }
          }
        },
        "operationId": "get-questions",
        "description": "# Consulta las preguntas disponibles\n Ver preguntas disponibles. Actualmente solo para MARKETPLACE Mercado Livre.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "example": "2022-02-25"
            },
            "in": "query",
            "name": "date",
            "description": "Criado a partir de"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "UNANSWERED",
                "ANSWERED",
                "TO_BE_DELETED",
                "CLOSED_UNANSWERED"
              ]
            },
            "in": "query",
            "name": "status",
            "description": "Atributo para filtrar preguntas por estado"
          }
        ],
        "x-internal": true,
        "x-stoplight": {
          "id": "9aiqz9yqesuvy"
        }
      }
    },
    "/questions/{id}": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID da pregunta"
        }
      ],
      "get": {
        "summary": "/questions/{id}",
        "tags": [
          "Perguntas"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Questions"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "questionerName": "string",
                      "context": "string",
                      "question": "string",
                      "answers": [
                        {
                          "id": 0,
                          "answer": "string"
                        }
                      ],
                      "questionDate": "2019-08-24T14:15:22Z"
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          }
        },
        "operationId": "get-questions-id",
        "description": "# Ver los detalles de una pregunta\n Ver los detalles de una pregunta. Actualmente solo para MercadoLivre MarketPlace."
      }
    },
    "/questions/{id}/answers": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID da pregunta"
        }
      ],
      "get": {
        "summary": "/questions/{id}/answers",
        "tags": [
          "Perguntas"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Page_Answers"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          }
        },
        "operationId": "get-questions-id-answers",
        "description": "# Ver las respuestas a una pregunta\n Consultar las respuestas a una pregunta. Actualmente solo para MercadoLivre MarketPlace."
      },
      "post": {
        "summary": "Insertar una nueva respuesta a la pregunta",
        "operationId": "post-questions-id-answers",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Answers"
                }
              }
            }
          }
        },
        "description": "# Insertar una nueva respuesta a la pregunta\n Inserta una nueva respuesta a la pregunta. Actualmente solo para MERCADO LIBRE DE MERCADO.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Answers"
              }
            }
          }
        },
        "tags": [
          "Perguntas"
        ]
      }
    },
    "/questions/{id}/answers/{answerId}": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID da pregunta"
        },
        {
          "schema": {
            "type": "integer"
          },
          "name": "answerId",
          "in": "path",
          "required": true,
          "description": "ID dr respuesta"
        }
      ],
      "get": {
        "summary": "/questions/{id}/answers/{answerId}",
        "tags": [
          "Perguntas"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Answers"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                }
              }
            }
          }
        },
        "operationId": "get-questions-id-answers-answerId",
        "description": "# Ver los detalles de una respuesta\n Ver los detalles de una respuesta. Actualmente solo para MARKETPLACE Mercado Livre."
      }
    },
    "/products": {
      "get": {
        "summary": "/products",
        "tags": [
          "Produto"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Page_Product"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "links": [
                        {
                          "rel": "next",
                          "href": "https://.../v2/component?limit=5&offset=5"
                        }
                      ],
                      "content": [
                        {
                          "id": 0,
                          "title": "string",
                          "description": "string",
                          "externalIdProduct": "string",
                          "category": {
                            "id": 0,
                            "name": "string",
                            "path": "string"
                          },
                          "brand": {
                            "id": 123456,
                            "name": "Brastemp",
                            "reducedName": "brastemp",
                            "partnerId": "marca-001-brastemp"
                          },
                          "nbm": {
                            "id": "string",
                            "description": "string"
                          },
                          "origin": {
                            "id": 0,
                            "description": "string"
                          },
                          "model": "string",
                          "videoUrl": "string",
                          "gender": "MALE",
                          "warrantyTime": 0,
                          "warrantyText": "string",
                          "height": 0,
                          "width": 0,
                          "weight": 0,
                          "length": 0,
                          "priceFactor": 0,
                          "calculatedPrice": true,
                          "definitionPriceScope": "string",
                          "hasVariations": true,
                          "isProductActive": true,
                          "characteristics": [
                            {
                              "index": 0,
                              "name": "string",
                              "value": "string"
                            }
                          ],
                          "images": [
                            {
                              "id": 0,
                              "index": 0,
                              "main": true,
                              "url": "http://example.com",
                              "thumbnailUrl": "http://example.com",
                              "lowResolutionUrl": "http://example.com",
                              "standardUrl": "http://example.com",
                              "originalImage": "http://example.com",
                              "variation": "string",
                              "status": "UNPROCESSED",
                              "statusMessage": "string",
                              "standardWidth": 0,
                              "standardHeight": 0,
                              "originalWidth": 0,
                              "originalHeight": 0
                            }
                          ],
                          "skus": [
                            {
                              "id": 0,
                              "title": "string",
                              "partnerId": "string",
                              "ean": "string",
                              "amount": 0,
                              "additionalTime": 0,
                              "price": 0,
                              "sellPrice": 0,
                              "stockLocalId": 0,
                              "variations": [
                                {
                                  "id": 0,
                                  "description": "string",
                                  "type": {
                                    "id": 0,
                                    "name": "string",
                                    "visualVariation": true
                                  }
                                }
                              ],
                              "additionalStocks": [
                                {
                                  "price": 0,
                                  "amount": 0,
                                  "additionalTime": 0,
                                  "stockLocalId": 0
                                }
                              ],
                              "externalId": "string"
                            }
                          ],
                          "allowAutomaticSkuMarketplaceCreation": true
                        }
                      ],
                      "page": {
                        "size": 0,
                        "totalElements": 0,
                        "totalPages": 0,
                        "number": 0
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "get-products",
        "description": "# Consultar los detalles de un Producto\n Consultar los detalles de un producto",
        "parameters": [
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "sku",
            "description": "Código SKU del socio (cuando se le informa, solo filtra los productos que contienen este SKU)"
          },
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "description": "Identificación externa, utilizada en algunos MARKETPLACES para su control interno.",
            "name": "externalId"
          },
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "categoryId",
            "description": "ID da categoria gerado pelo ANYMARKET (Quando informado, filtra apenas os produtos contidos nessa categoria)"
          }
        ]
      },
      "post": {
        "summary": "/products",
        "operationId": "post-products",
        "responses": {
          "201": {
            "description": "Created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Product"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "title": "string",
                      "description": "string",
                      "externalIdProduct": "string",
                      "category": {
                        "id": 0,
                        "name": "string",
                        "path": "string"
                      },
                      "brand": {
                        "id": 123456,
                        "name": "Brastemp",
                        "reducedName": "brastemp",
                        "partnerId": "marca-001-brastemp"
                      },
                      "nbm": {
                        "id": "string",
                        "description": "string"
                      },
                      "origin": {
                        "id": 0,
                        "description": "string"
                      },
                      "model": "string",
                      "videoUrl": "string",
                      "gender": "MALE",
                      "warrantyTime": 0,
                      "warrantyText": "string",
                      "height": 0,
                      "width": 0,
                      "weight": 0,
                      "length": 0,
                      "priceFactor": 0,
                      "calculatedPrice": true,
                      "definitionPriceScope": "string",
                      "hasVariations": true,
                      "isProductActive": true,
                      "characteristics": [
                        {
                          "index": 0,
                          "name": "string",
                          "value": "string"
                        }
                      ],
                      "images": [
                        {
                          "id": 0,
                          "index": 0,
                          "main": true,
                          "url": "http://example.com",
                          "thumbnailUrl": "http://example.com",
                          "lowResolutionUrl": "http://example.com",
                          "standardUrl": "http://example.com",
                          "originalImage": "http://example.com",
                          "variation": "string",
                          "status": "UNPROCESSED",
                          "statusMessage": "string",
                          "standardWidth": 0,
                          "standardHeight": 0,
                          "originalWidth": 0,
                          "originalHeight": 0
                        }
                      ],
                      "skus": [
                        {
                          "id": 0,
                          "title": "string",
                          "partnerId": "string",
                          "ean": "string",
                          "amount": 0,
                          "additionalTime": 0,
                          "price": 0,
                          "sellPrice": 0,
                          "stockLocalId": 0,
                          "variations": [
                            {
                              "id": 0,
                              "description": "string",
                              "type": {
                                "id": 0,
                                "name": "string",
                                "visualVariation": true
                              }
                            }
                          ],
                          "additionalStocks": [
                            {
                              "price": 0,
                              "amount": 0,
                              "additionalTime": 0,
                              "stockLocalId": 0
                            }
                          ],
                          "externalId": "string"
                        }
                      ],
                      "allowAutomaticSkuMarketplaceCreation": true
                    }
                  }
                }
              }
            }
          },
          "400": {
            "$ref": "#/components/responses/400"
          },
          "422": {
            "$ref": "#/components/responses/422"
          }
        },
        "description": "# Crear un producto con los datos dados\n Crear un producto con los datos dados",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostProduct"
              },
              "examples": {}
            }
          }
        },
        "tags": [
          "Produto"
        ]
      }
    },
    "/products/{id}": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID de producto generado por ANYMARKET"
        }
      ],
      "get": {
        "summary": "/products/{id}",
        "tags": [
          "Produto"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Product"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "title": "string",
                      "description": "string",
                      "externalIdProduct": "string",
                      "category": {
                        "id": 0,
                        "name": "string",
                        "path": "string"
                      },
                      "brand": {
                        "id": 123456,
                        "name": "Brastemp",
                        "reducedName": "brastemp",
                        "partnerId": "marca-001-brastemp"
                      },
                      "nbm": {
                        "id": "string",
                        "description": "string"
                      },
                      "origin": {
                        "id": 0,
                        "description": "string"
                      },
                      "model": "string",
                      "videoUrl": "string",
                      "gender": "MALE",
                      "warrantyTime": 0,
                      "warrantyText": "string",
                      "height": 0,
                      "width": 0,
                      "weight": 0,
                      "length": 0,
                      "priceFactor": 0,
                      "calculatedPrice": true,
                      "definitionPriceScope": "string",
                      "hasVariations": true,
                      "isProductActive": true,
                      "characteristics": [
                        {
                          "index": 0,
                          "name": "string",
                          "value": "string"
                        }
                      ],
                      "images": [
                        {
                          "id": 0,
                          "index": 0,
                          "main": true,
                          "url": "http://example.com",
                          "thumbnailUrl": "http://example.com",
                          "lowResolutionUrl": "http://example.com",
                          "standardUrl": "http://example.com",
                          "originalImage": "http://example.com",
                          "variation": "string",
                          "status": "UNPROCESSED",
                          "statusMessage": "string",
                          "standardWidth": 0,
                          "standardHeight": 0,
                          "originalWidth": 0,
                          "originalHeight": 0
                        }
                      ],
                      "skus": [
                        {
                          "id": 0,
                          "title": "string",
                          "partnerId": "string",
                          "ean": "string",
                          "amount": 0,
                          "additionalTime": 0,
                          "price": 0,
                          "sellPrice": 0,
                          "stockLocalId": 0,
                          "variations": [
                            {
                              "id": 0,
                              "description": "string",
                              "type": {
                                "id": 0,
                                "name": "string",
                                "visualVariation": true
                              }
                            }
                          ],
                          "additionalStocks": [
                            {
                              "price": 0,
                              "amount": 0,
                              "additionalTime": 0,
                              "stockLocalId": 0
                            }
                          ],
                          "externalId": "string"
                        }
                      ],
                      "allowAutomaticSkuMarketplaceCreation": true
                    }
                  }
                }
              }
            }
          },
          "404": {
            "$ref": "#/components/responses/404"
          }
        },
        "operationId": "get-products-id",
        "description": "# Consultar los detalles de un Producto\n Consultar los detalles de un producto"
      },
      "patch": {
        "summary": "/products/{id}",
        "operationId": "patch-products-id",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Product"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "title": "string",
                      "description": "string",
                      "externalIdProduct": "string",
                      "category": {
                        "id": 0,
                        "name": "string",
                        "path": "string"
                      },
                      "brand": {
                        "id": 123456,
                        "name": "Brastemp",
                        "reducedName": "brastemp",
                        "partnerId": "marca-001-brastemp"
                      },
                      "nbm": {
                        "id": "string",
                        "description": "string"
                      },
                      "origin": {
                        "id": 0,
                        "description": "string"
                      },
                      "model": "string",
                      "videoUrl": "string",
                      "gender": "MALE",
                      "warrantyTime": 0,
                      "warrantyText": "string",
                      "height": 0,
                      "width": 0,
                      "weight": 0,
                      "length": 0,
                      "priceFactor": 0,
                      "calculatedPrice": true,
                      "definitionPriceScope": "string",
                      "hasVariations": true,
                      "isProductActive": true,
                      "characteristics": [
                        {
                          "index": 0,
                          "name": "string",
                          "value": "string"
                        }
                      ],
                      "images": [
                        {
                          "id": 0,
                          "index": 0,
                          "main": true,
                          "url": "http://example.com",
                          "thumbnailUrl": "http://example.com",
                          "lowResolutionUrl": "http://example.com",
                          "standardUrl": "http://example.com",
                          "originalImage": "http://example.com",
                          "variation": "string",
                          "status": "UNPROCESSED",
                          "statusMessage": "string",
                          "standardWidth": 0,
                          "standardHeight": 0,
                          "originalWidth": 0,
                          "originalHeight": 0
                        }
                      ],
                      "skus": [
                        {
                          "id": 0,
                          "title": "string",
                          "partnerId": "string",
                          "ean": "string",
                          "amount": 0,
                          "additionalTime": 0,
                          "price": 0,
                          "sellPrice": 0,
                          "stockLocalId": 0,
                          "variations": [
                            {
                              "id": 0,
                              "description": "string",
                              "type": {
                                "id": 0,
                                "name": "string",
                                "visualVariation": true
                              }
                            }
                          ],
                          "additionalStocks": [
                            {
                              "price": 0,
                              "amount": 0,
                              "additionalTime": 0,
                              "stockLocalId": 0
                            }
                          ],
                          "externalId": "string"
                        }
                      ],
                      "allowAutomaticSkuMarketplaceCreation": true
                    }
                  }
                }
              }
            }
          },
          "404": {
            "$ref": "#/components/responses/404"
          },
          "422": {
            "$ref": "#/components/responses/422"
          }
        },
        "description": "# Actualizar datos parciales de un producto\n Después del registro del producto, las imágenes y los SKU solo se pueden actualizar a través de sus API específicas.",
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductMergePatch"
              },
              "examples": {
                "example-1": {
                  "value": {
                    "title": "replace",
                    "description": "Título do produto",
                    "maxLength": 150
                  }
                }
              }
            }
          },
          "description": "Dados do produto"
        },
        "tags": [
          "Produto"
        ]
      },
      "put": {
        "summary": "/products/{id}",
        "operationId": "put-products-id",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Product"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "title": "string",
                      "description": "string",
                      "externalIdProduct": "string",
                      "category": {
                        "id": 0,
                        "name": "string",
                        "path": "string"
                      },
                      "brand": {
                        "id": 123456,
                        "name": "Brastemp",
                        "reducedName": "brastemp",
                        "partnerId": "marca-001-brastemp"
                      },
                      "nbm": {
                        "id": "string",
                        "description": "string"
                      },
                      "origin": {
                        "id": 0,
                        "description": "string"
                      },
                      "model": "string",
                      "videoUrl": "string",
                      "gender": "MALE",
                      "warrantyTime": 0,
                      "warrantyText": "string",
                      "height": 0,
                      "width": 0,
                      "weight": 0,
                      "length": 0,
                      "priceFactor": 0,
                      "calculatedPrice": true,
                      "definitionPriceScope": "string",
                      "hasVariations": true,
                      "isProductActive": true,
                      "characteristics": [
                        {
                          "index": 0,
                          "name": "string",
                          "value": "string"
                        }
                      ],
                      "images": [
                        {
                          "id": 0,
                          "index": 0,
                          "main": true,
                          "url": "http://example.com",
                          "thumbnailUrl": "http://example.com",
                          "lowResolutionUrl": "http://example.com",
                          "standardUrl": "http://example.com",
                          "originalImage": "http://example.com",
                          "variation": "string",
                          "status": "UNPROCESSED",
                          "statusMessage": "string",
                          "standardWidth": 0,
                          "standardHeight": 0,
                          "originalWidth": 0,
                          "originalHeight": 0
                        }
                      ],
                      "skus": [
                        {
                          "id": 0,
                          "title": "string",
                          "partnerId": "string",
                          "ean": "string",
                          "amount": 0,
                          "additionalTime": 0,
                          "price": 0,
                          "sellPrice": 0,
                          "stockLocalId": 0,
                          "variations": [
                            {
                              "id": 0,
                              "description": "string",
                              "type": {
                                "id": 0,
                                "name": "string",
                                "visualVariation": true
                              }
                            }
                          ],
                          "additionalStocks": [
                            {
                              "price": 0,
                              "amount": 0,
                              "additionalTime": 0,
                              "stockLocalId": 0
                            }
                          ],
                          "externalId": "string"
                        }
                      ],
                      "allowAutomaticSkuMarketplaceCreation": true
                    }
                  }
                }
              }
            }
          },
          "404": {
            "$ref": "#/components/responses/404"
          },
          "422": {
            "$ref": "#/components/responses/422"
          }
        },
        "description": "# Actualizar datos del producto\n Después del registro del producto, las imágenes y los SKU solo se pueden actualizar a través de sus API específicas.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductUpdate"
              },
              "examples": {
                "example-1": {
                  "value": {
                    "title": "string",
                    "description": "string",
                    "category": {
                      "id": 0,
                      "name": "string",
                      "path": "string"
                    },
                    "brand": {
                      "id": 0,
                      "name": "string",
                      "partnerId": "string"
                    },
                    "nbm": {
                      "id": "string"
                    },
                    "origin": {
                      "id": 0
                    },
                    "model": "string",
                    "videoUrl": "string",
                    "gender": "string",
                    "warrantyTime": 0,
                    "warrantyText": "string",
                    "height": 0,
                    "width": 0,
                    "weight": 0,
                    "length": 0,
                    "priceFactor": 0,
                    "calculatedPrice": true,
                    "definitionPriceScope": "string",
                    "characteristics": [
                      {
                        "index": 0,
                        "name": "string",
                        "value": "string"
                      }
                    ],
                    "allowAutomaticSkuMarketplaceCreation": true
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Produto"
        ]
      }
    },
    "/products/patch/{productId}": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "productId",
          "in": "path",
          "required": true,
          "description": "ID de producto generado por ANYMARKET"
        }
      ],
      "patch": {
        "summary": "/products/patch/{productId}",
        "tags": [
          "Produto"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Product"
                }
              }
            }
          },
          "404": {
            "$ref": "#/components/responses/404"
          },
          "422": {
            "$ref": "#/components/responses/422"
          }
        },
        "operationId": "patch-products-patch-productId",
        "description": "# Actualizar datos parciales de un producto mediante RFC 6902\n Después del registro del producto, las imágenes y los SKU solo se pueden actualizar a través de sus API específicas.",
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductPatch"
              },
              "examples": {
                "example-1": {
                  "value": [
                    {
                      "op": "replace",
                      "path": "/title",
                      "value": "novo título"
                    },
                    {
                      "op": "replace",
                      "path": "/warrantyTime",
                      "value": 2
                    },
                    {
                      "op": "replace",
                      "path": "/brand/id",
                      "value": 1323057
                    }
                  ]
                }
              }
            }
          },
          "description": ""
        }
      }
    },
    "/promotions/{id}": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID de regla de precio (promoción) generada por ANYMARKET"
        }
      ],
      "get": {
        "summary": "/promotions/{id}",
        "tags": [
          "Promoção"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Promotion"
                }
              }
            }
          },
          "404": {
            "$ref": "#/components/responses/404"
          }
        },
        "operationId": "get-promotions-id",
        "description": "# Ver los detalles de una regla de precio\n Ver los detalles de una regla de precio"
      }
    },
    "/products/{productId}/skus": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "productId",
          "in": "path",
          "required": true,
          "description": "ID de producto generado por ANYMARKET"
        }
      ],
      "get": {
        "summary": "/products/{productId}/skus",
        "tags": [
          "SKU"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Sku"
                  }
                },
                "examples": {
                  "example-1": {
                    "value": [
                      {
                        "id": 0,
                        "title": "string",
                        "partnerId": "string",
                        "ean": "string",
                        "amount": 0,
                        "additionalTime": 0,
                        "price": 0,
                        "sellPrice": 0,
                        "stockLocalId": 0,
                        "variations": [
                          {
                            "id": 0,
                            "description": "string",
                            "type": {
                              "id": 0,
                              "name": "string",
                              "visualVariation": true
                            }
                          }
                        ],
                        "additionalStocks": [
                          {
                            "price": 0,
                            "amount": 0,
                            "additionalTime": 0,
                            "stockLocalId": 0
                          }
                        ],
                        "externalId": "string"
                      }
                    ]
                  }
                }
              }
            }
          }
        },
        "operationId": "get-products-productId-skus",
        "description": "# Consultar todos los SKU de un producto\nConsultar todos los SKU de un producto. Un producto en ANYMARKET tiene al menos 1 (un) sku y en caso de variaciones puede tener más skus. Ej: el producto puede ser un bolígrafo y tener más de 1 (un) sku (colores azul, rojo y negro). Aunque el producto no tenga variaciones (ej: un reloj) tendrá un sku.",
        "parameters": []
      },
      "post": {
        "summary": "/products/{productId}/skus",
        "operationId": "post-products-productId-skus",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Sku"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "title": "string",
                      "partnerId": "string",
                      "ean": "string",
                      "amount": 0,
                      "additionalTime": 0,
                      "price": 0,
                      "sellPrice": 0,
                      "stockLocalId": 0,
                      "variations": [
                        {
                          "id": 0,
                          "description": "string",
                          "type": {
                            "id": 0,
                            "name": "string",
                            "visualVariation": true
                          }
                        }
                      ],
                      "additionalStocks": [
                        {
                          "price": 0,
                          "amount": 0,
                          "additionalTime": 0,
                          "stockLocalId": 0
                        }
                      ],
                      "externalId": "string"
                    }
                  }
                }
              }
            }
          },
          "422": {
            "$ref": "#/components/responses/422"
          }
        },
        "description": "# Crear un SKU con los datos ingresados\n Crear un SKU con los datos ingresados",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SkuPost"
              },
              "examples": {
                "example-1": {
                  "value": {
                    "title": "string",
                    "partnerId": "string",
                    "ean": "string",
                    "amount": 0,
                    "price": 0,
                    "additionalTime": 0,
                    "stockLocalId": 0,
                    "variations": {
                      "variationName": "VariationValue"
                    },
                    "additionalStocks": [
                      {
                        "price": 0,
                        "amount": 0,
                        "additionalTime": 0,
                        "stockLocalId": 0
                      }
                    ],
                    "externalId": "string"
                  }
                }
              }
            }
          }
        },
        "tags": [
          "SKU"
        ]
      }
    },
    "/products/{productId}/skus/{skuId}": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "productId",
          "in": "path",
          "required": true,
          "description": "ID de producto generado por ANYMARKET"
        },
        {
          "schema": {
            "type": "integer"
          },
          "name": "skuId",
          "in": "path",
          "required": true,
          "description": "ID do SKU"
        }
      ],
      "get": {
        "summary": "/products/{productId}/skus/{skuId}",
        "tags": [
          "SKU"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Sku"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "title": "string",
                      "partnerId": "string",
                      "ean": "string",
                      "amount": 0,
                      "additionalTime": 0,
                      "price": 0,
                      "sellPrice": 0,
                      "stockLocalId": 0,
                      "variations": [
                        {
                          "id": 0,
                          "description": "string",
                          "type": {
                            "id": 0,
                            "name": "string",
                            "visualVariation": true
                          }
                        }
                      ],
                      "additionalStocks": [
                        {
                          "price": 0,
                          "amount": 0,
                          "additionalTime": 0,
                          "stockLocalId": 0
                        }
                      ],
                      "externalId": "string"
                    }
                  }
                }
              }
            }
          },
          "404": {
            "$ref": "#/components/responses/404"
          }
        },
        "operationId": "get-products-productId-skus-skuId",
        "description": "# Consultar los detalles de un SKU\n Consultar los detalles de un SKU"
      },
      "put": {
        "summary": "/products/{productId}/skus/{skuId}",
        "operationId": "put-products-productId-skus-skuId",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Sku"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "title": "string",
                      "partnerId": "string",
                      "ean": "string",
                      "amount": 0,
                      "additionalTime": 0,
                      "price": 0,
                      "sellPrice": 0,
                      "stockLocalId": 0,
                      "variations": [
                        {
                          "id": 0,
                          "description": "string",
                          "type": {
                            "id": 0,
                            "name": "string",
                            "visualVariation": true
                          }
                        }
                      ],
                      "additionalStocks": [
                        {
                          "price": 0,
                          "amount": 0,
                          "additionalTime": 0,
                          "stockLocalId": 0
                        }
                      ],
                      "externalId": "string"
                    }
                  }
                }
              }
            }
          },
          "404": {
            "$ref": "#/components/responses/404"
          },
          "422": {
            "$ref": "#/components/responses/422"
          }
        },
        "tags": [
          "SKU"
        ],
        "description": "# Actualiza los datos de un SKU\nActualiza los datos de un SKU",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SkuPut"
              },
              "examples": {
                "example-1": {
                  "value": {
                    "title": "string",
                    "partnerId": "string",
                    "ean": "string",
                    "price": 0,
                    "sellPrice": 0,
                    "externalId": "string"
                  }
                }
              }
            }
          }
        }
      },
      "patch": {
        "summary": "/products/{productId}/skus/{skuId}",
        "operationId": "patch-products-productId-skus-skuId",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Sku"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "title": "string",
                      "partnerId": "string",
                      "ean": "string",
                      "amount": 0,
                      "additionalTime": 0,
                      "price": 0,
                      "sellPrice": 0,
                      "stockLocalId": 0,
                      "variations": [
                        {
                          "id": 0,
                          "description": "string",
                          "type": {
                            "id": 0,
                            "name": "string",
                            "visualVariation": true
                          }
                        }
                      ],
                      "additionalStocks": [
                        {
                          "price": 0,
                          "amount": 0,
                          "additionalTime": 0,
                          "stockLocalId": 0
                        }
                      ],
                      "externalId": "string"
                    }
                  }
                }
              }
            }
          },
          "404": {
            "$ref": "#/components/responses/404"
          },
          "422": {
            "$ref": "#/components/responses/422"
          }
        },
        "description": "# Actualizar datos parciales de un SKU\n Actualizar datos parciales de un SKU",
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/SkuMergePatch"
              },
              "examples": {
                "example-1": {
                  "value": {
                    "title": "NewTitle",
                    "ean": "1234567890"
                  }
                }
              }
            }
          }
        },
        "tags": [
          "SKU"
        ]
      }
    },
    "/products/{productId}/skus/patch/{skuId}": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "productId",
          "in": "path",
          "required": true,
          "description": "ID de producto generado por ANYMARKET"
        },
        {
          "schema": {
            "type": "integer"
          },
          "name": "skuId",
          "in": "path",
          "required": true,
          "description": "ID do SKU"
        }
      ],
      "patch": {
        "summary": "/products/{productId}/skus/patch/{skuId}",
        "operationId": "patch-products-productId-skus-patch-skuId",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Sku"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "title": "string",
                      "partnerId": "string",
                      "ean": "string",
                      "amount": 0,
                      "additionalTime": 0,
                      "price": 0,
                      "sellPrice": 0,
                      "stockLocalId": 0,
                      "variations": [
                        {
                          "id": 0,
                          "description": "string",
                          "type": {
                            "id": 0,
                            "name": "string",
                            "visualVariation": true
                          }
                        }
                      ],
                      "additionalStocks": [
                        {
                          "price": 0,
                          "amount": 0,
                          "additionalTime": 0,
                          "stockLocalId": 0
                        }
                      ],
                      "externalId": "string"
                    }
                  }
                }
              }
            }
          },
          "404": {
            "$ref": "#/components/responses/404"
          },
          "422": {
            "$ref": "#/components/responses/422"
          }
        },
        "description": "# Actualizar datos parciales de un producto mediante RFC 6902\n Actualizar datos parciales de un producto mediante RFC 6902",
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "op": {
                      "type": "string",
                      "enum": [
                        "replace",
                        "add",
                        "test",
                        "remove",
                        "move",
                        "copy"
                      ],
                      "description": "Operação a ser executada.",
                      "example": "replace"
                    },
                    "path": {
                      "type": "string",
                      "description": "Propriedade a ser modificada.",
                      "example": "\"/ean\""
                    },
                    "value": {
                      "type": "string",
                      "description": "Valor da propriedade.",
                      "example": "\"0001124445\""
                    }
                  },
                  "required": [
                    "op",
                    "path",
                    "value"
                  ]
                }
              },
              "examples": {
                "example-1": {
                  "value": [
                    {
                      "op": "replace",
                      "path": "/title",
                      "value": "novo título"
                    },
                    {
                      "op": "replace",
                      "path": "/ean",
                      "value": "123456789"
                    }
                  ]
                },
                "stoplight-example-1": {
                  "value": [
                    {
                      "op": "replace",
                      "patch": "/title",
                      "value": "novo título"
                    },
                    {
                      "op": "replace",
                      "patch": "/ean",
                      "value": "123456789"
                    }
                  ]
                }
              }
            }
          },
          "description": ""
        },
        "tags": [
          "SKU"
        ]
      }
    },
    "/skus/exports": {
      "get": {
        "summary": "/skus/exports",
        "tags": [
          "SKU"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/SkuFileExport"
                  }
                }
              }
            }
          }
        },
        "operationId": "get-skus-exports",
        "description": "# Lista de búsqueda de exportaciones solicitadas\n Obtenga todas las exportaciones solicitadas en función del usuario del token.",
        "parameters": [
          {
            "$ref": "#/components/parameters/marketplaceQuery"
          }
        ]
      },
      "post": {
        "summary": "/skus/exports",
        "operationId": "post-skus-exports",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SkuFileExport"
                }
              }
            }
          }
        },
        "tags": [
          "SKU"
        ],
        "parameters": [
          {
            "$ref": "#/components/parameters/marketplaceQuery"
          }
        ],
        "description": "# Generar un archivo con la lista de productos (SKU, precio, stock, término de cross-docking)\n Generar un archivo con la lista de productos (sku, precio, stock, plazo de crossdocking)"
      }
    },
    "/skus/exports/{idDocument}": {
      "parameters": [
        {
          "schema": {
            "type": "string",
            "format": "uuid"
          },
          "name": "idDocument",
          "in": "path",
          "required": true,
          "description": "ID del documento exportado"
        }
      ],
      "get": {
        "summary": "/skus/exports/{idDocument}",
        "tags": [
          "SKU"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SkuFileExport"
                }
              }
            }
          },
          "404": {
            "$ref": "#/components/responses/404"
          }
        },
        "operationId": "get-skus-exports-idDocument",
        "description": "# Exportación de búsqueda por idDocument\n Obtener todas las exportaciones solicitadas según el usuario del token y el idDocument"
      }
    },
    "/skus/marketplaces": {
      "get": {
        "summary": "/skus/marketplaces",
        "tags": [
          "SKU Marketplace"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/SkuMarketplace"
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "examples": {
                  "partnerID obrigatório": {
                    "value": {
                      "code": "400",
                      "message": "O parâmetro 'partnerID' é obrigatório, consulte a documentação para maiores informações."
                    }
                  },
                  "Example 1": {
                    "value": {
                      "code": "400",
                      "message": "O parâmetro 'partnerID' é obrigatório, consulte a documentação para maiores informações."
                    }
                  }
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "operationId": "get-skus-marketplaces",
        "description": "# Ver todos los anuncios de un SKU\n Ver todos los anuncios de un SKU. Un SKU puede tener múltiples anuncios creados en Marketplaces",
        "parameters": [
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "description": "Código SKU del socio",
            "name": "partnerID",
            "required": true
          }
        ]
      }
    },
    "/skus/{marketplace}/{skuInMarketplace}/stock/reservation": {
      "parameters": [
        {
          "schema": {
            "type": "string"
          },
          "name": "marketplace",
          "in": "path",
          "required": true,
          "description": "Identificador do marketplace"
        },
        {
          "schema": {
            "type": "string"
          },
          "name": "skuInMarketplace",
          "in": "path",
          "required": true,
          "description": "Identificador do sku no marketplace"
        }
      ],
      "get": {
        "summary": "/skus/{marketplace}/{skuInMarketplace}/stock/reservation",
        "tags": [
          "SKU Marketplace"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "": {
                      "$ref": "#/components/schemas/StockReservationGet"
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "get-skus-marketplace-skuinmarketplace-stock-reservation",
        "description": "# Consulta reserva de estoque do marketplace de um SKU\nConsulta a reserva de estoque de um SKU através do seu identificador no marketplace.",
        "parameters": [
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "idAccount",
            "description": "Identificador da conta"
          }
        ],
        "x-internal": true,
        "x-stoplight": {
          "id": "zwpy7z0ob4ssm"
        }
      }
    },
    "/skus/{marketplace}/simple/all": {
      "parameters": [
        {
          "schema": {
            "type": "string"
          },
          "name": "marketplace",
          "in": "path",
          "required": true
        }
      ],
      "get": {
        "summary": "/skus/{marketplace}/simple/all",
        "tags": [
          "SKU Marketplace"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "",
                  "type": "object",
                  "properties": {
                    "links": {
                      "type": "array",
                      "uniqueItems": true,
                      "minItems": 1,
                      "items": {
                        "required": [
                          "rel",
                          "href"
                        ],
                        "properties": {
                          "rel": {
                            "type": "string",
                            "minLength": 1
                          },
                          "href": {
                            "type": "string",
                            "minLength": 1
                          }
                        }
                      }
                    },
                    "content": {
                      "type": "array",
                      "uniqueItems": true,
                      "minItems": 1,
                      "items": {
                        "required": [
                          "id",
                          "idInMarketplace",
                          "marketPlace",
                          "title",
                          "publicationStatus",
                          "transmissionStatus",
                          "errorMsg",
                          "price",
                          "priceFactor",
                          "discountPrice",
                          "skuInMarketplace",
                          "marketplaceItemCode",
                          "lastUpdateStatusDate",
                          "transmissionMessage"
                        ],
                        "properties": {
                          "id": {
                            "type": "number"
                          },
                          "idInMarketplace": {
                            "type": "string",
                            "minLength": 1
                          },
                          "marketPlace": {
                            "type": "string",
                            "minLength": 1
                          },
                          "title": {
                            "type": "string",
                            "minLength": 1
                          },
                          "publicationStatus": {
                            "type": "string",
                            "minLength": 1
                          },
                          "transmissionStatus": {
                            "type": "string",
                            "minLength": 1
                          },
                          "errorMsg": {
                            "type": "string",
                            "minLength": 1
                          },
                          "price": {
                            "type": "number"
                          },
                          "priceFactor": {
                            "type": "number"
                          },
                          "discountPrice": {
                            "type": "number"
                          },
                          "skuInMarketplace": {
                            "type": "string",
                            "minLength": 1
                          },
                          "marketplaceItemCode": {
                            "type": "string",
                            "minLength": 1
                          },
                          "lastUpdateStatusDate": {
                            "type": "string",
                            "minLength": 1
                          },
                          "transmissionMessage": {
                            "type": "string",
                            "minLength": 1
                          }
                        }
                      }
                    },
                    "page": {
                      "type": "object",
                      "properties": {
                        "size": {
                          "type": "number"
                        },
                        "totalElements": {
                          "type": "number"
                        },
                        "totalPages": {
                          "type": "number"
                        },
                        "number": {
                          "type": "number"
                        }
                      },
                      "required": [
                        "size",
                        "totalElements",
                        "totalPages",
                        "number"
                      ]
                    }
                  },
                  "required": [
                    "links",
                    "content",
                    "page"
                  ],
                  "x-examples": {
                    "example-1": {
                      "links": [
                        {
                          "rel": "next",
                          "href": "string"
                        }
                      ],
                      "content": [
                        {
                          "id": 0,
                          "idInMarketplace": "string",
                          "marketPlace": "B2W",
                          "title": "string",
                          "publicationStatus": "ACTIVE",
                          "transmissionStatus": "string",
                          "errorMsg": "string",
                          "price": 0,
                          "priceFactor": 0,
                          "discountPrice": 0,
                          "skuInMarketplace": "string",
                          "marketplaceItemCode": "string",
                          "lastUpdateStatusDate": "2022-03-03T14:06:02Z",
                          "transmissionMessage": "string"
                        }
                      ],
                      "page": {
                        "size": 0,
                        "totalElements": 0,
                        "totalPages": 0,
                        "number": 0
                      }
                    }
                  }
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "links": [
                        {
                          "rel": "next",
                          "href": "string"
                        }
                      ],
                      "content": [
                        {
                          "id": 0,
                          "idInMarketplace": "string",
                          "marketPlace": "B2W",
                          "title": "string",
                          "publicationStatus": "ACTIVE",
                          "transmissionStatus": "string",
                          "errorMsg": "string",
                          "price": 0,
                          "priceFactor": 0,
                          "discountPrice": 0,
                          "skuInMarketplace": "string",
                          "marketplaceItemCode": "string",
                          "lastUpdateStatusDate": "2022-03-03T14:06:02Z",
                          "transmissionMessage": "string"
                        }
                      ],
                      "page": {
                        "size": 0,
                        "totalElements": 0,
                        "totalPages": 0,
                        "number": 0
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "get-skus-marketplace-simple-all",
        "description": "# Consulta todos os anúncios de um SKU\nConsulta todos os anúncios de um SKU filtrando o Marketplace. Um SKU pode possuir varios anúncios criados nos Marketplaces\n\nLembrando que se o total de item ultrapassar 50 mil itens o totalizador apresentara um valor aproximado",
        "parameters": [
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "description": "Publication status que será filtado",
            "name": "status"
          }
        ],
        "x-internal": true,
        "x-stoplight": {
          "id": "8cchpah6e5lwr"
        }
      }
    },
    "/skus/{skuId}/marketplaces": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "skuId",
          "in": "path",
          "required": true,
          "description": "ID do SKU"
        }
      ],
      "get": {
        "summary": "/skus/{skuId}/marketplaces",
        "tags": [
          "SKU Marketplace"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/SkuMarketplace"
                  }
                }
              }
            }
          },
          "404": {
            "$ref": "#/components/responses/404"
          }
        },
        "operationId": "get-skus-skuId-marketplaces",
        "description": "# Ver todos los anuncios de un SKU\n Ver todos los anuncios de un SKU. Un SKU puede tener múltiples anuncios creados en Marketplaces"
      },
      "post": {
        "summary": "/skus/{skuId}/marketplaces",
        "operationId": "post-skus-skuId-marketplaces",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SkuMarketplaceDetail"
                }
              }
            }
          },
          "422": {
            "$ref": "#/components/responses/422"
          }
        },
        "description": "# Crear un anuncio con los datos dados\n Crear un anuncio con los datos dados",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostSkuMarketplace"
              }
            }
          }
        },
        "tags": [
          "SKU Marketplace"
        ]
      }
    },
    "/skus/{skuId}/stocks/reservation": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "skuId",
          "in": "path",
          "required": true,
          "description": "ID do SKU"
        }
      ],
      "get": {
        "summary": "/skus/{skuId}/stocks/reservation",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "orderId": {
                        "type": "integer"
                      },
                      "marketplaceId": {
                        "type": "string"
                      },
                      "amount": {
                        "type": "integer"
                      },
                      "marketplace": {
                        "type": "string"
                      },
                      "typeStockReservation": {
                        "type": "string"
                      }
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": [
                      {
                        "orderId": 0,
                        "marketplaceId": "string",
                        "amount": 0,
                        "marketplace": "string",
                        "typeStockReservation": "string"
                      }
                    ]
                  },
                  "stoplight-Example 1": {
                    "value": [
                      {
                        "orderId": 21001610,
                        "marketplaceId": "702-2057085-4861050",
                        "amount": 1,
                        "marketplace": "AMAZON",
                        "typeStockReservation": "SALE_RESERVATION"
                      }
                    ]
                  }
                }
              }
            }
          },
          "404": {
            "$ref": "#/components/responses/404"
          }
        },
        "operationId": "get-skus-skuId-stocks-reservation",
        "description": "# Consulta todos os pedidos em reserva de um SKU\nConsulta todos os pedidos em reserva de um SKU, utilizando o skuId como parâmetro",
        "parameters": [],
        "tags": [
          "Estoque"
        ]
      }
    },
    "/skus/{skuId}/marketplaces/{id}": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "skuId",
          "in": "path",
          "required": true,
          "description": "ID do SKU"
        },
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID do anuncio"
        }
      ],
      "get": {
        "summary": "/skus/{skuId}/marketplaces/{id}",
        "tags": [
          "SKU Marketplace"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SkuMarketplaceById"
                }
              }
            }
          },
          "404": {
            "$ref": "#/components/responses/404"
          }
        },
        "operationId": "get-skus-skuId-marketplaces-id",
        "description": "# Consultar los detalles de un anuncio\n Consultar los detalles de un anuncio"
      },
      "put": {
        "summary": "/skus/{skuId}/marketplaces/{id}",
        "operationId": "put-skus-skuId-marketplaces-id",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SkuMarketplace"
                }
              }
            }
          },
          "404": {
            "$ref": "#/components/responses/404"
          },
          "422": {
            "$ref": "#/components/responses/422"
          }
        },
        "tags": [
          "SKU Marketplace"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PutSkuMarketplace"
              }
            }
          }
        },
        "description": "# Actualizar los datos de un anuncio\n Actualizar los datos de un anuncio"
      },
      "patch": {
        "summary": "/skus/{skuId}/marketplaces/{id}",
        "operationId": "patch-merge-skus-skuId-marketplaces-id",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SkuMarketplace"
                }
              }
            }
          },
          "404": {
            "$ref": "#/components/responses/404"
          },
          "422": {
            "$ref": "#/components/responses/422"
          }
        },
        "description": "Actualizar datos de anuncios usando el método de pacth",
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/SkuMarketplaceMergePatch"
              }
            }
          },
          "description": ""
        },
        "tags": [
          "SKU Marketplace"
        ]
      }
    },
    "/skus/{skuId}/marketplaces/patch/{id}": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "skuId",
          "in": "path",
          "required": true,
          "description": "ID do SKU"
        },
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID do anuncio"
        }
      ],
      "patch": {
        "summary": "/skus/{skuId}/marketplaces/patch/{id}",
        "operationId": "patch-skus-skuId-marketplaces-id",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SkuMarketplace"
                }
              }
            }
          },
          "404": {
            "$ref": "#/components/responses/404"
          },
          "422": {
            "$ref": "#/components/responses/422"
          }
        },
        "tags": [
          "SKU Marketplace"
        ],
        "description": "Actualizar datos de anuncios usando el método de pacth",
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/SkuMarketplacePatch"
              },
              "examples": {
                "example-1": {
                  "value": [
                    {
                      "op": "add",
                      "path": "/permalink",
                      "value": "Link da publicação no marketplace"
                    },
                    {
                      "op": "replace",
                      "path": "/skuInMarketplace",
                      "value": "skuNovo"
                    },
                    {
                      "op": "replace",
                      "path": "/fields/title",
                      "value": "novo titulo"
                    }
                  ]
                }
              }
            }
          },
          "description": ""
        }
      }
    },
    "/skus/{skuId}/marketplaces/{id}/send": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "skuId",
          "in": "path",
          "required": true,
          "description": "ID do SKU"
        },
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID do anuncio"
        }
      ],
      "post": {
        "summary": "/skus/{skuId}/marketplaces/{id}/send",
        "tags": [
          "SKU Marketplace"
        ],
        "responses": {
          "204": {
            "description": "No Content"
          },
          "404": {
            "description": "Not Found"
          }
        },
        "operationId": "get-skus-skuId-marketplaces-id-send",
        "description": "# Activa el envío del anuncio a MARKETPLACE\n Para anuncios no publicados, inicia el proceso de publicación. Para anuncios ya activos, envía la actualización del anuncio."
      }
    },
    "/skus/marketplaces/prices": {
      "put": {
        "summary": "/skus/marketplaces/prices",
        "tags": [
          "SKU Marketplace"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PutSkuMarketplaceUpdatePricesResourceResponse"
                },
                "examples": {
                  "example-1": {
                    "value": [
                      {
                        "id": 0,
                        "errorMsg": "string"
                      }
                    ]
                  }
                }
              }
            }
          },
          "422": {
            "$ref": "#/components/responses/422"
          }
        },
        "operationId": "get-skus-marketplaces-prices",
        "description": "# Actualizar precio desde y precio con descuento desde una lista de anuncios\n Actualiza la información Precio por (price) y Price by (discountPrice) de una lista de anuncios, calculando automáticamente el monto del descuento y el margen adicional para cada anuncio.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PutSkuMarketplaceUpdatePricesResource"
              },
              "examples": {
                "example-1": {
                  "value": [
                    {
                      "id": 0,
                      "price": 0,
                      "discountPrice": 0
                    }
                  ]
                }
              }
            }
          }
        }
      }
    },
    "/skus/{skuId}/updatePrice/{marketPlace}": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "skuId",
          "in": "path",
          "required": true,
          "description": "ID do SKU"
        },
        {
          "$ref": "#/components/parameters/marketPlace"
        }
      ],
      "post": {
        "summary": "/skus/{skuId}/updatePrice/{marketPlace}",
        "tags": [
          "SKU Marketplace"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SkuMarketplaceUpdatePricesErrorResource"
                }
              }
            }
          },
          "422": {
            "$ref": "#/components/responses/422"
          }
        },
        "operationId": "get-skus-skuId-updatePrice-marketPlace",
        "description": "# Actualizar precio desde y precio con descuento desde una lista de anuncios\n Actualiza la información Precio por (precio) y Precio por (precio de descuento) de una lista de listados del mercado, los listados con precios automáticos no se pueden cambiar aquí.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SkuMarketplacePricePost"
              }
            }
          },
          "description": ""
        }
      }
    },
    "/template": {
      "post": {
        "summary": "/template",
        "operationId": "post-template",
        "responses": {
          "201": {
            "description": "Created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Template"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "name": "string",
                      "content": "string",
                      "templateType": "HTML",
                      "plainTextContent": "string",
                      "includeDimensionAttributes": true,
                      "manualImageSize": true,
                      "manualImgAttributes": "string",
                      "isActive": true,
                      "removeDescriptionTableContent": true,
                      "marketPlace": "B2W_NEW_API"
                    }
                  }
                }
              }
            }
          },
          "422": {
            "$ref": "#/components/responses/422"
          }
        },
        "description": "# Crear una nueva Template\n Crear una nueva Template",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostTemplate"
              }
            }
          }
        },
        "tags": [
          "Template"
        ]
      }
    },
    "/template/{marketPlace}/all": {
      "parameters": [
        {
          "$ref": "#/components/parameters/marketPlace"
        }
      ],
      "get": {
        "summary": "/template/{marketPlace}/all",
        "tags": [
          "Template"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Page_Template"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "links": [
                        {
                          "rel": "next",
                          "href": "https://.../v2/component?limit=5&offset=5"
                        }
                      ],
                      "content": [
                        {
                          "id": 0,
                          "name": "string",
                          "content": "string",
                          "templateType": "HTML",
                          "plainTextContent": "string",
                          "includeDimensionAttributes": true,
                          "manualImageSize": true,
                          "manualImgAttributes": "string",
                          "isActive": true,
                          "removeDescriptionTableContent": true,
                          "marketPlace": "B2W_NEW_API"
                        }
                      ],
                      "page": {
                        "size": 0,
                        "totalElements": 0,
                        "totalPages": 0,
                        "number": 0
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "get-template-marketPlace-all",
        "description": "# Consultar todas las templates de un MarketPlace dado\n Consultar todas las templates de un MarketPlace dado",
        "parameters": [
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          }
        ]
      }
    },
    "/template/{id}": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID do template generado pelo ANYMARKET"
        }
      ],
      "get": {
        "summary": "/template/{id}",
        "tags": [
          "Template"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Template"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "name": "string",
                      "content": "string",
                      "templateType": "HTML",
                      "plainTextContent": "string",
                      "includeDimensionAttributes": true,
                      "manualImageSize": true,
                      "manualImgAttributes": "string",
                      "isActive": true,
                      "removeDescriptionTableContent": true,
                      "marketPlace": "B2W_NEW_API"
                    }
                  }
                }
              }
            }
          },
          "404": {
            "$ref": "#/components/responses/404"
          }
        },
        "operationId": "get-template-id",
        "description": "# Consultar los detalles de un template\n Consulta los detalles de un template a través del id."
      },
      "put": {
        "summary": "/template/{id}",
        "operationId": "put-template-id",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Template"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "name": "string",
                      "content": "string",
                      "templateType": "HTML",
                      "plainTextContent": "string",
                      "includeDimensionAttributes": true,
                      "manualImageSize": true,
                      "manualImgAttributes": "string",
                      "isActive": true,
                      "removeDescriptionTableContent": true,
                      "marketPlace": "B2W_NEW_API"
                    }
                  }
                }
              }
            }
          },
          "404": {
            "$ref": "#/components/responses/404"
          },
          "422": {
            "$ref": "#/components/responses/422"
          }
        },
        "tags": [
          "Template"
        ],
        "description": "# Cambiar un template\n Cambiar un template",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PutTemplate"
              },
              "examples": {
                "example-1": {
                  "value": {
                    "name": "string",
                    "content": "string",
                    "templateType": "HTML",
                    "plainTextContent": "string",
                    "includeDimensionAttributes": true,
                    "manualImageSize": true,
                    "manualImgAttributes": "string",
                    "isActive": true,
                    "removeDescriptionTableContent": true
                  }
                }
              }
            }
          }
        }
      },
      "delete": {
        "summary": "/template/{id}",
        "operationId": "delete-template-id",
        "responses": {
          "204": {
            "description": "No Content"
          },
          "404": {
            "$ref": "#/components/responses/404"
          },
          "422": {
            "$ref": "#/components/responses/422"
          }
        },
        "tags": [
          "Template"
        ],
        "description": "# Eliminar un template\n Eliminar un template"
      }
    },
    "/template/{id}/active": {
      "parameters": [
        {
          "schema": {
            "type": "number"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID do template "
        }
      ],
      "get": {
        "summary": "/template/{id}/active",
        "tags": [
          "Template"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {}
                },
                "examples": {
                  "example-1": {
                    "value": true
                  }
                }
              }
            }
          }
        },
        "operationId": "get-template-id-active",
        "description": "# Consulta se o template está ativo ou inativo\nRetorna true se o template estiver ativo e false se estiver inativo.",
        "parameters": []
      }
    },
    "/variations": {
      "get": {
        "summary": "/variations",
        "tags": [
          "Tipos de variação"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Page_Variation"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "links": [
                        {
                          "rel": "next",
                          "href": "https://.../v2/component?limit=5&offset=5"
                        }
                      ],
                      "content": [
                        {
                          "id": 0,
                          "name": "string",
                          "partnerId": "string",
                          "values": [
                            {
                              "id": 0,
                              "description": "string",
                              "partnerId": "string"
                            }
                          ],
                          "visualVariation": true
                        }
                      ],
                      "page": {
                        "size": 0,
                        "totalElements": 0,
                        "totalPages": 0,
                        "number": 0
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "get-variations",
        "description": "# Consultar todo tipo de variación\n Consultar todo tipo de variación",
        "parameters": [
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/sort"
          },
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "partnerId",
            "description": "Id. de tipo de variación en socio"
          }
        ]
      },
      "post": {
        "summary": "/variations",
        "operationId": "post-variations",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/VariationGet"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "name": "string",
                      "partnerId": "string",
                      "values": [
                        {
                          "id": 0,
                          "description": "string",
                          "partnerId": "string"
                        }
                      ],
                      "visualVariation": true
                    }
                  }
                }
              }
            }
          },
          "422": {
            "$ref": "#/components/responses/422"
          }
        },
        "description": "# Crea un tipo de variación con los datos ingresados\n Crea un tipo de variación con los datos ingresados",
        "requestBody": {
          "content": {
            "application/json": {
              "examples": {
                "example-1": {
                  "value": {
                    "name": "string",
                    "partnerId": "string",
                    "values": [
                      {
                        "description": "string",
                        "partnerId": "string"
                      }
                    ],
                    "visualVariation": true
                  }
                },
                "stoplight-example-1": {
                  "value": {
                    "name": "string",
                    "partnerId": "string",
                    "values": [
                      {
                        "description": "string",
                        "partnerId": "string"
                      }
                    ],
                    "visualVariation": true
                  }
                }
              },
              "schema": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string",
                    "description": "Nome do Tipo de Variação"
                  },
                  "partnerId": {
                    "type": "string",
                    "description": "ID do Tipo de Variação no parceiro"
                  },
                  "values": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "description": {
                          "type": "string",
                          "description": "Nome do Valor de Variação (ex: Amarelo, Azul...)"
                        },
                        "partnerId": {
                          "type": "string",
                          "description": "ID do Valor de Variação no parceiro"
                        }
                      }
                    }
                  },
                  "visualVariation": {
                    "type": "boolean",
                    "description": "Informa se o Tipo de Variação é visual (ex: cor)"
                  }
                },
                "required": [
                  "name"
                ]
              }
            }
          },
          "description": ""
        },
        "tags": [
          "Tipos de variação"
        ]
      }
    },
    "/variations/{id}": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID de tipo de variación generado por ANYMARKET"
        }
      ],
      "get": {
        "summary": "/variations/{id}",
        "tags": [
          "Tipos de variação"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/VariationGet"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "name": "string",
                      "partnerId": "string",
                      "values": [
                        {
                          "id": 0,
                          "description": "string",
                          "partnerId": "string"
                        }
                      ],
                      "visualVariation": true
                    }
                  }
                }
              }
            }
          },
          "404": {
            "$ref": "#/components/responses/404"
          }
        },
        "operationId": "get-variations-id",
        "description": "# Consultar los detalles de un tipo de variación\n Consultar los detalles de un tipo de variación"
      },
      "put": {
        "summary": "/variations/{id}",
        "operationId": "put-variations-id",
        "tags": [
          "Tipos de variação"
        ],
        "description": "# Actualiza datos para un tipo de variación\n Actualiza datos para un tipo de variación",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/VariationGet"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "name": "string",
                      "partnerId": "string",
                      "values": [
                        {
                          "id": 0,
                          "description": "string",
                          "partnerId": "string"
                        }
                      ],
                      "visualVariation": true
                    }
                  }
                }
              }
            }
          },
          "404": {
            "$ref": "#/components/responses/404"
          },
          "422": {
            "$ref": "#/components/responses/422"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/VariationTypePut"
              },
              "examples": {
                "example-1": {
                  "value": {
                    "name": "string",
                    "partnerId": "string",
                    "visualVariation": true
                  }
                }
              }
            }
          }
        }
      },
      "delete": {
        "summary": "/variations/{id}",
        "operationId": "delete-variations-id",
        "responses": {
          "204": {
            "description": "No Content"
          },
          "400": {
            "$ref": "#/components/responses/400"
          },
          "404": {
            "$ref": "#/components/responses/404"
          }
        },
        "tags": [
          "Tipos de variação"
        ],
        "description": "# Elimina un tipo de variación\n Elimina un tipo de variación"
      }
    },
    "/transmissions": {
      "get": {
        "summary": "/transmissions",
        "tags": [
          "Transmissão"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Page_Transmission"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "links": [
                        {
                          "rel": "next",
                          "href": "https://.../v2/component?limit=5&offset=5"
                        }
                      ],
                      "content": [
                        {
                          "id": 0,
                          "accountName": "string",
                          "description": "string",
                          "category": {
                            "id": 0,
                            "name": "string",
                            "path": "string"
                          },
                          "brand": {
                            "id": 0,
                            "name": "string"
                          },
                          "product": {
                            "id": 0,
                            "title": "string"
                          },
                          "nbm": {
                            "id": "string",
                            "description": "string"
                          },
                          "origin": {
                            "id": 0,
                            "description": "string"
                          },
                          "model": "string",
                          "videoUrl": "string",
                          "warrantyTime": 0,
                          "warrantyText": "string",
                          "height": 0,
                          "width": 0,
                          "weight": 0,
                          "length": 0,
                          "status": "string",
                          "transmissionMessage": "string",
                          "publicationStatus": "ACTIVE",
                          "marketPlaceStatus": "string",
                          "priceFactor": 0,
                          "sku": {
                            "id": 0,
                            "title": "string",
                            "partnerId": "string",
                            "ean": "string",
                            "price": 0,
                            "amount": 0,
                            "variations": [
                              {
                                "id": 0,
                                "description": "string",
                                "type": {
                                  "id": 0,
                                  "name": "string",
                                  "visualVariation": true
                                }
                              }
                            ],
                            "discountPrice": 0
                          },
                          "characteristics": [
                            {
                              "index": 0,
                              "name": "string",
                              "value": "string"
                            }
                          ],
                          "images": [
                            {
                              "id": 0,
                              "index": 0,
                              "main": true,
                              "url": "http://example.com",
                              "thumbnailUrl": "http://example.com",
                              "lowResolutionUrl": "http://example.com",
                              "standardUrl": "http://example.com",
                              "originalImage": "http://example.com",
                              "variation": "string",
                              "status": "UNPROCESSED",
                              "statusMessage": "string",
                              "standardWidth": 0,
                              "standardHeight": 0,
                              "originalWidth": 0,
                              "originalHeight": 0
                            }
                          ]
                        }
                      ],
                      "page": {
                        "size": 0,
                        "totalElements": 0,
                        "totalPages": 0,
                        "number": 0
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "get-transmissions",
        "description": "# Consulta todas las retransmisiones\n Consulta todas las transmisiones para ecommerce",
        "parameters": [
          {
            "schema": {
              "type": "integer",
              "format": "int64",
              "default": 0,
              "minimum": 0,
              "maximum": 90071992
            },
            "in": "query",
            "name": "offset",
            "description": "Número de itens a ignorar no início da lista de resultados, usado para paginação."
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "asc",
                "desc"
              ]
            },
            "in": "query",
            "name": "sortDirection",
            "description": "Define a direção da ordenação dos resultados, podendo ser \"asc\" (ascendente) ou \"desc\" (descendente)."
          },
          {
            "schema": {
              "type": "integer",
              "default": 100,
              "minimum": 0,
              "maximum": 100
            },
            "in": "query",
            "name": "limit",
            "description": "Número máximo de itens a serem retornados na resposta."
          },
          {
            "schema": {
              "type": "array",
              "items": {
                "type": "string",
                "enum": [
                  "UNPUBLISHED",
                  "CLOSED",
                  "CORRUPTED",
                  "PAUSED",
                  "WITHOUT_STOCK",
                  "ACTIVE"
                ]
              }
            },
            "in": "query",
            "name": "statusFilter",
            "description": "Lista de status a serem filtrados separados por virgula."
          },
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "sort",
            "description": "Atributo para ordenação."
          }
        ]
      }
    },
    "/transmissions/{id}": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID do SKU generado por ANYMARKET"
        }
      ],
      "get": {
        "summary": "/transmissions/{id}",
        "tags": [
          "Transmissão"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Transmission"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "accountName": "string",
                      "description": "string",
                      "category": {
                        "id": 0,
                        "name": "string",
                        "path": "string"
                      },
                      "brand": {
                        "id": 0,
                        "name": "string"
                      },
                      "product": {
                        "id": 0,
                        "title": "string"
                      },
                      "nbm": {
                        "id": "string",
                        "description": "string"
                      },
                      "origin": {
                        "id": 0,
                        "description": "string"
                      },
                      "model": "string",
                      "videoUrl": "string",
                      "warrantyTime": 0,
                      "warrantyText": "string",
                      "height": 0,
                      "width": 0,
                      "weight": 0,
                      "length": 0,
                      "status": "string",
                      "transmissionMessage": "string",
                      "publicationStatus": "ACTIVE",
                      "marketPlaceStatus": "string",
                      "priceFactor": 0,
                      "sku": {
                        "id": 0,
                        "title": "string",
                        "partnerId": "string",
                        "ean": "string",
                        "price": 0,
                        "amount": 0,
                        "variations": [
                          {
                            "id": 0,
                            "description": "string",
                            "type": {
                              "id": 0,
                              "name": "string",
                              "visualVariation": true
                            }
                          }
                        ],
                        "discountPrice": 0
                      },
                      "characteristics": [
                        {
                          "index": 0,
                          "name": "string",
                          "value": "string"
                        }
                      ],
                      "images": [
                        {
                          "id": 0,
                          "index": 0,
                          "main": true,
                          "url": "http://example.com",
                          "thumbnailUrl": "http://example.com",
                          "lowResolutionUrl": "http://example.com",
                          "standardUrl": "http://example.com",
                          "originalImage": "http://example.com",
                          "variation": "string",
                          "status": "UNPROCESSED",
                          "statusMessage": "string",
                          "standardWidth": 0,
                          "standardHeight": 0,
                          "originalWidth": 0,
                          "originalHeight": 0
                        }
                      ]
                    }
                  }
                }
              }
            }
          },
          "404": {
            "$ref": "#/components/responses/404"
          }
        },
        "operationId": "get-transmissions-id",
        "description": "# Ver los detalles de una transmisión\n Consultar los detalles de una transmisión de comercio electrónico"
      },
      "put": {
        "summary": "/transmissions/{id}",
        "operationId": "put-transmissions-id",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Transmission"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "accountName": "string",
                      "description": "string",
                      "category": {
                        "id": 0,
                        "name": "string",
                        "path": "string"
                      },
                      "brand": {
                        "id": 0,
                        "name": "string"
                      },
                      "product": {
                        "id": 0,
                        "title": "string"
                      },
                      "nbm": {
                        "id": "string",
                        "description": "string"
                      },
                      "origin": {
                        "id": 0,
                        "description": "string"
                      },
                      "model": "string",
                      "videoUrl": "string",
                      "warrantyTime": 0,
                      "warrantyText": "string",
                      "height": 0,
                      "width": 0,
                      "weight": 0,
                      "length": 0,
                      "status": "string",
                      "transmissionMessage": "string",
                      "publicationStatus": "ACTIVE",
                      "marketPlaceStatus": "string",
                      "priceFactor": 0,
                      "sku": {
                        "id": 0,
                        "title": "string",
                        "partnerId": "string",
                        "ean": "string",
                        "price": 0,
                        "amount": 0,
                        "variations": [
                          {
                            "id": 0,
                            "description": "string",
                            "type": {
                              "id": 0,
                              "name": "string",
                              "visualVariation": true
                            }
                          }
                        ],
                        "discountPrice": 0
                      },
                      "characteristics": [
                        {
                          "index": 0,
                          "name": "string",
                          "value": "string"
                        }
                      ],
                      "images": [
                        {
                          "id": 0,
                          "index": 0,
                          "main": true,
                          "url": "http://example.com",
                          "thumbnailUrl": "http://example.com",
                          "lowResolutionUrl": "http://example.com",
                          "standardUrl": "http://example.com",
                          "originalImage": "http://example.com",
                          "variation": "string",
                          "status": "UNPROCESSED",
                          "statusMessage": "string",
                          "standardWidth": 0,
                          "standardHeight": 0,
                          "originalWidth": 0,
                          "originalHeight": 0
                        }
                      ]
                    }
                  }
                }
              }
            }
          },
          "404": {
            "$ref": "#/components/responses/404"
          },
          "422": {
            "$ref": "#/components/responses/422"
          }
        },
        "tags": [
          "Transmissão"
        ],
        "description": "# Actualizar datos de transmisión\n Actualiza los datos de una transmisión para ecommerce",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/TransmissionPut"
              },
              "examples": {
                "example-1": {
                  "value": {
                    "publicationStatus": "ACTIVE",
                    "marketPlaceStatus": "string"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/transmissions/marketplace/{marketplace}": {
      "parameters": [
        {
          "schema": {
            "type": "string",
            "enum": [
              "ALIEXPRESS",
              "AMAZON_GLOBAL_API",
              "ANGELONI",
              "ARMAZEM_PARAIBA",
              "B2W_NEW_API",
              "BABYBIZ",
              "BANCO_INTER",
              "BANDSHOP",
              "BELEZA_NA_WEB_NEW_API",
              "BRAVIUM",
              "C_A",
              "CARREFOUR",
              "CASA_VIDEO",
              "CASSOL_CENTERLAR",
              "CENTAURO_NEW_API",
              "CLAROSHOP_MEXICO",
              "COMFORTFLEX_NOVA_API",
              "COMPRA_CERTA",
              "COPPEL",
              "CSM",
              "DB1_MARKETPLACE",
              "DECATHLON",
              "DIGIGROW",
              "EFACIL",
              "ELEKTRA",
              "EOS",
              "EPOCA",
              "ESTANTE_VIRTUAL",
              "FALABELLA",
              "FARMADELIVERY",
              "FASTSHOP_NEW_API",
              "FENICIO",
              "FOODIES_STORE",
              "GFG",
              "GRUPO_MATEUS",
              "HELP_SELLER",
              "HITES",
              "HOUSE_OF_GAMERS",
              "ICBC_MALL",
              "IGA",
              "ITAU",
              "JUMPSELLER",
              "KABUM",
              "KOERICH",
              "LE_BISCUIT",
              "LEROY_MERLIN",
              "LIVESHOP",
              "LL_LOYALTY",
              "LOJA_DO_COOPERADO",
              "LOJA_DO_MECANICO",
              "LOJAS_COLOMBO",
              "LOJAS_IMPERIO",
              "LOJAS_LEBES_NEW_API",
              "LOJAS_MM",
              "LOJAS_QUERO_QUERO",
              "MADEIRA_MADEIRA",
              "MAGAZINE_LUIZA",
              "MAGENTO",
              "MAIS_CORREIOS",
              "MARCA_SELETA",
              "MARTINS_ATACADO",
              "MEGATONE",
              "MOBLY",
              "MULTIVAREJO_GPA",
              "NETSHOES",
              "NEXTSHOP",
              "NUVEMSHOP",
              "OLIST_NEW_API",
              "PAGUE_MENOS",
              "PARIS",
              "PHILIPS_STORE",
              "PITSTOP",
              "PNEUBEST",
              "POLISHOP",
              "POSTHAUS_NEW_API",
              "PRESTASHOP",
              "PRIVALIA",
              "RAIA_DROGASIL",
              "RAMARIM_NOVA_API",
              "RENNER",
              "RI_HAPPY_NEW_API",
              "RIACHUELO",
              "RIPLEY",
              "SENFF_SHOPPING",
              "SHEIN",
              "SHOPEE",
              "SHOPHUB",
              "SHOPIFY",
              "SHOPPING_BB",
              "SHOPPING_LIVELO",
              "SICOOB",
              "SICREDI",
              "STECK",
              "SUBLIMITY",
              "TA_TASHOP",
              "TENDA_ATACADO",
              "THE_HOME_DEPOT",
              "TIENDA_CLIC",
              "TIKTOK_SHOP",
              "TRAY",
              "TROCAFONE",
              "VALE_BONUS",
              "VENTURESHOP",
              "VINKLO_BY_FESTALAB",
              "VTEX",
              "WALMART",
              "WEB_CONTINENTAL_V2",
              "WEHOUSE",
              "WOOCOMMERCE",
              "WOOCOMMERCE2",
              "YA_PLACE_STORE",
              "ZEMA",
              "ZOOM"
            ]
          },
          "name": "marketplace",
          "in": "path",
          "required": true
        }
      ],
      "get": {
        "summary": "/transmissions/marketplace/{marketplace}",
        "tags": [
          "Transmissão"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {}
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "links": [
                        {
                          "rel": "string",
                          "href": "string"
                        }
                      ],
                      "content": [
                        {
                          "id": 0,
                          "accountName": "string",
                          "description": "string",
                          "category": {
                            "id": 0,
                            "name": "string",
                            "path": "string"
                          },
                          "brand": {
                            "id": 0,
                            "name": "string"
                          },
                          "product": {
                            "id": 0,
                            "title": "string"
                          },
                          "nbm": {
                            "id": "string",
                            "description": "string"
                          },
                          "origin": {
                            "id": 0,
                            "description": "string"
                          },
                          "model": "string",
                          "videoUrl": "string",
                          "warrantyTime": 0,
                          "warrantyText": "string",
                          "height": 0,
                          "width": 0,
                          "weight": 0,
                          "length": 0,
                          "status": "string",
                          "transmissionMessage": "string",
                          "publicationStatus": "ACTIVE",
                          "marketPlaceStatus": "string",
                          "priceFactor": 0,
                          "sku": {
                            "id": 0,
                            "title": "string",
                            "partnerId": "string",
                            "ean": "string",
                            "price": 0,
                            "amount": 0,
                            "variations": [
                              {
                                "id": 0,
                                "description": "string",
                                "type": {
                                  "id": 0,
                                  "name": "string",
                                  "visualVariation": true
                                }
                              }
                            ],
                            "discountPrice": 0
                          },
                          "characteristics": [
                            {
                              "index": 0,
                              "name": "string",
                              "value": "string"
                            }
                          ],
                          "images": [
                            {
                              "id": 0,
                              "index": 0,
                              "main": true,
                              "url": "string",
                              "thumbnailUrl": "string",
                              "lowResolutionUrl": "string",
                              "standardUrl": "string",
                              "originalImage": "string",
                              "variation": "string",
                              "status": "string",
                              "statusMessage": "string",
                              "standardWidth": 0,
                              "standardHeight": 0,
                              "originalWidth": 0,
                              "originalHeight": 0
                            }
                          ]
                        }
                      ],
                      "page": {
                        "size": 0,
                        "totalElements": 0,
                        "totalPages": 0,
                        "number": 0
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "get-transmissions-marketplace-marketplace",
        "description": "# Consulta todas as transmissões de um determinado marketplace\nConsulta todas as transmissões de um determinado marketplace",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "enum": [
                "ACTIVE",
                "CLOSED",
                "PAUSED",
                "UNPUBLISHED",
                "WITHOUT_STOCK",
                "CORRUPTED"
              ]
            },
            "in": "query",
            "name": "statusFilter",
            "description": "Lista de status a serem filtrados separados por virgula."
          },
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "limit",
            "description": "Número máximo de transmissões",
            "required": true
          },
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "required": true,
            "name": "offset",
            "description": "Número de itens a ignorar no início da lista de resultados, usado para paginação."
          },
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "sort",
            "description": "Atributo para ordenação"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "asc",
                "desc"
              ]
            },
            "in": "query",
            "name": "sortDirection",
            "description": "Define a direção da ordenação dos resultados, podendo ser \"asc\" (ascendente) ou \"desc\" (descendente)."
          }
        ]
      }
    },
    "/variations/{typeId}/values": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "typeId",
          "in": "path",
          "required": true,
          "description": "ID de tipo de variación generado por ANYMARKET"
        }
      ],
      "get": {
        "summary": "/variations/{typeId}/values",
        "tags": [
          "Valores de variação"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Page_VariationValue"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "links": [
                        {
                          "rel": "next",
                          "href": "https://.../v2/component?limit=5&offset=5"
                        }
                      ],
                      "content": [
                        {
                          "id": 0,
                          "description": "string",
                          "partnerId": "string"
                        }
                      ],
                      "page": {
                        "size": 5,
                        "totalElements": 0,
                        "totalPages": 0,
                        "number": 0
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "get-variations-typeId-values",
        "description": "# Consultar todos los valores de variación de un tipo\n Consultar todos los valores de variación de un tipo",
        "parameters": [
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "description": "ID de tipo de variación en socio",
            "name": "partnerId"
          }
        ]
      },
      "post": {
        "summary": "/variations/{typeId}/values",
        "operationId": "post-variations-typeId-values",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/VariationValueGet"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "description": "string",
                      "partnerId": "string"
                    }
                  }
                }
              }
            }
          },
          "422": {
            "$ref": "#/components/responses/422"
          }
        },
        "tags": [
          "Valores de variação"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/VariationValuePost"
              },
              "examples": {
                "example-1": {
                  "value": {
                    "description": "string",
                    "partnerId": "string"
                  }
                }
              }
            }
          }
        },
        "description": "# Crea un valor de variación con los datos ingresados\n Crea un valor de variación con los datos ingresados"
      }
    },
    "/variations/{typeId}/values/{valueId}": {
      "parameters": [
        {
          "schema": {
            "type": "integer"
          },
          "name": "typeId",
          "in": "path",
          "required": true,
          "description": "ID de tipo de variación generado por ANYMARKET"
        },
        {
          "schema": {
            "type": "integer"
          },
          "name": "valueId",
          "in": "path",
          "required": true,
          "description": "ID del valor de variación generado por ANYMARKET"
        }
      ],
      "get": {
        "summary": "/variations/{typeId}/values/{valueId}",
        "tags": [
          "Valores de variação"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/VariationValueGet"
                }
              }
            }
          },
          "404": {
            "$ref": "#/components/responses/404"
          }
        },
        "operationId": "get-variations-typeId-values-valueId",
        "description": "# Consultar los detalles de un valor de varianza\n Consultar los detalles de un valor de varianza"
      },
      "put": {
        "summary": "/variations/{typeId}/values/{valueId}",
        "operationId": "put-variations-typeId-values-valueId",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/VariationValueGet"
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "description": "string",
                      "partnerId": "string"
                    }
                  }
                }
              }
            }
          },
          "404": {
            "$ref": "#/components/responses/404"
          },
          "422": {
            "$ref": "#/components/responses/422"
          }
        },
        "tags": [
          "Valores de variação"
        ],
        "description": "# Actualiza los datos de un valor de varianza\n Actualiza los datos de un valor de varianza",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/VariationValuePut"
              },
              "examples": {
                "example-1": {
                  "value": {
                    "description": "string",
                    "partnerId": "string"
                  }
                }
              }
            }
          }
        }
      },
      "delete": {
        "summary": "/variations/{typeId}/values/{valueId}",
        "operationId": "delete-variations-typeId-values-valueId",
        "responses": {
          "204": {
            "description": "No Content"
          },
          "400": {
            "$ref": "#/components/responses/400"
          },
          "404": {
            "$ref": "#/components/responses/404"
          }
        },
        "tags": [
          "Valores de variação"
        ],
        "description": "# Excluye el valor de variación informado\n Excluye el valor de variación informado"
      }
    },
    "/categories/characteristics/groups/{id}": {
      "get": {
        "summary": "Consulta todos os valores de grupo de características pelo ID",
        "tags": [
          "Grupo de caracteristica"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "integer",
                      "description": "ID do grupo de caracteristicas gerado pelo ANYMARKET"
                    },
                    "name": {
                      "type": "string",
                      "description": "Nome do grupo de caracteristica"
                    },
                    "characteristics": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "integer",
                            "format": "int64",
                            "description": "ID do anúncio no ANYMARKET"
                          },
                          "index": {
                            "type": "integer",
                            "description": "Índice do anúncio por Marketplace"
                          },
                          "name": {
                            "type": "string",
                            "description": "Nome da caracteristica"
                          },
                          "characteristicItemMarketPlaces": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "integer",
                                  "description": "ID do caracteristica no ANYMARKET"
                                },
                                "marketPlace": {
                                  "type": "string",
                                  "description": "Identificador do MARKETPLACE"
                                },
                                "idInMarketplace": {
                                  "type": "string",
                                  "description": "ID da Característica no Marketplace"
                                },
                                "required": {
                                  "type": "boolean"
                                }
                              },
                              "required": [
                                "id",
                                "marketPlace"
                              ]
                            }
                          }
                        },
                        "required": [
                          "id",
                          "index"
                        ]
                      }
                    },
                    "categories": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "ID da categoria",
                            "minimum": 0
                          },
                          "name": {
                            "type": "string",
                            "description": "Nome da categoria",
                            "minLength": 0,
                            "maxLength": 80
                          },
                          "path": {
                            "type": "string",
                            "description": "Diretório e subdiretórios da categoria",
                            "minLength": 0,
                            "maxLength": 1000
                          }
                        },
                        "required": [
                          "id"
                        ]
                      }
                    }
                  },
                  "required": [
                    "id",
                    "name"
                  ]
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 0,
                      "name": "string",
                      "characteristics": [
                        {
                          "id": 0,
                          "index": 0,
                          "name": "string",
                          "characteristicItemMarketPlaces": [
                            {
                              "id": 0,
                              "marketPlace": "string",
                              "idInMarketplace": "string",
                              "required": true
                            }
                          ]
                        }
                      ],
                      "categories": [
                        {
                          "id": 0,
                          "name": "string",
                          "path": "string"
                        }
                      ]
                    }
                  },
                  "stoplight-example-1": {
                    "value": {
                      "id": 38,
                      "name": "testeTESTE",
                      "characteristics": [
                        {
                          "id": 57,
                          "index": 0,
                          "name": "testeTESTE",
                          "characteristicItemMarketPlaces": [
                            {
                              "id": 79,
                              "marketPlace": "ECOMMERCE",
                              "idInMarketplace": "testeTESTE",
                              "required": true
                            }
                          ]
                        }
                      ],
                      "categories": [
                        {
                          "id": 2695,
                          "name": "To mexendo mesmo",
                          "path": "To mexendo mesmo"
                        }
                      ]
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "get-categories-characteristics-groups",
        "description": "Consulta todos os valores de grupo de caracteristicas",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {}
              }
            }
          }
        },
        "parameters": [],
        "security": [
          {
            "gumgaToken": []
          }
        ]
      },
      "put": {
        "summary": "Altera os dados de um grupo de características",
        "tags": [
          "Grupo de caracteristica"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "integer",
                      "description": "ID Grupo de caracteristica"
                    },
                    "name": {
                      "type": "string",
                      "description": "Nome Grupo de caracteristica"
                    },
                    "characteristics": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "ID caracteristica"
                          },
                          "name": {
                            "type": "string",
                            "description": "Nome de caracteristicas"
                          },
                          "characteristicItemMarketPlaces": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "integer",
                                  "description": "ID Caracteristica do marketplace"
                                },
                                "marketPlace": {
                                  "type": "string",
                                  "description": "Identificador do MARKETPLACE"
                                },
                                "idInMarketplace": {
                                  "type": "string",
                                  "description": "ID do anúncio no Marketplace"
                                },
                                "required": {
                                  "type": "boolean"
                                }
                              },
                              "required": [
                                "id",
                                "marketPlace"
                              ]
                            }
                          }
                        },
                        "required": [
                          "id"
                        ]
                      }
                    },
                    "categories": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "ID Categoria"
                          },
                          "name": {
                            "type": "string",
                            "description": "Nome Categoria"
                          },
                          "path": {
                            "type": "string",
                            "description": "Diretório e subdiretórios da categoria"
                          }
                        },
                        "required": [
                          "id"
                        ]
                      }
                    }
                  },
                  "required": [
                    "id",
                    "name"
                  ]
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 38,
                      "name": "teste",
                      "characteristics": [
                        {
                          "id": 68,
                          "name": "testeTESTE",
                          "characteristicItemMarketPlaces": [
                            {
                              "id": 77,
                              "marketPlace": "ECOMMERCE",
                              "idInMarketplace": "testeTESTE",
                              "required": true
                            }
                          ]
                        }
                      ],
                      "categories": [
                        {
                          "id": 2756,
                          "name": "#62i9sto",
                          "path": "#62i9sto"
                        }
                      ]
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "put-categories-characteristics-groups",
        "description": "Atualiza os dados de um grupo de caracteriticas\n\n> O método `PUT` substitui completamente o recurso. \n>\n> Todos os campos obrigatórios devem ser enviados, mesmo que não tenham sido modificados.\n>\n> Campos omitidos podem ser redefinidos ou apagados.\n>\n> Use este método quando quiser sobrescrever todas as informações.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "integer"
                  },
                  "name": {
                    "type": "string"
                  },
                  "characteristics": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "integer"
                        },
                        "name": {
                          "type": "string"
                        },
                        "characteristicItemMarketPlaces": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "integer"
                              },
                              "marketPlace": {
                                "type": "string"
                              },
                              "idInMarketplace": {
                                "type": "string",
                                "description": "ID da Característica no Marketplace"
                              },
                              "required": {
                                "type": "boolean"
                              }
                            },
                            "required": [
                              "id",
                              "marketPlace"
                            ]
                          }
                        }
                      },
                      "required": [
                        "id"
                      ]
                    }
                  },
                  "categories": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "integer"
                        },
                        "name": {
                          "type": "string"
                        },
                        "path": {
                          "type": "string"
                        }
                      },
                      "required": [
                        "id"
                      ]
                    }
                  }
                },
                "required": [
                  "id",
                  "name"
                ]
              },
              "examples": {
                "example-1": {
                  "value": {
                    "id": 0,
                    "name": "string",
                    "characteristics": [
                      {
                        "id": 0,
                        "name": "string",
                        "characteristicItemMarketPlaces": [
                          {
                            "id": 0,
                            "marketPlace": "string",
                            "idInMarketplace": "string",
                            "required": true
                          }
                        ]
                      }
                    ],
                    "categories": [
                      {
                        "id": 0,
                        "name": "string",
                        "path": "string"
                      }
                    ]
                  }
                },
                "stoplight-example-1": {
                  "value": {
                    "id": 38,
                    "name": "teste",
                    "characteristics": [
                      {
                        "id": 35,
                        "name": "testeTESTE",
                        "characteristicItemMarketPlaces": [
                          {
                            "id": 77,
                            "marketPlace": "ECOMMERCE",
                            "idInMarketplace": "testeTESTE",
                            "required": true
                          }
                        ]
                      }
                    ],
                    "categories": [
                      {
                        "id": 2756,
                        "name": "#62i9sto",
                        "path": "#62i9sto"
                      }
                    ]
                  }
                }
              }
            },
            "application/xml": {
              "schema": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "integer"
                  },
                  "name": {
                    "type": "string"
                  },
                  "characteristics": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "integer"
                        },
                        "name": {
                          "type": "string"
                        },
                        "characteristicItemMarketPlaces": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "integer"
                              },
                              "marketPlace": {
                                "type": "string"
                              },
                              "idInMarketplace": {
                                "type": "string"
                              },
                              "required": {
                                "type": "boolean"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "categories": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "integer"
                        },
                        "name": {
                          "type": "string"
                        },
                        "path": {
                          "type": "string"
                        }
                      }
                    }
                  }
                }
              },
              "examples": {
                "example-1": {
                  "value": {
                    "id": 38,
                    "name": "teste",
                    "characteristics": [
                      {
                        "id": 35,
                        "name": "testeTESTE",
                        "characteristicItemMarketPlaces": [
                          {
                            "id": 77,
                            "marketPlace": "ECOMMERCE",
                            "idInMarketplace": "testeTESTE",
                            "required": true
                          }
                        ]
                      }
                    ],
                    "categories": [
                      {
                        "id": 2756,
                        "name": "#62i9sto",
                        "path": "#62i9sto"
                      }
                    ]
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "gumgaToken": []
          }
        ]
      },
      "delete": {
        "summary": "Excluir grupo de caracteristica",
        "tags": [
          "Grupo de caracteristica"
        ],
        "responses": {
          "204": {
            "description": "No Content"
          }
        },
        "operationId": "delete-categories-characteristics-groups",
        "description": "Exclui grupo de caracteristica",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {}
              }
            },
            "application/xml": {
              "schema": {
                "type": "object",
                "properties": {}
              }
            },
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {}
              }
            }
          }
        },
        "parameters": [
          {
            "schema": {
              "type": "string"
            },
            "in": "header",
            "name": "gumgaToken"
          }
        ],
        "security": [
          {
            "gumgaToken": []
          }
        ]
      },
      "parameters": [
        {
          "schema": {
            "type": "string"
          },
          "name": "id",
          "in": "path",
          "required": true
        }
      ]
    },
    "/categories/characteristics/groups": {
      "get": {
        "summary": "Consulta todos os dados de grupos de características",
        "operationId": "get-categories-characteristics-groups-list",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "links": {
                      "type": "array",
                      "description": "Referências de paginação",
                      "items": {
                        "type": "object",
                        "properties": {
                          "rel": {
                            "type": "string",
                            "description": "Relacionamento do hyperlink"
                          },
                          "href": {
                            "type": "string",
                            "description": "URL de definição do recurso"
                          }
                        }
                      }
                    },
                    "content": {
                      "type": "array",
                      "description": "Lista de grupos de características",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "ID do grupo de características gerado pelo ANYMARKET"
                          },
                          "name": {
                            "type": "string",
                            "description": "Nome do grupo de características"
                          },
                          "characteristics": {
                            "type": "array",
                            "description": "Lista de características do grupo",
                            "items": {
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "integer",
                                  "description": "ID da característica"
                                },
                                "index": {
                                  "type": "integer",
                                  "description": "Ordem da característica no grupo"
                                },
                                "name": {
                                  "type": "string",
                                  "description": "Nome da característica"
                                },
                                "characteristicItemMarketPlaces": {
                                  "type": "array",
                                  "description": "Lista de vínculos da característica com marketplaces",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "integer",
                                        "description": "ID do vínculo da característica com marketplace"
                                      },
                                      "marketPlace": {
                                        "type": "string",
                                        "description": "Nome do marketplace"
                                      },
                                      "idInMarketplace": {
                                        "type": "string",
                                        "description": "ID da característica no marketplace"
                                      },
                                      "required": {
                                        "type": "boolean",
                                        "description": "Indica se a característica é obrigatória"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "categories": {
                            "type": "array",
                            "description": "Lista de categorias vinculadas ao grupo",
                            "items": {
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "integer",
                                  "description": "ID da categoria"
                                },
                                "name": {
                                  "type": "string",
                                  "description": "Nome da categoria"
                                },
                                "path": {
                                  "type": "string",
                                  "description": "Caminho completo da categoria"
                                }
                              }
                            }
                          }
                        }
                      }
                    },
                    "page": {
                      "type": "object",
                      "properties": {
                        "size": {
                          "type": "integer",
                          "description": "Tamanho da página"
                        },
                        "totalElements": {
                          "type": "integer",
                          "description": "Total de elementos"
                        },
                        "totalPages": {
                          "type": "integer",
                          "description": "Total de páginas"
                        },
                        "number": {
                          "type": "integer",
                          "description": "Página atual"
                        }
                      }
                    }
                  }
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "links": [
                        {
                          "rel": "next",
                          "href": "https://api.anymarket.com.br/v2/categories/characteristics/groups?offset=5"
                        }
                      ],
                      "content": [
                        {
                          "id": 1,
                          "name": "Livros",
                          "characteristics": [
                            {
                              "id": 10,
                              "index": 0,
                              "name": "Autor",
                              "characteristicItemMarketPlaces": [
                                {
                                  "id": 100,
                                  "marketPlace": "MARKETPLACE_EXEMPLO",
                                  "idInMarketplace": "author",
                                  "required": true
                                }
                              ]
                            },
                            {
                              "id": 11,
                              "index": 1,
                              "name": "ISBN",
                              "characteristicItemMarketPlaces": [
                                {
                                  "id": 101,
                                  "marketPlace": "MARKETPLACE_EXEMPLO",
                                  "idInMarketplace": "isbn",
                                  "required": false
                                }
                              ]
                            }
                          ]
                        },
                        {
                          "id": 2,
                          "name": "Moda",
                          "characteristics": [
                            {
                              "id": 20,
                              "index": 0,
                              "name": "Tamanho"
                            },
                            {
                              "id": 21,
                              "index": 1,
                              "name": "Cor"
                            }
                          ],
                          "categories": [
                            {
                              "id": 200,
                              "name": "Roupas",
                              "path": "Roupas"
                            }
                          ]
                        }
                      ],
                      "page": {
                        "size": 5,
                        "totalElements": 2,
                        "totalPages": 1,
                        "number": 0
                      }
                    }
                  }
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/422"
                }
              }
            }
          }
        },
        "description": "# Consulta grupos de características\nConsulta todos os grupos de características cadastrados.",
        "parameters": [
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          }
        ],
        "tags": [
          "Grupo de caracteristica"
        ]
      },
      "post": {
        "summary": "Cria um grupo de caracteristicas com os dados informados",
        "tags": [
          "Grupo de caracteristica"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "integer",
                      "description": "ID Grupo de caracteristica"
                    },
                    "name": {
                      "type": "string",
                      "description": "Nome Grupo de caracteristica"
                    },
                    "characteristics": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "ID caracteristica"
                          },
                          "index": {
                            "type": "integer",
                            "description": "Índice do anúncio por Marketplace"
                          },
                          "name": {
                            "type": "string",
                            "description": "Nome de caracteristicas"
                          },
                          "characteristicItemMarketPlaces": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "integer",
                                  "description": "ID Caracteristica do marketplace"
                                },
                                "marketPlace": {
                                  "type": "string",
                                  "description": "Identificador do MARKETPLACE"
                                },
                                "idInMarketplace": {
                                  "type": "string",
                                  "description": "ID da Característica no Marketplace"
                                },
                                "required": {
                                  "type": "boolean"
                                }
                              },
                              "required": [
                                "id",
                                "marketPlace"
                              ]
                            }
                          }
                        },
                        "required": [
                          "id",
                          "index"
                        ]
                      }
                    },
                    "categories": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "ID Categoria"
                          },
                          "name": {
                            "type": "string",
                            "description": "Nome Categoria"
                          },
                          "path": {
                            "type": "string",
                            "description": "Diretório e subdiretórios da categoria"
                          }
                        },
                        "required": [
                          "id"
                        ]
                      }
                    },
                    "": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "id",
                    "name"
                  ]
                },
                "examples": {
                  "example-1": {
                    "value": {
                      "id": 39,
                      "name": "Pipoca_2",
                      "characteristics": [
                        {
                          "id": 66,
                          "index": 0,
                          "name": "Pipoca1",
                          "characteristicItemMarketPlaces": [
                            {
                              "id": 80,
                              "marketPlace": "ECOMMERCE",
                              "idInMarketplace": "Boby",
                              "required": true
                            },
                            {
                              "id": 81,
                              "marketPlace": "MAGAZINE_LUIZA",
                              "idInMarketplace": "Boby",
                              "required": false
                            }
                          ]
                        },
                        {
                          "id": 67,
                          "index": 0,
                          "name": "Pipoca2",
                          "characteristicItemMarketPlaces": [
                            {
                              "id": 82,
                              "marketPlace": "ECOMMERCE",
                              "idInMarketplace": "Boby",
                              "required": true
                            }
                          ]
                        }
                      ],
                      "categories": [
                        {
                          "id": 2695,
                          "name": "To mexendo mesmo",
                          "path": "To mexendo mesmo"
                        }
                      ]
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "post-categories-characteristics-groups",
        "description": "Cria um grupo de caracteristicas com os dados informados",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string",
                    "description": "Nome do grupo de caracteristica"
                  },
                  "characteristics": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "index": {
                          "type": "integer",
                          "description": "Índice do anúncio por Marketplace"
                        },
                        "name": {
                          "type": "string",
                          "description": "Nome da caracteristica"
                        },
                        "characteristicItemMarketPlaces": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "marketPlace": {
                                "type": "string",
                                "description": "Identificador do MARKETPLACE"
                              },
                              "idInMarketplace": {
                                "type": "string",
                                "description": "ID do anúncio no Marketplace"
                              },
                              "required": {
                                "type": "boolean"
                              }
                            },
                            "required": [
                              "marketPlace",
                              "required"
                            ]
                          }
                        }
                      },
                      "required": [
                        "index"
                      ]
                    }
                  },
                  "categories": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "integer",
                          "description": "ID da categoria"
                        },
                        "name": {
                          "type": "string",
                          "description": "Nome da categoria"
                        },
                        "path": {
                          "type": "string",
                          "description": "Diretório e subdiretórios da categoria"
                        }
                      },
                      "required": [
                        "id"
                      ]
                    }
                  }
                },
                "required": [
                  "name"
                ]
              },
              "examples": {
                "example-1": {
                  "value": {
                    "name": "string",
                    "characteristics": [
                      {
                        "index": 0,
                        "name": "string",
                        "characteristicItemMarketPlaces": [
                          {
                            "marketPlace": "string",
                            "idInMarketplace": "string",
                            "required": true
                          }
                        ]
                      }
                    ],
                    "categories": [
                      {
                        "id": 0,
                        "name": "string",
                        "path": "string"
                      }
                    ]
                  }
                },
                "stoplight-example-1": {
                  "value": {
                    "name": "Pipoca_2",
                    "characteristics": [
                      {
                        "index": 0,
                        "name": "Pipoca1",
                        "characteristicItemMarketPlaces": [
                          {
                            "marketPlace": "ECOMMERCE",
                            "idInMarketplace": "Boby",
                            "required": true
                          },
                          {
                            "marketPlace": "MAGAZINE_LUIZA",
                            "idInMarketplace": "Boby",
                            "required": false
                          }
                        ]
                      },
                      {
                        "index": 0,
                        "name": "Pipoca2",
                        "characteristicItemMarketPlaces": [
                          {
                            "marketPlace": "ECOMMERCE",
                            "idInMarketplace": "Boby",
                            "required": true
                          }
                        ]
                      }
                    ],
                    "categories": [
                      {
                        "id": 2695,
                        "name": "To mexendo mesmo",
                        "path": "To mexendo mesmo"
                      },
                      {
                        "id": 2756,
                        "name": "#62i9sto",
                        "path": "#62i9sto"
                      }
                    ]
                  }
                }
              }
            }
          },
          "description": ""
        },
        "security": [
          {
            "gumgaToken": []
          }
        ]
      }
    },
    "/brands/marketplace/{marketplace}": {
      "parameters": [
        {
          "schema": {
            "type": "string"
          },
          "name": "marketplace",
          "in": "path",
          "required": true,
          "description": "Marketplace"
        }
      ],
      "get": {
        "summary": "Consulta as Marcas para Vínculo",
        "operationId": "get-brands-bind-marketplace",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codeInMarketplace": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "codeInMarketplace": "string",
                      "name": "string"
                    }
                  },
                  "stoplight-Example 1": {
                    "value": {
                      "codeInMarketplace": "string",
                      "name": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Marcas"
        ],
        "description": "# Consulta as Marcas para Vínculo\n\nConsulta todos os vínculos de marcas por marketplace."
      }
    },
    "/brands/{id}/bind/{marketplace}": {
      "parameters": [
        {
          "schema": {
            "type": "string"
          },
          "name": "marketplace",
          "in": "path",
          "required": true
        },
        {
          "schema": {
            "type": "string"
          },
          "name": "id",
          "in": "path",
          "required": true
        }
      ],
      "post": {
        "summary": "Vincula Marcas com os Marketplaces",
        "operationId": "post-brands-bind-marketplace",
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "marketPlace": {
                      "type": "string"
                    },
                    "id": {
                      "type": "integer"
                    },
                    "codeInMarketplace": {
                      "type": "string"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "marketPlace": "string",
                      "id": 0,
                      "codeInMarketplace": "string"
                    }
                  },
                  "stoplight-Example 1": {
                    "value": {
                      "marketPlace": "GFG",
                      "id": 21208,
                      "codeInMarketplace": "MLB432912"
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "{\n    \"code\": \"400\",\n    \"message\": \"O campo 'marketplace' na url está em formato incorreto. Verifique a documentação para maiores detalhes.\"\n}"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "codeInMarketplace": {
                    "type": "string"
                  }
                }
              },
              "examples": {
                "Example 1": {
                  "value": {
                    "codeInMarketplace": "string"
                  }
                },
                "stoplight-Example 1": {
                  "value": {
                    "codeInMarketplace": "MLB432912"
                  }
                }
              }
            }
          },
          "description": ""
        },
        "description": "# Cria um vínculo de Marca\n\nA vinculação de marcas nada mais é que um DE/PARA que o seller ira realizar na camada ANYMARKET, informando ao marketplace que a marca \"X\" corresponde a marca \"Y\" do marketplace em questão.",
        "tags": [
          "Marcas"
        ]
      },
      "put": {
        "summary": "Alterar Vínculo de Marcas",
        "operationId": "put-brands-id-bind-marketplace",
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "marketPlace": {
                      "type": "string"
                    },
                    "id": {
                      "type": "integer"
                    },
                    "codeInMarketplace": {
                      "type": "string"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "marketPlace": "string",
                      "id": 0,
                      "codeInMarketplace": "string"
                    }
                  },
                  "stoplight-Example 1": {
                    "value": {
                      "marketPlace": "GFG",
                      "id": 21208,
                      "codeInMarketplace": "MLB432912"
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "{\n    \"code\": \"400\",\n    \"message\": \"O campo 'marketplace' na url está em formato incorreto. Verifique a documentação para maiores detalhes.\"\n}"
          }
        },
        "description": "# Altera um Vínculo de Marca\n\nA vinculação de marcas nada mais é que um DE/PARA que o seller ira realizar na camada ANYMARKET, informando ao marketplace que a marca \"X\" corresponde a marca \"Y\" do marketplace em questão.\n\n> O método `PUT` substitui completamente o recurso. \n>\n> Todos os campos obrigatórios devem ser enviados, mesmo que não tenham sido modificados.\n>\n> Campos omitidos podem ser redefinidos ou apagados.\n>\n> Use este método quando quiser sobrescrever todas as informações.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "codeInMarketplace": {
                    "type": "string"
                  }
                }
              },
              "examples": {
                "Example 1": {
                  "value": {
                    "codeInMarketplace": "string"
                  }
                },
                "stoplight-Example 1": {
                  "value": {
                    "codeInMarketplace": "string"
                  }
                }
              }
            }
          },
          "description": ""
        },
        "tags": [
          "Marcas"
        ]
      }
    },
    "/orders/{orderId}/returns/{id}": {
      "parameters": [
        {
          "schema": {
            "type": "string"
          },
          "name": "orderId",
          "in": "path",
          "required": true,
          "description": "ID do Pedido no ANYMARKET"
        },
        {
          "schema": {
            "type": "string"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID da Devolução no ANYMARKET"
        }
      ],
      "get": {
        "summary": "/orders/{orderId}/returns/{id}",
        "tags": [
          "Devolução"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": [
                    "id",
                    "orderId",
                    "marketplace",
                    "marketplaceOrderId",
                    "marketplaceReturnId",
                    "marketplaceTypeId",
                    "accountId",
                    "status",
                    "reason",
                    "type",
                    "createdAt",
                    "items",
                    "history"
                  ],
                  "properties": {
                    "id": {
                      "type": "integer",
                      "description": "ID da Devolução"
                    },
                    "orderId": {
                      "type": "integer",
                      "description": "ID do Pedido no ANYMARKET"
                    },
                    "oi": {
                      "type": "string"
                    },
                    "marketplace": {
                      "$ref": "#/components/schemas/EnumMarketplaces"
                    },
                    "marketplaceOrderId": {
                      "type": "string",
                      "description": "ID público do pedido no marketplace"
                    },
                    "marketplaceReturnId": {
                      "type": "string",
                      "description": "ID público da devolução no marketplace"
                    },
                    "marketplaceTypeId": {
                      "type": "string",
                      "description": "Tipo de devolução no marketplace",
                      "example": "automatic, calim, dispute"
                    },
                    "accountId": {
                      "type": "string",
                      "description": "ID da conta no ANYMARKET"
                    },
                    "accountName": {
                      "type": "string",
                      "description": "Nome da conta no ANYMARKET"
                    },
                    "paymentStatus": {
                      "type": "string",
                      "description": "Status do pagamento da devolução"
                    },
                    "status": {
                      "description": "Status da devolução\n\n**NEW_RETURN**: Nova devolução<br>\n**WAITING_DELIVERY**: Retorno ao CD do seller<br>\n**WAITING_DELIVERY_MARKETPLACE**: Retorno ao CD do marketplace<br>\n**WAITING_CONFERENCE**: Aguardando conferência<br>\n**CHECKED**: Devolução conferida<br>\n**CANCELLED**: Devolução cancelada<br>\n**CONCLUDED**: Devolução concluída<br>\n**FAILED**: Devolução falhou<br>\n**EXPIRED**: Devolução expirou                  ",
                      "enum": [
                        "NEW_RETURN",
                        "WAITING_DELIVERY",
                        "WAITING_DELIVERY_MARKETPLACE",
                        "WAITING_CONFERENCE",
                        "CHECKED",
                        "CANCELLED",
                        "CONCLUDED",
                        "FAILED",
                        "EXPIRED"
                      ]
                    },
                    "reason": {
                      "type": "string",
                      "description": "Razão da devolução"
                    },
                    "type": {
                      "description": "Tipo de devolução",
                      "enum": [
                        "TOTAL",
                        "PARTIAL"
                      ]
                    },
                    "createdAt": {
                      "$ref": "#/components/schemas/dateTypeGMT"
                    },
                    "closedAt": {
                      "$ref": "#/components/schemas/dateTypeGMT"
                    },
                    "checkedAt": {
                      "$ref": "#/components/schemas/dateTypeGMT"
                    },
                    "updatedAt": {
                      "$ref": "#/components/schemas/dateTypeGMT"
                    },
                    "items": {
                      "type": "array",
                      "description": "Items devolvidos",
                      "items": {
                        "type": "object",
                        "required": [
                          "id",
                          "orderItemId",
                          "skuId",
                          "marketplaceSkuId",
                          "quantity"
                        ],
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "ID do item da devolução no ANYMARKET"
                          },
                          "orderItemId": {
                            "type": "integer",
                            "description": "Id do item no pedido gerado pelo ANYMARKET"
                          },
                          "title": {
                            "type": "string",
                            "description": "Título do produto"
                          },
                          "skuId": {
                            "type": "integer",
                            "description": "ID do SKU gerado pelo ANYMARKET"
                          },
                          "marketplaceSkuId": {
                            "type": "string",
                            "description": "Código do sku no marketplace",
                            "example": "MLB123456789, SKU_123"
                          },
                          "quantity": {
                            "type": "integer",
                            "description": "Quantidade do item"
                          }
                        }
                      }
                    },
                    "shipping": {
                      "type": "array",
                      "description": "Envio da devolução",
                      "items": {
                        "type": "object",
                        "required": [
                          "id",
                          "marketplaceShippingId",
                          "status",
                          "type",
                          "city",
                          "state",
                          "country",
                          "createdAt"
                        ],
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "ID do envio da devolução no ANYMARKET"
                          },
                          "marketplaceShippingId": {
                            "type": "string",
                            "description": "Código do envio no marketplace"
                          },
                          "status": {
                            "description": "Status do envio no marketplace\n\n**WAITING_CARRIER**: Aguardando envio<br>\n**TRANSIT_GOODS**: Em trânsito<br>\n**DELIVERED**: Devolução no CD<br>\n**NOT_DELIVERED**: Devolução não entregue no CD ",
                            "enum": [
                              "WAITING_CARRIER",
                              "TRANSIT_GOODS",
                              "DELIVERED",
                              "NOT_DELIVERED"
                            ]
                          },
                          "subStatus": {
                            "type": "string",
                            "description": "Substatus do envio no marketplace"
                          },
                          "trackingNumber": {
                            "type": "string",
                            "description": "Número de rastreio"
                          },
                          "estimatedDelivery": {
                            "$ref": "#/components/schemas/dateTypeGMT"
                          },
                          "transportServiceName": {
                            "type": "string",
                            "description": "Nome da transportadora"
                          },
                          "senderName": {
                            "type": "string",
                            "description": "Nome do responsável pelo envio"
                          },
                          "type": {
                            "type": "string",
                            "description": "Define o tipo do endereço de envio",
                            "example": "selling_address"
                          },
                          "addressLine": {
                            "type": "string",
                            "description": "Endereço completo do envio"
                          },
                          "streetName": {
                            "type": "string",
                            "description": "Rua"
                          },
                          "streetNumber": {
                            "type": "string",
                            "description": "Número"
                          },
                          "comment": {
                            "type": "string",
                            "description": "Complemento"
                          },
                          "zipCode": {
                            "type": "string",
                            "description": "Código Postal"
                          },
                          "city": {
                            "type": "string",
                            "description": "Cidade"
                          },
                          "state": {
                            "type": "string",
                            "description": "Estado"
                          },
                          "country": {
                            "type": "string",
                            "description": "País"
                          },
                          "neighborhood": {
                            "type": "string",
                            "description": "Bairro"
                          },
                          "destination": {
                            "type": "string",
                            "description": "Define o tipo de endereço do CD\n\n**SELLER_ADDRESS**: CD do seller<br>\n**WAREHOUSE**: CD do marketplace",
                            "enum": [
                              "SELLER_ADDRESS",
                              "WAREHOUSE"
                            ]
                          },
                          "municipality": {
                            "type": "string",
                            "description": "Município"
                          },
                          "createdAt": {
                            "$ref": "#/components/schemas/dateTypeGMT"
                          }
                        }
                      }
                    },
                    "history": {
                      "type": "array",
                      "description": "Histórico da devolução",
                      "items": {
                        "type": "object",
                        "required": [
                          "id",
                          "returnStatus",
                          "createdAt"
                        ],
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "Data da criação do envio da devolução"
                          },
                          "returnStatus": {
                            "description": "Status da devolução\n\n**NEW_RETURN**: Nova devolução<br>\n**WAITING_DELIVERY**: Retorno ao CD do seller<br>\n**WAITING_DELIVERY_MARKETPLACE**: Retorno ao CD do marketplace<br>\n**WAITING_CONFERENCE**: Aguardando conferência<br>\n**CHECKED**: Devolução conferida<br>\n**CANCELLED**: Devolução cancelada<br>\n**CONCLUDED**: Devolução concluída<br>\n**FAILED**: Devolução falhou<br>\n**EXPIRED**: Devolução expirou",
                            "enum": [
                              "NEW_RETURN",
                              "WAITING_DELIVERY",
                              "WAITING_CONFERENCE",
                              "CHECKED",
                              "CANCELLED",
                              "CONCLUDED",
                              "FAILED",
                              "EXPIRED",
                              "WAITING_DELIVERY_MARKETPLACE"
                            ]
                          },
                          "shippingStatus": {
                            "description": "Status da entrega da devolução\n\n**WAITING_CARRIER**: Aguardando envio<br>\n**TRANSIT_GOODS**: Em trânsito<br>\n**DELIVERED**: Devolução no CD<br>\n**NOT_DELIVERED**: Devolução não entregue no CD",
                            "enum": [
                              "WAITING_CARRIER",
                              "TRANSIT_GOODS",
                              "DELIVERED",
                              "NOT_DELIVERED"
                            ]
                          },
                          "shippingSubStatus": {
                            "type": "string",
                            "description": "Substatus da devolução"
                          },
                          "createdAt": {
                            "$ref": "#/components/schemas/dateTypeGMT"
                          }
                        }
                      }
                    },
                    "conference": {
                      "type": "object",
                      "description": "Dados de conferência da devolução",
                      "required": [
                        "status"
                      ],
                      "properties": {
                        "reasonDetails": {
                          "type": "string",
                          "description": "Detalhes do motivo da devolução"
                        },
                        "status": {
                          "enum": [
                            "RETURN_CHECK_OK",
                            "RETURN_CHECK_NOT_OK"
                          ],
                          "description": "Status da conferência da devolução"
                        },
                        "observations": {
                          "type": "string",
                          "description": "Observações na conferência da devolução"
                        },
                        "marketplaceReview": {
                          "type": "object",
                          "description": "Dados da revisão do marketplace",
                          "properties": {
                            "method": {
                              "type": "string",
                              "description": "Método da revisão"
                            },
                            "reviewStatus": {
                              "type": "string",
                              "description": "Status da revisão no marketplace"
                            },
                            "productCondition": {
                              "type": "string",
                              "description": "Condição do produto\n\n**saleable**: o produto está em boas condições para venda.<br>\n**discard**: o produto foi descartado.<br>\n**unsaleable**: o produto não está apto para venda.<br>\n**missing**: o produto não chegou para revisão."
                            },
                            "productDestination": {
                              "type": "string",
                              "description": "Destino do produto"
                            },
                            "benefited": {
                              "type": "string",
                              "description": "Beneficiário da revisão"
                            },
                            "reasonId": {
                              "type": "string",
                              "description": "Identificador do motivo da revisão\n\n**accepted**: o produto foi aceito.<br>\n**different_product**: produto diferente.<br>\n**discard**: produto descartado.<br>\n**misused**: produto mal usado.<br>\n**not_working**: o produto não funciona.<br>\n**incomplete**: produto incompleto.<br>\n**blocked**: produto bloqueado.<br>\n**open_box**: produto de caixa aberta.<br>\n**missing**: produto não encontrado.<br>\n**default**: nos casos em que a revisão não pôde ser gerada.<br>\n**null**: quando não há uma revisão."
                            },
                            "reviewedAt": {
                              "$ref": "#/components/schemas/dateTypeGMT",
                              "description": "Data da revisão"
                            }
                          }
                        }
                      }
                    },
                    "invoice": {
                      "type": "object",
                      "description": "Dados da nota fiscal da devolução",
                      "properties": {
                        "accessKey": {
                          "type": "string",
                          "description": "Chave de acesso da nota fiscal"
                        }
                      }
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "id": 1234,
                      "orderId": 123456789,
                      "oi": "123456789.",
                      "marketplace": "MERCADO_LIVRE",
                      "marketplaceOrderId": "2000001234567",
                      "marketplaceReturnId": "234567",
                      "marketplaceTypeId": "automatic",
                      "accountId": "123",
                      "accountName": "TESTUSER",
                      "paymentStatus": "APPROVED",
                      "status": "NEW_RETURN",
                      "reason": "Não é da cor, tamanho ou modelo que escolhi",
                      "type": "TOTAL",
                      "createdAt": "2024-08-30T11:26:00.000Z",
                      "closedAt": "2024-08-30T11:26:00.000Z",
                      "checkedAt": "2024-08-30T11:26:00.000Z",
                      "updatedAt": "2024-08-30T11:26:00.000Z",
                      "items": [
                        {
                          "id": 123,
                          "orderItemId": 234567890,
                          "title": "Boné",
                          "skuId": 34567890,
                          "marketplaceSkuId": "MLB123456789",
                          "quantity": 2
                        },
                        {
                          "id": 1234,
                          "orderItemId": 234567891,
                          "title": "Jaqueta",
                          "skuId": 34567891,
                          "marketplaceSkuId": "MLB1234567890",
                          "quantity": 2
                        }
                      ],
                      "shipping": [
                        {
                          "id": 1234,
                          "marketplaceShippingId": "123456789",
                          "status": "WAITING_CARRIER",
                          "subStatus": "READY_TO_PRINT",
                          "trackingNumber": "OY123456789BR",
                          "estimatedDelivery": "2024-08-31T11:26:00.000Z",
                          "transportServiceName": "Mercado Livre",
                          "senderName": "Test Test",
                          "type": "selling_address",
                          "addressLine": "XXXXXXX",
                          "streetName": "XXXXXXX",
                          "streetNumber": "XXXXXXX",
                          "comment": "XXXXXXX",
                          "zipCode": "06454000",
                          "city": "Barueri",
                          "state": "São Paulo",
                          "country": "Brasil",
                          "neighborhood": "Alphaville",
                          "destination": "seller_address",
                          "createdAt": "2024-08-30T11:26:00.000Z"
                        },
                        {
                          "id": 1235,
                          "marketplaceShippingId": "1234567890",
                          "status": "WAITING_CARRIER",
                          "subStatus": "READY_TO_PRINT",
                          "trackingNumber": "OY123456789BR",
                          "estimatedDelivery": "2024-08-31T11:26:00.000Z",
                          "transportServiceName": "Mercado Livre",
                          "senderName": "Test Test",
                          "type": "selling_address",
                          "addressLine": "XXXXXXX",
                          "streetName": "XXXXXXX",
                          "streetNumber": "XXXXXXX",
                          "comment": "XXXXXXX",
                          "zipCode": "06454000",
                          "city": "Barueri",
                          "state": "São Paulo",
                          "country": "Brasil",
                          "neighborhood": "Alphaville",
                          "destination": "warehouse",
                          "createdAt": "2024-08-30T11:26:00.000Z"
                        }
                      ],
                      "history": [
                        {
                          "id": 12345,
                          "returnStatus": "NEW_RETURN",
                          "shippingStatus": "WAITING_CARRIER",
                          "shippingSubStatus": "READY_TO_PRINT",
                          "createdAt": "2024-08-30T11:26:00.000Z"
                        }
                      ],
                      "conference": {
                        "reasonDetails": "string",
                        "status": "RETURN_CHECK_OK",
                        "observations": "string",
                        "marketplaceReview": {
                          "method": "triage",
                          "reviewStatus": "success",
                          "productCondition": "unsaleable",
                          "productDestination": "seller",
                          "benefited": "buyer",
                          "reasonId": "accepted",
                          "reviewedAt": "2024-08-27T14:58:21.978Z"
                        }
                      },
                      "invoice": {
                        "accessKey": "string"
                      }
                    }
                  },
                  "stoplight-Example 1": {
                    "value": {
                      "id": 75055,
                      "orderId": 179762155,
                      "oi": "259061958.",
                      "marketplace": "MERCADO_LIVRE",
                      "marketplaceOrderId": "2000006227480873",
                      "marketplaceReturnId": "27480873",
                      "marketplaceTypeId": "automatic",
                      "accountId": "47205",
                      "accountName": "TESTUSER1143557621",
                      "paymentStatus": "APPROVED",
                      "status": "NEW_RETURN",
                      "reason": "Não é da cor, tamanho ou modelo que escolhi",
                      "type": "TOTAL",
                      "createdAt": "2024-08-30T11:26:00.000Z",
                      "closedAt": "2024-08-30T11:26:00.000Z",
                      "checkedAt": "2024-08-30T11:26:00.000Z",
                      "updatedAt": "2024-08-30T11:26:00.000Z",
                      "items": [
                        {
                          "id": 75036,
                          "orderItemId": 209627092,
                          "title": "BonΘ H90 Logo (UNISSEX)",
                          "skuId": 95527728,
                          "marketplaceSkuId": "MLB4776746304",
                          "quantity": 2
                        },
                        {
                          "id": 75037,
                          "orderItemId": 209627093,
                          "title": "Jaqueta Hino Colômbia",
                          "skuId": 95527734,
                          "marketplaceSkuId": "MLB4776746582",
                          "quantity": 2
                        }
                      ],
                      "shipping": [
                        {
                          "id": 74995,
                          "marketplaceShippingId": "1",
                          "status": "WAITING_CARRIER",
                          "subStatus": "READY_TO_PRINT",
                          "trackingNumber": "OY123456789BR",
                          "estimatedDelivery": "2024-08-31T11:26:00.000Z",
                          "transportServiceName": "Mercado Livre",
                          "senderName": "Test Test",
                          "type": "selling_address",
                          "addressLine": "XXXXXXX",
                          "streetName": "XXXXXXX",
                          "streetNumber": "XXXXXXX",
                          "comment": "XXXXXXX",
                          "zipCode": "06454000",
                          "city": "Barueri",
                          "state": "São Paulo",
                          "country": "Brasil",
                          "neighborhood": "Alphaville Centro Industrial e Empresarial/Alphaville",
                          "destination": "seller_address",
                          "createdAt": "2024-08-30T11:26:00.000Z"
                        }
                      ],
                      "history": [
                        {
                          "id": 386651,
                          "returnStatus": "NEW_RETURN",
                          "shippingStatus": "WAITING_CARRIER",
                          "shippingSubStatus": "READY_TO_PRINT",
                          "createdAt": "2024-08-30T11:26:00.000Z"
                        }
                      ],
                      "conference": {
                        "reasonDetails": "string",
                        "status": "RETURN_CHECK_OK",
                        "observations": "string",
                        "marketplaceReview": {
                          "method": "triage",
                          "reviewStatus": "success",
                          "productCondition": "unsaleable",
                          "productDestination": "seller",
                          "benefited": "buyer",
                          "reasonId": "accepted",
                          "reviewedAt": "2024-08-27T14:58:21.978Z"
                        }
                      },
                      "invoice": {
                        "accessKey": "43240830111222333444550010001234567891234567890"
                      }
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "description": "Código da mensagem de erro "
                    },
                    "message": {
                      "type": "string",
                      "description": "Mensagem de Erro"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "code": "string",
                      "message": "string"
                    }
                  },
                  "stoplight-Example 1": {
                    "value": {
                      "code": "string",
                      "message": "string"
                    }
                  }
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "description": "Código da mensagem de erro "
                    },
                    "message": {
                      "type": "string",
                      "description": "Mensagem de Erro"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "code": "string",
                      "message": "string"
                    }
                  },
                  "stoplight-Example 1": {
                    "value": {
                      "code": "string",
                      "message": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "get-orders-returns-id",
        "description": "# Consulta os detalhes de uma Devolução\r\nConsulta os detalhes de uma devolução de pedido",
        "parameters": []
      },
      "patch": {
        "summary": "/orders/{orderId}/returns/{id}",
        "tags": [
          "Devolução"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": [
                    "id",
                    "orderId",
                    "oi",
                    "marketplace"
                  ],
                  "properties": {
                    "id": {
                      "type": "integer",
                      "description": "ID da Devolução"
                    },
                    "orderId": {
                      "type": "integer",
                      "description": "ID do Pedido no ANYMARKET"
                    },
                    "oi": {
                      "type": "string"
                    },
                    "marketplace": {
                      "$ref": "#/components/schemas/EnumMarketplaces"
                    },
                    "type": {
                      "description": "Tipo de devolução",
                      "enum": [
                        "TOTAL",
                        "PARTIAL"
                      ]
                    },
                    "marketplaceOrderId": {
                      "type": "string",
                      "description": "ID público do pedido no marketplace"
                    },
                    "marketplaceReturnId": {
                      "type": "string",
                      "description": "ID público da devolução no marketplace"
                    },
                    "marketplaceTypeId": {
                      "type": "string",
                      "description": "Tipo de devolução no marketplace"
                    },
                    "accountId": {
                      "type": "string",
                      "description": "ID da conta gerado automático pelo ANYMARKET"
                    },
                    "accountName": {
                      "type": "string",
                      "description": "Identificador da conta do Marketplace"
                    },
                    "paymentStatus": {
                      "type": "string",
                      "description": "Status do pagamento da devolução"
                    },
                    "status": {
                      "description": "Status da devolução\n\n**NEW_RETURN**: Nova devolução<br>\n**WAITING_DELIVERY**: Retorno ao CD<br>\n**WAITING_CONFERENCE**: Aguardando conferência<br>\n**CHECKED**: Devolução conferida<br>\n**CANCELLED**: Devolução cancelada<br>\n**CONCLUDED**: Devolução concluída<br>\n**FAILED**: Devolução falhou<br>\n**EXPIRED**: Devolução expirou",
                      "enum": [
                        "NEW_RETURN",
                        "WAITING_DELIVERY",
                        "WAITING_CONFERENCE",
                        "CHECKED",
                        "CANCELLED",
                        "CONCLUDED",
                        "FAILED",
                        "EXPIRED"
                      ]
                    },
                    "reason": {
                      "type": "string",
                      "description": "Razão da devolução"
                    },
                    "closedAt": {
                      "type": "string",
                      "description": "Data prevista para o encerramento da devolução"
                    },
                    "checkedAt": {
                      "type": "string",
                      "description": "Data que a devolução foi conferida"
                    },
                    "createdAt": {
                      "type": "string",
                      "description": "Data da criação da devolução"
                    },
                    "updatedAt": {
                      "type": "string",
                      "description": "Data da última atualização"
                    },
                    "items": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "required": [
                          "id",
                          "orderItemId"
                        ],
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "ID do item da devolução"
                          },
                          "orderItemId": {
                            "type": "integer",
                            "description": "ID do item da devolução"
                          },
                          "title": {
                            "type": "string",
                            "description": "Título do produto"
                          },
                          "skuId": {
                            "type": "integer",
                            "description": "ID do SKU gerado pelo ANYMARKET"
                          },
                          "marketplaceSkuId": {
                            "type": "string",
                            "description": "Código do sku no marketplace"
                          },
                          "quantity": {
                            "type": "integer",
                            "description": "Quantidade do item"
                          }
                        }
                      }
                    },
                    "shipping": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "required": [
                          "id",
                          "marketplaceShippingId",
                          "status",
                          "trackingNumber",
                          "estimatedDelivery",
                          "type",
                          "createdAt"
                        ],
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "ID do item da entrega da devolução"
                          },
                          "marketplaceShippingId": {
                            "type": "string",
                            "description": "Código do envio no marketplace"
                          },
                          "status": {
                            "description": "Status do envio no marketplace\n\n**WAITING_CARRIER**: Aguardando envio<br>\n**TRANSIT_GOODS**: Em trânsito<br>\n**DELIVERED**: Devolução no CD<br>\n**NOT_DELIVERED**: Devolução não entregue no CD ",
                            "enum": [
                              "WAITING_CARRIER",
                              "TRANSIT_GOODS",
                              "DELIVERED",
                              "NOT_DELIVERED"
                            ]
                          },
                          "subStatus": {
                            "type": "string",
                            "description": "Substatus do envio no marketplace"
                          },
                          "trackingNumber": {
                            "type": "string",
                            "description": "Número de rastreio"
                          },
                          "estimatedDelivery": {
                            "type": "string",
                            "description": "Data estimada (Necessário informar o fuso horario)"
                          },
                          "transportServiceName": {
                            "type": "string",
                            "description": "Nome da transportadora"
                          },
                          "senderName": {
                            "type": "string",
                            "description": "Nome do responsável pelo envio"
                          },
                          "type": {
                            "type": "string",
                            "description": "Define o tipo do endereço de envio"
                          },
                          "addressLine": {
                            "type": "string",
                            "description": "Endereço completo do envio"
                          },
                          "streetName": {
                            "type": "string",
                            "description": "Rua"
                          },
                          "streetNumber": {
                            "type": "string",
                            "description": "Número"
                          },
                          "comment": {
                            "type": "string",
                            "description": "Complemento"
                          },
                          "zipCode": {
                            "type": "string",
                            "description": "Código Postal"
                          },
                          "city": {
                            "type": "string",
                            "description": "Cidade"
                          },
                          "state": {
                            "type": "string",
                            "description": "Estado"
                          },
                          "country": {
                            "type": "string",
                            "description": "País"
                          },
                          "neighborhood": {
                            "type": "string",
                            "description": "Bairro"
                          },
                          "municipality": {
                            "type": "string",
                            "description": "Cidade ou Distrito"
                          },
                          "destination": {
                            "type": "string",
                            "description": "Endereço do vendedor ou do depósito"
                          },
                          "createdAt": {
                            "type": "string",
                            "description": "Data da criação do envio da devolução"
                          }
                        }
                      }
                    },
                    "history": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "required": [
                          "id",
                          "returnStatus",
                          "shippingSubStatus",
                          "shippingStatus",
                          "createdAt"
                        ],
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "ID do histórico da devolução gerado pelo ANYMARKET"
                          },
                          "returnStatus": {
                            "description": "Status da devolução\n\n**NEW_RETURN**: Nova devolução<br>\n**WAITING_DELIVERY**: Retorno ao CD<br>\n**WAITING_CONFERENCE**: Aguardando conferência<br>\n**CHECKED**: Devolução conferida<br>\n**CANCELLED**: Devolução cancelada<br>\n**CONCLUDED**: Devolução concluída<br>\n**FAILED**: Devolução falhou<br>\n**EXPIRED**: Devolução expirou",
                            "enum": [
                              "NEW_RETURN",
                              "WAITING_DELIVERY",
                              "WAITING_CONFERENCE",
                              "CHECKED",
                              "CANCELLED",
                              "CONCLUDED",
                              "FAILED",
                              "EXPIRED"
                            ]
                          },
                          "shippingSubStatus": {
                            "type": "string",
                            "description": "Substatus da devolução"
                          },
                          "shippingStatus": {
                            "description": "Status da entrega da devolução\n\n**WAITING_CARRIER**: Aguardando envio<br>\n**TRANSIT_GOODS**: Em trânsito<br>\n**DELIVERED**: Devolução no CD<br>\n**NOT_DELIVERED**: Devolução não entregue no CD",
                            "enum": [
                              "WAITING_CARRIER",
                              "TRANSIT_GOODS",
                              "DELIVERED",
                              "NOT_DELIVERED"
                            ]
                          },
                          "createdAt": {
                            "type": "string",
                            "description": "Data da criação do histórico da devolução"
                          }
                        }
                      }
                    },
                    "conference": {
                      "type": "object",
                      "required": [
                        "status"
                      ],
                      "properties": {
                        "reasonDetails": {
                          "type": "string",
                          "description": "Detalhes do motivo da devolução"
                        },
                        "status": {
                          "enum": [
                            "RETURN_CHECK_OK",
                            "RETURN_CHECK_NOT_OK"
                          ],
                          "description": "Status da conferência da devolução"
                        },
                        "observations": {
                          "type": "string",
                          "description": "Observações"
                        }
                      }
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "id": 0,
                      "orderId": 0,
                      "oi": "string",
                      "marketplace": "string",
                      "type": "string",
                      "marketplaceOrderId": "string",
                      "marketplaceReturnId": "string",
                      "marketplaceTypeId": "string",
                      "accountId": "string",
                      "accountName": "string",
                      "paymentStatus": "string",
                      "status": "CHECKED",
                      "reason": "string",
                      "closedAt": "string",
                      "checkedAt": "string",
                      "createdAt": "string",
                      "updatedAt": "string",
                      "items": [
                        {
                          "id": 0,
                          "orderItemId": 0,
                          "title": "string",
                          "skuId": 0,
                          "marketplaceSkuId": "string",
                          "quantity": 0
                        }
                      ],
                      "shipping": [
                        {
                          "id": 0,
                          "marketplaceShippingId": "string",
                          "status": "string",
                          "subStatus": "string",
                          "trackingNumber": "string",
                          "estimatedDelivery": "string",
                          "transportServiceName": "string",
                          "senderName": "string",
                          "type": "string",
                          "addressLine": "string",
                          "streetName": "string",
                          "streetNumber": "string",
                          "comment": "string",
                          "zipCode": "string",
                          "city": "string",
                          "state": "string",
                          "country": "string",
                          "neighborhood": "string",
                          "municipality": "string",
                          "destination": "string",
                          "createdAt": "string"
                        }
                      ],
                      "history": [
                        {
                          "id": 0,
                          "returnStatus": "string",
                          "shippingSubStatus": "string",
                          "shippingStatus": "string",
                          "createdAt": "string"
                        }
                      ],
                      "conference": {
                        "reasonDetails": "string",
                        "status": "RETURN_CHECK_OK",
                        "observations": "string"
                      }
                    }
                  },
                  "stoplight-Example 1": {
                    "value": {
                      "id": 0,
                      "orderId": 0,
                      "oi": "string",
                      "marketplace": "string",
                      "type": "string",
                      "marketplaceOrderId": "string",
                      "marketplaceReturnId": "string",
                      "marketplaceTypeId": "string",
                      "accountId": "string",
                      "accountName": "string",
                      "paymentStatus": "string",
                      "status": "string",
                      "reason": "string",
                      "closedAt": "string",
                      "checkedAt": "string",
                      "createdAt": "string",
                      "updatedAt": "string",
                      "items": [
                        {
                          "id": 0,
                          "orderItemId": 0,
                          "title": "string",
                          "skuId": 0,
                          "marketplaceSkuId": "string",
                          "quantity": 0
                        }
                      ],
                      "shipping": [
                        {
                          "id": 0,
                          "marketplaceShippingId": "string",
                          "status": "string",
                          "subStatus": "string",
                          "trackingNumber": "string",
                          "estimatedDelivery": "string",
                          "transportServiceName": "string",
                          "senderName": "string",
                          "type": "string",
                          "addressLine": "string",
                          "streetName": "string",
                          "streetNumber": "string",
                          "comment": "string",
                          "zipCode": "string",
                          "city": "string",
                          "state": "string",
                          "country": "string",
                          "neighborhood": "string",
                          "municipality": "string",
                          "destination": "string",
                          "createdAt": "string"
                        }
                      ],
                      "history": [
                        {
                          "id": 0,
                          "returnStatus": "string",
                          "shippingSubStatus": "string",
                          "shippingStatus": "string",
                          "createdAt": "string"
                        }
                      ],
                      "conference": {
                        "reasonDetails": "string",
                        "status": "RETURN_CHECK_OK",
                        "observations": "string"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": [
                    "code",
                    "message"
                  ],
                  "properties": {
                    "code": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "code": "string",
                      "message": "string"
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "code": "string",
                      "message": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "patch-orders-returns-id",
        "description": "# Marcar a devolução como conferida\nMarcar a devolução como conferida\n\n> O método `PATCH` permite atualizar apenas os campos desejados de um recurso.\n>\n> Campos não enviados permanecem com os valores atuais.\n>\n> Recomendado quando há campos opcionais e você deseja atualizar apenas parte das informações.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "status"
                ],
                "properties": {
                  "status": {
                    "type": "string"
                  },
                  "conference": {
                    "type": "object",
                    "required": [
                      "status"
                    ],
                    "properties": {
                      "reasonDetails": {
                        "type": "string"
                      },
                      "status": {
                        "enum": [
                          "RETURN_CHECK_OK",
                          "RETURN_CHECK_NOT_OK"
                        ]
                      },
                      "observations": {
                        "type": "string"
                      }
                    }
                  }
                }
              },
              "examples": {
                "Example 2": {
                  "value": {
                    "status": "CHECKED",
                    "conference": {
                      "reasonDetails": "string",
                      "status": "RETURN_CHECK_OK",
                      "observations": "string"
                    }
                  }
                },
                "Example 1": {
                  "value": {
                    "status": "CHECKED",
                    "conference": {
                      "reasonDetails": "string",
                      "status": "RETURN_CHECK_OK",
                      "observations": "string"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/orders/{id}/returns": {
      "parameters": [
        {
          "schema": {
            "type": "string"
          },
          "name": "id",
          "in": "path",
          "required": true,
          "description": "ID do Pedido no ANYMARKET"
        }
      ],
      "get": {
        "summary": "/orders/{id}/returns",
        "tags": [
          "Devolução"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": [
                    "content"
                  ],
                  "properties": {
                    "links": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "rel": {
                            "type": "string"
                          },
                          "href": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "content": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "required": [
                          "id",
                          "orderId",
                          "marketplace",
                          "marketplaceOrderId",
                          "marketplaceReturnId",
                          "marketplaceTypeId",
                          "paymentStatus",
                          "status",
                          "reason",
                          "items",
                          "history"
                        ],
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "ID da devolução"
                          },
                          "orderId": {
                            "type": "integer",
                            "description": "ID do pedido gerado pelo ANYMARKET"
                          },
                          "oi": {
                            "type": "string"
                          },
                          "marketplace": {
                            "$ref": "#/components/schemas/EnumMarketplaces"
                          },
                          "type": {
                            "description": "Tipo de devolução",
                            "enum": [
                              "TOTAL",
                              "PARTIAL"
                            ]
                          },
                          "marketplaceOrderId": {
                            "type": "string",
                            "description": "ID público do pedido no marketplace"
                          },
                          "marketplaceReturnId": {
                            "type": "string",
                            "description": "ID público da devolução no marketplace"
                          },
                          "marketplaceTypeId": {
                            "type": "string",
                            "description": "Tipo de devolução no marketplace"
                          },
                          "accountId": {
                            "type": "string",
                            "description": "ID da conta gerado automático pelo ANYMARKET"
                          },
                          "accountName": {
                            "type": "string",
                            "description": "Identificador da conta do Marketplace"
                          },
                          "paymentStatus": {
                            "type": "string",
                            "description": "Status do pagamento da devolução"
                          },
                          "status": {
                            "description": "Status da devolução\n\n**NEW_RETURN**: Nova devolução<br>\n**WAITING_DELIVERY**: Retorno ao CD do seller<br>\n**WAITING_DELIVERY_MARKETPLACE**: Retorno ao CD do marketplace<br>\n**WAITING_CONFERENCE**: Aguardando conferência<br>\n**CHECKED**: Devolução conferida<br>\n**CANCELLED**: Devolução cancelada<br>\n**CONCLUDED**: Devolução concluída<br>\n**FAILED**: Devolução falhou<br>\n**EXPIRED**: Devolução expirou",
                            "enum": [
                              "NEW_RETURN",
                              "WAITING_DELIVERY",
                              "WAITING_DELIVERY_MARKETPLACE",
                              "WAITING_CONFERENCE",
                              "CHECKED",
                              "CANCELLED",
                              "CONCLUDED",
                              "FAILED",
                              "EXPIRED"
                            ]
                          },
                          "reason": {
                            "type": "string",
                            "description": "Razão da devolução"
                          },
                          "createdAt": {
                            "type": "string",
                            "description": "Data da criação da devolução"
                          },
                          "updatedAt": {
                            "type": "string",
                            "description": "Data da última atualização"
                          },
                          "closedAt": {
                            "type": "string",
                            "description": "Data prevista para o encerramento da devolução"
                          },
                          "checkedAt": {
                            "type": "string",
                            "description": "Data que a devolução foi conferida"
                          },
                          "items": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "required": [
                                "id",
                                "orderItemId"
                              ],
                              "properties": {
                                "id": {
                                  "type": "integer",
                                  "description": "ID do item da devolução"
                                },
                                "orderItemId": {
                                  "type": "integer",
                                  "description": "Id do item no pedido gerado pelo ANYMARKET"
                                },
                                "title": {
                                  "type": "string",
                                  "description": "Título do produto"
                                },
                                "skuId": {
                                  "type": "integer",
                                  "description": "ID do SKU gerado pelo ANYMARKET"
                                },
                                "marketplaceSkuId": {
                                  "type": "string",
                                  "description": "Código do sku no marketplace"
                                },
                                "quantity": {
                                  "type": "integer",
                                  "description": "Quantidade do item"
                                }
                              }
                            }
                          },
                          "shipping": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "required": [
                                "id",
                                "marketplaceShippingId",
                                "status",
                                "trackingNumber",
                                "estimatedDelivery",
                                "type",
                                "createdAt"
                              ],
                              "properties": {
                                "id": {
                                  "type": "integer",
                                  "description": "ID do item da entrega da devolução"
                                },
                                "marketplaceShippingId": {
                                  "type": "string",
                                  "description": "Código do envio no marketplace"
                                },
                                "status": {
                                  "description": "Status do envio no marketplace\n\n**WAITING_CARRIER**: Aguardando envio<br>\n**TRANSIT_GOODS**: Em trânsito<br>\n**DELIVERED**: Devolução no CD<br>\n**NOT_DELIVERED**: Devolução não entregue no CD ",
                                  "enum": [
                                    "WAITING_CARRIER",
                                    "TRANSIT_GOODS",
                                    "DELIVERED",
                                    "NOT_DELIVERED"
                                  ]
                                },
                                "subStatus": {
                                  "type": "string",
                                  "description": "Substatus do envio no marketplace"
                                },
                                "trackingNumber": {
                                  "type": "string",
                                  "description": "Número de rastreio"
                                },
                                "estimatedDelivery": {
                                  "type": "string",
                                  "description": "Data estimada (Necessário informar o fuso horario)"
                                },
                                "transportServiceName": {
                                  "type": "string",
                                  "description": "Nome da transportadora"
                                },
                                "senderName": {
                                  "type": "string",
                                  "description": "Nome do responsável pelo envio"
                                },
                                "type": {
                                  "type": "string",
                                  "description": "Define o tipo do endereço de envio"
                                },
                                "addressLine": {
                                  "type": "string",
                                  "description": "Endereço completo do envio"
                                },
                                "streetName": {
                                  "type": "string",
                                  "description": "Rua"
                                },
                                "streetNumber": {
                                  "type": "string",
                                  "description": "Número"
                                },
                                "comment": {
                                  "type": "string",
                                  "description": "Complemento"
                                },
                                "zipCode": {
                                  "type": "string",
                                  "description": "Código Postal"
                                },
                                "city": {
                                  "type": "string",
                                  "description": "Cidade"
                                },
                                "state": {
                                  "type": "string",
                                  "description": "Estado"
                                },
                                "country": {
                                  "type": "string",
                                  "description": "País "
                                },
                                "neighborhood": {
                                  "type": "string",
                                  "description": "Bairro"
                                },
                                "municipality": {
                                  "type": "string",
                                  "description": "Cidade ou Distrito"
                                },
                                "destination": {
                                  "type": "string",
                                  "enum": [
                                    "SELLER_ADDRESS",
                                    "WAREHOUSE"
                                  ],
                                  "description": "Define o tipo de endereço do CD\n\n**SELLER_ADDRESS**: CD do seller<br>\n**WAREHOUSE**: CD do marketplace"
                                },
                                "createdAt": {
                                  "type": "string",
                                  "description": "Data da criação do envio da devolução"
                                }
                              }
                            }
                          },
                          "history": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "required": [
                                "id",
                                "returnStatus",
                                "shippingStatus",
                                "createdAt"
                              ],
                              "properties": {
                                "id": {
                                  "type": "integer",
                                  "description": "ID do histórico da devolução gerado pelo ANYMARKET"
                                },
                                "returnStatus": {
                                  "description": "Status da devolução\n\n**NEW_RETURN**: Nova devolução<br>\n**WAITING_DELIVERY**: Retorno ao CD do seller<br>\n**WAITING_DELIVERY_MARKETPLACE**: Retorno ao CD do marketplace<br>\n**WAITING_CONFERENCE**: Aguardando conferência<br>\n**CHECKED**: Devolução conferida<br>\n**CANCELLED**: Devolução cancelada<br>\n**CONCLUDED**: Devolução concluída<br>\n**FAILED**: Devolução falhou<br>\n**EXPIRED**: Devolução expirou",
                                  "enum": [
                                    "NEW_RETURN",
                                    "WAITING_DELIVERY",
                                    "WAITING_CONFERENCE",
                                    "CHECKED",
                                    "CANCELLED",
                                    "CONCLUDED",
                                    "FAILED",
                                    "EXPIRED",
                                    "WAITING_DELIVERY_MARKETPLACE"
                                  ]
                                },
                                "shippingStatus": {
                                  "description": "Status da entrega da devolução\n\n**WAITING_CARRIER**: Aguardando envio<br>\n**TRANSIT_GOODS**: Em trânsito<br>\n**DELIVERED**: Devolução no CD<br>\n**NOT_DELIVERED**: Devolução não entregue no CD",
                                  "enum": [
                                    "WAITING_CARRIER",
                                    "TRANSIT_GOODS",
                                    "DELIVERED",
                                    "NOT_DELIVERED"
                                  ]
                                },
                                "shippingSubStatus": {
                                  "type": "string"
                                },
                                "createdAt": {
                                  "type": "string",
                                  "description": "Data da criação do histórico da devolução"
                                }
                              }
                            }
                          },
                          "conference": {
                            "type": "object",
                            "description": "Dados de conferência da devolução",
                            "required": [
                              "status"
                            ],
                            "properties": {
                              "reasonDetails": {
                                "type": "string",
                                "description": "Detalhes do motivo da devolução"
                              },
                              "status": {
                                "enum": [
                                  "RETURN_CHECK_OK",
                                  "RETURN_CHECK_NOT_OK"
                                ],
                                "description": "Status da conferência da devolução"
                              },
                              "observations": {
                                "type": "string",
                                "description": "Observações na conferência da devolução"
                              },
                              "marketplaceReview": {
                                "type": "object",
                                "description": "Revisão da devolução pelo marketplace",
                                "properties": {
                                  "method": {
                                    "type": "string",
                                    "description": "Método de revisão"
                                  },
                                  "reviewStatus": {
                                    "type": "string",
                                    "description": "Status da revisão do marketplace"
                                  },
                                  "productCondition": {
                                    "type": "string",
                                    "description": "Condição do produto na revisão"
                                  },
                                  "productDestination": {
                                    "type": "string",
                                    "description": "Destino do produto após revisão"
                                  },
                                  "benefited": {
                                    "type": "string",
                                    "description": "Beneficiado na revisão"
                                  },
                                  "reasonId": {
                                    "type": "string",
                                    "description": "ID do motivo da revisão"
                                  },
                                  "reviewedAt": {
                                    "type": "string",
                                    "description": "Data da revisão"
                                  }
                                }
                              }
                            }
                          },
                          "invoice": {
                            "type": "object",
                            "description": "Dados da nota fiscal da devolução",
                            "properties": {
                              "accessKey": {
                                "type": "string",
                                "description": "Chave de acesso da nota fiscal"
                              }
                            }
                          }
                        }
                      }
                    },
                    "page": {
                      "type": "object",
                      "properties": {
                        "size": {
                          "type": "integer"
                        },
                        "totalElements": {
                          "type": "integer"
                        },
                        "totalPages": {
                          "type": "integer"
                        },
                        "number": {
                          "type": "integer"
                        }
                      }
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "links": [
                        {
                          "rel": "string",
                          "href": "string"
                        }
                      ],
                      "content": [
                        {
                          "id": 0,
                          "orderId": 0,
                          "oi": "string",
                          "marketplace": "string",
                          "type": "string",
                          "marketplaceOrderId": "string",
                          "marketplaceReturnId": "string",
                          "marketplaceTypeId": "string",
                          "accountId": "string",
                          "accountName": "string",
                          "paymentStatus": "string",
                          "status": "string",
                          "reason": "string",
                          "createdAt": "string",
                          "updatedAt": "string",
                          "closedAt": "string",
                          "checkedAt": "string",
                          "items": [
                            {
                              "id": 0,
                              "orderItemId": 0,
                              "title": "string",
                              "skuId": 0,
                              "marketplaceSkuId": "string",
                              "quantity": 0
                            }
                          ],
                          "shipping": [
                            {
                              "id": 0,
                              "marketplaceShippingId": "string",
                              "status": "string",
                              "subStatus": "string",
                              "trackingNumber": "string",
                              "estimatedDelivery": "string",
                              "transportServiceName": "string",
                              "senderName": "string",
                              "type": "string",
                              "addressLine": "string",
                              "streetName": "string",
                              "streetNumber": "string",
                              "comment": "string",
                              "zipCode": "string",
                              "city": "string",
                              "state": "string",
                              "country": "string",
                              "neighborhood": "string",
                              "municipality": "string",
                              "destination": "seller_address",
                              "createdAt": "string"
                            },
                            {
                              "id": 0,
                              "marketplaceShippingId": "string",
                              "status": "string",
                              "subStatus": "string",
                              "trackingNumber": "string",
                              "estimatedDelivery": "string",
                              "transportServiceName": "string",
                              "senderName": "string",
                              "type": "string",
                              "addressLine": "string",
                              "streetName": "string",
                              "streetNumber": "string",
                              "comment": "string",
                              "zipCode": "string",
                              "city": "string",
                              "state": "string",
                              "country": "string",
                              "neighborhood": "string",
                              "municipality": "string",
                              "destination": "warehouse",
                              "createdAt": "string"
                            }
                          ],
                          "history": [
                            {
                              "id": 0,
                              "returnStatus": "string",
                              "shippingStatus": "string",
                              "shippingSubStatus": "string",
                              "createdAt": "string"
                            }
                          ],
                          "conference": {
                            "reasonDetails": "string",
                            "status": "RETURN_CHECK_OK",
                            "observations": "string",
                            "marketplaceReview": {
                              "method": "string",
                              "reviewStatus": "string",
                              "productCondition": "string",
                              "productDestination": "string",
                              "benefited": "string",
                              "reasonId": "string",
                              "reviewedAt": "string"
                            }
                          },
                          "invoice": {
                            "accessKey": "string"
                          }
                        }
                      ],
                      "page": {
                        "size": 0,
                        "totalElements": 0,
                        "totalPages": 0,
                        "number": 0
                      }
                    }
                  },
                  "stoplight-Example 1": {
                    "value": {
                      "links": [
                        {
                          "rel": "next",
                          "href": "http://api.anymarket.com.br/v2/orders/164084149/return?offset=5"
                        }
                      ],
                      "content": [
                        {
                          "id": 74,
                          "orderId": 164084149,
                          "oi": "22449504.",
                          "marketplace": "ECOMMERCE",
                          "marketplaceOrderId": "1",
                          "marketplaceReturnId": "1",
                          "marketplaceTypeId": "claim",
                          "accountId": "12641",
                          "accountName": "ECOMMERCE",
                          "paymentStatus": "retained",
                          "status": "opened",
                          "reason": "PDD9946",
                          "createdAt": "2024-05-14T17:14:24.913Z",
                          "updatedAt": "2024-05-14T17:14:24.913Z"
                        },
                        {
                          "id": 75,
                          "orderId": 164084149,
                          "oi": "22449504.",
                          "marketplace": "ECOMMERCE",
                          "marketplaceOrderId": "giovani-27",
                          "marketplaceReturnId": "giovani-27-return",
                          "marketplaceTypeId": "1",
                          "accountId": "1",
                          "accountName": "Loja do Giovani",
                          "paymentStatus": "APPROVED",
                          "status": "SHIPPED",
                          "reason": "OTHER_MOTIVE",
                          "closedAt": "2023-09-22T14:32:11.544Z",
                          "createdAt": "2023-09-22T14:32:11.544Z",
                          "updatedAt": "2023-09-22T14:32:11.544Z",
                          "items": [
                            {
                              "id": 56,
                              "orderItemId": 191248906,
                              "title": "Title Item",
                              "skuId": 51786368,
                              "marketplaceSkuId": "sku-do-giovani",
                              "quantity": 1
                            }
                          ],
                          "shipping": [
                            {
                              "id": 56,
                              "marketplaceShippingId": "1",
                              "status": "READY_TO_SHIP",
                              "subStatus": "READY_TO_PRINT",
                              "trackingNumber": "Tracking Number",
                              "estimatedDelivery": "2023-09-22T14:32:11.544Z",
                              "transportServiceName": "Transport Service Name",
                              "senderName": "Sender Name",
                              "type": "Type",
                              "addressLine": "Address Line",
                              "streetName": "Street Name",
                              "streetNumber": "Street Number",
                              "comment": "Comment",
                              "zipCode": "Zip Code",
                              "city": "City",
                              "state": "State",
                              "country": "Country",
                              "neighborhood": "Neighborhood",
                              "municipality": "Municipality",
                              "destination": "Destination",
                              "createdAt": "2023-09-22T14:32:11.544Z"
                            }
                          ],
                          "history": [
                            {
                              "id": 59,
                              "returnStatus": "OPENED",
                              "shippingStatus": "READY_TO_SHIP",
                              "shippingSubStatus": "READY_TO_PRINT",
                              "createdAt": "2023-09-22T14:32:11.544Z"
                            }
                          ],
                          "conference": [
                            {
                              "reasonDetails": "Reason",
                              "status": "RETURN_CHECK_OK",
                              "observations": null,
                              "marketplaceReview": {
                                "method": "string",
                                "reviewStatus": "string",
                                "productCondition": "string",
                                "productDestination": "string",
                                "benefited": "string",
                                "reasonId": "string",
                                "reviewedAt": "2024-08-30T11:26:00.000Z"
                              }
                            }
                          ],
                          "invoice": {
                            "accessKey": "string"
                          }
                        }
                      ],
                      "page": {
                        "size": 5,
                        "totalElements": 2,
                        "totalPages": 1,
                        "number": 1
                      }
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "description": "Código da mensagem de erro "
                    },
                    "message": {
                      "type": "string",
                      "description": "Mensagem de Erro"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "code": "string",
                      "message": "string"
                    }
                  },
                  "stoplight-Example 1": {
                    "value": {
                      "code": "string",
                      "message": "string"
                    }
                  }
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "description": "Código da mensagem de erro "
                    },
                    "message": {
                      "type": "string",
                      "description": "Mensagem de Erro"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "code": "string",
                      "message": "string"
                    }
                  },
                  "stoplight-Example 1": {
                    "value": {
                      "code": "string",
                      "message": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "get-orders-id-returns",
        "description": "# Consulta as devoluções de um determinado pedido\r\nConsulta as devoluções de um determinado pedido",
        "requestBody": {
          "description": "",
          "content": {}
        }
      },
      "post": {
        "summary": "/orders/{id}/returns",
        "tags": [
          "Devolução"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": [
                    "id",
                    "orderId",
                    "marketplace",
                    "marketplaceOrderId",
                    "marketplaceReturnId",
                    "marketplaceTypeId",
                    "accountId",
                    "status",
                    "reason",
                    "type",
                    "createdAt",
                    "items",
                    "history"
                  ],
                  "properties": {
                    "id": {
                      "type": "integer",
                      "description": "ID da devolução"
                    },
                    "orderId": {
                      "type": "integer",
                      "description": "ID do pedido gerado pelo ANYMARKET"
                    },
                    "oi": {
                      "type": "string"
                    },
                    "marketplace": {
                      "$ref": "#/components/schemas/EnumMarketplaces"
                    },
                    "marketplaceOrderId": {
                      "type": "string",
                      "description": "Id da venda no canal marketplace"
                    },
                    "marketplaceReturnId": {
                      "type": "string",
                      "description": "Id devolução"
                    },
                    "marketplaceTypeId": {
                      "type": "string",
                      "description": "Tipo de devolução no marketplace",
                      "example": "automatic, calim, dispute"
                    },
                    "accountId": {
                      "type": "string",
                      "description": "Identificador da conta marketplace da venda "
                    },
                    "accountName": {
                      "type": "string",
                      "description": "Nome da conta marketplace da venda"
                    },
                    "paymentStatus": {
                      "type": "string",
                      "description": "Status do pagamento da devolução"
                    },
                    "status": {
                      "description": "Status normalizados para o canal de venda:\n\n**NEW_RETURN**: Nova devolução<br>\n**WAITING_DELIVERY**: Retorno ao CD do seller<br>\n**WAITING_DELIVERY_MARKETPLACE**: Retorno ao CD do marketplace<br>\n**WAITING_CONFERENCE**: Aguardando conferência<br>\n**CHECKED**: Devolução conferida<br>\n**CANCELLED**: Devolução cancelada<br>\n**CONCLUDED**: Devolução concluída<br>\n**FAILED**: Devolução falhou<br>\n**EXPIRED**: Devolução expirou ",
                      "enum": [
                        "NEW_RETURN",
                        "WAITING_DELIVERY",
                        "WAITING_DELIVERY_MARKETPLACE",
                        "WAITING_CONFERENCE",
                        "CHECKED",
                        "CONCLUDED",
                        "FAILED",
                        "EXPIRED"
                      ]
                    },
                    "reason": {
                      "type": "string",
                      "description": "Razão da devolução"
                    },
                    "type": {
                      "enum": [
                        "TOTAL",
                        "PARTIAL"
                      ],
                      "description": "Tipo de devolução"
                    },
                    "createdAt": {
                      "type": "string",
                      "format": "date-time",
                      "description": "Modelo de data e hora com GMT",
                      "example": "2024-08-30T08:26:00-03:00",
                      "pattern": "[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}-[0-9]{2}:[0-9]{2}"
                    },
                    "updatedAt": {
                      "type": "string",
                      "format": "date-time",
                      "example": "2024-08-30T08:26:00-03:00",
                      "pattern": "[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}-[0-9]{2}:[0-9]{2}",
                      "description": "Modelo de data e hora com GMT"
                    },
                    "closedAt": {
                      "type": "string",
                      "format": "date-time",
                      "pattern": "[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}-[0-9]{2}:[0-9]{2}",
                      "example": "2024-08-30T08:26:00-03:00",
                      "description": "Modelo de data e hora com GMT"
                    },
                    "items": {
                      "type": "array",
                      "description": "Itens devolvidos",
                      "items": {
                        "type": "object",
                        "required": [
                          "id",
                          "orderItemId"
                        ],
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "ID do item da devolução"
                          },
                          "orderItemId": {
                            "type": "integer",
                            "description": "Id do item no pedido gerado pelo ANYMARKET"
                          },
                          "title": {
                            "type": "string",
                            "description": "Título do produto"
                          },
                          "skuId": {
                            "type": "string",
                            "description": "ID do SKU gerado pelo ANYMARKE"
                          },
                          "marketplaceSkuId": {
                            "type": "string",
                            "description": "Código do sku no marketplace",
                            "example": "MLB123456789, SKU_123"
                          },
                          "quantity": {
                            "type": "integer",
                            "description": "Quantidade de itens devolvidos"
                          }
                        }
                      }
                    },
                    "shipping": {
                      "type": "array",
                      "description": "Envio da devolução",
                      "items": {
                        "type": "object",
                        "required": [
                          "id",
                          "marketplaceShippingId",
                          "status",
                          "type",
                          "city",
                          "state",
                          "country",
                          "createdAt"
                        ],
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "ID do envio da devolução no ANYMARKET"
                          },
                          "marketplaceShippingId": {
                            "type": "string",
                            "description": "Código do envio no marketplace"
                          },
                          "status": {
                            "description": "Status da entrega da devolução normalizados:\n\n**WAITING_CARRIER**: Aguardando envio<br>\n**TRANSIT_GOODS**: Em trânsito<br>\n**DELIVERED**: Devolução no CD<br>\n**NOT_DELIVERED**: Devolução não entregue no CD",
                            "enum": [
                              "WAITING_CARRIER",
                              "TRANSIT_GOODS",
                              "DELIVERED",
                              "NOT_DELIVERED"
                            ]
                          },
                          "subStatus": {
                            "type": "string",
                            "description": "Substatus do envio no marketplace"
                          },
                          "trackingNumber": {
                            "type": "string",
                            "description": "Número de rastreio"
                          },
                          "estimatedDelivery": {
                            "type": "string",
                            "format": "date-time",
                            "description": "Modelo de data e hora com GMT",
                            "example": "2024-08-30T08:26:00-03:00",
                            "pattern": "[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}-[0-9]{2}:[0-9]{2}"
                          },
                          "transportServiceName": {
                            "type": "string",
                            "description": "Nome da transportadora"
                          },
                          "senderName": {
                            "type": "string",
                            "description": "Nome do responsável pelo envio"
                          },
                          "type": {
                            "description": "Define o tipo do endereço de envio",
                            "type": "string",
                            "example": "selling_address"
                          },
                          "addressLine": {
                            "type": "string",
                            "description": "Endereço completo do envio"
                          },
                          "streetName": {
                            "type": "string",
                            "description": "Rua"
                          },
                          "streetNumber": {
                            "type": "string",
                            "description": "Número"
                          },
                          "comment": {
                            "type": "string",
                            "description": "Complemento"
                          },
                          "zipCode": {
                            "type": "string",
                            "description": "Código Postal"
                          },
                          "city": {
                            "type": "string",
                            "description": "Cidade"
                          },
                          "state": {
                            "type": "string",
                            "description": "Estado"
                          },
                          "country": {
                            "type": "string",
                            "description": "País"
                          },
                          "neighborhood": {
                            "type": "string",
                            "description": "Bairro"
                          },
                          "municipality": {
                            "type": "string",
                            "description": "Cidade ou Distrito"
                          },
                          "destination": {
                            "enum": [
                              "SELLER_ADDRESS",
                              "WAREHOUSE"
                            ],
                            "description": "Define o tipo de endereço do CD\n\n**SELLER_ADDRESS**: CD do seller<br>\n**WAREHOUSE**: CD do marketplace"
                          },
                          "createdAt": {
                            "type": "string",
                            "format": "date-time",
                            "description": "Modelo de data e hora com GMT",
                            "pattern": "[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}-[0-9]{2}:[0-9]{2}",
                            "example": "2024-08-30T08:26:00-03:00"
                          }
                        }
                      }
                    },
                    "history": {
                      "type": "array",
                      "description": "Histórico da devolução",
                      "items": {
                        "type": "object",
                        "required": [
                          "id",
                          "returnStatus",
                          "shippingStatus",
                          "createdAt"
                        ],
                        "properties": {
                          "id": {
                            "type": "integer"
                          },
                          "returnStatus": {
                            "description": "Status da devolução\n\n**NEW_RETURN**: Nova devolução<br>\n**WAITING_DELIVERY**: Retorno ao CD do seller<br>\n**WAITING_DELIVERY_MARKETPLACE**: Retorno ao CD do marketplace<br>\n**WAITING_CONFERENCE**: Aguardando conferência<br>\n**CHECKED**: Devolução conferida<br>\n**CANCELLED**: Devolução cancelada<br>\n**CONCLUDED**: Devolução concluída<br>\n**FAILED**: Devolução falhou<br>\n**EXPIRED**: Devolução expirou",
                            "enum": [
                              "NEW_RETURN",
                              "WAITING_DELIVERY",
                              "WAITING_DELIVERY_MARKETPLACE",
                              "WAITING_CONFERENCE",
                              "CHECKED",
                              "CANCELLED",
                              "CONCLUDED",
                              "FAILED",
                              "EXPIRED"
                            ]
                          },
                          "shippingStatus": {
                            "description": "Status da entrega da devolução\n\n**WAITING_CARRIER**: Aguardando envio<br>\n**TRANSIT_GOODS**: Em trânsito<br>\n**DELIVERED**: Devolução no CD<br>\n**NOT_DELIVERED**: Devolução não entregue no CD",
                            "enum": [
                              "WAITING_CARRIER",
                              "TRANSIT_GOODS",
                              "DELIVERED",
                              "NOT_DELIVERED"
                            ]
                          },
                          "shippingSubStatus": {
                            "type": "string",
                            "description": "Substatus da devolução"
                          },
                          "createdAt": {
                            "type": "string",
                            "format": "date-time",
                            "description": "Data da criação do histórico da devolução<br>\nModelo de data e hora com GMT",
                            "example": "2024-08-30T08:26:00-03:00",
                            "pattern": "[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}-[0-9]{2}:[0-9]{2}"
                          }
                        }
                      }
                    },
                    "invoice": {
                      "type": "object",
                      "description": "Dados de faturamento da devolução",
                      "properties": {
                        "accessKey": {
                          "type": "string",
                          "description": "Chave de acesso à nota fiscal"
                        }
                      }
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "id": 1101,
                      "orderId": 22286,
                      "oi": "47.",
                      "marketplace": "ECOMMERCE",
                      "marketplaceOrderId": "101000021",
                      "marketplaceReturnId": "placereturnID1100",
                      "marketplaceTypeId": "type",
                      "accountId": "2",
                      "accountName": "ECOMMERCE",
                      "paymentStatus": "approved",
                      "status": "NEW_RETURN",
                      "reason": "não deu certo",
                      "type": "PARTIAL",
                      "createdAt": "2025-06-12T18:29:14.166Z",
                      "updatedAt": "2025-06-12T18:29:14.166Z",
                      "closedAt": "2023-09-22T14:32:11.000Z",
                      "items": [
                        {
                          "id": 1212,
                          "orderItemId": 70561,
                          "title": "Gaiola de viagem para transporte de papagaio 2",
                          "skuId": 20,
                          "marketplaceSkuId": "SKUNOVOPET",
                          "quantity": 1
                        }
                      ],
                      "shipping": [
                        {
                          "id": 32167,
                          "status": "NOT_DELIVERED",
                          "subStatus": "READY_TO_PRINT",
                          "trackingNumber": "8888",
                          "estimatedDelivery": "2023-09-22T14:32:11.000Z",
                          "transportServiceName": "Transport Service Name",
                          "addressLine": "Address Line",
                          "streetName": "Street Name",
                          "streetNumber": "Street Number",
                          "comment": "Comment",
                          "zipCode": "Zip Code",
                          "city": "City",
                          "state": "State",
                          "country": "Country",
                          "neighborhood": "Neighborhood",
                          "municipality": "Municipality",
                          "destination": "warehouse",
                          "createdAt": "2023-09-22T14:32:11.000Z"
                        },
                        {
                          "id": 32168,
                          "status": "NOT_DELIVERED",
                          "subStatus": "READY_TO_PRINT",
                          "trackingNumber": "8888",
                          "estimatedDelivery": "2023-09-22T14:32:11.000Z",
                          "transportServiceName": "Transport Service Name",
                          "addressLine": "Address Line",
                          "streetName": "Street Name",
                          "streetNumber": "Street Number",
                          "comment": "Comment",
                          "zipCode": "Zip Code",
                          "city": "City",
                          "state": "State",
                          "country": "Country",
                          "neighborhood": "Neighborhood",
                          "municipality": "Municipality",
                          "destination": "seller_address",
                          "createdAt": "2023-09-22T14:32:11.000Z"
                        }
                      ],
                      "history": [
                        {
                          "id": 1606,
                          "returnStatus": "NEW_RETURN",
                          "shippingStatus": "NOT_DELIVERED",
                          "shippingSubStatus": "sub",
                          "createdAt": "2025-06-12T18:29:14.243Z"
                        },
                        {
                          "id": 1607,
                          "returnStatus": "NEW_RETURN",
                          "shippingStatus": "NOT_DELIVERED",
                          "shippingSubStatus": "sub",
                          "createdAt": "2025-06-12T18:29:14.243Z"
                        }
                      ],
                      "invoice": {
                        "accessKey": "32123123"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "code": "string",
                      "message": "string"
                    }
                  }
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity (WebDAV)",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "code": "string",
                      "message": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "post-orders-id-returns",
        "description": "# Cria uma devolução com os dados informados \nUtilizado para criar uma nova devolução no ANYMARKET. Deve ser utilizado por parceiros ou integrações ERP e plataformas internas.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "marketplace",
                  "marketplaceOrderId",
                  "marketplaceReturnId",
                  "status",
                  "reason",
                  "items",
                  "shipping"
                ],
                "properties": {
                  "marketplace": {
                    "$ref": "#/components/schemas/EnumMarketplaces"
                  },
                  "marketplaceOrderId": {
                    "type": "string",
                    "description": "Id da venda no canal marketplace"
                  },
                  "marketplaceReturnId": {
                    "type": "string",
                    "description": "Id devolução no canal"
                  },
                  "marketplaceTypeId": {
                    "type": "string",
                    "description": "Tipo de devolução no marketplace"
                  },
                  "accountId": {
                    "type": "string",
                    "description": "Identificador da conta marketplace da venda"
                  },
                  "accountName": {
                    "type": "string",
                    "description": "Nome da conta marketplace da venda"
                  },
                  "paymentStatus": {
                    "type": "string",
                    "description": "Status do pagamento da devolução"
                  },
                  "status": {
                    "enum": [],
                    "description": "O status informado deve ser normalizados para o canal de venda:\n\n**NEW_RETURN**: Nova devolução<br>\n**WAITING_DELIVERY**: Retorno ao CD do seller<br>\n**WAITING_DELIVERY_MARKETPLACE**: Retorno ao CD do marketplace<br>\n**WAITING_CONFERENCE**: Aguardando conferência<br>\n**CHECKED**: Devolução conferida<br>\n**CANCELLED**: Devolução cancelada<br>\n**CONCLUDED**: Devolução concluída<br>\n**FAILED**: Devolução falhou<br>\n**EXPIRED**: Devolução expirou "
                  },
                  "reason": {
                    "type": "string",
                    "description": "Razão da devolução"
                  },
                  "type": {
                    "enum": [
                      "TOTAL",
                      "PARTIAL"
                    ],
                    "description": "Tipo de devolução"
                  },
                  "createdAt": {
                    "type": "string",
                    "format": "date-time",
                    "description": "Data da criação da devolução"
                  },
                  "items": {
                    "type": "array",
                    "description": "Itens devolvidos",
                    "items": {
                      "type": "object",
                      "required": [
                        "orderItemId",
                        "skuId",
                        "marketplaceSkuId",
                        "quantity"
                      ],
                      "properties": {
                        "orderItemId": {
                          "type": "integer",
                          "description": "Id do item no pedido gerado pelo ANYMARKET"
                        },
                        "tile": {
                          "type": "string",
                          "description": "Título do produto"
                        },
                        "skuId": {
                          "type": "integer",
                          "description": "ID do SKU gerado pelo ANYMARKET"
                        },
                        "marketplaceSkuId": {
                          "type": "string",
                          "description": "Código do sku no marketplace"
                        },
                        "quantity": {
                          "type": "integer",
                          "description": "Quantidade do itens devolvidos"
                        }
                      }
                    }
                  },
                  "shipping": {
                    "type": "array",
                    "description": "Envio da devolução",
                    "items": {
                      "type": "object",
                      "required": [
                        "status"
                      ],
                      "properties": {
                        "marketplaceShippingId": {
                          "type": "string",
                          "description": "Código do envio no marketplace"
                        },
                        "status": {
                          "description": "O status do envio no marketplace informado deve ser normalizado:\n\n**WAITING_CARRIER**: Aguardando envio<br>\n**TRANSIT_GOODS**: Em trânsito<br>\n**DELIVERED**: Devolução no CD<br>\n**NOT_DELIVERED**: Devolução não entregue no CD",
                          "enum": []
                        },
                        "subStatus": {
                          "type": "string",
                          "description": "Substatus do envio no marketplace"
                        },
                        "trackingNumber": {
                          "type": "string",
                          "description": "Número de rastreio"
                        },
                        "estimatedDelivery": {
                          "type": "string",
                          "format": "date-time",
                          "description": "Data estimada (Necessário informar o fuso horario)"
                        },
                        "transportServiceName": {
                          "type": "string",
                          "description": "Nome da transportadora"
                        },
                        "senderName": {
                          "type": "string",
                          "description": "Nome do responsável pelo envio"
                        },
                        "type": {
                          "type": "string",
                          "description": "Define o tipo do endereço de envio"
                        },
                        "addressLine": {
                          "type": "string",
                          "description": "Endereço completo do envio"
                        },
                        "streetName": {
                          "type": "string",
                          "description": "Rua"
                        },
                        "streetNumber": {
                          "type": "string",
                          "description": "Número"
                        },
                        "comment": {
                          "type": "string",
                          "description": "Complemento"
                        },
                        "zipCode": {
                          "type": "string",
                          "description": "Código Postal"
                        },
                        "city": {
                          "type": "string",
                          "description": "Cidade"
                        },
                        "state": {
                          "type": "string",
                          "description": "Estado"
                        },
                        "country": {
                          "type": "string",
                          "description": "País"
                        },
                        "neighborhood": {
                          "type": "string",
                          "description": "Bairro"
                        },
                        "municipality": {
                          "type": "string",
                          "description": "Cidade ou Distrito"
                        },
                        "destination": {
                          "enum": [
                            "SELLER_ADDRESS",
                            "WAREHOUSE"
                          ],
                          "description": "Informa para qual tipo de Cd está sendo enviado o pacote de devolução\n\n**SELLER_ADDRESS**: CD do seller<br>\n**WAREHOUSE**: CD do marketplace"
                        },
                        "createdAt": {
                          "type": "string",
                          "format": "date-time",
                          "description": "Data da criação do envio da devolução"
                        }
                      }
                    }
                  },
                  "invoice": {
                    "type": "object",
                    "description": "Dados de faturamento da devolução",
                    "properties": {
                      "accessKey": {
                        "type": "string",
                        "description": "Chave de acesso à nota fiscal"
                      }
                    }
                  }
                }
              },
              "examples": {
                "Example 1": {
                  "value": {
                    "marketplace": "ALIEXPRESS",
                    "marketplaceOrderId": "string",
                    "marketplaceReturnId": "string",
                    "marketplaceTypeId": "string",
                    "accountId": "2",
                    "accountName": "ECOMMERCE",
                    "paymentStatus": "string",
                    "status": "string",
                    "reason": "string",
                    "type": "TOTAL",
                    "createdAt": "2019-08-24T14:15:22Z",
                    "items": [
                      {
                        "orderItemId": 0,
                        "tile": "string",
                        "skuId": 0,
                        "marketplaceSkuId": "string",
                        "quantity": 0
                      }
                    ],
                    "shipping": [
                      {
                        "marketplaceShippingId": "string",
                        "status": "string",
                        "subStatus": "string",
                        "trackingNumber": "string",
                        "estimatedDelivery": "2019-08-24T14:15:22Z",
                        "transportServiceName": "string",
                        "senderName": "string",
                        "type": "string",
                        "addressLine": "string",
                        "streetName": "string",
                        "streetNumber": "string",
                        "comment": "string",
                        "zipCode": "string",
                        "city": "string",
                        "state": "string",
                        "country": "string",
                        "neighborhood": "string",
                        "municipality": "string",
                        "destination": "seller_address",
                        "createdAt": "2019-08-24T14:15:22Z"
                      },
                      {
                        "marketplaceShippingId": "string",
                        "status": "string",
                        "subStatus": "string",
                        "trackingNumber": "string",
                        "estimatedDelivery": "2019-08-24T14:15:22Z",
                        "transportServiceName": "string",
                        "senderName": "string",
                        "type": "string",
                        "addressLine": "string",
                        "streetName": "string",
                        "streetNumber": "string",
                        "comment": "string",
                        "zipCode": "string",
                        "city": "string",
                        "state": "string",
                        "country": "string",
                        "neighborhood": "string",
                        "municipality": "string",
                        "destination": "warehouse",
                        "createdAt": "2019-08-24T14:15:22Z"
                      }
                    ],
                    "invoice": {
                      "accessKey": "32123123"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/users": {
      "get": {
        "summary": "Listar todos os usuários",
        "tags": [
          "Usuários"
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "pagination": {
                      "type": "object",
                      "properties": {
                        "offset": {
                          "type": "integer"
                        },
                        "pageSize": {
                          "type": "integer"
                        }
                      }
                    },
                    "users": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "email": {
                            "type": "string"
                          },
                          "id": {
                            "type": "integer"
                          },
                          "name": {
                            "type": "string"
                          },
                          "roles": {
                            "type": "array",
                            "items": {
                              "type": "string"
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "pagination": {
                        "offset": 0,
                        "pageSize": 10
                      },
                      "users": [
                        {
                          "email": "abc@db1.com.br",
                          "id": 1,
                          "name": "ABC",
                          "roles": [
                            "Administrativo",
                            "Comercial"
                          ]
                        }
                      ]
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "get-users",
        "parameters": [
          {
            "schema": {
              "type": "array",
              "example": "[\"login\", \"ASC\"]"
            },
            "in": "query",
            "name": "order",
            "description": "Campo utilizado para ordenação e Ordenação a Utilizar"
          },
          {
            "schema": {
              "type": "integer"
            },
            "in": "query",
            "name": "offset",
            "description": "Offset da paginação"
          },
          {
            "schema": {
              "type": "integer"
            },
            "in": "query",
            "name": "size",
            "description": "Tamanho das Páginas"
          },
          {
            "schema": {
              "type": "string",
              "example": "abc@db1.com.br"
            },
            "in": "query",
            "name": "filter",
            "description": "Campo para filtragem (Nome ou Login)"
          }
        ],
        "description": "<!-- theme: alert -->\n> #### Importante\n>\n> Este endpoint não está disponível no ambiente de sandbox"
      },
      "parameters": [],
      "post": {
        "summary": "Criar um novo usuário",
        "tags": [
          "Usuários"
        ],
        "responses": {
          "201": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "number"
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "post-users",
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "login": {
                    "type": "string"
                  },
                  "name": {
                    "type": "string"
                  },
                  "password": {
                    "type": "string"
                  },
                  "roles": {
                    "type": "array",
                    "items": {
                      "type": "number"
                    }
                  }
                }
              },
              "examples": {
                "Example 1": {
                  "value": {
                    "login": "hugo@user.com",
                    "name": "Hugo",
                    "password": "12345678",
                    "roles": [
                      1,
                      2,
                      3
                    ]
                  }
                }
              }
            }
          }
        },
        "description": "<!-- theme: alert -->\n> #### Important\n> Este endpoint não está disponível no ambiente de sandbox.\n\n<!-- theme: warning -->\n> #### Atenção!\n>\n> Este endpoint só deve ser chamado após a validação do Usuário ter sido realizada através do endpoint /validate."
      }
    },
    "/users/{id}": {
      "parameters": [
        {
          "schema": {
            "type": "string"
          },
          "name": "id",
          "in": "path",
          "required": true
        }
      ],
      "put": {
        "summary": "Alterar as informações de um usuário",
        "tags": [
          "Usuários"
        ],
        "description": "<!-- theme: alert -->\n> #### Importante\n>\n> Este endpoint não está disponível no ambiente de sandbox\n\n> O método `PUT` substitui completamente o recurso. \n>\n> Todos os campos obrigatórios devem ser enviados, mesmo que não tenham sido modificados.\n>\n> Campos omitidos podem ser redefinidos ou apagados.\n>\n> Use este método quando quiser sobrescrever todas as informações.",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "roles": {
                      "type": "array",
                      "items": {
                        "type": "number"
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "put-users-id",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "roles": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "integer"
                        }
                      }
                    }
                  }
                }
              },
              "examples": {
                "Example 1": {
                  "value": {
                    "login": "hugo@user.com",
                    "roles": [
                      {
                        "id": 1
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      },
      "delete": {
        "summary": "Remover um usuário",
        "tags": [
          "Usuários"
        ],
        "responses": {
          "200": {
            "description": ""
          }
        },
        "operationId": "delete-users-id",
        "description": "<!-- theme: alert -->\n> #### Importante\n>\n> Este endpoint não está disponível no ambiente de sandbox\n\n<!-- theme: warning -->\n> #### Atenção!\n>\n> O usuário não será removido definitivamente do sistema, ele será apenas removido da organização. Caso o usuário esteja vinculado a mais de uma organização, ele será removido apenas da organização realizando a chamada."
      }
    },
    "/users/validate": {
      "get": {
        "summary": "Validar se o usuário existe",
        "tags": [
          "Usuários"
        ],
        "responses": {
          "202": {
            "description": "Usuário existe no sistema, mas não está vinculado a organização."
          },
          "204": {
            "description": "Usuário não existe no sistema."
          },
          "226": {
            "description": "Usuário existe no sistema e está vinculado a organização."
          }
        },
        "operationId": "get-users-validate",
        "description": "<!-- theme: alert -->\n> #### Importante\n>\n> Este endpoint não está disponível no ambiente de sandbox\n\n<!-- theme: warning -->\n> #### Atenção!\n>\n> Este endpoint deve ser chamado antes de criar ou vincular um usuário a uma organização para validar a existência do mesmo.",
        "parameters": [
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "email",
            "description": "Email do Usuário"
          }
        ]
      }
    },
    "/users/bind": {
      "get": {
        "summary": "Vincular o usuário a Organização ou Empresa",
        "tags": [
          "Usuários"
        ],
        "responses": {
          "204": {
            "description": ""
          }
        },
        "operationId": "get-users-bind",
        "description": "<!-- theme: alert -->\n> #### Importante\n>\n> Este endpoint não está disponível no ambiente de sandbox\n\n<!-- theme: warning -->\n> #### Atenção!\n>\n> Este endpoint só deve ser chamado após a validação do Usuário ter sido realizada através do endpoint /validate.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "email": {
                    "type": "string"
                  },
                  "roles": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "integer"
                        }
                      }
                    }
                  }
                }
              },
              "examples": {
                "Example 1": {
                  "value": {
                    "email": "email@db1.com.br",
                    "nameCountry": "Brasil",
                    "roles": [
                      {
                        "id": 1
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      }
    },
    "/roles": {
      "get": {
        "summary": "Listar os perfis de acesso",
        "tags": [
          "Perfis de Acesso"
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "roles": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "integer"
                          },
                          "name": {
                            "type": "string"
                          },
                          "totalUsers": {
                            "type": "integer"
                          },
                          "totalPermissions": {
                            "type": "integer"
                          }
                        }
                      }
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "roles": [
                        {
                          "id": 82183,
                          "name": "Não Deletar - Uso Interno",
                          "totalUsers": 40,
                          "quantity": 89
                        }
                      ]
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "get-roles",
        "description": "<!-- theme: alert -->\n> #### Importante\n>\n> Este endpoint não está disponível no ambiente de sandbox"
      },
      "post": {
        "summary": "Criar um perfil de acesso",
        "tags": [
          "Perfis de Acesso"
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string"
                    },
                    "id": {
                      "type": "number"
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "post-roles",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string"
                  },
                  "resourcesId": {
                    "type": "array",
                    "items": {
                      "type": "number"
                    }
                  }
                }
              },
              "examples": {
                "Example 1": {
                  "value": {
                    "name": "Novo Perfil Teste",
                    "resourcesId": [
                      2,
                      1
                    ]
                  }
                }
              }
            }
          },
          "description": "<!-- theme: warning -->\n> #### Atenção!\n>\n> Os ids dos recursos podem ser obtidos no endpoint /roles/permission"
        },
        "description": "<!-- theme: alert -->\n> #### Importante\n>\n> Este endpoint não está disponível no ambiente de sandbox"
      }
    },
    "/roles/permissions": {
      "get": {
        "summary": "Retornar as permissões do vendedor",
        "tags": [
          "Perfis de Acesso"
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "journeys": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "integer"
                          },
                          "description": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "resources": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "integer"
                                },
                                "type": {
                                  "type": "string"
                                },
                                "description": {
                                  "type": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "journeys": [
                        {
                          "id": 14,
                          "keyInternationalization": "journey.administrative",
                          "description": "Administrativo",
                          "type": "DEFAULT",
                          "icon": "pi pi-briefcase",
                          "resources": [
                            {
                              "id": 284,
                              "key": "financialInformationSeller",
                              "type": "FEATURE",
                              "keyInternationalization": "resource.financialInformationSeller",
                              "description": "Faturas",
                              "isPresent": null
                            },
                            {
                              "id": 286,
                              "key": "userManagement",
                              "type": "FEATURE",
                              "keyInternationalization": "resource.userManagement",
                              "description": "Usuários",
                              "isPresent": null
                            },
                            {
                              "id": 285,
                              "key": "profileManagement",
                              "type": "FEATURE",
                              "keyInternationalization": "resource.profileManagement",
                              "description": "Perfis de Acesso",
                              "isPresent": null
                            }
                          ]
                        },
                        {
                          "id": 15,
                          "keyInternationalization": "journey.help",
                          "description": "Ajuda",
                          "type": "DEFAULT",
                          "icon": "pi pi-question-circle",
                          "resources": [
                            {
                              "id": 287,
                              "key": "allowedChat",
                              "type": "FEATURE",
                              "keyInternationalization": "resource.allowedChat",
                              "description": "Chat",
                              "isPresent": null
                            },
                            {
                              "id": 288,
                              "key": "support",
                              "type": "FEATURE",
                              "keyInternationalization": "resource.support",
                              "description": "Ajuda",
                              "isPresent": null
                            },
                            {
                              "id": 289,
                              "key": "university",
                              "type": "FEATURE",
                              "keyInternationalization": "resource.university",
                              "description": "Universidade ANYMARKET",
                              "isPresent": null
                            }
                          ]
                        }
                      ]
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "get-roles-permissions",
        "description": "<!-- theme: alert -->\n> #### Importante\n>\n> Este endpoint não está disponível no ambiente de sandbox"
      }
    },
    "/roles/{id}": {
      "parameters": [
        {
          "schema": {
            "type": "string"
          },
          "name": "id",
          "in": "path",
          "required": true
        }
      ],
      "get": {
        "summary": "Buscar informações do perfil de acesso",
        "tags": [
          "Perfis de Acesso"
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "journeys": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "integer"
                          },
                          "description": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "resources": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "integer"
                                },
                                "type": {
                                  "type": "string"
                                },
                                "description": {
                                  "type": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    },
                    "name": {
                      "type": "string"
                    },
                    "id": {
                      "type": "integer"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "journeys": [
                        {
                          "id": 14,
                          "keyInternationalization": "journey.administrative",
                          "description": "Administrativo",
                          "type": "DEFAULT",
                          "icon": "pi pi-briefcase",
                          "resources": [
                            {
                              "id": 284,
                              "key": "financialInformationSeller",
                              "type": "FEATURE",
                              "keyInternationalization": "resource.financialInformationSeller",
                              "description": "Faturas",
                              "isPresent": false
                            },
                            {
                              "id": 286,
                              "key": "userManagement",
                              "type": "FEATURE",
                              "keyInternationalization": "resource.userManagement",
                              "description": "Usuários",
                              "isPresent": false
                            },
                            {
                              "id": 285,
                              "key": "profileManagement",
                              "type": "FEATURE",
                              "keyInternationalization": "resource.profileManagement",
                              "description": "Perfis de Acesso",
                              "isPresent": false
                            }
                          ]
                        }
                      ],
                      "name": "Administrativo - HomologBrasil",
                      "id": 6
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "A role informada não existe no sistema",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string"
                    },
                    "errorCode": {
                      "type": "string"
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "message": "Perfil invalido, por favor verifique o perfil informado.",
                      "errorCode": "INVALID_ROLE"
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "get-roles-id",
        "description": "<!-- theme: alert -->\n> #### Importante\n>\n> Este endpoint não está disponível no ambiente de sandbox"
      },
      "put": {
        "summary": "Alterar informações do perfil de acesso",
        "tags": [
          "Perfis de Acesso"
        ],
        "description": "<!-- theme: alert -->\n> #### Importante\n>\n> Este endpoint não está disponível no ambiente de sandbox\n\nAlterar informações do perfil de acesso\n\n> O método `PUT` substitui completamente o recurso. \n>\n> Todos os campos obrigatórios devem ser enviados, mesmo que não tenham sido modificados.\n>\n> Campos omitidos podem ser redefinidos ou apagados.\n>\n> Use este método quando quiser sobrescrever todas as informações.",
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string"
                    },
                    "resourcesId": {
                      "type": "array",
                      "items": {
                        "type": "number"
                      }
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "name": "abc",
                      "resourcesId": [
                        1
                      ]
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "put-roles-id",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string"
                  },
                  "resourcesId": {
                    "type": "array",
                    "items": {
                      "type": "number"
                    }
                  }
                }
              },
              "examples": {
                "Example 1": {
                  "value": {
                    "name": "abc",
                    "resourcesId": [
                      1
                    ]
                  }
                }
              }
            }
          }
        }
      },
      "delete": {
        "summary": "Deletar um perfil de acesso",
        "tags": [
          "Perfis de Acesso"
        ],
        "responses": {
          "200": {
            "description": ""
          }
        },
        "operationId": "delete-roles-id",
        "description": "<!-- theme: alert -->\n> #### Importante\n>\n> Este endpoint não está disponível no ambiente de sandbox"
      }
    },
    "/monitorings/{id}/retry": {
      "parameters": [
        {
          "schema": {
            "type": "string"
          },
          "name": "id",
          "in": "path",
          "required": true
        }
      ],
      "put": {
        "summary": "/monitoring/{id}/retry",
        "tags": [
          "Monitoramento de Erro"
        ],
        "responses": {
          "202": {
            "description": "Accepted"
          }
        },
        "operationId": "put-monitorings-id-retry",
        "description": "# Envia um monitoring para retentativa\nEnvia um monitoring para retentativa\n\n> O método `PUT` substitui completamente o recurso. \n>\n> Todos os campos obrigatórios devem ser enviados, mesmo que não tenham sido modificados.\n>\n> Campos omitidos podem ser redefinidos ou apagados.\n>\n> Use este método quando quiser sobrescrever todas as informações."
      }
    },
    "/monitorings/{id}/cancel": {
      "parameters": [
        {
          "schema": {
            "type": "string"
          },
          "name": "id",
          "in": "path",
          "required": true
        }
      ],
      "put": {
        "summary": "/monitoring/{id}/cancel",
        "tags": [
          "Monitoramento de Erro"
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        },
        "operationId": "put-monitorings-id-cancel",
        "description": "# Cancela um monitoring\nCancela um monitoring\n\n> O método `PUT` substitui completamente o recurso. \n>\n> Todos os campos obrigatórios devem ser enviados, mesmo que não tenham sido modificados.\n>\n> Campos omitidos podem ser redefinidos ou apagados.\n>\n> Use este método quando quiser sobrescrever todas as informações."
      }
    },
    "/fiscalDocuments": {
      "get": {
        "summary": "/fiscalDocuments",
        "tags": [
          "Documentos Fiscais"
        ],
        "responses": {
          "200": {
            "description": "OK\r\n\r\n> Caso nenhum documento seja encontrado, o retorno será **200** com o array `content` vazio.\r\n",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": [
                    "content",
                    "links",
                    "page"
                  ],
                  "properties": {
                    "content": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "required": [
                          "id",
                          "createdAt",
                          "lastUpdate",
                          "marketplace"
                        ],
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "ID do registro do documento, enviado na notificação."
                          },
                          "documentId": {
                            "type": "string",
                            "description": "Identificador da nota fiscal, é retornado o número da nota fiscal para documentos do tipo NFE"
                          },
                          "documentKey": {
                            "type": "string",
                            "description": "Chave do documento, é retornado a chave da nota fiscal para documentos do tipo NFE"
                          },
                          "orderId": {
                            "type": "string",
                            "description": "ID do pedido no ANYMARKET associado ao pedido"
                          },
                          "createdAt": {
                            "type": "string",
                            "description": "Data de criação do registro do documento no ANYMARKET"
                          },
                          "lastUpdate": {
                            "type": "string",
                            "description": "Data da última atualização do documento"
                          },
                          "marketplace": {
                            "type": "string",
                            "description": "Descritivo de qual marketplace o pedido pertence"
                          },
                          "documentType": {
                            "type": "object",
                            "properties": {
                              "type": {
                                "type": "string",
                                "description": "Modelo do documento"
                              },
                              "subType": {
                                "description": "Tipo de operação do documento",
                                "enum": []
                              }
                            }
                          },
                          "documents": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "status": {
                                  "enum": [],
                                  "description": "Estado do documento: Autorizado, Cancelado."
                                },
                                "data": {
                                  "type": "string",
                                  "format": "date-time",
                                  "description": "Data de emissão do documento/evento"
                                },
                                "url": {
                                  "type": "object",
                                  "properties": {
                                    "path": {
                                      "type": "string",
                                      "description": "Caminho da API de acesso ao documento"
                                    },
                                    "expirationDate": {
                                      "type": "string",
                                      "description": "Data de remoção do documento "
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "relationships": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "referenceKey": {
                                  "type": "string",
                                  "description": "Chave do documento relacionado"
                                },
                                "documentType": {
                                  "type": "object",
                                  "properties": {
                                    "type": {
                                      "type": "string",
                                      "description": "Modelo do documento relacionado"
                                    },
                                    "value": {
                                      "type": "string",
                                      "description": "Tipo de operação do documento relacionado"
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "metadata": {
                            "type": "array",
                            "description": "Campos adicionais de informações do documento de chave e valor de informações específicas de cada canal.",
                            "items": {
                              "type": "object",
                              "properties": {
                                "key": {
                                  "type": "string"
                                },
                                "value": {
                                  "type": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    },
                    "links": {
                      "type": "array",
                      "description": "Referências de paginação\r\n",
                      "items": {
                        "type": "object",
                        "required": [
                          "rel",
                          "href"
                        ],
                        "properties": {
                          "rel": {
                            "type": "string",
                            "description": "Relacionamento do hyperlink"
                          },
                          "href": {
                            "type": "string",
                            "description": "URL de definição do recurso"
                          }
                        }
                      }
                    },
                    "page": {
                      "type": "object",
                      "required": [
                        "size",
                        "totalElements",
                        "totalPages",
                        "number"
                      ],
                      "properties": {
                        "size": {
                          "type": "integer",
                          "description": "Tamanho da página\r\n\r\n"
                        },
                        "totalElements": {
                          "type": "integer",
                          "description": "Total de elementos existentes\r\n\r\n"
                        },
                        "totalPages": {
                          "type": "integer",
                          "description": "Total de páginas disponíveis\r\n\r\n"
                        },
                        "number": {
                          "type": "integer",
                          "description": "Número da página atual\r\n\r\n"
                        }
                      }
                    }
                  }
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "content": [
                        {
                          "id": "string",
                          "documentId": "string",
                          "documentKey": "string",
                          "orderId": "string",
                          "createdAt": "string",
                          "lastUpdate": "string",
                          "marketplace": "string",
                          "documentType": {
                            "type": "string",
                            "value": "string"
                          },
                          "documents": [
                            {
                              "status": "string",
                              "data": "string",
                              "url": {
                                "path": "string",
                                "expirationDate": "string"
                              }
                            }
                          ],
                          "relationships": [
                            {
                              "referenceKey": "string",
                              "documentType": {
                                "type": "string",
                                "value": "string"
                              }
                            }
                          ],
                          "metadata": [
                            {
                              "key": "string",
                              "value": "string"
                            }
                          ]
                        }
                      ],
                      "links": [
                        {
                          "rel": "string",
                          "href": "string"
                        }
                      ],
                      "page": {
                        "size": 0,
                        "totalElements": 0,
                        "totalPages": 0,
                        "number": 0
                      }
                    }
                  },
                  "stoplight-Example 1": {
                    "value": {
                      "content": [
                        {
                          "id": "47.",
                          "documentId": "23208074",
                          "documentKey": "35240612345678000123550010000012345678901234",
                          "orderId": "20020251989",
                          "createdAt": "2025-06-23T14:04:36.934718Z",
                          "lastUpdate": "2025-06-23T14:10:36.934727Z",
                          "marketplace": "MERCADO_LIVRE",
                          "documentType": {
                            "type": "NFE",
                            "value": "sale"
                          },
                          "documents": [
                            {
                              "status": "AUTHORIZED",
                              "data": "2025-06-04T15:30:50Z",
                              "url": {
                                "path": "/document/download/1",
                                "expirationDate": "2030-06-04T15:30:50Z"
                              }
                            },
                            {
                              "status": "CANCELLED",
                              "data": "2025-06-05T15:30:50Z",
                              "url": {
                                "path": "/document/download/2",
                                "expirationDate": "2030-06-05T15:30:50Z"
                              }
                            }
                          ],
                          "relationships": [
                            {
                              "referenceKey": "35240612345678000123550010000012345678901235",
                              "documentType": {
                                "type": "NFE",
                                "value": "symbolic_inbound_return"
                              }
                            }
                          ],
                          "metadata": [
                            {
                              "key": "cfop",
                              "value": "1949"
                            }
                          ]
                        }
                      ],
                      "links": [
                        {
                          "rel": "self",
                          "href": "/api/fiscal-documents?page=0&size=10"
                        },
                        {
                          "rel": "next",
                          "href": "/api/fiscal-documents?page=1&size=10"
                        },
                        {
                          "rel": "last",
                          "href": "/api/fiscal-documents?page=50&size=10"
                        }
                      ],
                      "page": {
                        "size": 10,
                        "totalElements": 504,
                        "totalPages": 51,
                        "number": 0
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "get-fiscalDocuments",
        "description": "# Consulta Documentos Fiscais\r\n\r\nConsulta listagem de documentos fiscais\r\n\r\n",
        "parameters": [
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "orderId",
            "description": "ID do pedido associado ao documento"
          },
          {
            "schema": {
              "enum": [
                "MERCADO_LIVRE",
                "MAGAZINE_LUIZA",
                "SHOPEE",
                "NETSHOES",
                "DAFITI",
                "AMAZON_GLOBAL_API"
              ],
              "type": "string"
            },
            "in": "query",
            "name": "marketplace",
            "description": "ENUM do marketplace",
            "allowEmptyValue": false
          },
          {
            "schema": {
              "type": "string",
              "format": "date-time",
              "example": "2022-11-25T14:00:00-03:00"
            },
            "in": "query",
            "name": "createdAtFrom",
            "description": "Criado a partir de",
            "allowEmptyValue": false
          },
          {
            "schema": {
              "type": "string",
              "format": "date",
              "example": "2022-11-25T20:30:00-03:00"
            },
            "in": "query",
            "name": "createdAtTo",
            "description": "Criado antes de",
            "allowEmptyValue": false
          },
          {
            "schema": {
              "type": "string",
              "example": "2022-11-25T14:00:00-03:00",
              "format": "time"
            },
            "in": "query",
            "name": "lastUpdateFrom",
            "description": "Atualizado a partir de"
          },
          {
            "schema": {
              "type": "string",
              "format": "time",
              "example": "2022-11-25T20:30:00-03:00"
            },
            "in": "query",
            "name": "lastUpdateTo",
            "description": "Atualizado antes de"
          },
          {
            "schema": {
              "enum": [
                "sale",
                "sale_return",
                "devolution",
                "inbound",
                "inbound_return",
                "symbolic_inbound",
                "symbolic_inbound_return"
              ]
            },
            "in": "query",
            "name": "documentTypeValue",
            "description": "Tipo de operação do documento"
          },
          {
            "in": "query",
            "name": "limit",
            "schema": {
              "type": "integer",
              "format": "int64",
              "default": 10,
              "minimum": 1,
              "maximum": 50
            },
            "description": "Número máximo de elementos"
          },
          {
            "in": "query",
            "name": "offset",
            "schema": {
              "type": "integer",
              "format": "int64",
              "maximum": 9999999,
              "minimum": 0
            },
            "description": "Posição de início da paginação"
          }
        ]
      },
      "parameters": []
    },
    "/fiscalDocuments/{id}": {
      "get": {
        "summary": "/fiscalDocuments/{id}",
        "tags": [
          "Documentos Fiscais"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": [
                    "content"
                  ],
                  "properties": {
                    "content": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "required": [
                          "id",
                          "createdAt",
                          "lastUpdate",
                          "marketplace"
                        ],
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "ID do registro do documento, enviado na notificação."
                          },
                          "documentId": {
                            "type": "string",
                            "description": "Identificador da nota fiscal, é retornado o número da nota fiscal para documentos do tipo NFE"
                          },
                          "documentKey": {
                            "type": "string",
                            "description": "Chave do documento, é retornado a chave da nota fiscal para documentos do tipo NFE"
                          },
                          "orderId": {
                            "type": "string",
                            "description": "ID do pedido no ANYMARKET associado ao pedido"
                          },
                          "createdAt": {
                            "type": "string",
                            "description": "Data de criação do registro do documento no ANYMARKET"
                          },
                          "lastUpdate": {
                            "type": "string",
                            "description": "Data da última atualização do documento"
                          },
                          "marketplace": {
                            "type": "string",
                            "description": "Descritivo de qual marketplace o pedido pertence"
                          },
                          "documentType": {
                            "type": "object",
                            "properties": {
                              "type": {
                                "type": "string",
                                "description": "Modelo do documento"
                              },
                              "subType": {
                                "description": "Tipo de operação do documento",
                                "enum": []
                              }
                            }
                          },
                          "documents": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "status": {
                                  "enum": [],
                                  "description": "Estado do documento: Autorizado, Cancelado."
                                },
                                "data": {
                                  "type": "string",
                                  "format": "date-time",
                                  "description": "Data de emissão do documento/evento"
                                },
                                "url": {
                                  "type": "object",
                                  "properties": {
                                    "path": {
                                      "type": "string",
                                      "description": "Caminho da API de acesso ao documento"
                                    },
                                    "expirationDate": {
                                      "type": "string",
                                      "description": "Data de remoção do documento "
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "relationships": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "referenceKey": {
                                  "type": "string",
                                  "description": "Chave do documento relacionado"
                                },
                                "documentType": {
                                  "type": "object",
                                  "properties": {
                                    "type": {
                                      "type": "string",
                                      "description": "Modelo do documento relacionado"
                                    },
                                    "value": {
                                      "type": "string",
                                      "description": "Tipo de operação do documento relacionado"
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "metadata": {
                            "type": "array",
                            "description": "Campos adicionais de informações do documento de chave e valor de informações específicas de cada canal.",
                            "items": {
                              "type": "object",
                              "properties": {
                                "key": {
                                  "type": "string"
                                },
                                "value": {
                                  "type": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "examples": {
                  "Retorno padrão": {
                    "value": {
                      "content": [
                        {
                          "id": "string",
                          "documentId": "string",
                          "documentKey": "string",
                          "orderId": "string",
                          "createdAt": "string",
                          "lastUpdate": "string",
                          "marketplace": "string",
                          "documentType": {
                            "type": "string",
                            "value": "string"
                          },
                          "documents": [
                            {
                              "status": "string",
                              "data": "string",
                              "url": {
                                "path": "string",
                                "expirationDate": "string"
                              }
                            }
                          ],
                          "relationships": [
                            {
                              "referenceKey": "string",
                              "documentType": {
                                "type": "string",
                                "value": "string"
                              }
                            }
                          ],
                          "metadata": [
                            {
                              "key": "string",
                              "value": "string"
                            }
                          ]
                        }
                      ],
                      "links": [
                        {
                          "rel": "string",
                          "href": "string"
                        }
                      ],
                      "page": {
                        "size": 0,
                        "totalElements": 0,
                        "totalPages": 0,
                        "number": 0
                      }
                    }
                  },
                  "Retorno sem conteúdo": {
                    "value": {
                      "content": [],
                      "links": [
                        {
                          "rel": "self",
                          "href": "/api/fiscalDocuments?offset=800&limit=10"
                        },
                        {
                          "rel": "first",
                          "href": "/api/fiscalDocuments?offset=0&limit=10"
                        }
                      ],
                      "page": {
                        "size": 10,
                        "totalElements": 0,
                        "totalPages": 0,
                        "number": 80
                      }
                    }
                  },
                  "Example 1": {
                    "value": {
                      "content": [
                        {
                          "id": "47.",
                          "documentId": "23208074",
                          "documentKey": "35240612345678000123550010000012345678901234",
                          "orderId": "20020251989",
                          "createdAt": "2025-06-23T14:04:36.934718Z",
                          "lastUpdate": "2025-06-23T14:10:36.934727Z",
                          "marketplace": "MERCADO_LIVRE",
                          "documentType": {
                            "type": "NFE",
                            "value": "sale"
                          },
                          "documents": [
                            {
                              "status": "AUTHORIZED",
                              "data": "2025-06-04T15:30:50Z",
                              "url": {
                                "path": "/document/download/1",
                                "expirationDate": "2030-06-04T15:30:50Z"
                              }
                            },
                            {
                              "status": "CANCELLED",
                              "data": "2025-06-05T15:30:50Z",
                              "url": {
                                "path": "/document/download/2",
                                "expirationDate": "2030-06-05T15:30:50Z"
                              }
                            }
                          ],
                          "relationships": [
                            {
                              "referenceKey": "35240612345678000123550010000012345678901235",
                              "documentType": {
                                "type": "NFE",
                                "value": "symbolic_inbound_return"
                              }
                            }
                          ],
                          "metadata": [
                            {
                              "key": "cfop",
                              "value": "1949"
                            }
                          ]
                        }
                      ],
                      "links": [
                        {
                          "rel": "self",
                          "href": "/api/fiscal-documents?page=0&size=10"
                        },
                        {
                          "rel": "next",
                          "href": "/api/fiscal-documents?page=1&size=10"
                        },
                        {
                          "rel": "last",
                          "href": "/api/fiscal-documents?page=50&size=10"
                        }
                      ],
                      "page": {
                        "size": 10,
                        "totalElements": 504,
                        "totalPages": 51,
                        "number": 0
                      }
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found"
          }
        },
        "operationId": "get-fiscalDocuments-id",
        "description": "# Consulta Documento Fiscal\r\n\r\nConsulta um documento fiscal.",
        "parameters": [
          {
            "in": "query",
            "name": "id",
            "schema": {
              "type": "integer"
            },
            "description": "Id do documento fiscal gerado pelo ANYMARKET"
          }
        ]
      },
      "parameters": [
        {
          "schema": {
            "type": "string"
          },
          "name": "id",
          "in": "path",
          "required": true
        }
      ]
    },
    "/fiscalDocuments/download/{document_item_id}": {
      "get": {
        "summary": "/fiscalDocuments/download/{document_item_id}",
        "tags": [
          "Documentos Fiscais"
        ],
        "responses": {
          "200": {
            "description": "Retorna o xml do documento fiscal\r\n\r\n##### Exemplos de resposta\r\n\r\n- Documento do tipo `\"NFE\"` com o status `\"AUTHORIZED\"` (Nota fiscal autorizada):\r\n\r\n```xml\r\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<nfeProc versao=\"4.00\"\r\n\txmlns=\"http://www.portalfiscal.inf.br/nfe\">\r\n\t<NFe xmlns=\"http://www.portalfiscal.inf.br/nfe\">\r\n\t\t<infNFe Id=\"NFe99999999999999999999999999999999999999999999\" versao=\"4.00\">\r\n\t\t\t<ide>\r\n\t\t\t\t<cUF>99</cUF>\r\n\t\t\t\t<cNF>12345678</cNF>\r\n\t\t\t\t<natOp>Venda de produtos diversos</natOp>\r\n\t\t\t\t<mod>55</mod>\r\n\t\t\t\t<serie>1</serie>\r\n\t\t\t\t<nNF>123456</nNF>\r\n\t\t\t\t<dhEmi>2025-01-01T12:00:00-03:00</dhEmi>\r\n\t\t\t\t<dhSaiEnt>2025-01-01T12:00:00-03:00</dhSaiEnt>\r\n\t\t\t\t<tpNF>1</tpNF>\r\n\t\t\t\t<idDest>1</idDest>\r\n\t\t\t\t<cMunFG>9999999</cMunFG>\r\n\t\t\t\t<tpImp>1</tpImp>\r\n\t\t\t\t<tpEmis>1</tpEmis>\r\n\t\t\t\t<cDV>9</cDV>\r\n\t\t\t\t<tpAmb>2</tpAmb>\r\n\t\t\t\t<finNFe>1</finNFe>\r\n\t\t\t\t<indFinal>1</indFinal>\r\n\t\t\t\t<indPres>1</indPres>\r\n\t\t\t\t<indIntermed>0</indIntermed>\r\n\t\t\t\t<procEmi>0</procEmi>\r\n\t\t\t\t<verProc>exemplo.documentacao</verProc>\r\n\t\t\t\t<NFref>\r\n\t\t\t\t\t<refNFe>99999999999999999999999999999999999999999999</refNFe>\r\n\t\t\t\t</NFref>\r\n\t\t\t</ide>\r\n\t\t\t<emit>\r\n\t\t\t\t<CNPJ>00000000000191</CNPJ>\r\n\t\t\t\t<xNome>EMPRESA DE EXEMPLO LTDA</xNome>\r\n\t\t\t\t<enderEmit>\r\n\t\t\t\t\t<xLgr>Rua Fictícia</xLgr>\r\n\t\t\t\t\t<nro>123</nro>\r\n\t\t\t\t\t<xCpl>Bloco A</xCpl>\r\n\t\t\t\t\t<xBairro>Centro</xBairro>\r\n\t\t\t\t\t<cMun>9999999</cMun>\r\n\t\t\t\t\t<xMun>Cidade Exemplo</xMun>\r\n\t\t\t\t\t<UF>EX</UF>\r\n\t\t\t\t\t<CEP>00000000</CEP>\r\n\t\t\t\t\t<cPais>1058</cPais>\r\n\t\t\t\t\t<xPais>Brasil</xPais>\r\n\t\t\t\t\t<fone>11999999999</fone>\r\n\t\t\t\t</enderEmit>\r\n\t\t\t\t<IE>000000000000</IE>\r\n\t\t\t\t<CRT>3</CRT>\r\n\t\t\t</emit>\r\n\t\t\t<dest>\r\n\t\t\t\t<CNPJ>00000000000000</CNPJ>\r\n\t\t\t\t<xNome>CLIENTE DEMONSTRACAO S/A</xNome>\r\n\t\t\t\t<enderDest>\r\n\t\t\t\t\t<xLgr>Avenida de Teste</xLgr>\r\n\t\t\t\t\t<nro>1000</nro>\r\n\t\t\t\t\t<xCpl>Conjunto 1</xCpl>\r\n\t\t\t\t\t<xBairro>Bairro Teste</xBairro>\r\n\t\t\t\t\t<cMun>8888888</cMun>\r\n\t\t\t\t\t<xMun>Outro Município</xMun>\r\n\t\t\t\t\t<UF>TS</UF>\r\n\t\t\t\t\t<CEP>88888888</CEP>\r\n\t\t\t\t\t<cPais>1058</cPais>\r\n\t\t\t\t\t<xPais>Brasil</xPais>\r\n\t\t\t\t</enderDest>\r\n\t\t\t\t<indIEDest>1</indIEDest>\r\n\t\t\t\t<IE>000000000000</IE>\r\n\t\t\t</dest>\r\n\t\t\t<det nItem=\"1\">\r\n\t\t\t\t<prod>\r\n\t\t\t\t\t<cProd>XYZ123</cProd>\r\n\t\t\t\t\t<cEAN>0000000000000</cEAN>\r\n\t\t\t\t\t<xProd>Produto Exemplo - Mochila Teste</xProd>\r\n\t\t\t\t\t<NCM>00000000</NCM>\r\n\t\t\t\t\t<CFOP>5101</CFOP>\r\n\t\t\t\t\t<uCom>UN</uCom>\r\n\t\t\t\t\t<qCom>2</qCom>\r\n\t\t\t\t\t<vUnCom>50.00000000</vUnCom>\r\n\t\t\t\t\t<vProd>100.00</vProd>\r\n\t\t\t\t\t<cEANTrib>0000000000000</cEANTrib>\r\n\t\t\t\t\t<uTrib>UN</uTrib>\r\n\t\t\t\t\t<qTrib>2</qTrib>\r\n\t\t\t\t\t<vUnTrib>50.00000000</vUnTrib>\r\n\t\t\t\t\t<indTot>1</indTot>\r\n\t\t\t\t</prod>\r\n\t\t\t\t<imposto>\r\n\t\t\t\t\t<vTotTrib>15.00</vTotTrib>\r\n\t\t\t\t\t<ICMS>\r\n\t\t\t\t\t\t<ICMS00>\r\n\t\t\t\t\t\t\t<orig>0</orig>\r\n\t\t\t\t\t\t\t<CST>00</CST>\r\n\t\t\t\t\t\t\t<modBC>3</modBC>\r\n\t\t\t\t\t\t\t<vBC>100.00</vBC>\r\n\t\t\t\t\t\t\t<pICMS>18.0000</pICMS>\r\n\t\t\t\t\t\t\t<vICMS>18.00</vICMS>\r\n\t\t\t\t\t\t</ICMS00>\r\n\t\t\t\t\t</ICMS>\r\n\t\t\t\t\t<IPI>\r\n\t\t\t\t\t\t<cEnq>999</cEnq>\r\n\t\t\t\t\t\t<IPINT>\r\n\t\t\t\t\t\t\t<CST>03</CST>\r\n\t\t\t\t\t\t</IPINT>\r\n\t\t\t\t\t</IPI>\r\n\t\t\t\t\t<PIS>\r\n\t\t\t\t\t\t<PISOutr>\r\n\t\t\t\t\t\t\t<CST>99</CST>\r\n\t\t\t\t\t\t\t<vBC>100.00</vBC>\r\n\t\t\t\t\t\t\t<pPIS>1.6500</pPIS>\r\n\t\t\t\t\t\t\t<vPIS>1.65</vPIS>\r\n\t\t\t\t\t\t</PISOutr>\r\n\t\t\t\t\t</PIS>\r\n\t\t\t\t\t<COFINS>\r\n\t\t\t\t\t\t<COFINSOutr>\r\n\t\t\t\t\t\t\t<CST>99</CST>\r\n\t\t\t\t\t\t\t<vBC>100.00</vBC>\r\n\t\t\t\t\t\t\t<pCOFINS>7.6000</pCOFINS>\r\n\t\t\t\t\t\t\t<vCOFINS>7.60</vCOFINS>\r\n\t\t\t\t\t\t</COFINSOutr>\r\n\t\t\t\t\t</COFINS>\r\n\t\t\t\t</imposto>\r\n\t\t\t\t<infAdProd>xPed:00000000000000</infAdProd>\r\n\t\t\t</det>\r\n\t\t\t<total>\r\n\t\t\t\t<ICMSTot>\r\n\t\t\t\t\t<vBC>100.00</vBC>\r\n\t\t\t\t\t<vICMS>18.00</vICMS>\r\n\t\t\t\t\t<vICMSDeson>0.00</vICMSDeson>\r\n\t\t\t\t\t<vFCP>0.00</vFCP>\r\n\t\t\t\t\t<vBCST>0.00</vBCST>\r\n\t\t\t\t\t<vST>0.00</vST>\r\n\t\t\t\t\t<vFCPST>0.00</vFCPST>\r\n\t\t\t\t\t<vFCPSTRet>0.00</vFCPSTRet>\r\n\t\t\t\t\t<vProd>100.00</vProd>\r\n\t\t\t\t\t<vFrete>0.00</vFrete>\r\n\t\t\t\t\t<vSeg>0.00</vSeg>\r\n\t\t\t\t\t<vDesc>0.00</vDesc>\r\n\t\t\t\t\t<vII>0.00</vII>\r\n\t\t\t\t\t<vIPI>0.00</vIPI>\r\n\t\t\t\t\t<vIPIDevol>0.00</vIPIDevol>\r\n\t\t\t\t\t<vPIS>1.65</vPIS>\r\n\t\t\t\t\t<vCOFINS>7.60</vCOFINS>\r\n\t\t\t\t\t<vOutro>0.00</vOutro>\r\n\t\t\t\t\t<vNF>100.00</vNF>\r\n\t\t\t\t\t<vTotTrib>15.00</vTotTrib>\r\n\t\t\t\t</ICMSTot>\r\n\t\t\t</total>\r\n\t\t\t<transp>\r\n\t\t\t\t<modFrete>0</modFrete>\r\n\t\t\t</transp>\r\n\t\t\t<pag>\r\n\t\t\t\t<detPag>\r\n\t\t\t\t\t<indPag>0</indPag>\r\n\t\t\t\t\t<tPag>01</tPag>\r\n\t\t\t\t\t<vPag>100.00</vPag>\r\n\t\t\t\t</detPag>\r\n\t\t\t</pag>\r\n\t\t\t<infIntermed>\r\n\t\t\t\t<CNPJ>00000000000100</CNPJ>\r\n\t\t\t\t<idCadIntTran>000000000</idCadIntTran>\r\n\t\t\t</infIntermed>\r\n\t\t\t<infAdic>\r\n\t\t\t\t<infCpl>Documento emitido para fins de demonstração. Nenhuma operação real ocorreu.</infCpl>\r\n\t\t\t\t<obsCont xCampo=\"external_id\">\r\n\t\t\t\t\t<xTexto>EXEMPLO-documento-ficticio-123456789</xTexto>\r\n\t\t\t\t</obsCont>\r\n\t\t\t</infAdic>\r\n\t\t</infNFe>\r\n\t\t<Signature xmlns=\"http://www.w3.org/2000/09/xmldsig#\">\r\n\t\t\t<SignatureValue>DADOASSINATURAFICTICIO</SignatureValue>\r\n\t\t</Signature>\r\n\t</NFe>\r\n\t<protNFe versao=\"4.00\">\r\n\t\t<infProt>\r\n\t\t\t<tpAmb>2</tpAmb>\r\n\t\t\t<verAplic>EXEMPLO_APP</verAplic>\r\n\t\t\t<chNFe>99999999999999999999999999999999999999999999</chNFe>\r\n\t\t\t<dhRecbto>2025-01-01T12:30:00-03:00</dhRecbto>\r\n\t\t\t<nProt>000000000000000</nProt>\r\n\t\t\t<digVal>DIGESTOEXEMPLO==</digVal>\r\n\t\t\t<cStat>100</cStat>\r\n\t\t\t<xMotivo>Autorizado o uso da NF-e</xMotivo>\r\n\t\t</infProt>\r\n\t</protNFe>\r\n</nfeProc>\r\n\r\n```\r\n\r\n- Documento do tipo `\"NFE\"` com o status `\"CANCELLED\"` (Evento de cancelamento de nota fiscal):\r\n```xml\r\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<procEventoNFe versao=\"1.00\" xmlns=\"http://www.portalfiscal.inf.br/nfe\">\r\n  <evento xmlns=\"http://www.portalfiscal.inf.br/nfe\" versao=\"1.00\">\r\n    <infEvento Id=\"ID1101119999999999999999999999999999999999999999999\">\r\n      <cOrgao>91</cOrgao>\r\n      <tpAmb>2</tpAmb>\r\n      <CNPJ>99999999000199</CNPJ>\r\n      <chNFe>99999999999999999999550050000123456789012345</chNFe>\r\n      <dhEvento>2025-06-01T10:00:00-03:00</dhEvento>\r\n      <tpEvento>110111</tpEvento>\r\n      <nSeqEvento>1</nSeqEvento>\r\n      <verEvento>1.00</verEvento>\r\n      <detEvento versao=\"1.00\">\r\n        <descEvento>Cancelamento</descEvento>\r\n        <nProt>123456789012345</nProt>\r\n        <xJust>Cancelamento realizado por motivo genérico para fins de teste.</xJust>\r\n      </detEvento>\r\n    </infEvento>\r\n    <Signature xmlns=\"http://www.w3.org/2000/09/xmldsig#\">\r\n      <SignedInfo>\r\n        <CanonicalizationMethod Algorithm=\"http://www.w3.org/TR/2001/REC-xml-c14n-20010315\"/>\r\n        <SignatureMethod Algorithm=\"http://www.w3.org/2000/09/xmldsig#rsa-sha1\"/>\r\n        <Reference URI=\"#ID1101119999999999999999999999999999999999999999999\">\r\n          <Transforms>\r\n            <Transform Algorithm=\"http://www.w3.org/2000/09/xmldsig#enveloped-signature\"/>\r\n            <Transform Algorithm=\"http://www.w3.org/TR/2001/REC-xml-c14n-20010315\"/>\r\n          </Transforms>\r\n          <DigestMethod Algorithm=\"http://www.w3.org/2000/09/xmldsig#sha1\"/>\r\n          <DigestValue>XXXXXXXXXXXXXXXXXXXXXXXXXXXXX=</DigestValue>\r\n        </Reference>\r\n      </SignedInfo>\r\n      <SignatureValue>XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX</SignatureValue>\r\n      <KeyInfo>\r\n        <X509Data>\r\n          <X509Certificate>MIIDXTCCAkWgAwIBAgIEUyb+qDANBgkqhkiG9w0BAQsFADBbMQswCQYDVQQGEwJCUjEWMBQGA1UECgwNQ29tcGFuaWEgRmljdGljaWExEzARBgNVBAMMCkV4ZW1wbG8gQ0EwHhcNMjUwNjAxMDAwMDAwWhcNMjYwNjAxMDAwMDAwWjBcMQswCQYDVQQGEwJCUjEXMBUGA1UECgwORW1pdGVudGUgRGV4ZW1wbG8xEzARBgNVBAMMCkV4ZW1wbG8gU1NUMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnomizado+ParaUsoEm+Docx==</X509Certificate>\r\n        </X509Data>\r\n      </KeyInfo>\r\n    </Signature>\r\n  </evento>\r\n  <retEvento versao=\"1.00\">\r\n    <infEvento>\r\n      <tpAmb>2</tpAmb>\r\n      <verAplic>EXEMPLO100200</verAplic>\r\n      <cOrgao>91</cOrgao>\r\n      <cStat>135</cStat>\r\n      <xMotivo>Evento registrado e vinculado a NF-e</xMotivo>\r\n      <chNFe>99999999999999999999550050000123456789012345</chNFe>\r\n      <tpEvento>110111</tpEvento>\r\n      <nSeqEvento>1</nSeqEvento>\r\n      <dhRegEvento>2025-06-01T10:00:00-03:00</dhRegEvento>\r\n      <nProt>123456789012346</nProt>\r\n    </infEvento>\r\n  </retEvento>\r\n</procEventoNFe>\r\n\r\n```\r\n\r\n- Documento do tipo `\"CTE\"` com o status `\"AUTHORIZED\"` (Conhecimento de transporte autorizado):\r\n```xml\r\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<cteProc xmlns=\"http://www.portalfiscal.inf.br/cte\" versao=\"4.00\">\r\n  <CTe xmlns=\"http://www.portalfiscal.inf.br/cte\">\r\n    <infCte Id=\"CTe99999999999999999999550010000000000000000000\" versao=\"4.00\">\r\n      <ide>\r\n        <cUF>99</cUF>\r\n        <cCT>00000000</cCT>\r\n        <CFOP>6353</CFOP>\r\n        <natOp>PRESTAÇÕES DE SERVIÇOS DE TRANSPORTE</natOp>\r\n        <mod>57</mod>\r\n        <serie>1</serie>\r\n        <nCT>1234567</nCT>\r\n        <dhEmi>2025-06-01T08:00:00-03:00</dhEmi>\r\n        <tpImp>1</tpImp>\r\n        <tpEmis>1</tpEmis>\r\n        <cDV>0</cDV>\r\n        <tpAmb>2</tpAmb>\r\n        <tpCTe>0</tpCTe>\r\n        <procEmi>0</procEmi>\r\n        <verProc>1.0.0</verProc>\r\n        <cMunEnv>9999999</cMunEnv>\r\n        <xMunEnv>Cidade de Origem</xMunEnv>\r\n        <UFEnv>XX</UFEnv>\r\n        <modal>01</modal>\r\n        <tpServ>0</tpServ>\r\n        <cMunIni>9999998</cMunIni>\r\n        <xMunIni>Município Inicial</xMunIni>\r\n        <UFIni>XX</UFIni>\r\n        <cMunFim>9999997</cMunFim>\r\n        <xMunFim>Município Final</xMunFim>\r\n        <UFFim>YY</UFFim>\r\n        <retira>1</retira>\r\n        <indIEToma>1</indIEToma>\r\n        <toma3>\r\n          <toma>0</toma>\r\n        </toma3>\r\n      </ide>\r\n      <emit>\r\n        <CNPJ>99999999000199</CNPJ>\r\n        <IE>000000000</IE>\r\n        <xNome>TRANSPORTADORA FICTICIA LTDA</xNome>\r\n        <enderEmit>\r\n          <xLgr>Rua Exemplo</xLgr>\r\n          <nro>100</nro>\r\n          <xBairro>Centro</xBairro>\r\n          <cMun>9999999</cMun>\r\n          <xMun>Cidade de Origem</xMun>\r\n          <CEP>99999999</CEP>\r\n          <UF>XX</UF>\r\n        </enderEmit>\r\n        <CRT>3</CRT>\r\n      </emit>\r\n      <rem>\r\n        <CNPJ>88888888000188</CNPJ>\r\n        <IE>111111111</IE>\r\n        <xNome>REMETENTE FICTÍCIO LTDA</xNome>\r\n        <enderReme>\r\n          <xLgr>Avenida Fictícia</xLgr>\r\n          <nro>9999</nro>\r\n          <xBairro>Bairro Fictício</xBairro>\r\n          <cMun>9999998</cMun>\r\n          <xMun>Município Inicial</xMun>\r\n          <CEP>88888888</CEP>\r\n          <UF>XX</UF>\r\n        </enderReme>\r\n      </rem>\r\n      <dest>\r\n        <CPF>00000000000</CPF>\r\n        <xNome>DESTINATÁRIO FICTÍCIO</xNome>\r\n        <enderDest>\r\n          <xLgr>Rua Final</xLgr>\r\n          <nro>0</nro>\r\n          <xCpl>Complemento Qualquer</xCpl>\r\n          <xBairro>Bairro Final</xBairro>\r\n          <cMun>9999997</cMun>\r\n          <xMun>Município Final</xMun>\r\n          <CEP>77777777</CEP>\r\n          <UF>YY</UF>\r\n        </enderDest>\r\n      </dest>\r\n      <vPrest>\r\n        <vTPrest>100.00</vTPrest>\r\n        <vRec>100.00</vRec>\r\n      </vPrest>\r\n      <imp>\r\n        <ICMS>\r\n          <ICMS00>\r\n            <CST>00</CST>\r\n            <vBC>100.00</vBC>\r\n            <pICMS>12.00</pICMS>\r\n            <vICMS>12.00</vICMS>\r\n          </ICMS00>\r\n        </ICMS>\r\n        <vTotTrib>12.00</vTotTrib>\r\n      </imp>\r\n      <infCTeNorm>\r\n        <infCarga>\r\n          <vCarga>500.00</vCarga>\r\n          <proPred>MERCADORIA</proPred>\r\n          <infQ>\r\n            <cUnid>01</cUnid>\r\n            <tpMed>PESO BRUTO</tpMed>\r\n            <qCarga>10.0000</qCarga>\r\n          </infQ>\r\n        </infCarga>\r\n        <infDoc>\r\n          <infNFe>\r\n            <chave>99999999999999999999550010000000000000000000</chave>\r\n            <dPrev>2025-06-05</dPrev>\r\n          </infNFe>\r\n        </infDoc>\r\n        <infModal versaoModal=\"4.00\">\r\n          <rodo>\r\n            <RNTRC>00000000</RNTRC>\r\n          </rodo>\r\n        </infModal>\r\n      </infCTeNorm>\r\n    </infCte>\r\n    <infCTeSupl>\r\n      <qrCodCTe>https://www.seufornecedor.com.br/cte/qrCode?chCTe=99999999999999999999550010000000000000000000&amp;tpAmb=2</qrCodCTe>\r\n    </infCTeSupl>\r\n    <Signature xmlns=\"http://www.w3.org/2000/09/xmldsig#\">\r\n      <SignedInfo>\r\n        <CanonicalizationMethod Algorithm=\"http://www.w3.org/TR/2001/REC-xml-c14n-20010315\"/>\r\n        <SignatureMethod Algorithm=\"http://www.w3.org/2000/09/xmldsig#rsa-sha1\"/>\r\n        <Reference URI=\"#CTe99999999999999999999550010000000000000000000\">\r\n          <Transforms>\r\n            <Transform Algorithm=\"http://www.w3.org/2000/09/xmldsig#enveloped-signature\"/>\r\n            <Transform Algorithm=\"http://www.w3.org/TR/2001/REC-xml-c14n-20010315\"/>\r\n          </Transforms>\r\n          <DigestMethod Algorithm=\"http://www.w3.org/2000/09/xmldsig#sha1\"/>\r\n          <DigestValue>XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX==</DigestValue>\r\n        </Reference>\r\n      </SignedInfo>\r\n      <SignatureValue>XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX</SignatureValue>\r\n      <KeyInfo>\r\n        <X509Data>\r\n          <X509Certificate>MIID...FICTICIO...CERTIFICADO</X509Certificate>\r\n        </X509Data>\r\n      </KeyInfo>\r\n    </Signature>\r\n  </CTe>\r\n  <protCTe versao=\"4.00\">\r\n    <infProt>\r\n      <tpAmb>2</tpAmb>\r\n      <verAplic>EXEMPLO20240601000000</verAplic>\r\n      <chCTe>99999999999999999999550010000000000000000000</chCTe>\r\n      <dhRecbto>2025-06-01T08:00:01-03:00</dhRecbto>\r\n      <nProt>999999999999999</nProt>\r\n      <digVal>XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX==</digVal>\r\n      <cStat>100</cStat>\r\n      <xMotivo>Autorizado o uso do CT-e</xMotivo>\r\n    </infProt>\r\n  </protCTe>\r\n</cteProc>\r\n\r\n\r\n```\r\n",
            "content": {}
          },
          "404": {
            "description": "Not Found"
          }
        },
        "operationId": "get-fiscalDocuments-download",
        "description": "# Consulta o Arquivo de um Documento Fiscal\r\n\r\nConsulta um documento fiscal.\r\n\r\n> #### Atenção\r\n>\r\n> O `document_item_id` é retornado junto com todo o caminho de acesso ao XML na Consulta de Documentos Fiscais, no objeto `path`, do array `documents`, exemplo abaixo:\r\n>\r\n> ```json\r\n> {\r\n>   [...],\r\n> \"documents\": [\r\n>                {\r\n>                    \"status\": \"AUTHORIZED\",\r\n>                    \"data\": \"2025-06-04T15:30:50Z\",\r\n>                    \"url\": {\r\n>                       \"path\": \"/document/download/101\",\r\n>                       \"expirationDate\": \"2030-06-04T15:30:50Z\"\r\n>                   }\r\n>                }\r\n>            ]\r\n>}\r\n>```",
        "parameters": [
          {
            "in": "query",
            "name": "id",
            "schema": {
              "type": "integer"
            },
            "description": "Id do documento fiscal gerado pelo ANYMARKET"
          }
        ]
      },
      "parameters": [
        {
          "schema": {
            "type": "string"
          },
          "name": "document_item_id",
          "in": "path",
          "required": true
        }
      ]
    },
    "/prices": {
      "parameters": [],
      "get": {
        "summary": "/prices/transmission/{id}",
        "tags": [
          "Preço"
        ],
        "responses": {
          "200": {
            "description": "Ok",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TransmissionPrice"
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "id": 9276,
                      "title": "Kit 02 Poltrona 01 Namoradeira e 02 Puffs Dado Suede Amarelo",
                      "accountName": "ECOMMERCE",
                      "idAccount": 1,
                      "idSku": 76579,
                      "basePrice": 1039.9,
                      "priceFactor": 1.8,
                      "originalPrice": 1984.81,
                      "finalPrice": 1875.81,
                      "discount": {
                        "discountType": "PERCENT",
                        "discountValue": 12.43
                      },
                      "priceRule": {
                        "priceRuleRegular": 1871.83,
                        "priceRuleDeal": 1871.82
                      },
                      "campaign": {
                        "campaignRegularPrice": 1871.83,
                        "campaignDealPrice": 1871.82
                      }
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/404"
                },
                "examples": {
                  "Example 1": {
                    "value": {
                      "code": "404",
                      "message": "TransmissionPrice não encontrado para o oi=47., transmissionId=927600"
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "get-prices-id",
        "description": "# Consultar dados de transmissão por ID\r\nEste endpoint retorna as informações detalhadas da transmissão (registro da tabela SKU_MARKETPLACE) identificada pelo seu ID. Os dados incluem título do SKU, conta associada, preços (base, original e final), fator de preço, regras aplicadas, descontos e campanhas."
      }
    }
  },
  "components": {
    "securitySchemes": {
      "gumgaToken": {
        "name": "gumgaToken",
        "type": "apiKey",
        "in": "header",
        "description": "Token de segurança fornecido pela Anymarket"
      }
    },
    "parameters": {
      "limit": {
        "name": "limit",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "format": "int64",
          "minimum": 5,
          "default": 5,
          "example": 5,
          "maximum": 100
        },
        "description": "Número máximo de elementos"
      },
      "sort": {
        "name": "sort",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string"
        },
        "description": "Atributo para ordenar"
      },
      "name": {
        "name": "name",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string"
        },
        "description": "Atributo para filtrar por nombre"
      },
      "partnerId": {
        "name": "partnerId",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string"
        },
        "description": "Atributo para filtrar por partnerId"
      },
      "offset": {
        "name": "offset",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "format": "int64",
          "minimum": 0
        },
        "description": "Posición de inicio de paginación"
      },
      "sortDirection": {
        "name": "sortDirection",
        "in": "query",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "ASC",
            "DESC"
          ]
        },
        "description": "Atributo a clasificación directa (ASC o DESC)"
      },
      "marketplaceQuery": {
        "name": "marketplace",
        "in": "query",
        "schema": {
          "$ref": "#/components/schemas/EnumMarketplaces"
        },
        "description": "Marketplace"
      },
      "marketPlace": {
        "name": "marketPlace",
        "in": "path",
        "schema": {
          "$ref": "#/components/schemas/EnumMarketplaces"
        },
        "description": "Marketplace",
        "required": true
      }
    },
    "schemas": {
      "400": {
        "description": "",
        "type": "object",
        "properties": {
          "code": {
            "type": "string",
            "minLength": 1
          },
          "message": {
            "type": "string",
            "minLength": 1
          }
        },
        "title": "400 - Bad Request",
        "example": {
          "code": "400",
          "message": "Não foi possível finalizar a chamada."
        }
      },
      "404": {
        "description": "",
        "type": "object",
        "properties": {
          "code": {
            "type": "string",
            "minLength": 1
          },
          "message": {
            "type": "string",
            "minLength": 1
          }
        },
        "title": "404 - Not Found",
        "example": {
          "code": "404",
          "message": "Recurso com o id 'xxx' não encontrado."
        }
      },
      "422": {
        "description": "",
        "type": "object",
        "properties": {
          "code": {
            "type": "string",
            "minLength": 1
          },
          "message": {
            "type": "string",
            "minLength": 1
          }
        },
        "title": "422 - Error",
        "example": {
          "code": "422",
          "message": "O campo informado esta fora das especificações."
        }
      },
      "500": {
        "description": "",
        "type": "object",
        "properties": {
          "code": {
            "type": "string",
            "minLength": 1
          },
          "message": {
            "type": "string",
            "minLength": 1
          }
        },
        "title": "500 - Error",
        "example": {
          "code": "500",
          "message": "Erro no sistema. Detalhes: Ocorreu um erro inesperado. Por favor, tente novamente."
        }
      },
      "BrandAdd": {
        "title": "BrandAdd",
        "allOf": [
          {
            "properties": {
              "name": {
                "type": "string",
                "description": "Nome da marca",
                "minLength": 1,
                "maxLength": 120
              },
              "reducedName": {
                "type": "string",
                "description": "Nome reduzido da marca",
                "minLength": 0,
                "maxLength": 30
              },
              "partnerId": {
                "type": "string",
                "minLength": 0,
                "maxLength": 255,
                "description": "ID da marca no parceiro"
              }
            },
            "required": [
              "name"
            ]
          }
        ],
        "description": "Model brand add",
        "type": "object"
      },
      "PageLinks": {
        "title": "PageLinks",
        "type": "object",
        "properties": {
          "rel": {
            "type": "string",
            "description": "Relación de hyperlink",
            "example": "next"
          },
          "href": {
            "type": "string",
            "description": "URL de definición de recurso",
            "example": "https://.../v2/{rota}?limit=5&offset=5"
          }
        }
      },
      "PageMetadata": {
        "title": "PageMetadata",
        "type": "object",
        "properties": {
          "size": {
            "type": "integer",
            "description": "Tamaño de página",
            "format": "int64",
            "readOnly": true
          },
          "totalElements": {
            "type": "integer",
            "description": "Total de elementos existentes",
            "format": "int64",
            "readOnly": true
          },
          "totalPages": {
            "type": "integer",
            "description": "Total de páginas disponibles",
            "format": "int64",
            "readOnly": true
          },
          "number": {
            "type": "integer",
            "description": "Número de página actual",
            "format": "int64",
            "readOnly": true
          }
        }
      },
      "Page_CallBack": {
        "title": "Page_CallBack",
        "allOf": [
          {
            "properties": {
              "links": {
                "type": "array",
                "description": "Referências de paginação",
                "uniqueItems": false,
                "minItems": 1,
                "maxItems": 1,
                "items": {
                  "$ref": "#/components/schemas/PageLinks"
                }
              },
              "page": {
                "$ref": "#/components/schemas/PageMetadata"
              }
            }
          }
        ],
        "description": "",
        "type": "object"
      },
      "CallBack": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string",
            "description": "URL do callback",
            "minLength": 1,
            "maxLength": 255
          },
          "orderActive": {
            "type": "boolean",
            "description": "Indica se o ANYMARKET deve encaminhar callback de pedido"
          },
          "productActive": {
            "type": "boolean",
            "description": "Indica se o ANYMARKET deve encaminhar callback de produto"
          },
          "transmissionActive": {
            "type": "boolean",
            "description": "Indica se o ANYMARKET deve encaminhar callback de transmissão"
          },
          "questionActive ": {
            "type": "boolean",
            "description": "Indica se o ANYMARKET deve encaminhar callback de pergunta"
          }
        },
        "required": [
          "url"
        ],
        "example": {
          "url": "http://example.com",
          "token": "string",
          "orderActive": true,
          "productActive": true,
          "transmissionActive": true,
          "questionActive ": true
        }
      },
      "CallBackPost": {
        "title": "CallBackPost",
        "allOf": [
          {
            "properties": {
              "url": {
                "type": "string",
                "description": "URL do callback",
                "minLength": 1,
                "maxLength": 255,
                "format": "hostname"
              },
              "orderActive": {
                "type": "boolean",
                "description": "Indica se o ANYMARKET deve encaminhar callback de pedido "
              },
              "productActive": {
                "type": "boolean",
                "description": "Indica se o ANYMARKET deve encaminhar callback de produto"
              },
              "transmissionActive": {
                "type": "boolean",
                "description": "Indica se o ANYMARKET deve encaminhar callback de transmissão "
              },
              "questionActive ": {
                "type": "boolean",
                "description": "Indica se o ANYMARKET deve encaminhar callback de pergunta"
              }
            },
            "required": [
              "url"
            ]
          }
        ],
        "description": "Model post callBack",
        "type": "object"
      },
      "Campaign": {
        "title": "Campaign",
        "allOf": [
          {
            "properties": {
              "id": {
                "type": "integer",
                "description": "ID gerado pelo ANYMARKET",
                "format": "int64",
                "minimum": 0
              },
              "title": {
                "type": "string",
                "description": "Título da campanha",
                "maxLength": 35
              },
              "idAccount": {
                "type": "string",
                "maxLength": 35,
                "description": "ID da conta utilizada no MARKETPLACE "
              },
              "accountName": {
                "type": "string",
                "description": "Conta utilizada no MARKETPLACE",
                "maxLength": 100
              },
              "description": {
                "type": "string",
                "description": "Descrição da campanha"
              },
              "initialDate": {
                "type": "string",
                "description": "Data inicial",
                "format": "date-time"
              },
              "finalDate": {
                "type": "string",
                "description": "Data final",
                "format": "date-time"
              },
              "marketplace": {
                "type": "string",
                "description": "Marketplace da campanha"
              },
              "status": {
                "type": "string",
                "description": "Status relacionado a campanha",
                "enum": [
                  "SCHEDULED",
                  "ACTIVE",
                  "FINALIZED"
                ]
              },
              "productsCount": {
                "type": "number",
                "description": "Quantidade de produtos afetados na campanha.",
                "format": "long"
              }
            }
          }
        ],
        "description": "Model return campaign",
        "type": "object"
      },
      "CategoryGET": {
        "title": "Category",
        "description": "Model return category",
        "type": "object",
        "required": [
          "id",
          "name"
        ],
        "properties": {
          "id": {
            "type": "integer",
            "format": "int64",
            "description": "ID interno",
            "minimum": 0
          },
          "name": {
            "type": "string",
            "description": "Nome da categoria",
            "maxLength": 80
          },
          "path": {
            "type": "string",
            "description": "Diretório e subdiretórios da categoria",
            "maxLength": 1000
          },
          "partnerId": {
            "type": "string",
            "description": "ID da categoria no parceiro",
            "maxLength": 80
          },
          "priceFactor": {
            "type": "number",
            "format": "double",
            "description": "Fator de preço",
            "minimum": 0
          },
          "definitionPriceScope": {
            "type": "string",
            "description": "SKU (Manual, eu controlo o preço pelo SKU), SKU_MARKETPLACE (Manual, eu controlo o preço pelo anúncio) ou COST (Automático, pela mudança do custo)",
            "enum": [
              "SKU",
              "SKU_MARKETPLACE",
              "COST"
            ]
          }
        },
        "example": {
          "id": 0,
          "name": "string",
          "path": "string",
          "partnerId": "string",
          "priceFactor": 0,
          "definitionPriceScope": "SKU"
        }
      },
      "Page_Category": {
        "title": "Page_Category",
        "type": "object",
        "required": [
          "links",
          "content",
          "page"
        ],
        "properties": {
          "links": {
            "type": "array",
            "description": "Referências de paginação",
            "items": {
              "$ref": "#/components/schemas/PageLinks"
            }
          },
          "content": {
            "type": "array",
            "description": "Lista de categorias",
            "items": {
              "$ref": "#/components/schemas/CategoryGET"
            }
          },
          "page": {
            "$ref": "#/components/schemas/PageMetadata"
          }
        },
        "example": {
          "links": [
            {
              "rel": "next",
              "href": "https://.../v2/{rota}?limit=5&offset=5"
            }
          ],
          "content": [
            {
              "id": 0,
              "name": "string",
              "path": "string",
              "partnerId": "string",
              "priceFactor": 0,
              "definitionPriceScope": "SKU"
            }
          ],
          "page": {
            "size": 0,
            "totalElements": 0,
            "totalPages": 0,
            "number": 0
          }
        }
      },
      "CategoryPOST": {
        "title": "Category",
        "allOf": [
          {
            "properties": {
              "id": {
                "type": "integer",
                "format": "int64",
                "minimum": 0,
                "description": "ID interno"
              },
              "name": {
                "type": "string",
                "description": "Nome da categoria",
                "maxLength": 80
              },
              "partnerId": {
                "type": "string",
                "description": "ID da categoria no parceiro",
                "maxLength": 80
              },
              "priceFactor": {
                "type": "number",
                "format": "double",
                "description": "Fator de preço",
                "minimum": 0
              },
              "definitionPriceScope": {
                "type": "string",
                "description": "SKU (Manual, eu controlo o preço pelo SKU), SKU_MARKETPLACE (Manual, eu controlo o preço pelo anúncio) ou COST (Automático, pela mudança do custo)",
                "enum": [
                  "SKU",
                  "SKU_MARKETPLACE",
                  "COST"
                ]
              },
              "parent": {
                "type": "object",
                "description": "Categoria Pai (Utilizado na criação de Subcategorias)",
                "properties": {
                  "id": {
                    "type": "integer",
                    "format": "int64",
                    "minimum": 0,
                    "description": "ID da categoria gerado pelo ANYMARKET"
                  }
                }
              }
            },
            "required": [
              "name"
            ]
          }
        ],
        "description": "Model return brand",
        "type": "object"
      },
      "CategoryChildren": {
        "title": "Category",
        "allOf": [
          {
            "properties": {
              "id": {
                "type": "integer",
                "format": "int64",
                "minimum": 0,
                "description": "ID interno"
              },
              "name": {
                "type": "string",
                "description": "Nome da categoria",
                "maxLength": 80
              },
              "path": {
                "type": "string",
                "description": "Nome da categoria",
                "maxLength": 1000
              },
              "partnerId": {
                "type": "string",
                "description": "ID da categoria no parceiro",
                "maxLength": 80
              },
              "priceFactor": {
                "type": "number",
                "format": "double",
                "description": "Fator de preço",
                "minimum": 0
              },
              "definitionPriceScope": {
                "type": "string",
                "description": "SKU (Manual, eu controlo o preço pelo SKU), SKU_MARKETPLACE (Manual, eu controlo o preço pelo anúncio) ou COST (Automático, pela mudança do custo)\nCaso não informado o ANYMARKET adotará o cálculo como 'COST'.",
                "enum": [
                  "SKU",
                  "SKU_MARKETPLACE",
                  "COST"
                ]
              },
              "parent": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "integer",
                    "format": "int64",
                    "description": "ID da categoria gerado pelo ANYMARKET ",
                    "minimum": 0
                  },
                  "parnerId": {
                    "type": "string",
                    "description": "Id da categoria no parceiro"
                  }
                }
              },
              "children": {
                "$ref": "#/components/schemas/CategoryChildren"
              }
            }
          }
        ],
        "description": "Model return brand",
        "type": "object"
      },
      "CategoryFullPath": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "description": "ID de categoría generado por ANYMARKET",
            "format": "int64",
            "minimum": 0
          },
          "name": {
            "type": "string",
            "minLength": 1,
            "description": "Nombre de la categoría"
          },
          "path": {
            "type": "string",
            "minLength": 1,
            "description": "Caminho da categoria"
          },
          "partnerId": {
            "type": "string",
            "minLength": 1,
            "description": "ID da categoria no parceiro "
          },
          "priceFactor": {
            "type": "number",
            "format": "double",
            "description": "Fator de preço "
          },
          "children": {
            "$ref": "#/components/schemas/CategoryChildren"
          }
        }
      },
      "PrintTagPost": {
        "type": "object",
        "properties": {
          "orders": {
            "type": "array",
            "description": "ID de ventas",
            "items": {
              "type": "integer",
              "description": "Id da venda"
            }
          }
        },
        "required": [
          "orders"
        ]
      },
      "PrintTag": {
        "allOf": [
          {
            "properties": {
              "content": {
                "type": "string",
                "description": "Conteúdo presente no TXT do ZPL2, disponível apenas no modo ZPL2 com o parâmetro TXT."
              }
            }
          }
        ],
        "type": "object"
      },
      "EnumMarketplaces": {
        "type": "string",
        "title": "Marketplaces",
        "enum": [
          "MERCADO_LIVRE",
          "ALIEXPRESS",
          "AMAZON_GLOBAL_API",
          "ANGELONI",
          "ARMAZEM_PARAIBA",
          "B2W_NEW_API",
          "BABYBIZ",
          "BANCO_INTER",
          "BANDSHOP",
          "BELEZA_NA_WEB_NEW_API",
          "BRAVIUM",
          "C_A",
          "CARREFOUR",
          "CASA_VIDEO",
          "CASSOL_CENTERLAR",
          "CENTAURO_NEW_API",
          "CLAROSHOP_MEXICO",
          "COMFORTFLEX_NOVA_API",
          "COMPRA_CERTA",
          "COPPEL",
          "CSM",
          "DB1_MARKETPLACE",
          "DECATHLON",
          "DIGIGROW",
          "EFACIL",
          "ELEKTRA",
          "EOS",
          "EPOCA",
          "ESTANTE_VIRTUAL",
          "FALABELLA",
          "FARMADELIVERY",
          "FASTSHOP_NEW_API",
          "FENICIO",
          "FOODIES_STORE",
          "GFG",
          "GRUPO_MATEUS",
          "HELP_SELLER",
          "HITES",
          "HOUSE_OF_GAMERS",
          "ICBC_MALL",
          "IGA",
          "ITAU",
          "JUMPSELLER",
          "KABUM",
          "KOERICH",
          "LE_BISCUIT",
          "LEROY_MERLIN",
          "LIVESHOP",
          "LL_LOYALTY",
          "LOJA_DO_COOPERADO",
          "LOJA_DO_MECANICO",
          "LOJAS_COLOMBO",
          "LOJAS_IMPERIO",
          "LOJAS_LEBES_NEW_API",
          "LOJAS_MM",
          "LOJAS_QUERO_QUERO",
          "MADEIRA_MADEIRA",
          "MAGAZINE_LUIZA",
          "MAGENTO",
          "MAIS_CORREIOS",
          "MARCA_SELETA",
          "MARTINS_ATACADO",
          "MEGATONE",
          "MOBLY",
          "MULTIVAREJO_GPA",
          "NETSHOES",
          "NEXTSHOP",
          "NUVEMSHOP",
          "OLIST_NEW_API",
          "PAGUE_MENOS",
          "PARIS",
          "PHILIPS_STORE",
          "PITSTOP",
          "PNEUBEST",
          "POLISHOP",
          "POSTHAUS_NEW_API",
          "PRESTASHOP",
          "PRIVALIA",
          "RAIA_DROGASIL",
          "RAMARIM_NOVA_API",
          "RENNER",
          "RI_HAPPY_NEW_API",
          "RIACHUELO",
          "RIPLEY",
          "SENFF_SHOPPING",
          "SHEIN",
          "SHOPEE",
          "SHOPHUB",
          "SHOPIFY",
          "SHOPPING_BB",
          "SHOPPING_LIVELO",
          "SICOOB",
          "SICREDI",
          "STECK",
          "SUBLIMITY",
          "TA_TASHOP",
          "TENDA_ATACADO",
          "THE_HOME_DEPOT",
          "TIENDA_CLIC",
          "TIKTOK_SHOP",
          "TRAY",
          "TROCAFONE",
          "VALE_BONUS",
          "VENTURESHOP",
          "VINKLO_BY_FESTALAB",
          "VTEX",
          "WALMART",
          "WEB_CONTINENTAL_V2",
          "WEHOUSE",
          "WOOCOMMERCE",
          "WOOCOMMERCE2",
          "YA_PLACE_STORE",
          "ZEMA",
          "ZOOM"
        ],
        "description": "Descritivo de qual marketplace o pedido pertence",
        "example": "ALIEXPRESS"
      },
      "StockFulfillmentGet": {
        "description": "",
        "type": "object",
        "properties": {
          "sku": {
            "type": "string",
            "description": "Código do SKU no MarketPlace"
          },
          "document": {
            "type": "string",
            "minLength": 14,
            "maxLength": 14,
            "description": "CNPJ do centro de distribuição (CD) fulfillment"
          },
          "description": {
            "type": "string",
            "description": "Descrição do centro de distribuição (CD) fulfillment"
          },
          "fulfillment_quantity_stock": {
            "type": "number",
            "description": "Quantidade de estoque fulfillment no centro de distribuição (CD)",
            "format": "double"
          },
          "fulfillment_reserved_stock": {
            "type": "number",
            "description": "Quantidade de estoque fulfillment reservado no centro de distribuição (CD)",
            "format": "double"
          },
          "fulfillment_available_stock": {
            "type": "number",
            "description": "Quantidade de estoque fulfillment disponível no centro de distribuição (CD). Obtido através do cálculo (fulfillment_quantity_stock - fulfillment_reserved_stock)",
            "format": "double"
          }
        },
        "example": {
          "sku": "string",
          "document": "string",
          "description": "string",
          "fulfillment_quantity_stock": "number",
          "fulfillment_available_stock": "number",
          "fulfillment_reserved_stock": "number"
        }
      },
      "StockLocalGet": {
        "description": "",
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "description": "ID do local de inventario",
            "format": "int64",
            "minimum": 1
          },
          "name": {
            "type": "string",
            "minLength": 1,
            "description": "Descripción de local de inventario "
          },
          "virtual": {
            "type": "boolean",
            "description": "Identifica si lo local de inventario es virtual"
          },
          "defaultLocal": {
            "type": "boolean",
            "description": "Identifica si lo local de inventario es la predeterminada"
          },
          "zipCode": {
            "type": "string",
            "minLength": 1,
            "description": "Codigo postal de lo local de inventario"
          }
        },
        "example": {
          "id": 0,
          "name": "string",
          "virtual": true,
          "distributor": "string",
          "defaultLocal": true,
          "zipCode": "string"
        }
      },
      "StockLocalPost": {
        "description": "",
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "minLength": 1,
            "description": "Descripción de local de inventario",
            "maxLength": 200
          },
          "virtual": {
            "type": "boolean",
            "description": "Identifica si lo local de inventario es virtual"
          },
          "defaultLocal": {
            "type": "boolean",
            "description": "Identifica si lo local de inventario es la predeterminada"
          },
          "zipCode": {
            "type": "string",
            "minLength": 1,
            "description": "Codigo postal de lo local de inventario"
          },
          "distributor": {
            "type": "string",
            "minLength": 1,
            "description": "(Requerido cuando el inventario virtual) Distribuidor para el inventario virtual = ['UNDEFINED', 'ALDO', 'EVOLUSOM', 'HAYAMAX', 'PROSHOWS']"
          }
        },
        "required": [
          "name"
        ],
        "example": {
          "name": "string",
          "virtual": true,
          "defaultLocal": true,
          "zipCode": "string"
        }
      },
      "OrderFeed": {
        "description": "",
        "type": "object",
        "title": "OrderFeed",
        "properties": {
          "id": {
            "type": "integer",
            "description": "ID de pedido generado por ANYMARKET",
            "format": "int64",
            "minimum": 0
          },
          "token": {
            "type": "string",
            "minLength": 1,
            "description": "Token de feed",
            "format": "uuid"
          }
        },
        "x-tags": [
          "Feed"
        ]
      },
      "TransmissionsFeed": {
        "description": "",
        "type": "object",
        "title": "TransmissionsFeed",
        "properties": {
          "id": {
            "type": "integer",
            "description": "ID de SKU generado por ANYMARKET",
            "format": "int64",
            "minimum": 0
          },
          "token": {
            "type": "string",
            "minLength": 1,
            "description": "Token do feed",
            "format": "uuid"
          }
        },
        "x-tags": [
          "Feed"
        ]
      },
      "TransmissionsPriceFeed": {
        "description": "",
        "type": "object",
        "title": "TransmissionsPriceFeed",
        "properties": {
          "id": {
            "type": "integer",
            "description": "ID da notificação gerado pelo ANYMARKET ",
            "format": "int64",
            "minimum": 0
          },
          "token": {
            "type": "string",
            "minLength": 1,
            "description": "Token do feed",
            "format": "uuid"
          }
        },
        "x-tags": [
          "Feed"
        ]
      },
      "FreightRequest": {
        "description": "",
        "type": "object",
        "properties": {
          "zipCode": {
            "type": "string",
            "minLength": 1,
            "description": "Código postal del destinatario del envío sin guión",
            "maxLength": 8
          },
          "marketPlace": {
            "description": "Marketplace donde se realizó la consulta",
            "type": "string"
          },
          "additionalPercentual": {
            "type": "number",
            "description": "Porcentaje a añadir al coste de envío",
            "format": "double"
          },
          "timeout": {
            "type": "integer",
            "description": "Timeout, en milisegundos, para la consulta",
            "format": "int32",
            "minimum": 0
          },
          "products": {
            "type": "array",
            "uniqueItems": true,
            "minItems": 1,
            "description": "Lista de productos a consultar",
            "items": {
              "type": "object",
              "properties": {
                "skuId": {
                  "type": "string",
                  "minLength": 1,
                  "description": "Código do item no marketplace "
                },
                "amount": {
                  "type": "integer",
                  "description": "Quantidade do item ",
                  "format": "int32",
                  "maximum": 1000000,
                  "minimum": 0
                },
                "dimensions": {
                  "type": "object",
                  "description": "Dimensões do item",
                  "properties": {
                    "height": {
                      "type": "number",
                      "description": "Altura do objeto"
                    },
                    "width": {
                      "type": "number",
                      "description": "Largura do objeto"
                    },
                    "weight": {
                      "type": "number",
                      "description": "Peso do objeto"
                    },
                    "length": {
                      "type": "number",
                      "description": "Comprimento do objeto"
                    }
                  }
                }
              },
              "required": [
                "skuId",
                "amount"
              ]
            }
          }
        },
        "required": [
          "zipCode",
          "marketPlace"
        ],
        "example": {
          "zipCode": "string",
          "marketPlace": "string",
          "additionalPercentual": -1.7976931348623157e+308,
          "timeout": 0,
          "products": [
            {
              "skuId": "string",
              "amount": 0,
              "dimensions": {
                "height": 0,
                "width": 0,
                "weight": 0,
                "length": 0
              }
            }
          ]
        }
      },
      "FreightResponse": {
        "description": "",
        "type": "object",
        "properties": {
          "marketPlace": {
            "description": "Marketplace donde se realizó la consulta",
            "$ref": "#/components/schemas/EnumMarketplaces"
          },
          "zipCode": {
            "type": "string",
            "minLength": 1,
            "description": "Código postal del destinatario del envío sin guión",
            "maxLength": 8
          },
          "products": {
            "type": "array",
            "uniqueItems": true,
            "minItems": 1,
            "description": "Lista de productos existentes",
            "items": {
              "type": "object",
              "properties": {
                "skuId": {
                  "type": "string",
                  "minLength": 1,
                  "description": "Código do item no marketplace "
                },
                "amount": {
                  "type": "number",
                  "description": "Quantidade do item"
                },
                "dimensions": {
                  "type": "object",
                  "description": "Dimensões do item",
                  "properties": {
                    "height": {
                      "type": "number",
                      "description": "Altura do objeto"
                    },
                    "width": {
                      "type": "number",
                      "description": "Largura do objeto"
                    },
                    "weight": {
                      "type": "number",
                      "description": "Peso do objeto"
                    },
                    "length": {
                      "type": "number",
                      "description": "Comprimento do objeto"
                    }
                  }
                },
                "stockAmount": {
                  "type": "number",
                  "description": "Quantidade em estoque"
                },
                "additionalDeliveryTime": {
                  "type": "number",
                  "description": "Prazo adicional em dias para este produto "
                },
                "price": {
                  "type": "number",
                  "description": "Preço normal do produto",
                  "format": "double",
                  "minimum": 0
                },
                "discountPrice": {
                  "type": "number",
                  "description": "Preço do produto com desconto ",
                  "format": "double",
                  "minimum": 0
                }
              }
            }
          },
          "quotes": {
            "type": "array",
            "uniqueItems": true,
            "minItems": 1,
            "description": "Cotizaciones de fletes",
            "items": {
              "type": "object",
              "properties": {
                "carrierName": {
                  "type": "string",
                  "minLength": 1,
                  "description": "Nome da empresa de transporte "
                },
                "serviceName": {
                  "type": "string",
                  "minLength": 1,
                  "description": "Nome do serviço de transporte "
                },
                "deliveryTime": {
                  "type": "number",
                  "description": "Prazo de entrega em dias "
                },
                "freightType": {
                  "type": "string",
                  "minLength": 1,
                  "description": "Tipo do frete (NORMAL/EXPRESS) ",
                  "enum": [
                    "NORMAL",
                    "EXPRESS"
                  ]
                },
                "price": {
                  "type": "number",
                  "description": "Valor do frete",
                  "format": "double",
                  "minimum": 0
                }
              }
            }
          },
          "defaultFreight": {
            "type": "object",
            "description": "Cuando se configura el envío estándar y no se encuentra ningún SKU buscado, devuelve el monto del envío estándar",
            "properties": {
              "carrierName": {
                "type": "string",
                "minLength": 1,
                "description": "Nome da empresa de transporte "
              },
              "serviceName": {
                "type": "string",
                "minLength": 1,
                "description": "Nome do serviço de transporte "
              },
              "deliveryTime": {
                "type": "number",
                "description": "Prazo de entrega em dias "
              },
              "freightType": {
                "type": "string",
                "minLength": 1,
                "description": "Tipo do frete (NORMAL/EXPRESS) ",
                "enum": [
                  "NORMAL",
                  "EXPRESS"
                ]
              },
              "price": {
                "type": "number",
                "description": "Valor do frete",
                "format": "double",
                "minimum": 0
              }
            }
          },
          "missingSkus": {
            "type": "object",
            "description": "Mapa con los SKUs no encontrados"
          }
        },
        "example": {
          "marketPlace": "string",
          "zipCode": "string",
          "products": [
            {
              "skuId": "string",
              "amount": 0,
              "dimensions": {
                "height": 0,
                "width": 0,
                "weight": 0,
                "length": 0
              },
              "stockAmount": 0,
              "additionalDeliveryTime": 0,
              "price": 0,
              "discountPrice": 0
            }
          ],
          "quotes": [
            {
              "carrierName": "string",
              "serviceName": "string",
              "deliveryTime": 0,
              "freightType": "string",
              "price": 0
            }
          ],
          "defaultFreight": {
            "carrierName": "string",
            "serviceName": "string",
            "deliveryTime": 0,
            "freightType": "string",
            "price": 0
          },
          "missingSkus": {}
        }
      },
      "Image": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "description": "ID de imagen generado por ANYMARKET",
            "format": "int64",
            "minimum": 0
          },
          "index": {
            "type": "integer",
            "description": "Índice de imagen, es decir, posición de la imagen en el registro del producto; comienza en 1 y limita el número de imágenes en el producto",
            "format": "int32",
            "minimum": 0
          },
          "main": {
            "type": "boolean",
            "description": "Determina si la imagen es primaria",
            "default": false
          },
          "url": {
            "type": "string",
            "minLength": 1,
            "description": "URL de la imagen original",
            "format": "uri"
          },
          "thumbnailUrl": {
            "type": "string",
            "minLength": 1,
            "description": "URL de la imagen en miniatura",
            "format": "uri"
          },
          "lowResolutionUrl": {
            "type": "string",
            "minLength": 1,
            "description": "URL de imagen de baja resolución",
            "format": "uri"
          },
          "standardUrl": {
            "type": "string",
            "minLength": 1,
            "description": "URL de imagen predeterminada",
            "format": "uri"
          },
          "originalImage": {
            "type": "string",
            "minLength": 1,
            "description": "URL de la imagen original con sus dimensiones originales",
            "format": "uri"
          },
          "variation": {
            "type": "string",
            "minLength": 1,
            "description": "Indica a qué variación pertenece la imagen",
            "example": "Azul"
          },
          "status": {
            "type": "string",
            "minLength": 1,
            "description": "Determina cuál es el status de la imagen.",
            "enum": [
              "UNPROCESSED",
              "PROCESSED",
              "ERROR"
            ]
          },
          "statusMessage": {
            "type": "string",
            "minLength": 1,
            "description": "Se rellena cuando hay un error en el procesamiento de la imagen"
          },
          "standardWidth": {
            "type": "integer",
            "description": "Dimensión de ancho de imagen predeterminada",
            "format": "int32"
          },
          "standardHeight": {
            "type": "integer",
            "description": "Dimensión de altura de imagen predeterminada",
            "format": "int32"
          },
          "originalWidth": {
            "type": "integer",
            "description": "Dimensión del ancho de la imagen original",
            "format": "int32"
          },
          "originalHeight": {
            "type": "integer",
            "description": "Dimensión de altura de la imagen original",
            "format": "int32"
          }
        },
        "required": [
          "main",
          "url"
        ]
      },
      "ImagePut": {
        "description": "",
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "description": "ID de imagen vinculada al producto en ANYMARKET"
          },
          "index": {
            "type": "integer",
            "description": "Índice de imagen, es decir, posición de la imagen que será actualizada en el registro del producto; comienza en 1 y limita el número de imágenes en el producto"
          },
          "main": {
            "type": "boolean",
            "description": "Determina si la imagen es primaria"
          }
        },
        "required": [
          "id",
          "index"
        ],
        "example": {
          "id": 0,
          "index": 0,
          "main": true
        }
      },
      "ImagePost": {
        "description": "",
        "type": "object",
        "properties": {
          "index": {
            "type": "integer",
            "description": "Índice de imagen, es decir, posición de la imagen en el registro del producto; comienza en 1 y limita el número de imágenes en el producto",
            "format": "int32",
            "minimum": 0
          },
          "main": {
            "type": "boolean",
            "description": "Determina si la imagen es primaria"
          },
          "url": {
            "type": "string",
            "minLength": 1,
            "description": "URL de la imagen original"
          },
          "variation": {
            "type": "string",
            "minLength": 1,
            "description": "Indica a qué variación pertenece la imagen"
          }
        },
        "required": [
          "url"
        ],
        "example": {
          "index": 0,
          "main": true,
          "url": "string",
          "variation": "string"
        }
      },
      "MonitoringPost": {
        "description": "",
        "type": "object",
        "properties": {
          "partnerId": {
            "type": "string",
            "minLength": 1,
            "description": "ID de monitoreo - control\nen el socio"
          },
          "origin": {
            "type": "string",
            "minLength": 1,
            "description": "nombre del integrador"
          },
          "message": {
            "type": "string",
            "minLength": 1,
            "description": "Resumen de mensajes de error",
            "maxLength": 500
          },
          "details": {
            "type": "string",
            "minLength": 1,
            "description": "Detalles del mensaje de error",
            "maxLength": 4000
          },
          "createdAt": {
            "type": "string",
            "minLength": 1,
            "description": "Fecha de entrada de registro",
            "format": "date-time"
          },
          "type": {
            "type": "string",
            "minLength": 1,
            "description": "Tipo de monitoreo (ERROR, WARN)",
            "enum": [
              "ALERT",
              "INTERNAL_ERROR",
              "CRITICAL_ERROR"
            ]
          },
          "retryCallbackURL": {
            "type": "string",
            "minLength": 1,
            "description": "URL de la API del integrador",
            "format": "uri"
          },
          "status": {
            "type": "string",
            "minLength": 1,
            "description": "Tipo de status de monitoreo (PENDIENTE, REINTENTANDO, CANCELADO, CONCLUIDO)",
            "enum": [
              "PENDING",
              "RETRYING",
              "CANCELLED",
              "CONCLUDED"
            ]
          }
        },
        "required": [
          "partnerId",
          "origin",
          "message",
          "createdAt"
        ]
      },
      "MonitoringPut": {
        "description": "",
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "description": "ID de monitoreo",
            "format": "int64",
            "minimum": 1
          },
          "partnerId": {
            "type": "string",
            "minLength": 1,
            "description": "ID de monitoreo - control\n en el socio"
          },
          "origin": {
            "type": "string",
            "minLength": 1,
            "description": "Nombre del integrador"
          },
          "message": {
            "type": "string",
            "minLength": 1,
            "description": "Resumen de mensajes de error",
            "maxLength": 500
          },
          "details": {
            "type": "string",
            "minLength": 1,
            "description": "Detalles del mensaje de error",
            "maxLength": 4000
          },
          "createdAt": {
            "type": "string",
            "minLength": 1,
            "description": "Fecha de entrada de registro",
            "format": "date-time"
          },
          "type": {
            "type": "string",
            "minLength": 1,
            "description": "Tipo de monitoreo (ERROR, WARN)",
            "enum": [
              "ALERT",
              "INTERNAL_ERROR",
              "CRITICAL_ERROR"
            ]
          },
          "retryCallbackURL": {
            "type": "string",
            "minLength": 1,
            "description": "URL de la API del integrador",
            "format": "uri"
          },
          "status": {
            "type": "string",
            "minLength": 1,
            "description": "Tipo de status de monitoreo  (PENDIENTE, REINTENTANDO, CANCELADO, CONCLUIDO)",
            "enum": [
              "PENDING",
              "RETRYING",
              "CANCELLED",
              "CONCLUDED"
            ]
          }
        },
        "required": [
          "partnerId",
          "origin",
          "message",
          "status"
        ]
      },
      "Monitoring": {
        "description": "",
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "description": "ID de monitoreo",
            "format": "int64",
            "minimum": 1
          },
          "partnerId": {
            "type": "string",
            "minLength": 1,
            "description": "ID de monitoreo - control\n en el socio"
          },
          "origin": {
            "type": "string",
            "minLength": 1,
            "description": "Nombre del integrador"
          },
          "message": {
            "type": "string",
            "minLength": 1,
            "description": "Resumen de mensajes de error",
            "maxLength": 500
          },
          "details": {
            "type": "string",
            "minLength": 1,
            "description": "Detalles del mensaje de error",
            "maxLength": 4000
          },
          "createdAt": {
            "type": "string",
            "minLength": 1,
            "description": "Fecha de entrada de registro",
            "format": "date-time"
          },
          "type": {
            "type": "string",
            "minLength": 1,
            "description": "Tipo de monitoramento (ERROR, WARN)",
            "enum": [
              "ALERT",
              "INTERNAL_ERROR",
              "CRITICAL_ERROR"
            ]
          },
          "retryCallbackURL": {
            "type": "string",
            "minLength": 1,
            "description": "URL de la API del integrador",
            "format": "uri"
          },
          "status": {
            "type": "string",
            "minLength": 1,
            "description": "Tipo de status de monitoreo (PENDIENTE, REINTENTANDO, CANCELADO, CONCLUIDO)",
            "enum": [
              "PENDING",
              "RETRYING",
              "CANCELLED",
              "CONCLUDED"
            ]
          }
        }
      },
      "FiscalDocumentMetadata": {
        "type": "object",
        "description": "Metadatos fiscales complementarios de la factura",
        "properties": {
          "operationType": {
            "type": "string",
            "description": "Tipo de operación fiscal (ej.: entrada, salida)"
          },
          "emissionType": {
            "type": "string",
            "description": "Tipo de emisión de la factura (ej.: normal, contingencia)"
          },
          "authorizationProtocol": {
            "type": "string",
            "description": "Protocolo de autorización de la factura"
          }
        }
      },
      "OrderInvoice": {
        "type": "object",
        "properties": {
          "accessKey": {
            "type": "string",
            "description": "Clave de acceso a la factura",
            "maxLength": 255
          },
          "series": {
            "type": "string",
            "description": "Número de serie de la factura",
            "maxLength": 255
          },
          "number": {
            "type": "string",
            "description": "Número de factura",
            "maxLength": 255
          },
          "date": {
            "type": "string",
            "description": "Fecha de emisión de la factura (Es necesario informar la zona horaria)",
            "format": "date-time"
          },
          "cfop": {
            "type": "string",
            "description": "Código Fiscal de Operaciones y Servicios, este campo será obligatorio si se utiliza 'Mercado Envio Coleta'",
            "maxLength": 50
          },
          "companyStateTaxId": {
            "type": "string",
            "description": "Registro estatal cuando el comprador sea una Persona Jurídica (CNPJ), este campo será obligatorio si se utiliza 'Mercado Envíos Coleta'; es posible usar 'ISENTO'",
            "maxLength": 20
          },
          "linkNfe": {
            "type": "string",
            "description": "Campo para insertar la URL para consultar la factura",
            "maxLength": 300
          },
          "invoiceLink": {
            "type": "string",
            "description": "Campo para insertar la URL donde se almacena el PDF o XML de la factura (utilizado para la integración de Garbarino)",
            "maxLength": 4000
          },
          "extraDescription": {
            "type": "string",
            "description": "Campo para comentarios",
            "maxLength": 255
          },
          "fiscalMetadata": {
            "$ref": "#/components/schemas/FiscalDocumentMetadata"
          }
        }
      },
      "OrderShippingAddressGet": {
        "type": "object",
        "properties": {
          "address": {
            "type": "string",
            "description": "Endereço",
            "maxLength": 500
          },
          "city": {
            "type": "string",
            "description": "Ciudad",
            "maxLength": 255
          },
          "comment": {
            "type": "string",
            "description": "Complemento",
            "maxLength": 500
          },
          "country": {
            "type": "string",
            "description": "País (Campo original, registrado por Marketplace o Ecommerce)",
            "maxLength": 255
          },
          "countryAcronymNormalized": {
            "type": "string",
            "description": "Sigla del país estandarizada internamente por ANYMARKET. Puede ser nulo si el país es nulo o desconocido.",
            "maxLength": 2
          },
          "countryNameNormalized": {
            "type": "string",
            "description": "Nombre del país estandarizado internamente por ANYMARKET. Puede ser nulo si el país es nulo o UNKNOWN para desconocido.",
            "maxLength": 100
          },
          "neighborhood": {
            "type": "string",
            "description": "Barrio",
            "maxLength": 255
          },
          "number": {
            "type": "string",
            "description": "Número",
            "maxLength": 100
          },
          "promisedShippingTime": {
            "type": "string",
            "description": "fecha de entrega acordada",
            "example": "2023-06-15T21:25:52Z"
          },
          "promisedDispatchTime": {
            "type": "string",
            "description": "Data prevista de coleta",
            "example": "2024-09-17T03:00:00Z"
          },
          "receiverName": {
            "type": "string",
            "description": "Nombre del remitente para la entrega",
            "maxLength": 255
          },
          "reference": {
            "type": "string",
            "description": "Referencia",
            "maxLength": 255
          },
          "state": {
            "type": "string",
            "description": "Siglas del estado estandarizadas internamente por ANYMARKET. Puede ser nulo si el estado es nulo o el valor enviado por Marketplace si es desconocido.",
            "maxLength": 255
          },
          "stateNameNormalized": {
            "type": "string",
            "description": "Nombre del estado estandarizado internamente por ANYMARKET. Puede ser nulo si el estado es nulo o UNKNOWN para desconocido.",
            "maxLength": 100
          },
          "street": {
            "type": "string",
            "description": "Calle",
            "maxLength": 255
          },
          "zipCode": {
            "type": "string",
            "description": "Código postal",
            "maxLength": 255
          }
        },
        "required": [
          "address",
          "city",
          "country",
          "countryAcronymNormalized",
          "countryNameNormalized",
          "number",
          "receiverName",
          "state",
          "stateNameNormalized",
          "street",
          "zipCode"
        ]
      },
      "DocumentType": {
        "type": "string",
        "title": "Tipos de documentos",
        "enum": [
          "CPF",
          "CNPJ",
          "OTHER",
          "DNI"
        ],
        "default": "OTHER",
        "readOnly": true,
        "description": ""
      },
      "OrderBillingAddressGet": {
        "type": "object",
        "description": "Endereço de Cobrança",
        "properties": {
          "address": {
            "type": "string",
            "description": "Endereço",
            "maxLength": 500
          },
          "city": {
            "type": "string",
            "description": "Cidade",
            "maxLength": 255
          },
          "comment": {
            "type": "string",
            "description": "Complemento",
            "maxLength": 500
          },
          "country": {
            "type": "string",
            "description": "País (Campo original, registrado por Marketplace o Ecommerce)",
            "maxLength": 255
          },
          "countryAcronymNormalized": {
            "type": "string",
            "description": "Sigla del país estandarizada internamente por ANYMARKET. Puede ser nulo si el país es nulo o desconocido.",
            "maxLength": 2
          },
          "countryNameNormalized": {
            "type": "string",
            "description": "Nombre del país estandarizado internamente por ANYMARKET. Puede ser nulo si el país es nulo o UNKNOWN para desconocido.",
            "maxLength": 100
          },
          "neighborhood": {
            "type": "string",
            "description": "Barrio",
            "maxLength": 255
          },
          "number": {
            "type": "string",
            "description": "Número",
            "maxLength": 100
          },
          "reference": {
            "type": "string",
            "description": "Referencia",
            "maxLength": 255
          },
          "shipmentUserDocument": {
            "type": "string",
            "maxLength": 80
          },
          "shipmentUserDocumentType": {
            "$ref": "#/components/schemas/DocumentType"
          },
          "shipmentUserName": {
            "type": "string",
            "maxLength": 255
          },
          "state": {
            "type": "string",
            "description": "Sigla estatal estandarizada internamente por ANYMARKET. Puede ser nulo si el estado es nulo o el valor enviado por Marketplace si es desconocido.",
            "maxLength": 255
          },
          "stateNameNormalized": {
            "type": "string",
            "description": "Nombre del estado estandarizado internamente por ANYMARKET. Puede ser nulo si el estado es nulo o UNKNOWN para desconocido.",
            "maxLength": 100
          },
          "street": {
            "type": "string",
            "description": "Calle",
            "maxLength": 255
          },
          "zipCode": {
            "type": "string",
            "description": "Código postal",
            "maxLength": 255
          }
        },
        "required": [
          "address",
          "city",
          "country",
          "countryAcronymNormalized",
          "countryNameNormalized",
          "neighborhood",
          "number",
          "state",
          "stateNameNormalized",
          "street",
          "zipCode"
        ]
      },
      "OrderAnymarketAddress": {
        "type": "object",
        "required": [
          "address",
          "city",
          "country",
          "neighborhood",
          "number",
          "promisedShippingTime",
          "state",
          "stateAcronymNormalized",
          "street",
          "zipCode"
        ],
        "properties": {
          "address": {
            "type": "string",
            "description": "Endereço",
            "maxLength": 500
          },
          "city": {
            "type": "string",
            "description": "Ciudad",
            "maxLength": 255
          },
          "comment": {
            "type": "string",
            "description": "Complementar",
            "maxLength": 500
          },
          "country": {
            "type": "string",
            "maxLength": 255,
            "description": "País"
          },
          "neighborhood": {
            "type": "string",
            "description": "Vecindario",
            "maxLength": 255
          },
          "number": {
            "type": "string",
            "description": "Número",
            "maxLength": 100
          },
          "promisedShippingTime": {
            "type": "string",
            "description": "Fecha estimada de entrega",
            "example": "2023-06-15T21:25:52Z",
            "format": "date-time"
          },
          "receiverName": {
            "type": "string",
            "description": "Nombre del remitente para la entrega",
            "maxLength": 255
          },
          "reference": {
            "type": "string",
            "description": "Referencia",
            "maxLength": 255
          },
          "state": {
            "type": "string",
            "description": "Siglas del estado estandarizadas internamente por ANYMARKET. Puede ser nulo si el estado es nulo o el valor enviado por Marketplace si es desconocido.",
            "maxLength": 255
          },
          "stateAcronymNormalized": {
            "type": "string",
            "maxLength": 2,
            "description": "Sigla do Estado padronizado internamente pelo ANYMARKET. Pode ser nulo se o state for nulo ou o valor enviado pelo Marketplace, se ele for desconhecido."
          },
          "street": {
            "type": "string",
            "description": "La carretera",
            "maxLength": 255
          },
          "zipCode": {
            "type": "string",
            "description": "Código postal",
            "maxLength": 255
          }
        }
      },
      "BuyerGet": {
        "type": "object",
        "required": [
          "document",
          "documentNumberNormalized",
          "documentType",
          "email",
          "name",
          "phone"
        ],
        "properties": {
          "cellPhone": {
            "type": "string",
            "description": "Celular del comprador",
            "maxLength": 255
          },
          "document": {
            "type": "string",
            "description": "Número del Documento. Es posible que esta información no exista para algunos marketplace o ecommerce.",
            "maxLength": 255
          },
          "documentNumberNormalized": {
            "type": "string",
            "description": "Número de documento normalizado por ANYMARKET. Sólo números. Si el documento no es un CPF o CNPJ, este campo devolverá un valor nulo."
          },
          "documentType": {
            "type": "string",
            "description": "Tipo de Documento. Valores posibles: CPF, CNPJ, OTROS",
            "enum": [
              "CPF",
              "CNPJ",
              "DNI",
              "OTHER"
            ]
          },
          "email": {
            "type": "string",
            "description": "E-mail del comprador",
            "maxLength": 255
          },
          "marketPlaceId": {
            "type": "string",
            "description": "Identificación en el mercado. Es posible que esta información no exista para algunos marketplace o ecommerce.",
            "maxLength": 255
          },
          "name": {
            "type": "string",
            "description": "Nombre del comprador",
            "maxLength": 255
          },
          "phone": {
            "type": "string",
            "description": "Teléfono del comprador",
            "maxLength": 255
          },
          "dateOfBirth": {
            "type": "string",
            "description": "Data de nascimento do comprador",
            "format": "date-time"
          },
          "companyStateTaxId": {
            "type": "string",
            "description": "Inscrição Estadual do comprador.",
            "maxLength": 25
          }
        }
      },
      "OrderPaymentGet": {
        "type": "object",
        "required": [
          "marketplaceId",
          "method",
          "paymentDetailNormalized",
          "paymentMethodNormalized"
        ],
        "properties": {
          "installments": {
            "type": "number",
            "description": "Número de cuotas del medio de pago. Divide el número de cuotas por el valor para encontrar el valor de cada cuota.",
            "format": "int64"
          },
          "marketplaceId": {
            "type": "string",
            "description": "ID de pago enviado por el mercado. Algunos mercados no proporcionan la identificación y el valor puede ser nulo o con un valor fijo de \"1\" según la regla. (Ejemplo: Cnova siempre tiene un solo pago por la compra, por lo que la identificación del pago siempre puede ser \"1\").",
            "maxLength": 50
          },
          "method": {
            "type": "string",
            "description": "Método de pago. (Campo original, enviado por Marketplace o Ecommerce)",
            "maxLength": 255
          },
          "paymentDetailNormalized": {
            "type": "string",
            "description": "Detalle de la forma de pago estandarizada internamente por ANYMARKET. Si es un valor desconocido internamente, devolverá DESCONOCIDO. Si el método es nulo, este campo también será nulo.",
            "default": "UNKNOWN",
            "maxLength": 100
          },
          "paymentMethodNormalized": {
            "type": "string",
            "description": "Método de pago estandarizado internamente por ANYMARKET. Si es un valor desconocido internamente, devolverá DESCONOCIDO. Si el método es nulo, este campo también será nulo.",
            "default": "UNKNOWN",
            "maxLength": 100
          },
          "status": {
            "type": "string",
            "description": "Estado de pago enviado por el mercado",
            "maxLength": 255
          },
          "value": {
            "type": "number",
            "description": "Monto a pagar (En caso de cobro de intereses, el monto se suma al total de la compra. Ej: Mercado Libre)",
            "format": "double"
          },
          "gatewayFee": {
            "type": "number",
            "description": "Comisión de gateway de pago (Ej: MercadoPago).",
            "format": "double"
          },
          "marketplaceFee": {
            "type": "number",
            "description": "Tarifa del mercado.",
            "format": "double"
          },
          "documentPaymentInstitution": {
            "type": "string",
            "description": "Identificação através do CNPJ do responsavel pela transação de pagamento com cartão. tag card/CNPJ."
          },
          "cardOperator": {
            "type": "string",
            "description": "Código da bandeira da operadora de cartão de crédito e/ou débito. Conforme  publicada no Portal Nacional da Nota Fiscal Eletrônica. tag card/tBand"
          },
          "orderAuthorizationCardCode": {
            "type": "string",
            "description": "Número de autorização da operação cartão de crédito e/ou débito. tag card/cAuth"
          }
        }
      },
      "SimpleProduct": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "description": "ID de pedido generado por ANYMARKET",
            "format": "int64"
          },
          "title": {
            "type": "string",
            "description": "Titulo del producto",
            "maxLength": 150
          }
        },
        "required": [
          "id",
          "title"
        ]
      },
      "SimpleSku": {
        "type": "object",
        "properties": {
          "ean": {
            "type": "string",
            "description": "Código de barras SKU",
            "maxLength": 13
          },
          "id": {
            "type": "integer",
            "description": "ID de SKU generado por ANYMARKET",
            "format": "int64"
          },
          "title": {
            "type": "string",
            "description": "Título de SKU",
            "maxLength": 150
          },
          "partnerId": {
            "type": "string",
            "description": "Código SKU de socio",
            "maxLength": 120
          },
          "externalId": {
            "type": "string",
            "description": "ID externo, utilizado en algunos marketplaces para su control interno.",
            "maxLength": 100,
            "deprecated": true
          }
        },
        "required": [
          "id",
          "title",
          "partnerId"
        ]
      },
      "OrderItemStockGet": {
        "type": "object",
        "properties": {
          "amount": {
            "type": "number",
            "description": "Cantidad de existencias en el sitio",
            "format": "double"
          },
          "stockLocalId": {
            "type": "integer",
            "description": "ID de inventario de ubicación",
            "format": "int64"
          },
          "stockName": {
            "type": "string",
            "description": "Descripción de ubicación de existencias"
          }
        },
        "required": [
          "amount",
          "stockLocalId",
          "stockName"
        ]
      },
      "OrderShippingItemGet": {
        "type": "object",
        "properties": {
          "product": {
            "$ref": "#/components/schemas/SimpleProduct"
          },
          "sku": {
            "$ref": "#/components/schemas/SimpleSku"
          },
          "amount": {
            "type": "number",
            "description": "Cantidad de objetos",
            "format": "double"
          },
          "unit": {
            "type": "number",
            "description": "Precio del articulo",
            "format": "double"
          },
          "gross": {
            "type": "number",
            "description": "Valor bruto del artículo (cantidad * unidad)",
            "format": "double"
          },
          "total": {
            "type": "number",
            "description": "Total del artículo con descuento aplicado (gross - discount)",
            "format": "double"
          },
          "discount": {
            "type": "number",
            "description": "Descuento del artículo",
            "format": "double"
          },
          "shippings": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "integer",
                  "description": "ID gerado pelo ANYMARKET"
                },
                "shippingCarrierNormalized": {
                  "type": "string",
                  "default": "UNKNOWN",
                  "description": "Transportadora normalizada",
                  "maxLength": 100
                },
                "shippingCarrierTypeNormalized": {
                  "type": "string",
                  "default": "UNKNOWN",
                  "description": "Tipo de transpote normalizado",
                  "maxLength": 100
                },
                "shippingtype": {
                  "type": "string",
                  "description": "Nome da transportadora vinda do marketplace",
                  "maxLength": 255
                }
              },
              "required": [
                "id",
                "shippingCarrierNormalized",
                "shippingCarrierTypeNormalized",
                "shippingtype"
              ]
            }
          },
          "customization": {
            "type": "object",
            "properties": {
              "customizationType": {
                "type": "string",
                "description": "Tipo da customização/personalização a ser realizada",
                "example": "Personalização de Nome",
                "maxLength": 255
              },
              "customizationQuantity": {
                "type": "number",
                "description": "Quantidade de itens a serem personalizados"
              },
              "customizationPrice": {
                "type": "number",
                "description": "Preço da personalização",
                "format": "double"
              },
              "customizationValue": {
                "type": "string",
                "description": "Conteúdo a ser preenchido na personalização",
                "maxLength": 255
              }
            }
          },
          "stocks": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderItemStockGet"
            }
          },
          "marketPlaceId": {
            "type": "string",
            "description": "ID del artículo en el Marketplace / plataforma de ecommerce (si no se informa, será el mismo que el sku)",
            "maxLength": 255
          },
          "orderItemId": {
            "type": "number",
            "description": "ID de artículo en el pedido generado por ANYMARKET",
            "format": "int64"
          },
          "idInMarketPlace": {
            "type": "string",
            "description": "Código Sku en el mercado",
            "maxLength": 255
          },
          "officialStoreId": {
            "type": "string",
            "description": "Identificación oficial de la tienda (Mercado Livre)",
            "readOnly": true,
            "maxLength": 20
          },
          "officialStoreName": {
            "type": "string",
            "description": "Descripción tienda oficial (Mercado Livre)",
            "readOnly": true,
            "maxLength": 200
          },
          "listingType": {
            "type": "string",
            "description": "Tipo de listado del anuncio de artículo vendido (Mercado Livre)",
            "readOnly": true,
            "maxLength": 30
          },
          "freeShipping": {
            "type": "boolean",
            "description": "Determina si el envío es gratuito."
          }
        },
        "required": [
          "product",
          "sku",
          "amount",
          "unit",
          "gross",
          "total",
          "discount",
          "orderItemId",
          "idInMarketPlace"
        ],
        "example": {
          "product": {
            "id": 0,
            "title": "string"
          },
          "sku": {
            "id": 0,
            "title": "string",
            "partnerId": "string",
            "externalId": "string",
            "ean": "string"
          },
          "amount": -1.7976931348623157e+308,
          "unit": -1.7976931348623157e+308,
          "gross": -1.7976931348623157e+308,
          "total": -1.7976931348623157e+308,
          "discount": -1.7976931348623157e+308,
          "shippings": {
            "id": 0,
            "shippingtype": "string",
            "shippingCarrierNormalized": "string",
            "shippingCarrierTypeNormalized": "string"
          },
          "customization": {
            "customizationType": "Personalização de Nome",
            "customizationQuantity": 0,
            "customizationPrice": "string",
            "customizationValue": "string"
          },
          "stocks": [
            {
              "stockLocalId": 0,
              "stockName": "string",
              "amount": 0
            }
          ],
          "marketPlaceId": "string",
          "orderItemId": "string",
          "idInMarketPlace": "string",
          "officialStoreId": "string",
          "officialStoreName": "string",
          "listingType": "string",
          "freeShipping": true
        }
      },
      "OrderTracking": {
        "type": "object",
        "properties": {
          "carrier": {
            "type": "string",
            "description": "Nombre de la compañía",
            "maxLength": 255
          },
          "date": {
            "type": "string",
            "description": "Fecha de seguimiento (necesita informar la zona horaria)",
            "format": "date-time"
          },
          "deliveredDate": {
            "type": "string",
            "description": "Fecha de entrega al Cliente (Es necesario informar la zona horaria)",
            "format": "date-time"
          },
          "estimateDate": {
            "type": "string",
            "description": "Fecha estimada (Necesita informar la zona horaria)",
            "format": "date-time"
          },
          "number": {
            "type": "string",
            "description": "Número de rastreo",
            "maxLength": 255
          },
          "shippedDate": {
            "type": "string",
            "description": "Fecha en que se entregó el transportista (Se debe informar zona horaria)",
            "format": "date-time"
          },
          "url": {
            "type": "string",
            "description": "URL para seguimiento",
            "maxLength": 255
          },
          "carrierDocument": {
            "type": "string",
            "description": "CNPJ del transportista",
            "maxLength": 255
          },
          "bufferingDate": {
            "type": "string",
            "description": "Data que o pedido está agendado para envio (Apenas para pedidos com tempo de fabriação)",
            "format": "date-time"
          }
        }
      },
      "PickUp": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "description": "ID de tienda en ANYMARKET"
          },
          "description": {
            "type": "string",
            "description": "Nombre de la tienda",
            "maxLength": 60
          },
          "partnerId": {
            "type": "integer",
            "description": "Código de tienda asociada"
          },
          "marketplaceId": {
            "type": "string",
            "description": "ID de la tienda en Marketplace",
            "maxLength": 255
          },
          "receiverName": {
            "type": "string",
            "description": "Nombre de la persona que recoge el pedido en la tienda",
            "maxLength": 255
          }
        }
      },
      "OrderMetadata": {
        "type": "object",
        "description": "Campos de pedido adicionales.",
        "properties": {
          "number-of-packages": {
            "type": "string",
            "default": "",
            "description": "Número de volúmenes para impresión de etiquetas (B2W Nova Api)"
          },
          "cdZipCode": {
            "type": "string",
            "description": "CEP del Centro de Distribución referente a la facturación del pedido CNPJ"
          },
          "needInvoiceXML": {
            "type": "string",
            "description": "Si el marketplace requiere la integración del archivo XML con los datos de facturación",
            "example": "true"
          },
          "mshops": {
            "type": "string",
            "description": "Caso o pedido tenha sido feito pelo canal de vendas Mercado Shops",
            "example": "true, false"
          },
          "Envvias": {
            "type": "string"
          },
          "VIAtotalDiscountAmount": {
            "type": "string"
          },
          "B2WshippingType": {
            "type": "string"
          },
          "logistic_type": {
            "type": "string",
            "description": "Tipo logistico do Mercado Livre",
            "example": "drop_off, cross_docking, xd_drop_off, self_service"
          },
          "printTag": {
            "type": "string"
          },
          "canceldetail_motivation": {
            "type": "string",
            "description": "Descrição do que foi o motivador do cancelamento, em alguns casos, pode ser aspectos fiscais, de fraude, entrega, entre outros"
          },
          "canceldetail_code": {
            "type": "string",
            "description": "Código identificador do respectiva cancelamento ou, em alguns causos, o código da causa que provocou o cancelamento"
          },
          "canceldetail_description": {
            "type": "string",
            "description": "Descrição do cancelamento ou da causa que o originou"
          },
          "canceldetail_requested_by": {
            "type": "string",
            "description": "Origem do solicitante do cancelamento, em alguns casos pode ser solicitado pelo marketplace, pelo seller ou até pelo comprador"
          }
        },
        "example": {
          "number-of-packages": 1,
          "cdZipCode": "string",
          "needInvoiceXML": true,
          "mshops": true,
          "Envvias": "string",
          "VIAtotalDiscountAmount": "string",
          "B2WshippingType": "string",
          "logistic_type": "drop_off, cross_docking, xd_drop_off, self_service",
          "printTag": true,
          "canceldetail_motivation": "string",
          "canceldetail_code": "string",
          "canceldetail_description": "string",
          "canceldetail_requested_by": "string"
        }
      },
      "Order": {
        "type": "object",
        "required": [
          "id",
          "accountName",
          "marketPlaceId",
          "marketPlaceNumber",
          "marketPlace",
          "createdAt",
          "transmissionStatus",
          "status",
          "marketPlaceStatus",
          "discount",
          "freight",
          "sellerFreight",
          "interestValue",
          "gross",
          "total",
          "shipping",
          "anymarketAddress",
          "buyer",
          "payments",
          "items",
          "deliveryStatus",
          "idAccount"
        ],
        "properties": {
          "id": {
            "type": "integer",
            "description": "ID de pedido generado por ANYMARKET",
            "format": "int64"
          },
          "accountName": {
            "type": "string",
            "description": "Identificador de cuenta del mercado",
            "maxLength": 255
          },
          "marketPlaceId": {
            "type": "string",
            "description": "ID interno del pedido en el mercado",
            "maxLength": 255
          },
          "marketPlaceNumber": {
            "type": "string",
            "description": "ID pública del pedido en el mercado",
            "maxLength": 255
          },
          "partnerId": {
            "type": "string",
            "description": "Código de pedido en socio. Una vez informado, no se puede cambiar",
            "maxLength": 100
          },
          "marketPlace": {
            "$ref": "#/components/schemas/EnumMarketplaces"
          },
          "subChannel": {
            "type": "string",
            "description": "Sitio web donde se realizó el pedido (tal como lo recibió el mercado. Puede ser nulo si el mercado no tiene un subcanal)",
            "maxLength": 50
          },
          "subChannelNormalized": {
            "type": "string",
            "description": "Sitio donde se realizó el pedido (normalizado por ANYMARKET. Puede ser nulo)",
            "maxLength": 100
          },
          "createdAt": {
            "type": "string",
            "description": "Fecha de creación del pedido",
            "format": "date-time"
          },
          "paymentDate": {
            "type": "string",
            "description": "Fecha de pago del pedido",
            "format": "date-time"
          },
          "cancelDate": {
            "type": "string",
            "description": "Fecha de cancelación del pedido",
            "format": "date-time"
          },
          "shippingOptionId": {
            "type": "string",
            "description": "ID de envío de cada Marketplace",
            "maxLength": 50
          },
          "transmissionStatus": {
            "type": "string",
            "description": "Status da transmissão</br></br>\n\n  **OK**: Pedido sincronizado correctamente con Marketplace</br>\n   **ERROR**: Hubo un error al sincronizar con Marketplace</br>\n   **WAITING**: Esperando para sincronizar con Marketplace</br>\n"
          },
          "status": {
            "type": "string",
            "description": "Status del pedido</br></br>\n\n   **CONCLUDED**: Pedido entregado (es el último estado del pedido). Ante esta situación, es necesario informar: fecha de entrega</br>\n   **CANCELED**: Cancelado</br>\n   **INVOICED**: Facturado. Cambiando a esta situación, es necesario informar: número de nota, número de serie, fecha de emisión y clave de acceso</br>\n   **PAID_WAITING_DELIVERY**: Enviado (en espera de entrega). Cambiando a esta situación, es necesario informar: URL de seguimiento, número de seguimiento, nombre del transportista, fecha de envío</br>\n   **PAID_WAITING_SHIP**: Pagado (en espera de envío)</br>\n   **PENDING**: Pendiente (Aún no ha sido pagado. Existe un parámetro para que ANYMARKET importe del MarketPlace el pedido que aún no ha sido pagado)</br>\n",
            "enum": [
              "PENDING",
              "PAID_WAITING_SHIP",
              "INVOICED",
              "PAID_WAITING_DELIVERY",
              "CONCLUDED",
              "CANCELED"
            ]
          },
          "marketPlaceStatus": {
            "type": "string",
            "description": "Estado del pedido en el mercado. Cada mercado tiene situaciones diferentes. Ej: en mercado libre no hay situación facturada\n",
            "maxLength": 255
          },
          "marketPlaceStatusComplement": {
            "type": "string",
            "description": "Información complementaria sobre el status del pedido en el marketplace. Cada mercado tiene situaciones diferentes. Ej: en Dafiti, el pedido se puede marcar como una falla en la entrega y la causa se puede almacenar en este atributo\n",
            "maxLength": 1000
          },
          "documentIntermediator": {
            "type": "string",
            "description": "CNPJ Identificador de intermediario de transacciones",
            "maxLength": 14
          },
          "intermediateRegistrationId": {
            "type": "string",
            "description": "Identificador de registro (vendedor o usuario) en el intermediario",
            "maxLength": 60
          },
          "documentPaymentInstitution": {
            "type": "string",
            "description": "Identificador de Institución de Pago CNPJ",
            "maxLength": 14
          },
          "fulfillment": {
            "type": "boolean",
            "description": "Identifica si el pedido es fulfillment"
          },
          "quoteReconciliation": {
            "type": "object",
            "description": "Cotação realizada",
            "properties": {
              "quoteId": {
                "type": "string",
                "description": "ID da cotação realizada"
              },
              "price": {
                "type": "number",
                "description": "Preço retornado no momento da cotação"
              }
            }
          },
          "discount": {
            "type": "number",
            "description": "Descuento de venta",
            "format": "double"
          },
          "freight": {
            "type": "number",
            "description": "Valor del flete",
            "format": "double"
          },
          "sellerFreight": {
            "type": "number",
            "description": "Custo de Frete do Lojista",
            "format": "double"
          },
          "interestValue": {
            "type": "number",
            "description": "Valor de interés",
            "format": "double"
          },
          "gross": {
            "type": "number",
            "description": "Total bruto sin costo de envío",
            "format": "double"
          },
          "total": {
            "type": "number",
            "description": "Total del pedido con gastos de envío",
            "format": "double"
          },
          "marketPlaceUrl": {
            "type": "string",
            "description": "URL de pedido en el Marketplace",
            "maxLength": 255
          },
          "marketPlaceShipmentStatus": {
            "description": "Estado de envío del pedido en el mercado. Cada mercado tiene situaciones diferentes.",
            "enum": [
              "UNKNOWN",
              "PACKING",
              "HOLD_FOR_PICKUP",
              "DELAYED_PICKUP",
              "HOLD_FOR_SHIPPED",
              "DELAYED_SHIPPING",
              "SHIPPED",
              "SHIP_CONFIRMED",
              "QUARANTINE",
              "NOT_DELIVERED",
              "IN_TRANSIT",
              "DELIVERED",
              "DELAYED",
              "DELIVERED_LATE"
            ],
            "default": "UNKNOWN"
          },
          "invoice": {
            "$ref": "#/components/schemas/OrderInvoice"
          },
          "shipping": {
            "$ref": "#/components/schemas/OrderShippingAddressGet"
          },
          "billingAddress": {
            "$ref": "#/components/schemas/OrderBillingAddressGet"
          },
          "anymarketAddress": {
            "$ref": "#/components/schemas/OrderAnymarketAddress"
          },
          "buyer": {
            "$ref": "#/components/schemas/BuyerGet"
          },
          "payments": {
            "description": "Detalles de pago (serán enviados por Marketplace)",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderPaymentGet"
            }
          },
          "items": {
            "description": "Datos sobre los productos comprados",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderShippingItemGet"
            }
          },
          "tracking": {
            "$ref": "#/components/schemas/OrderTracking"
          },
          "deliveryStatus": {
            "type": "string",
            "description": "Status do envio</br>\n  **UNKNOWN**: Envio pendente</br>\n  **IN_TRANSIT**: Pedido Enviado\n  **DELIVERED**: Pedido entregue</br>\n",
            "enum": [
              "UNKNOWN",
              "IN_TRANSIT",
              "DELIVERED",
              "HOLD_FOR_PICKUP",
              "DELAYED",
              "DELIVERED_LATE",
              "NOT_DELIVERY"
            ],
            "default": "UNKNOWN"
          },
          "pickup": {
            "$ref": "#/components/schemas/PickUp"
          },
          "idAccount": {
            "description": "ID de cuenta generado automáticamente por ANYMARKET",
            "type": "number"
          },
          "metadata": {
            "$ref": "#/components/schemas/OrderMetadata"
          },
          "orderTypeName": {
            "type": "string",
            "description": "Nome do tipo de pedido",
            "example": "DBA",
            "maxLength": 20
          },
          "shippingId": {
            "type": "string",
            "description": "Id do envio MERCADO_LIVRE"
          },
          "discountMetadata": {
            "type": "array",
            "description": "Indica o valor do desconto quando informado pelo canal de venda.",
            "items": {
              "type": "object",
              "properties": {
                "type": {
                  "type": "array",
                  "description": "**COUPON**: indica que a venda possui desconto do tipo Cupom no Mercado Livre.<br/>\n**FREE_ITEM**: indica que a venda possui 100% de desconto e é do tipo Amostra grátis.",
                  "items": {
                    "type": "string",
                    "enum": [
                      "FREE_ITEM",
                      "COUPON"
                    ]
                  }
                }
              }
            }
          },
          "lastUpdate": {
            "type": "string",
            "format": "date-time",
            "description": "Data de atualização do pedido"
          }
        },
        "example": {
          "id": 0,
          "accountName": "string",
          "marketPlaceId": "string",
          "marketPlaceNumber": "string",
          "partnerId": "string",
          "marketPlace": "string",
          "subChannel": "string",
          "subChannelNormalized": "string",
          "createdAt": "2022-02-24T14:15:22Z",
          "paymentDate": "2022-02-24T14:15:22Z",
          "cancelDate": "2022-02-24T14:15:22Z",
          "shippingOptionId": "string",
          "transmissionStatus": "string",
          "status": "PENDING",
          "marketPlaceStatus": "string",
          "marketPlaceStatusComplement": "string",
          "documentIntermediator": "string",
          "intermediateRegistrationId": "string",
          "documentPaymentInstitution": "string",
          "fulfillment": true,
          "discount": 0,
          "freight": 0,
          "interestValue": 0,
          "gross": 0,
          "total": 0,
          "marketPlaceUrl": "string",
          "marketPlaceShipmentStatus": "string",
          "invoice": {
            "accessKey": "string",
            "series": "string",
            "number": "string",
            "date": "2022-02-24T14:15:22Z",
            "cfop": "string",
            "companyStateTaxId": "string",
            "linkNfe": "string",
            "invoiceLink": "string",
            "extraDescription": "string",
            "fiscalMetadata": {
              "operationType": "string",
              "emissionType": "string",
              "authorizationProtocol": "string"
            }
          },
          "shipping": {
            "city": "string",
            "state": "string",
            "stateNameNormalized": "string",
            "country": "string",
            "countryAcronymNormalized": "string",
            "countryNameNormalized": "string",
            "address": "string",
            "number": "string",
            "neighborhood": "string",
            "street": "string",
            "comment": "string",
            "reference": "string",
            "zipCode": "string",
            "receiverName": "string",
            "promisedShippingTime": "2019-08-24T14:15:22Z"
          },
          "billingAddress": {
            "city": "string",
            "state": "string",
            "stateNameNormalized": "string",
            "country": "string",
            "countryAcronymNormalized": "string",
            "countryNameNormalized": "string",
            "street": "string",
            "number": "string",
            "neighborhood": "string",
            "comment": "string",
            "reference": "string",
            "zipCode": "string"
          },
          "anymarketAddress": {
            "state": "string",
            "city": "string",
            "zipCode": "string",
            "neighborhood": "string",
            "address": "string",
            "street": "string",
            "number": "string",
            "comment": "string",
            "reference": "string",
            "receiverName": "string",
            "promisedShippingTime": "string"
          },
          "buyer": {
            "marketPlaceId": "string",
            "name": "string",
            "email": "string",
            "document": "string",
            "documentType": "string",
            "phone": "string",
            "cellPhone": "string",
            "documentNumberNormalized": "string"
          },
          "payments": [
            {
              "method": "string",
              "status": "string",
              "value": 0,
              "installments": 0,
              "marketplaceId": "string",
              "gatewayFee": 0,
              "marketplaceFee": 0,
              "paymentMethodNormalized": "string",
              "paymentDetailNormalized": "string",
              "documentPaymentInstitution": "string",
              "cardOperator": "string",
              "orderAuthorizationCardCode": "string"
            }
          ],
          "items": [
            {
              "product": {
                "id": 0,
                "title": "string"
              },
              "sku": {
                "id": 0,
                "title": "string",
                "partnerId": "string",
                "externalId": "string",
                "ean": "string"
              },
              "amount": 0,
              "unit": 0,
              "gross": 0,
              "total": 0,
              "discount": 0,
              "shippings": [
                {
                  "id": 0,
                  "shippingtype": "string",
                  "shippingCarrierNormalized": "string",
                  "shippingCarrierTypeNormalized": "string"
                }
              ],
              "stocks": [
                {
                  "stockLocalId": 0,
                  "stockName": "string",
                  "amount": 0
                }
              ],
              "marketPlaceId": "string",
              "orderItemId": "string",
              "idInMarketPlace": "string",
              "officialStoreId": "string",
              "officialStoreName": "string",
              "listingType": "string",
              "freeShipping": true
            }
          ],
          "tracking": {
            "url": "string",
            "number": "string",
            "carrier": "string",
            "carrierDocument": "string",
            "date": "2019-08-24T14:15:22Z",
            "deliveredDate": "2019-08-24T14:15:22Z",
            "estimateDate": "2019-08-24T14:15:22Z",
            "shippedDate": "2019-08-24T14:15:22Z"
          },
          "deliveryStatus": "UNKNOWN",
          "idAccount": 0,
          "pickup": {
            "id": 0,
            "description": "string",
            "partnerId": 0,
            "marketplaceId": "string",
            "receiverName": "string"
          },
          "metadata": {
            "number-of-packages": "1",
            "cdZipCode": "string",
            "needInvoiceXML": "true"
          },
          "discountMetadata": [
            {
              "type": [
                "COUPON"
              ]
            }
          ]
        }
      },
      "Page_Order": {
        "title": "Page_Order",
        "allOf": [
          {
            "properties": {
              "links": {
                "type": "array",
                "description": "Referências de paginação",
                "uniqueItems": false,
                "minItems": 1,
                "maxItems": 1,
                "items": {
                  "$ref": "#/components/schemas/PageLinks"
                }
              },
              "content": {
                "type": "array",
                "description": "Lista de pedidos",
                "items": {
                  "$ref": "#/components/schemas/Order"
                }
              },
              "page": {
                "$ref": "#/components/schemas/PageMetadata"
              }
            }
          }
        ],
        "description": "",
        "type": "object",
        "example": {
          "links": [
            {
              "rel": "next",
              "href": "https://.../v2/component?limit=5&offset=5"
            }
          ],
          "content": [
            {
              "id": 0,
              "accountName": "string",
              "marketPlaceId": "string",
              "marketPlaceNumber": "string",
              "partnerId": "string",
              "marketPlace": "string",
              "subChannel": "string",
              "subChannelNormalized": "string",
              "createdAt": "2019-08-24T14:15:22Z",
              "paymentDate": "2019-08-24T14:15:22Z",
              "cancelDate": "2019-08-24T14:15:22Z",
              "shippingOptionId": "string",
              "transmissionStatus": "string",
              "status": "PENDING",
              "marketPlaceStatus": "string",
              "marketPlaceStatusComplement": "string",
              "documentIntermediator": "string",
              "intermediateRegistrationId": "string",
              "documentPaymentInstitution": "string",
              "fulfillment": true,
              "discount": 0,
              "freight": 0,
              "interestValue": 0,
              "gross": 0,
              "total": 0,
              "marketPlaceUrl": "string",
              "marketPlaceShipmentStatus": "string",
              "invoice": {
                "accessKey": "string",
                "series": "string",
                "number": "string",
                "date": "2019-08-24T14:15:22Z",
                "cfop": "string",
                "companyStateTaxId": "string",
                "linkNfe": "string",
                "invoiceLink": "string",
                "extraDescription": "string",
                "fiscalMetadata": {
                  "operationType": "string",
                  "emissionType": "string",
                  "authorizationProtocol": "string"
                }
              },
              "shipping": {
                "city": "string",
                "state": "string",
                "stateNameNormalized": "string",
                "country": "string",
                "countryAcronymNormalized": "string",
                "countryNameNormalized": "string",
                "address": "string",
                "number": "string",
                "neighborhood": "string",
                "street": "string",
                "comment": "string",
                "reference": "string",
                "zipCode": "string",
                "receiverName": "string",
                "promisedShippingTime": "2019-08-24T14:15:22Z"
              },
              "billingAddress": {
                "city": "string",
                "state": "string",
                "stateNameNormalized": "string",
                "country": "string",
                "countryAcronymNormalized": "string",
                "countryNameNormalized": "string",
                "street": "string",
                "number": "string",
                "neighborhood": "string",
                "comment": "string",
                "reference": "string",
                "zipCode": "string"
              },
              "anymarketAddress": {
                "state": "string",
                "city": "string",
                "zipCode": "string",
                "neighborhood": "string",
                "address": "string",
                "street": "string",
                "number": "string",
                "comment": "string",
                "reference": "string",
                "receiverName": "string",
                "promisedShippingTime": "string"
              },
              "buyer": {
                "marketPlaceId": "string",
                "name": "string",
                "email": "string",
                "document": "string",
                "documentType": "string",
                "phone": "string",
                "cellPhone": "string",
                "documentNumberNormalized": "string"
              },
              "payments": [
                {
                  "method": "string",
                  "status": "string",
                  "value": 0,
                  "installments": 0,
                  "marketplaceId": "string",
                  "gatewayFee": 0,
                  "marketplaceFee": 0,
                  "paymentMethodNormalized": "string",
                  "paymentDetailNormalized": "string",
                  "documentPaymentInstitution": "string",
                  "cardOperator": "string",
                  "orderAuthorizationCardCode": "string"
                }
              ],
              "items": [
                {
                  "product": {
                    "id": 0,
                    "title": "string"
                  },
                  "sku": {
                    "id": 0,
                    "title": "string",
                    "partnerId": "string",
                    "externalId": "string",
                    "ean": "string"
                  },
                  "amount": 0,
                  "unit": 0,
                  "gross": 0,
                  "total": 0,
                  "discount": 0,
                  "shippings": [
                    {
                      "id": 0,
                      "shippingtype": "string",
                      "shippingCarrierNormalized": "string",
                      "shippingCarrierTypeNormalized": "string"
                    }
                  ],
                  "stocks": [
                    {
                      "stockLocalId": 0,
                      "stockName": "string",
                      "amount": 0
                    }
                  ],
                  "marketPlaceId": "string",
                  "orderItemId": "string",
                  "idInMarketPlace": "string",
                  "officialStoreId": "string",
                  "officialStoreName": "string",
                  "listingType": "string",
                  "freeShipping": true
                }
              ],
              "tracking": {
                "url": "string",
                "number": "string",
                "carrier": "string",
                "carrierDocument": "string",
                "date": "2019-08-24T14:15:22Z",
                "deliveredDate": "2019-08-24T14:15:22Z",
                "estimateDate": "2019-08-24T14:15:22Z",
                "shippedDate": "2019-08-24T14:15:22Z"
              },
              "deliverStatus": "UNKNOWN",
              "idAccount": 0,
              "pickup": {
                "id": 0,
                "description": "string",
                "partnerId": 0,
                "marketplaceId": "string",
                "receiverName": "string"
              },
              "metadata": {
                "number-of-packages": "1",
                "cdZipCode": "string",
                "needInvoiceXML": "true"
              }
            }
          ],
          "page": {
            "size": 5,
            "totalElements": 0,
            "totalPages": 1,
            "number": 1
          }
        }
      },
      "OrderShippingAddressPost": {
        "type": "object",
        "required": [
          "city",
          "state",
          "address",
          "number",
          "neighborhood",
          "country",
          "street",
          "zipCode",
          "receiverName"
        ],
        "properties": {
          "city": {
            "type": "string",
            "description": "Cidade",
            "maxLength": 255
          },
          "state": {
            "type": "string",
            "description": "Estado",
            "maxLength": 255
          },
          "stateNameNormalized": {
            "type": "string",
            "description": "Nombre del estado estandarizado internamente por ANYMARKET. Puede ser nulo si el estado es nulo o UNKNOWN para desconocido.",
            "maxLength": 100
          },
          "address": {
            "type": "string",
            "description": "Endereço",
            "maxLength": 500
          },
          "number": {
            "type": "string",
            "description": "Número",
            "maxLength": 100
          },
          "neighborhood": {
            "type": "string",
            "description": "Vecindario",
            "maxLength": 255
          },
          "country": {
            "type": "string",
            "description": "País",
            "maxLength": 255
          },
          "street": {
            "type": "string",
            "description": "La carretera",
            "maxLength": 255
          },
          "comment": {
            "type": "string",
            "description": "Complementar",
            "maxLength": 500
          },
          "reference": {
            "type": "string",
            "description": "Referencia",
            "maxLength": 255
          },
          "zipCode": {
            "type": "string",
            "description": "Código postal",
            "maxLength": 255
          },
          "receiverName": {
            "type": "string",
            "description": "Nombre del remitente para la entrega",
            "maxLength": 255
          },
          "promisedShippingTime": {
            "type": "string",
            "description": "Fecha de entrega acordada",
            "example": "2024-09-17T03:00:00Z"
          },
          "promisedDispatchTime": {
            "type": "string",
            "description": "Data prevista de coleta",
            "example": "2024-09-17T03:00:00Z"
          }
        }
      },
      "OrderBillingAddressPost": {
        "type": "object",
        "required": [
          "city",
          "state",
          "street",
          "number",
          "neighborhood",
          "zipCode"
        ],
        "properties": {
          "city": {
            "type": "string",
            "description": "Ciudad",
            "maxLength": 255
          },
          "state": {
            "type": "string",
            "description": "Estado",
            "maxLength": 255
          },
          "stateNameNormalized": {
            "type": "string",
            "description": "Nombre del estado estandarizado internamente por ANYMARKET. Puede ser nulo si el estado es nulo o UNKNOWN para desconocido.",
            "maxLength": 100
          },
          "country": {
            "type": "string",
            "description": "País",
            "maxLength": 255
          },
          "street": {
            "type": "string",
            "description": "Calle",
            "maxLength": 255
          },
          "number": {
            "type": "string",
            "description": "Número",
            "maxLength": 100
          },
          "neighborhood": {
            "type": "string",
            "description": "Barrio",
            "maxLength": 255
          },
          "comment": {
            "type": "string",
            "description": "Complemento",
            "maxLength": 500
          },
          "reference": {
            "type": "string",
            "description": "Referencia",
            "maxLength": 255
          },
          "zipCode": {
            "type": "string",
            "description": "Código postal",
            "maxLength": 255
          }
        }
      },
      "BuyerPost": {
        "type": "object",
        "required": [
          "name",
          "documentType",
          "document",
          "email",
          "phone"
        ],
        "properties": {
          "marketPlaceId": {
            "type": "string",
            "description": "Identificación en el mercado. Es posible que esta información no exista para algunos Marketplace o ecommerce."
          },
          "name": {
            "type": "string",
            "description": "Nombre del comprador",
            "maxLength": 255
          },
          "documentType": {
            "type": "string",
            "description": "Tipo de Documento. Valores posibles: CPF, CNPJ, OTROS"
          },
          "document": {
            "type": "string",
            "description": "Número del Documento. Es posible que esta información no se complete para algunos Marketplace o ecommerce."
          },
          "email": {
            "type": "string",
            "description": "E-mail del comprador",
            "maxLength": 255
          },
          "dateOfBirth": {
            "type": "string",
            "description": "Data de nascimento do comprador",
            "format": "date-time"
          },
          "phone": {
            "type": "string",
            "description": "Teléfono del comprador",
            "maxLength": 30
          },
          "cellPhone": {
            "type": "string",
            "description": "Celular del comprador",
            "maxLength": 30
          },
          "documentNumberNormalized": {
            "type": "string",
            "description": "Número de documento normalizado por ANYMARKET. Sólo números. Si el documento no es un CPF o CNPJ, este campo devolverá un valor nulo."
          },
          "companyStateTaxId": {
            "type": "string",
            "description": "Inscrição Estadual do comprador."
          }
        },
        "description": ""
      },
      "OrderPaymentPost": {
        "type": "object",
        "properties": {
          "method": {
            "type": "string",
            "description": "Método de pago"
          },
          "status": {
            "type": "string",
            "description": "Estado de pago enviado por el mercado"
          },
          "value": {
            "type": "number",
            "description": "Monto a pagar (En caso de cobro de intereses, el monto se suma al total de la compra. Ej: Mercado Libre)",
            "format": "double"
          },
          "installments": {
            "type": "number",
            "description": "Número de cuotas del medio de pago. Divide el número de cuotas por el valor para encontrar el valor de cada cuota.",
            "format": "int64"
          },
          "marketplaceId": {
            "type": "string",
            "description": "ID de pago enviado por el mercado. Algunos mercados no proporcionan la identificación y el valor puede ser nulo o con un valor fijo de \"1\" según la regla. (Ejemplo: Cnova siempre tiene un solo pago por la compra, por lo que la identificación del pago siempre puede ser \"1\")."
          },
          "gatewayFee": {
            "type": "number",
            "description": "Comisión de pasarela de pago (Ej: MercadoPago).",
            "format": "double"
          },
          "marketplaceFee": {
            "type": "number",
            "description": "Tarifa del mercado.",
            "format": "double"
          },
          "paymentMethodNormalized": {
            "type": "string",
            "description": "Método de pago estandarizado internamente por ANYMARKET. Si es un valor desconocido internamente, devolverá DESCONOCIDO. Si el método es nulo, este campo también será nulo."
          },
          "paymentDetailNormalized": {
            "type": "string",
            "description": "Detalle de la forma de pago estandarizada internamente por ANYMARKET. Si es un valor desconocido internamente, devolverá DESCONOCIDO. Si el método es nulo, este campo también será nulo."
          },
          "documentPaymentInstitution": {
            "type": "string",
            "description": "Identificação através do CNPJ do responsavel pela transação de pagamento com cartão. tag card/CNPJ."
          },
          "cardOperator": {
            "type": "string",
            "description": "Código da bandeira da operadora de cartão de crédito e/ou débito. Conforme  publicada no Portal Nacional da Nota Fiscal Eletrônica. tag card/tBand"
          },
          "orderAuthorizationCardCode": {
            "type": "string",
            "description": "Número de autorização da operação cartão de crédito e/ou débito. tag card/cAuth"
          }
        },
        "required": [
          "method",
          "value",
          "installments"
        ]
      },
      "OrderItemShippingPost": {
        "type": "object",
        "required": [
          "id",
          "shippingtype"
        ],
        "properties": {
          "shippingtype": {
            "type": "string",
            "description": "Método de envío seleccionado por el cliente"
          },
          "shippingCarrierNormalized": {
            "type": "string",
            "description": "Nombre del transportista estandarizado internamente por ANYMARKET. Si es un valor desconocido internamente, devolverá DESCONOCIDO. Si el tipo de envío es nulo, este campo también será nulo."
          },
          "shippingCarrierTypeNormalized": {
            "type": "string",
            "description": "Servicio de transporte estandarizado internamente por ANYMARKET. Si es un valor desconocido internamente, devolverá DESCONOCIDO. Si el tipo de envío es nulo, este campo también será nulo."
          }
        }
      },
      "OrderShippingItemPost": {
        "type": "object",
        "required": [
          "sku",
          "product",
          "amount",
          "unit",
          "gross",
          "total"
        ],
        "properties": {
          "sku": {
            "description": "Información de SKU",
            "type": "object",
            "properties": {
              "title": {
                "type": "string",
                "description": "Titulo da SKU no MarketPlace"
              },
              "partnerId": {
                "type": "string",
                "description": "Código do SKU no parceiro"
              }
            }
          },
          "product": {
            "description": "Información del Producto",
            "type": "object",
            "properties": {
              "title": {
                "type": "string",
                "description": "Titulo da SKU no MarketPlace"
              }
            }
          },
          "amount": {
            "type": "integer",
            "description": "Cantidad de objetos"
          },
          "unit": {
            "type": "number",
            "description": "Unidade de medida",
            "format": "double"
          },
          "discount": {
            "type": "number",
            "description": "Descuento del artículo",
            "format": "double"
          },
          "gross": {
            "type": "number",
            "description": "Valor bruto con descuento",
            "format": "double"
          },
          "total": {
            "type": "number",
            "description": "Artículo total sin descuento",
            "format": "double"
          },
          "marketPlaceId": {
            "type": "string",
            "description": "ID del artículo en el Marketplace / plataforma de ecommerce (si no se informa, será el mismo que el sku)"
          },
          "shippings": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderItemShippingPost"
            }
          }
        }
      },
      "PostOrder": {
        "type": "object",
        "required": [
          "marketPlaceId",
          "marketPlaceNumber",
          "marketPlace",
          "createdAt",
          "transmissionStatus",
          "status",
          "marketPlaceStatus",
          "total",
          "buyer",
          "items"
        ],
        "properties": {
          "marketPlaceId": {
            "type": "string",
            "description": "ID de pedido en el Marketpalce",
            "minLength": 0,
            "maxLength": 255
          },
          "marketPlaceNumber": {
            "type": "string",
            "description": "ID pública del pedido en el mercado",
            "maxLength": 255
          },
          "marketPlace": {
            "$ref": "#/components/schemas/EnumMarketplaces"
          },
          "accountName": {
            "type": "string",
            "description": "Identificador de cuenta del mercado",
            "maxLength": 255
          },
          "partnerId": {
            "type": "string",
            "description": "Código de pedido en socio. Una vez informado, no se puede cambiar",
            "maxLength": 100
          },
          "idAccount": {
            "description": "ID de cuenta generado automáticamente por ANYMARKET",
            "type": "number"
          },
          "fulfillment": {
            "type": "boolean",
            "description": "Identifica si el pedido es fulfillment"
          },
          "createdAt": {
            "type": "string",
            "description": "Fecha de creación del pedido",
            "format": "date-time"
          },
          "paymentDate": {
            "type": "string",
            "description": "Cierre de pago de pedidos",
            "format": "date-time"
          },
          "transmissionStatus": {
            "type": "string",
            "description": "Status da transmissão</br></br>\n\n  **OK**: Pedido sincronizado correctamente con Marketplace</br>\n   **ERROR**: Hubo un error al sincronizar con Marketplace</br>\n   **WAITING**: Esperando para sincronizar con Marketplace</br>\n",
            "enum": [
              "OK",
              "ERROR",
              "WAITING"
            ]
          },
          "status": {
            "type": "string",
            "description": "Status do pedido</br></br>\n\n  **INVOICED**: Facturado. Cambiando a esta situación, es necesario informar: número de nota, número de serie, fecha de emisión y clave de acceso</br>\n   **PAID_WAITING_DELIVERY**: Enviado (en espera de entrega). Cambiando a esta situación, es necesario informar: URL de seguimiento, número de seguimiento, nombre del transportista, fecha de envío</br>\n   **PAID_WAITING_SHIP**: Pagado (en espera de envío)</br>\n   **PENDING**: Pendiente (Aún no ha sido pagado. Existe un parámetro para que ANYMARKET importe del MarketPlace el pedido que aún no ha sido pagado)</br>\n",
            "enum": [
              "PENDING",
              "PAID_WAITING_SHIP",
              "INVOICED",
              "PAID_WAITING_DELIVERY",
              "CONCLUDED",
              "CANCELED"
            ]
          },
          "marketPlaceStatus": {
            "type": "string",
            "description": "Estado del pedido en el mercado. Cada mercado tiene situaciones diferentes. Ej: en mercado libre no hay situación facturada\n",
            "maxLength": 255
          },
          "marketPlaceStatusComplement": {
            "type": "string",
            "description": "Información complementaria sobre el estado del pedido en el marketplace. Cada mercado tiene situaciones diferentes. Ej: en Dafiti, el pedido se puede marcar como una falla en la entrega y la causa se puede almacenar en este atributo\n",
            "maxLength": 1000
          },
          "documentIntermediator": {
            "type": "string",
            "description": "CNPJ Identificador de intermediario de transacciones",
            "maxLength": 14
          },
          "intermediateRegistrationId": {
            "type": "string",
            "description": "Identificador de registro (vendedor o usuario) en el intermediario",
            "maxLength": 60
          },
          "documentPaymentInstitution": {
            "type": "string",
            "description": "Identificador de Institución de Pago CNPJ",
            "maxLength": 14
          },
          "discount": {
            "type": "number",
            "description": "Descuento de pedido",
            "format": "double"
          },
          "freight": {
            "type": "number",
            "description": "Valor del flete",
            "format": "double"
          },
          "sellerFreight": {
            "type": "number",
            "description": "Custo de Frete do Seller",
            "format": "double"
          },
          "interestValue": {
            "type": "number",
            "description": "valor de interés",
            "format": "double"
          },
          "gross": {
            "type": "number",
            "description": "Total bruto sin costo de envío",
            "format": "double"
          },
          "total": {
            "type": "number",
            "description": "Total del pedido con gastos de envío",
            "format": "double"
          },
          "marketPlaceUrl": {
            "type": "string",
            "description": "URL de pedido en el Marketplace",
            "format": "uri"
          },
          "marketPlaceShipmentStatus": {
            "type": "string",
            "description": "Estado de envío del pedido en el mercado. Cada mercado tiene situaciones diferentes.",
            "maxLength": 255
          },
          "shipping": {
            "$ref": "#/components/schemas/OrderShippingAddressPost"
          },
          "billingAddress": {
            "$ref": "#/components/schemas/OrderBillingAddressPost"
          },
          "buyer": {
            "$ref": "#/components/schemas/BuyerPost"
          },
          "payments": {
            "description": "Detalles de pago (serán enviados por Marketplace)",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderPaymentPost"
            }
          },
          "items": {
            "description": "Datos sobre los productos comprados",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderShippingItemPost"
            }
          },
          "deliverStatus": {
            "type": "string",
            "description": "Status do pedido</br></br>\n\n  **UNKNOWN**: Envío pendiente</br>\n   **SHIPPED**: pedido enviado</br>\n   **CONCLUDED**: Pedido entregado</br>\n",
            "enum": [
              "UNKNOWN",
              "SHIPPED",
              "CONCLUDED"
            ]
          },
          "metadata": {
            "$ref": "#/components/schemas/OrderMetadata"
          },
          "discountMetadata": {
            "type": "array",
            "description": "Indica o valor do desconto quando informado pelo canal de venda.",
            "items": {
              "type": "object",
              "properties": {
                "type": {
                  "type": "array",
                  "description": "**COUPON**: indica que a venda possui desconto do tipo Cupom no Mercado Livre.<br/>\n**FREE_ITEM**: indica que a venda possui 100% de desconto e é do tipo Amostra grátis.",
                  "items": {
                    "type": "string",
                    "enum": [
                      "FREE_ITEM",
                      "COUPON"
                    ]
                  }
                }
              }
            }
          }
        },
        "example": {
          "marketPlaceId": "string",
          "marketPlaceNumber": "string",
          "marketPlace": "B2W",
          "accountName": "string",
          "partnerId": "string",
          "idAccount": 0,
          "fulfillment": true,
          "createdAt": "2019-08-24T14:15:22Z",
          "paymentDate": "2019-08-24T14:15:22Z",
          "transmissionStatus": "OK",
          "status": "PENDING",
          "marketPlaceStatus": "string",
          "marketPlaceStatusComplement": "string",
          "documentIntermediator": "string",
          "intermediateRegistrationId": "string",
          "documentPaymentInstitution": "string",
          "discount": 0,
          "freight": 0,
          "interestValue": 0,
          "gross": 0,
          "total": 0,
          "marketPlaceUrl": "http://example.com",
          "marketPlaceShipmentStatus": "string",
          "shipping": {
            "city": "string",
            "state": "string",
            "stateNameNormalized": "string",
            "address": "string",
            "number": "string",
            "neighborhood": "string",
            "country": "string",
            "street": "string",
            "comment": "string",
            "reference": "string",
            "zipCode": "string",
            "receiverName": "string",
            "promisedShippingTime": "2019-08-24T14:15:22Z"
          },
          "billingAddress": {
            "city": "string",
            "state": "string",
            "stateNameNormalized": "string",
            "country": "string",
            "street": "string",
            "number": "string",
            "neighborhood": "string",
            "comment": "string",
            "reference": "string",
            "zipCode": "string"
          },
          "anymarketAddress": {
            "state": "string",
            "city": "string",
            "zipCode": "string",
            "neighborhood": "string",
            "address": "string",
            "street": "string",
            "number": "string",
            "comment": "string",
            "reference": "string",
            "receiverName": "string",
            "promisedShippingTime": "string"
          },
          "buyer": {
            "marketPlaceId": "string",
            "name": "string",
            "documentType": "string",
            "document": "string",
            "email": "string",
            "phone": "string",
            "cellPhone": "string",
            "documentNumberNormalized": "string"
          },
          "payments": [
            {
              "method": "string",
              "status": "string",
              "value": 0,
              "installments": 0,
              "marketplaceId": "string",
              "gatewayFee": 0,
              "marketplaceFee": 0,
              "paymentMethodNormalized": "string",
              "paymentDetailNormalized": "string",
              "documentPaymentInstitution": "string",
              "cardOperator": "string",
              "orderAuthorizationCardCode": "string"
            }
          ],
          "items": [
            {
              "sku": {
                "title": "string",
                "partnerId": "string"
              },
              "product": {
                "title": "string"
              },
              "amount": 0,
              "unit": 0,
              "discount": 0,
              "gross": 0,
              "total": 0,
              "marketPlaceId": "string",
              "shippings": [
                {
                  "shippingtype": "string",
                  "shippingCarrierNormalized": "string",
                  "shippingCarrierTypeNormalized": "string"
                }
              ]
            }
          ],
          "deliverStatus": "UNKNOWN",
          "metadata": {
            "number-of-packages": "1",
            "cdZipCode": "string",
            "needInvoiceXML": "true"
          },
          "discountMetadata": [
            {
              "type": [
                "COUPON"
              ]
            }
          ]
        }
      },
      "OrderQuoteId": {
        "type": "object",
        "title": "OrderQuoteId",
        "properties": {
          "quoteId": {
            "type": "string"
          },
          "price": {
            "type": "number",
            "example": 1.23,
            "format": "double"
          }
        },
        "example": {
          "quoteId": "1234567890",
          "price": 1.23
        }
      },
      "OrderUpdatePaid": {
        "type": "object",
        "properties": {
          "status": {
            "type": "string",
            "description": "Status del pedido</br></br>\n  **PAID_WAITING_SHIP**: : Pagado (en espera de entrega)\n",
            "enum": [
              "PAID_WAITING_SHIP"
            ]
          }
        },
        "required": [
          "status"
        ],
        "example": {
          "status": "PAID_WAITING_SHIP"
        }
      },
      "OrderUpdateMetadata": {
        "type": "object",
        "description": "Campos adicionais do pedido.",
        "properties": {
          "number-of-packages": {
            "type": "string",
            "default": "1",
            "description": "Quantidade de volumes para a impressão de etiqueta"
          },
          "cdZipCode": {
            "type": "string",
            "description": "CEP do Centro de Distribuição referente ao CNPJ de faturamento do pedido"
          }
        },
        "title": "Campos adicionais do pedido."
      },
      "OrderUpdateInvoiced": {
        "type": "object",
        "properties": {
          "status": {
            "type": "string",
            "description": "Status del pedido</br></br>\n   **INVOICED**: Facturado. Ante esta situación, es necesario informar: número de billete, número de serie, fecha de emisión y clave de acceso\n",
            "enum": [
              "INVOICED"
            ]
          },
          "invoice": {
            "type": "object",
            "required": [
              "date"
            ],
            "properties": {
              "accessKey": {
                "type": "string",
                "description": "Chave de acesso da nota fiscal"
              },
              "series": {
                "type": "string",
                "description": "Número de série da nota fiscal"
              },
              "number": {
                "type": "string",
                "description": "Número da nota fiscal"
              },
              "date": {
                "type": "string",
                "description": "Data de emissão da nota fiscal (Necessário informar o fuso horario)",
                "format": "date-time",
                "example": "2018-03-08T10:00:00-03:00"
              },
              "cfop": {
                "type": "string",
                "description": "Código Fiscal de Operações e Prestações, esse campo será obrigátorio caso seja utilizado 'Mercado Envio Coleta'"
              },
              "companyStateTaxId": {
                "type": "string",
                "description": "Inscrição Estadual quando o comprador é uma Pessoa Jurídica (CNPJ), esse campo será obrigátorio caso seja utilizado 'Mercado Envios Coleta'; é possível utilizar 'ISENTO'"
              },
              "linkNfe": {
                "type": "string",
                "description": "Campo para inserir a URL para consulta da nota fiscal"
              },
              "invoiceLink": {
                "type": "string",
                "description": "Campo para inserir a URL onde está armazenada o PDF ou o XML da nota fiscal (utilizado para a integração da Garbarino)"
              },
              "extraDescription": {
                "type": "string",
                "description": "Campo para observações"
              },
              "fiscalMetadata": {
                "$ref": "#/components/schemas/FiscalDocumentMetadata"
              }
            }
          },
          "metadata": {
            "$ref": "#/components/schemas/OrderUpdateMetadata"
          }
        },
        "required": [
          "status",
          "invoice"
        ]
      },
      "OrderUpdateDelivery": {
        "type": "object",
        "properties": {
          "status": {
            "type": "string",
            "description": "Status del pedido</br></br>\n   **PAID_WAITING_DELIVERY**: : Enviado (en espera de entrega). Cambiando a esta situación, es necesario informar: URL de seguimiento, número de seguimiento, nombre del transportista y fecha de envío</br>\n",
            "enum": [
              "PAID_WAITING_DELIVERY"
            ],
            "default": "PAID_WAITING_DELIVERY"
          },
          "tracking": {
            "type": "object",
            "required": [
              "number",
              "carrier",
              "shippedDate"
            ],
            "properties": {
              "url": {
                "type": "string",
                "description": "URL para o rastreamento"
              },
              "number": {
                "type": "string",
                "description": "Número de rastreio"
              },
              "carrier": {
                "type": "string",
                "description": "Nome da transportadora"
              },
              "carrierDocument": {
                "type": "string",
                "description": "CNPJ da transportadora"
              },
              "estimateDate": {
                "type": "string",
                "description": "Data estimada (Necessário informar o fuso horario)",
                "format": "date-time",
                "example": "2018-03-08T10:00:00-03:00"
              },
              "shippedDate": {
                "type": "string",
                "description": "Data em que foi entregue a transportadora (Necessário informar o fuso horario)",
                "format": "date-time",
                "example": "2018-03-08T10:00:00-03:00"
              }
            }
          }
        },
        "required": [
          "status",
          "tracking"
        ]
      },
      "OrderTrackingConcluded": {
        "required": [
          "deliveredDate"
        ],
        "type": "object",
        "properties": {
          "deliveredDate": {
            "type": "string",
            "description": "Fecha de entrega al Cliente (Es necesario informar la zona horaria)",
            "format": "date-time"
          }
        }
      },
      "OrderUpdateConcluded": {
        "type": "object",
        "properties": {
          "status": {
            "type": "string",
            "description": "Status del pedido</br></br>\n  **CONCLUDED**: Pedido entregado (es el último estado del pedido). Ante esta situación, es necesario informar: fecha de entrega</br>\n",
            "enum": [
              "CONCLUDED"
            ]
          },
          "tracking": {
            "$ref": "#/components/schemas/OrderTrackingConcluded"
          }
        },
        "required": [
          "status",
          "tracking"
        ],
        "example": {
          "status": "CONCLUDED",
          "tracking": {
            "deliveredDate": "2019-08-24T14:15:22-03:00"
          }
        }
      },
      "OrderUpdateCanceled": {
        "type": "object",
        "required": [
          "status"
        ],
        "properties": {
          "status": {
            "type": "string",
            "description": "Status del pedido</br></br>\n  **CANCELED**: Pedido Cancelado\n",
            "enum": [
              "CANCELED"
            ]
          },
          "cancelDetails": {
            "type": "string",
            "description": "Detalles de cancelación, obligatorios para Marketplaces:</br></br>\n GFG - Dafiti\n"
          },
          "cancellationCode": {
            "type": "string",
            "description": "Razão de cancelamento.\n\nOs motivos disponíveis para vendedores MERCADO LIVRE são:\n- OUT_OF_STOCK: Sem estoque\n- BUYER_NOT_ENOUGH_MONEY: Comprador não tem dinheiro suficiente\n- BUYER_REGRETS: Comprador se arrependeu da operação\n- SELLER_REGRETS: Vendedor se arrependeu da operação\n- BUYER_DID_NOT_ANSWER: Comprador não responde\n- THEY_NOT_HONORING_POLICIES: Comprador não está atendendo às políticas\n- OTHER_MY_RESPONSIBILITY: Responsabilidade própria (outro motivo)\n- OTHER_THEIR_RESPONSIBILITY: Responsabilidade da contraparte (outro motivo)\n- DUBIOUS_BUYER: Comprador não confiável\n- HIGH_ML_COMISSION: Comissão de venda muito alta\n- HIGH_TAXES: Taxas muito altas\n- SELLER_HOLIDAY: Não há operação por férias\n- UNFRIENDLY_SHIPMENT_POLICY: Comprador não aceita política de envio\n- UNAVAILABLE_PRODUCT: Produto não disponível\n- SELLER_ADDRESS_WITHDRAWAL: Comprador prefere retirar pessoalmente\n- WRONG_RECEIVER_ADDRESS: Endereço de entrega errado\n- HIGH_SHIPMENT_COST: Custos de envio muito altos\n- WRONG_SHIPMENT_COST: Custo de envio mal calculado\n- UNPRINTED_LABEL: Etiqueta não pode ser impressa\n- UNWITHDRAWN_PRODUCT_BY_DELIVER_COMPANY: Empresa de envio não retirou o produto para entrega\n- DENIED_PACKAGE: Empresa de envio não aceita o pacote por causa do tamanho ou peso\n- UNABLE_TO_READ_LABEL: Empresa de envio não consegue ler a etiqueta\n- MANUFACTURING_PRODUCT_NOT_FINISHED: Produto manufaturado sem acabar\n- SHIPMENT_PROBLEM_OTHER: Envio teve algum outro problema\n- DELIVERY_COMPANY_PROBLEM_OTHER: Empresa de envio teve outro problema",
            "example": "OUT_OF_STOCK"
          }
        }
      },
      "EnumTypeFulfillment": {
        "type": "string",
        "title": "",
        "enum": [
          "sale",
          "sale_return",
          "sale_devolution",
          "gift",
          "inbound",
          "devolution",
          "inbound_devolution",
          "inbound_return",
          "inbound_supplier_return",
          "symbolic_inbound",
          "symbolic_inbound_return",
          "purchase",
          "removal",
          "symbolic_removal"
        ],
        "description": "Tipo do documento fulfillment.</br>\n**sale**: venda de mercadorias.</br>\n**sale_return**: retorno de mercadoria nao entregue.</br>\n**sale_devolution**: nota fiscal de devolução.</br>\n**inbound**: nota fiscal de entrada.</br>\n**inbound_devolution**: devolução entrada.</br>\n**inbound_return**: retorno de entrada.</br>\n**inbound_supplier_return**: nota de devolução ao fornecedor. Quando o fornecedor nos enviou uma nota errada essa anota ajuda devolvendo items a mais.</br>\n**symbolic_inbound**: retornos simbólicos.</br>\n**symbolic_inbound_return**: retornos simbólicos.</br>\n**symbolic_removal**: notas de retirada.</br>\n**removal**: notas de retirada.</br>\n",
        "readOnly": true,
        "example": [
          {
            "id": 123456,
            "name": "Brastemp",
            "reducedName": "brastemp",
            "partnerId": "marca-001-brastemp"
          }
        ]
      },
      "XmlFulfillment": {
        "type": "object",
        "required": [
          "type",
          "url"
        ],
        "properties": {
          "type": {
            "$ref": "#/components/schemas/EnumTypeFulfillment"
          },
          "url": {
            "type": "string",
            "format": "uri"
          }
        }
      },
      "Answers": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "description": "ID de respuesta generado por ANYMARKET",
            "format": "int64",
            "minimum": 0
          },
          "answer": {
            "type": "string",
            "description": "Respuesta",
            "maxLength": 2000
          }
        },
        "required": [
          "answer"
        ]
      },
      "Questions": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "description": "ID de pregunta generado por ANYMARKET",
            "format": "int64"
          },
          "questionerName": {
            "type": "string",
            "description": "Nombre del interrogador"
          },
          "context": {
            "type": "string",
            "description": "ID de flujo concatenado con el nombre del producto"
          },
          "question": {
            "type": "string",
            "description": "Pregunta"
          },
          "answers": {
            "type": "array",
            "description": "Respostas",
            "items": {
              "$ref": "#/components/schemas/Answers"
            }
          },
          "questionDate": {
            "type": "string",
            "description": "Pregunta Fecha",
            "format": "date-time"
          }
        },
        "required": [
          "id",
          "questionerName",
          "context",
          "question",
          "answers",
          "questionDate"
        ],
        "example": {
          "id": 0,
          "questionerName": "string",
          "context": "string",
          "question": "string",
          "answers": [
            {
              "id": 0,
              "answer": "string"
            }
          ],
          "questionDate": "2019-08-24T14:15:22Z"
        }
      },
      "Page_Questions": {
        "title": "Page_Order",
        "allOf": [
          {
            "properties": {
              "links": {
                "type": "array",
                "description": "Referências de paginação",
                "uniqueItems": false,
                "minItems": 1,
                "maxItems": 1,
                "items": {
                  "$ref": "#/components/schemas/PageLinks"
                }
              },
              "content": {
                "type": "array",
                "description": "Lista de pedidos",
                "items": {
                  "$ref": "#/components/schemas/Questions"
                }
              },
              "page": {
                "$ref": "#/components/schemas/PageMetadata"
              }
            }
          }
        ],
        "description": "",
        "type": "object"
      },
      "Page_Answers": {
        "title": "Page_Order",
        "allOf": [
          {
            "properties": {
              "links": {
                "type": "array",
                "description": "Referências de paginação",
                "uniqueItems": false,
                "minItems": 1,
                "maxItems": 1,
                "items": {
                  "$ref": "#/components/schemas/PageLinks"
                }
              },
              "content": {
                "type": "array",
                "description": "Lista de pedidos",
                "items": {
                  "$ref": "#/components/schemas/Answers"
                }
              },
              "page": {
                "$ref": "#/components/schemas/PageMetadata"
              }
            }
          }
        ],
        "description": "",
        "type": "object"
      },
      "Brand": {
        "title": "Brand",
        "allOf": [
          {
            "properties": {
              "id": {
                "type": "integer",
                "format": "int64",
                "minimum": 0,
                "description": "ID da marca"
              },
              "name": {
                "type": "string",
                "description": "Nome da marca",
                "minLength": 1,
                "maxLength": 120
              },
              "reducedName": {
                "type": "string",
                "description": "Nome reduzido da marca",
                "minLength": 0,
                "maxLength": 30
              },
              "partnerId": {
                "type": "string",
                "minLength": 0,
                "maxLength": 255,
                "description": "ID da marca no parceiro"
              }
            },
            "required": [
              "name"
            ]
          }
        ],
        "description": "Marca",
        "type": "object"
      },
      "Nbm": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "ID do NBM"
          },
          "description": {
            "type": "string",
            "description": "Descrição do NBM"
          }
        },
        "required": [
          "id"
        ]
      },
      "Origin": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "description": "Origen Identificación. Los valores van de 0 a 7, como se muestra en la siguiente tabla:</br></br>\n\n   **0**: Nacional</br>\n   **1**: Extranjero - Importación directa</br>\n   **2**: Extranjero - Adquirido en el mercado nacional</br>\n   **3**: Nacional, mercancía o bien con Contenido de Importación superior al 40%</br>\n   **4**: Nacional, cuya producción se haya realizado de acuerdo con los procesos básicos de producción contemplados en la legislación mencionada en los Ajustes</br>\n   **5**: Nacional, mercancía o bien con Contenido de Importación menor o igual al 40%</br>\n   **6**: Extranjero - Importación directa, sin similar nacional, incluido en la lista CAMEX</br>\n   **7**: Extranjero - Adquirido en el mercado interno, sin similar nacional, incluido en la lista CAMEX</br>\n",
            "format": "int64"
          },
          "description": {
            "type": "string",
            "description": "Descripción de origen"
          }
        },
        "required": [
          "id"
        ]
      },
      "ProductCharacteristic": {
        "type": "object",
        "properties": {
          "index": {
            "type": "integer",
            "description": "Índice de funciones",
            "format": "int64"
          },
          "name": {
            "type": "string",
            "description": "Nombre de la característica",
            "maxLength": 255
          },
          "value": {
            "type": "string",
            "description": "Valor de característica",
            "maxLength": 255
          }
        },
        "required": [
          "name",
          "value"
        ]
      },
      "AdditionalStocks": {
        "type": "object",
        "properties": {
          "price": {
            "type": "number",
            "description": "SKU precio",
            "format": "double"
          },
          "amount": {
            "type": "number",
            "description": "SKU cantidad de existencias",
            "minimum": 0
          },
          "additionalTime": {
            "type": "number",
            "description": "Plazo adicional para la entrega. También llamado 'crossdocking', es el momento de preparar cada producto para su envío. Utilizado en mercados como B2W y CNOVA. Si no se informa, se le asignará el valor por defecto 0.",
            "minimum": 0
          },
          "stockLocalId": {
            "type": "number",
            "description": "Código de ubicación del inventario, si este campo está vacío, se agrega a la ubicación predeterminada registrada en el sistema.",
            "format": "long",
            "minimum": 0
          }
        },
        "required": [
          "price",
          "amount",
          "additionalTime",
          "stockLocalId"
        ]
      },
      "Sku": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "description": "ID de SKU generado por ANYMARKET",
            "format": "int64"
          },
          "title": {
            "type": "string",
            "description": "Título de SKU",
            "maxLength": 150
          },
          "partnerId": {
            "type": "string",
            "description": "SKU de socio. El código de este SKU se enviará a la mayoría de los mercados y se utilizará como vínculo entre ANYMARKET y el mercado.",
            "maxLength": 120
          },
          "ean": {
            "type": "string",
            "description": "Código de barras SKU",
            "maxLength": 13
          },
          "amount": {
            "type": "number",
            "description": "SKU cantidad de existencias",
            "minimum": 0
          },
          "additionalTime": {
            "type": "number",
            "description": "Plazo adicional para la entrega del producto. También llamado \"crossdocking\", este es el momento de preparar cada producto para su envío, ya sea fabricación, adquisición, embalaje o redirección de ubicación. Utilizado en mercados como B2W y CNOVA.",
            "minimum": 0
          },
          "price": {
            "type": "number",
            "description": "SKU precio",
            "format": "double"
          },
          "sellPrice": {
            "type": "number",
            "description": "Precio por SKU (se usa cuando definitionPriceScope es igual a SKU)",
            "format": "double"
          },
          "stockLocalId": {
            "type": "number",
            "description": "Código de ubicación del inventario, si este campo está vacío, se agrega a la ubicación predeterminada registrada en el sistema.",
            "minimum": 0
          },
          "variations": {
            "type": "object",
            "description": "Valores de variación",
            "properties": {
              "{variationTypeName}": {
                "type": "string",
                "description": "Ex: \"Cor\": \"Laranja\""
              }
            }
          },
          "additionalStocks": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/AdditionalStocks"
            }
          },
          "externalId": {
            "type": "string",
            "description": "ID externo, utilizado en algunos marketplaces para su control interno.",
            "maxLength": 100
          },
          "active": {
            "type": "boolean",
            "description": "Define se o SKU está ativo ou inativo"
          },
          "volumes": {
            "type": "number",
            "description": "Quatidade de volumes do SKU.",
            "minimum": 0,
            "default": 0
          }
        },
        "required": [
          "title",
          "partnerId",
          "amount",
          "additionalTime",
          "price",
          "sellPrice"
        ]
      },
      "Product": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "description": "ID de pedido generado por ANYMARKET",
            "format": "int64"
          },
          "title": {
            "type": "string",
            "description": "Titulo del producto",
            "maxLength": 150
          },
          "description": {
            "type": "string",
            "description": "Descripción del producto",
            "maxLength": 10000
          },
          "externalIdProduct": {
            "type": "string",
            "description": "ID externo do produto ",
            "maxLength": 10000
          },
          "category": {
            "description": "Categoria de producto. Posteriormente, el cliente vinculará la categoría enviada con la categoría de cada marketplace",
            "type": "object",
            "required": [
              "id",
              "name",
              "path"
            ],
            "properties": {
              "id": {
                "type": "number",
                "description": "ID da categoria gerado pelo ANYMARKET"
              },
              "name": {
                "type": "string",
                "description": "Nome da Categoria"
              },
              "path": {
                "type": "string",
                "description": "Árvore de categorias até a categoria atual"
              }
            }
          },
          "brand": {
            "$ref": "#/components/schemas/Brand"
          },
          "nbm": {
            "$ref": "#/components/schemas/Nbm"
          },
          "origin": {
            "$ref": "#/components/schemas/Origin"
          },
          "model": {
            "type": "string",
            "description": "Modelo del Producto"
          },
          "videoUrl": {
            "type": "string",
            "description": "URL del vídeo de Youtube",
            "maxLength": 255
          },
          "gender": {
            "type": "string",
            "description": "Género del producto. Los valores son MALE, FEMALE, BOY, GIRL e UNISSEX",
            "enum": [
              "MALE",
              "FEMALE",
              "BOY",
              "GIRL",
              "UNISSEX",
              "BABIES",
              "CHILDISH_UNISSEX"
            ]
          },
          "warrantyTime": {
            "type": "integer",
            "description": "Tiempo de garantia",
            "format": "int32"
          },
          "warrantyText": {
            "type": "string",
            "description": "Texto de garantía"
          },
          "height": {
            "type": "number",
            "description": "Altura del embalaje del producto (en centímetros)",
            "format": "double"
          },
          "width": {
            "type": "number",
            "description": "Ancho del empaque del producto (en centímetros)",
            "format": "double"
          },
          "weight": {
            "type": "number",
            "description": "Peso del embalaje del producto (en kilogramos)",
            "format": "double"
          },
          "length": {
            "type": "number",
            "description": "Profundidad del embalaje del producto (en centímetros)",
            "format": "double"
          },
          "priceFactor": {
            "type": "number",
            "description": "Factor de precio del producto. Se utiliza como Multiplicador del precio de costo del producto. Corresponde al campo Marcado en la pantalla del sistema",
            "format": "double"
          },
          "calculatedPrice": {
            "type": "boolean",
            "description": "Identifica si el producto tendrá el precio calculado en función del margen de beneficio"
          },
          "definitionPriceScope": {
            "type": "string",
            "description": "Soporte para tipos SKU (Manual, controlo precio por SKU), SKU_MARKETPLACE (Manual, controlo precio por anuncio) o COST (Automático, por cambio de costo)"
          },
          "hasVariations": {
            "type": "boolean",
            "description": "Informa si el producto tiene variaciones"
          },
          "isProductActive": {
            "type": "boolean",
            "description": "Informa si el producto está Activo/Inactivo"
          },
          "type": {
            "description": "Tipo de Produto. Simples, Variação ou KIT",
            "type": "string"
          },
          "characteristics": {
            "type": "array",
            "description": "Define características variables y específicas de cada producto. Por ejemplo, en el caso de una raqueta de tenis, la tensión de la red se puede agregar como una característica adicional.\n",
            "items": {
              "$ref": "#/components/schemas/ProductCharacteristic"
            }
          },
          "images": {
            "type": "array",
            "description": "Matrices de imágenes. Los índices si se informa se mantendrán, si alguna imagen no tiene el índice informado, ANYMARKET la llenará secuencialmente y sin repetición. Si no se marca ninguna imagen como principal, ANYMARKET marcará el índice de imagen 1 como principal. items: $ref: ",
            "items": {
              "$ref": "#/components/schemas/Image"
            }
          },
          "skus": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Sku"
            }
          },
          "kitComponents": {
            "type": "object",
            "properties": {
              "idSku": {
                "type": "string",
                "description": "ID do SKU do componente"
              },
              "stockLocalId": {
                "type": "string",
                "description": "ID do Local do Estoque"
              },
              "percentage": {
                "type": "number",
                "description": "Porcentagem que o componente representa no KIT"
              },
              "quantity": {
                "type": "number",
                "description": "Quantidade do Componente no KIT"
              },
              "isMainComponent": {
                "type": "boolean",
                "description": "Informa se é o componente principal do KIT"
              }
            }
          },
          "allowAutomaticSkuMarketplaceCreation": {
            "type": "boolean",
            "description": "Permite la creación de anuncios automáticos en base a la configuración existente en la categoría (Valor por defecto del campo es verdadero)."
          }
        },
        "required": [
          "id",
          "title",
          "description",
          "category",
          "origin",
          "model",
          "warrantyTime",
          "height",
          "width",
          "weight",
          "length",
          "priceFactor",
          "calculatedPrice",
          "definitionPriceScope",
          "hasVariations",
          "images",
          "skus",
          "allowAutomaticSkuMarketplaceCreation"
        ],
        "example": {
          "id": -9223372036854776000,
          "title": "string",
          "description": "string",
          "externalIdProduct": "string",
          "category": {
            "id": 0,
            "name": "string",
            "path": "string"
          },
          "brand": {
            "id": 123456,
            "name": "Brastemp",
            "reducedName": "brastemp",
            "partnerId": "marca-001-brastemp"
          },
          "nbm": {
            "id": "string",
            "description": "string"
          },
          "origin": {
            "id": 0,
            "description": "string"
          },
          "model": "string",
          "videoUrl": "string",
          "gender": "string",
          "warrantyTime": -2147483648,
          "warrantyText": "string",
          "height": -1.7976931348623157e+308,
          "width": -1.7976931348623157e+308,
          "weight": -1.7976931348623157e+308,
          "length": -1.7976931348623157e+308,
          "priceFactor": -1.7976931348623157e+308,
          "calculatedPrice": true,
          "definitionPriceScope": "string",
          "hasVariations": true,
          "isProductActive": true,
          "type": "string",
          "characteristics": [
            {
              "index": 0,
              "name": "string",
              "value": "string"
            }
          ],
          "images": [
            {
              "id": 0,
              "index": 0,
              "main": false,
              "url": "http://example.com",
              "thumbnailUrl": "http://example.com",
              "lowResolutionUrl": "http://example.com",
              "standardUrl": "http://example.com",
              "originalImage": "http://example.com",
              "variation": "Azul",
              "status": "UNPROCESSED",
              "statusMessage": "string",
              "standardWidth": 0,
              "standardHeight": 0,
              "originalWidth": 0,
              "originalHeight": 0
            }
          ],
          "skus": [
            {
              "id": 0,
              "title": "string",
              "partnerId": "string",
              "ean": "string",
              "amount": 0,
              "additionalTime": 0,
              "price": 0,
              "sellPrice": 0,
              "stockLocalId": 0,
              "variations": {
                "{variationTypeName}": "string"
              },
              "additionalStocks": [
                {
                  "price": 0,
                  "amount": 0,
                  "additionalTime": 0,
                  "stockLocalId": 0
                }
              ],
              "externalId": "string",
              "active": true,
              "volumes": 0
            }
          ],
          "kitComponents": {
            "idSku": "string",
            "stockLocalId": "string",
            "percentage": 0,
            "quantity": 0,
            "isMainComponent": true
          },
          "allowAutomaticSkuMarketplaceCreation": true
        }
      },
      "Page_Product": {
        "title": "Page_Stock",
        "allOf": [
          {
            "properties": {
              "links": {
                "type": "array",
                "description": "Referências de paginação",
                "uniqueItems": false,
                "minItems": 1,
                "maxItems": 1,
                "items": {
                  "$ref": "#/components/schemas/PageLinks"
                }
              },
              "content": {
                "type": "array",
                "description": "Lista de marcas",
                "items": {
                  "$ref": "#/components/schemas/Product"
                }
              },
              "page": {
                "$ref": "#/components/schemas/PageMetadata"
              }
            }
          }
        ],
        "description": "",
        "type": "object",
        "example": {
          "links": [
            {
              "rel": "next",
              "href": "https://.../v2/component?limit=5&offset=5"
            }
          ],
          "content": [
            {
              "id": 0,
              "title": "string",
              "description": "string",
              "category": {
                "id": 0,
                "name": "string",
                "path": "string"
              },
              "brand": {
                "id": 123456,
                "name": "Brastemp",
                "reducedName": "brastemp",
                "partnerId": "marca-001-brastemp"
              },
              "nbm": {
                "id": "string",
                "description": "string"
              },
              "origin": {
                "id": 0,
                "description": "string"
              },
              "model": "string",
              "videoUrl": "string",
              "gender": "string",
              "warrantyTime": 0,
              "warrantyText": "string",
              "height": 0,
              "width": 0,
              "weight": 0,
              "length": 0,
              "priceFactor": 0,
              "calculatedPrice": true,
              "definitionPriceScope": "string",
              "hasVariations": true,
              "isProductActive": true,
              "characteristics": [
                {
                  "index": 0,
                  "name": "string",
                  "value": "string"
                }
              ],
              "images": [
                {
                  "id": 0,
                  "index": 0,
                  "main": true,
                  "url": "http://example.com",
                  "thumbnailUrl": "http://example.com",
                  "lowResolutionUrl": "http://example.com",
                  "standardUrl": "http://example.com",
                  "originalImage": "http://example.com",
                  "variation": "string",
                  "status": "UNPROCESSED",
                  "statusMessage": "string",
                  "standardWidth": 0,
                  "standardHeight": 0,
                  "originalWidth": 0,
                  "originalHeight": 0
                }
              ],
              "skus": [
                {
                  "id": 0,
                  "title": "string",
                  "partnerId": "string",
                  "ean": "string",
                  "amount": 0,
                  "additionalTime": 0,
                  "price": 0,
                  "sellPrice": 0,
                  "stockLocalId": 0,
                  "variations": [
                    {
                      "id": 0,
                      "description": "string",
                      "type": {
                        "id": 0,
                        "name": "string",
                        "visualVariation": true
                      }
                    }
                  ],
                  "additionalStocks": [
                    {
                      "price": 0,
                      "amount": 0,
                      "additionalTime": 0,
                      "stockLocalId": 0
                    }
                  ],
                  "externalId": "string"
                }
              ],
              "allowAutomaticSkuMarketplaceCreation": true
            }
          ],
          "page": {
            "size": 0,
            "totalElements": 0,
            "totalPages": 0,
            "number": 0
          }
        }
      },
      "ProductCategory": {
        "title": "",
        "description": "",
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "format": "int64",
            "minimum": 0,
            "description": "ID da categoria gerado pelo ANYMARKET"
          },
          "name": {
            "type": "string",
            "description": "Nome da categoria",
            "maxLength": 80
          },
          "partnerId": {
            "type": "string",
            "description": "ID da categoria no parceiro",
            "maxLength": 80
          }
        },
        "required": [
          "id"
        ]
      },
      "ProductBrand": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "description": "ID de marca generada por ANYMARKET",
            "format": "int64"
          },
          "name": {
            "type": "string",
            "description": "Nombre de la marca",
            "maxLength": 255
          },
          "reducedName": {
            "type": "string",
            "description": "Nome reduzido da marca",
            "maxLength": 255
          },
          "partnerId": {
            "type": "string",
            "description": "ID de marca de socio",
            "maxLength": 255
          }
        },
        "required": [
          "id"
        ],
        "title": "",
        "description": ""
      },
      "PostProduct": {
        "type": "object",
        "description": "Cria um produto com os dados informados",
        "required": [
          "title",
          "description",
          "category",
          "brand",
          "warrantyTime",
          "height",
          "width",
          "length",
          "priceFactor",
          "calculatedPrice",
          "definitionPriceScope",
          "hasVariations",
          "images",
          "skus",
          "allowAutomaticSkuMarketplaceCreation"
        ],
        "properties": {
          "id": {
            "type": "integer",
            "description": "ID do produto gerado pelo ANYMARKET",
            "format": "int64"
          },
          "title": {
            "type": "string",
            "description": "Título do produto",
            "maxLength": 150
          },
          "description": {
            "type": "string",
            "description": "Descrição do produto",
            "maxLength": 10000
          },
          "externalIdProduct": {
            "type": "string",
            "description": "ID externo do produto ",
            "maxLength": 10000
          },
          "category": {
            "$ref": "#/components/schemas/ProductCategory"
          },
          "brand": {
            "$ref": "#/components/schemas/ProductBrand"
          },
          "nbm": {
            "$ref": "#/components/schemas/Nbm"
          },
          "origin": {
            "$ref": "#/components/schemas/Origin"
          },
          "model": {
            "type": "string",
            "description": "Modelo do produto.\n\nNo caso de alguns marketplaces o campo pode ser exigito:\nAMAZON"
          },
          "videoUrl": {
            "type": "string",
            "description": "URL do video do Youtube",
            "maxLength": 255
          },
          "gender": {
            "type": "string",
            "description": "Gênero do produto. Os valores são MALE, FEMALE, BOY, GIRL, UNISSEX, BABIES e CHILDISH_UNISSEX",
            "enum": [
              "MALE",
              "FEMALE",
              "BOY",
              "GIRL",
              "UNISSEX",
              "BABIES",
              "CHILDISH_UNISSEX"
            ]
          },
          "warrantyTime": {
            "type": "number",
            "description": "Tempo da garantia em meses"
          },
          "warrantyText": {
            "type": "string",
            "description": "Texto sobre a garantia"
          },
          "height": {
            "type": "number",
            "description": "Altura da embalagem do produto (em centímetros)",
            "format": "double"
          },
          "width": {
            "type": "number",
            "description": "Largura da embalagem do produto (em centímetros)",
            "format": "double"
          },
          "weight": {
            "type": "number",
            "description": "Peso da embalagem do produto (em quilos)",
            "format": "double",
            "maximum": 99999.999
          },
          "length": {
            "type": "number",
            "description": "Profundidade da embalagem do produto (em centímetros)",
            "format": "double"
          },
          "priceFactor": {
            "type": "number",
            "description": "Fator de preço do produto. É utilizado como um Multiplicador para o preço de custo do produto. Corresponde ao campo Markup na tela do sistema",
            "format": "double",
            "example": 1
          },
          "calculatedPrice": {
            "type": "boolean",
            "description": "Identifica se o produto terá o preço calculado baseado no markup"
          },
          "definitionPriceScope": {
            "type": "string",
            "description": "Suporte aos tipos SKU (Manual, eu controlo o preço pelo SKU), SKU_MARKETPLACE (Manual, eu controlo o preço pelo anúncio) ou COST (Automático, pela mudança do custo)",
            "enum": [
              "SKU",
              "SKU_MARKETPLACE",
              "COST"
            ]
          },
          "hasVariations": {
            "type": "boolean",
            "description": "Informa se o produt possui variações",
            "default": false
          },
          "isProductActive": {
            "type": "boolean",
            "description": "Informa se o produto está Ativo/Inativo",
            "default": true
          },
          "characteristics": {
            "type": "array",
            "description": "Define caracteristicas variaveis e específicas de cada produto. Por exemplo, no caso de uma raquete de tênis, a tensão da rede pode ser adicionada como caracteristica adicional.\n",
            "items": {
              "$ref": "#/components/schemas/ProductCharacteristic"
            }
          },
          "images": {
            "type": "array",
            "description": "Arrays das imagens. Os índices se informados serão mantidos, caso alguma imagem não tenha o índice informado o ANYMARKET irá preencher de forma sequencial e sem repetição. Caso nenhuma imagem seja marcada como main o ANYMARKET irá marcar a imagem de índice 1 como main",
            "items": {
              "$ref": "#/components/schemas/Image"
            }
          },
          "skus": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Sku"
            }
          },
          "allowAutomaticSkuMarketplaceCreation": {
            "type": "boolean",
            "description": "Permite a criação de anúncios automáticos baseado na configuração existente na categoria (Valor padrão do campo é true).",
            "default": true
          },
          "kitComponents": {
            "type": "object",
            "properties": {
              "idSku": {
                "type": "string",
                "description": "ID do SKU do componente"
              },
              "stockLocalId": {
                "type": "string",
                "description": "ID do Local do Estoque"
              },
              "percentage": {
                "type": "number",
                "description": "Porcentagem que o componente representa no KIT"
              },
              "quantity": {
                "type": "number",
                "description": "Quantidade do Componente no KIT"
              },
              "isMainComponent": {
                "type": "boolean",
                "description": "Informa se é o componente principal do KIT"
              }
            }
          },
          "type": {
            "type": "string",
            "description": "Tipo de produto."
          }
        },
        "example": {
          "id": -9223372036854776000,
          "title": "string",
          "description": "string",
          "externalIdProduct": "string",
          "category": {
            "id": 0,
            "name": "string",
            "partnerId": "string"
          },
          "brand": {
            "id": 0,
            "name": "string",
            "reducedName": "string",
            "partnerId": "string"
          },
          "nbm": {
            "id": "string",
            "description": "string"
          },
          "origin": {
            "id": 0,
            "description": "string"
          },
          "model": "string",
          "videoUrl": "string",
          "gender": "MALE",
          "warrantyTime": 0,
          "warrantyText": "string",
          "height": -1.7976931348623157e+308,
          "width": -1.7976931348623157e+308,
          "weight": -1.7976931348623157e+308,
          "length": -1.7976931348623157e+308,
          "priceFactor": 1,
          "calculatedPrice": true,
          "definitionPriceScope": "SKU",
          "hasVariations": false,
          "isProductActive": true,
          "characteristics": [
            {
              "index": 0,
              "name": "string",
              "value": "string"
            }
          ],
          "images": [
            {
              "id": 0,
              "index": 0,
              "main": false,
              "url": "http://example.com",
              "thumbnailUrl": "http://example.com",
              "lowResolutionUrl": "http://example.com",
              "standardUrl": "http://example.com",
              "originalImage": "http://example.com",
              "variation": "Azul",
              "status": "UNPROCESSED",
              "statusMessage": "string",
              "standardWidth": 0,
              "standardHeight": 0,
              "originalWidth": 0,
              "originalHeight": 0
            }
          ],
          "skus": [
            {
              "id": 0,
              "title": "string",
              "partnerId": "string",
              "ean": "string",
              "amount": 0,
              "additionalTime": 0,
              "price": 0,
              "sellPrice": 0,
              "stockLocalId": 0,
              "variations": {
                "{variationTypeName}": "string"
              },
              "additionalStocks": [
                {
                  "price": 0,
                  "amount": 0,
                  "additionalTime": 0,
                  "stockLocalId": 0
                }
              ],
              "externalId": "string",
              "active": true,
              "volumes": 0
            }
          ],
          "allowAutomaticSkuMarketplaceCreation": true,
          "kitComponents": true,
          "type": "string"
        }
      },
      "NbmID": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "ID de NBM"
          }
        },
        "example": {
          "id": "string"
        }
      },
      "OriginID": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "description": "Origen Identificación. Los valores van de 0 a 7, como se muestra en la siguiente tabla:</br></br>\n\n   **0**: Nacional</br>\n   **1**: Extranjero - Importación directa</br>\n   **2**: Extranjero - Adquirido en el mercado nacional</br>\n   **3**: Nacional, mercancía o bien con Contenido de Importación superior al 40%</br>\n   **4**: Nacional, cuya producción se haya realizado de acuerdo con los procesos básicos de producción contemplados en la legislación mencionada en los Ajustes</br>\n   **5**: Nacional, mercancía o bien con Contenido de Importación menor o igual al 40%</br>\n   **6**: Extranjero - Importación directa, sin similar nacional, incluido en la lista CAMEX</br>\n   **7**: Extranjero - Adquirido en el mercado interno, sin similar nacional, incluido en la lista CAMEX</br>\n",
            "format": "int64"
          }
        }
      },
      "ProductUpdate": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string",
            "description": "Titulo del producto",
            "maxLength": 150
          },
          "description": {
            "type": "string",
            "description": "Descripción del producto",
            "maxLength": 10000
          },
          "category": {
            "description": "Categoria de producto. Posteriormente, el cliente vinculará la categoría enviada con la categoría de cada marketplace",
            "type": "object",
            "required": [
              "id",
              "name",
              "path"
            ],
            "properties": {
              "id": {
                "type": "number",
                "description": "Id da categoria gerado pelo ANYMARKET"
              },
              "name": {
                "type": "string",
                "description": "Nome da Categoria"
              },
              "path": {
                "type": "string",
                "description": "Árvore de categorias até a categoria atual"
              }
            }
          },
          "brand": {
            "$ref": "#/components/schemas/ProductBrand"
          },
          "nbm": {
            "$ref": "#/components/schemas/NbmID"
          },
          "origin": {
            "$ref": "#/components/schemas/OriginID"
          },
          "model": {
            "type": "string",
            "description": "Modelo del Producto"
          },
          "videoUrl": {
            "type": "string",
            "description": "URL del vídeo de Youtube",
            "maxLength": 255
          },
          "gender": {
            "type": "string",
            "description": "Género del producto. Los valores son MALE, FEMALE, BOY, GIRL e UNISSEX",
            "enum": [
              "MALE",
              "FEMALE",
              "BOY",
              "GIRL",
              "UNISSEX",
              "BABIES",
              "CHILDISH_UNISSEX"
            ]
          },
          "warrantyTime": {
            "type": "integer",
            "description": "Tempo da garantia",
            "format": "int32"
          },
          "warrantyText": {
            "type": "string",
            "description": "Texto de garantía"
          },
          "height": {
            "type": "number",
            "description": "Altura del embalaje del producto (en centímetros)",
            "format": "double"
          },
          "width": {
            "type": "number",
            "description": "Ancho del empaque del producto (en centímetros)",
            "format": "double"
          },
          "weight": {
            "type": "number",
            "description": "Peso do produto (em quilos)",
            "format": "double"
          },
          "length": {
            "type": "number",
            "description": "Profundidad del embalaje del producto (en centímetros)",
            "format": "double"
          },
          "priceFactor": {
            "type": "number",
            "description": "Factor de precio del producto. Se utiliza como Multiplicador del precio de costo del producto. Corresponde al campo Marcado en la pantalla del sistema",
            "format": "double"
          },
          "calculatedPrice": {
            "type": "boolean",
            "description": "Identifica si el producto tendrá el precio calculado en función del margen de beneficio"
          },
          "definitionPriceScope": {
            "type": "string",
            "description": "Soporte para tipos SKU (Manual, controlo precio por SKU), SKU_MARKETPLACE (Manual, controlo precio por anuncio) o COST (Automático, por cambio de costo)"
          },
          "characteristics": {
            "type": "array",
            "description": "Define características variables y específicas de cada producto. Por ejemplo, en el caso de una raqueta de tenis, la tensión de la red se puede agregar como una característica adicional.\n",
            "items": {
              "$ref": "#/components/schemas/ProductCharacteristic"
            }
          },
          "kitComponents": {
            "type": "object",
            "properties": {
              "idSku": {
                "type": "string",
                "description": "ID do SKU do componente"
              },
              "stockLocalId": {
                "type": "string",
                "description": "ID do Local do Estoque"
              },
              "percentage": {
                "description": "Porcentagem que o componente representa no KIT",
                "type": "number"
              },
              "quantity": {
                "description": "Quantidade do Componente no KIT",
                "type": "number"
              },
              "isMainComponent": {
                "description": "Informa se é o componente principal do KIT",
                "type": "boolean"
              }
            }
          },
          "allowAutomaticSkuMarketplaceCreation": {
            "type": "boolean",
            "description": "Permite la creación de anuncios automáticos en base a la configuración existente en la categoría (Valor por defecto del campo es verdadero)."
          }
        },
        "required": [
          "title",
          "description",
          "category",
          "priceFactor"
        ],
        "example": {
          "title": "string",
          "description": "string",
          "category": {
            "id": 0,
            "name": "string",
            "path": "string"
          },
          "brand": {
            "id": 0,
            "name": "string",
            "reducedName": "string",
            "partnerId": "string"
          },
          "nbm": {
            "id": "string"
          },
          "origin": {
            "id": 0
          },
          "model": "string",
          "videoUrl": "string",
          "gender": "string",
          "warrantyTime": -2147483648,
          "warrantyText": "string",
          "height": -1.7976931348623157e+308,
          "width": -1.7976931348623157e+308,
          "weight": -1.7976931348623157e+308,
          "length": -1.7976931348623157e+308,
          "priceFactor": -1.7976931348623157e+308,
          "calculatedPrice": true,
          "definitionPriceScope": "string",
          "characteristics": [
            {
              "index": 0,
              "name": "string",
              "value": "string"
            }
          ],
          "kitComponents": {
            "idSku": "string",
            "stockLocalId": "string",
            "percentage": 0,
            "quantity": 0,
            "isMainComponent": true
          },
          "allowAutomaticSkuMarketplaceCreation": true
        }
      },
      "ProductMergePatch": {
        "type": "object",
        "example": {
          "title": "replace",
          "description": "Título do produto",
          "maxLength": 150
        },
        "description": "",
        "properties": {
          "title": {
            "type": "string",
            "description": "Titulo del producto",
            "maxLength": 150
          },
          "description": {
            "type": "string",
            "description": "Descripción del producto",
            "maxLength": 10000
          },
          "category": {
            "description": "Categoria de producto. Posteriormente, el cliente vinculará la categoría enviada con la categoría de cada marketplace",
            "type": "object",
            "properties": {
              "id": {
                "type": "number",
                "description": "ID da categoria gerado pelo AnyMarket"
              },
              "name": {
                "type": "string",
                "description": "Nome da Categoria"
              },
              "path": {
                "type": "string",
                "description": "Árvore de categorias até a categoria atual"
              }
            },
            "required": [
              "id",
              "name",
              "path"
            ]
          },
          "brand": {
            "$ref": "#/components/schemas/ProductBrand"
          },
          "nbm": {
            "$ref": "#/components/schemas/NbmID"
          },
          "origin": {
            "$ref": "#/components/schemas/OriginID"
          },
          "model": {
            "type": "string",
            "description": "Modelo del Producto"
          },
          "videoUrl": {
            "type": "string",
            "description": "URL del vídeo de Youtube",
            "maxLength": 255
          },
          "gender": {
            "type": "string",
            "description": "Género del producto. Los valores son MALE, FEMALE, BOY, GIRL e UNISSEX",
            "enum": [
              "MALE",
              "FEMALE",
              "BOY",
              "GIRL",
              "UNISSEX",
              "BABIES",
              "CHILDISH_UNISSEX"
            ]
          },
          "warrantyTime": {
            "type": "integer",
            "description": "Tiempo de garantia",
            "format": "int32"
          },
          "warrantyText": {
            "type": "string",
            "description": "Texto de garantía"
          },
          "height": {
            "type": "number",
            "description": "Altura del embalaje del producto (en centímetros)",
            "format": "double"
          },
          "width": {
            "type": "number",
            "description": "Ancho del empaque del producto (en centímetros)",
            "format": "double"
          },
          "weight": {
            "type": "number",
            "description": "Peso do produto (em quilos)",
            "format": "double"
          },
          "length": {
            "type": "number",
            "description": "Profundidad del embalaje del producto (en centímetros)",
            "format": "double"
          },
          "priceFactor": {
            "type": "number",
            "description": "Factor de precio del producto. Se utiliza como Multiplicador del precio de costo del producto. Corresponde al campo Marcado en la pantalla del sistema",
            "format": "double"
          },
          "calculatedPrice": {
            "type": "boolean",
            "description": "Identifica si el producto tendrá el precio calculado en función del margen de beneficio"
          },
          "definitionPriceScope": {
            "type": "string",
            "description": "Soporte para tipos SKU (Manual, controlo precio por SKU), SKU_MARKETPLACE (Manual, controlo precio por anuncio) o COST (Automático, por cambio de costo)"
          },
          "characteristics": {
            "type": "array",
            "description": "Define características variables y específicas de cada producto. Por ejemplo, en el caso de una raqueta de tenis, la tensión de la red se puede agregar como una característica adicional.\n",
            "items": {
              "$ref": "#/components/schemas/ProductCharacteristic"
            }
          },
          "kitComponents": {
            "description": "Permite a criação de anúncios automáticos baseado na configuração existente na categoria (Valor padrão do campo é true).",
            "type": "object",
            "properties": {
              "idSku": {
                "type": "string",
                "description": "ID do SKU do componente"
              },
              "stockLocalId": {
                "type": "string",
                "description": "ID do Local do Estoque"
              },
              "percentage": {
                "type": "number",
                "description": "Porcentagem que o componente representa no KIT"
              },
              "quantity": {
                "type": "number",
                "description": "Quantidade do Componente no KIT"
              },
              "isMainComponent": {
                "type": "boolean",
                "description": "Informa se é o componente principal do KIT"
              }
            }
          },
          "allowAutomaticSkuMarketplaceCreation": {
            "type": "boolean",
            "description": "Permite la creación de anuncios automáticos en base a la configuración existente en la categoría (Valor por defecto del campo es verdadero)."
          }
        }
      },
      "ProductPatch": {
        "title": "ProductPatch",
        "type": "array",
        "description": "Nueva operación",
        "example": [
          {
            "op": "replace",
            "path": "/title",
            "value": "novo título"
          },
          {
            "op": "replace",
            "path": "/warrantyTime",
            "value": 2
          },
          {
            "op": "replace",
            "path": "/brand/id",
            "value": 1323057
          }
        ],
        "items": {
          "type": "object",
          "properties": {
            "op": {
              "enum": [
                "replace",
                "remove",
                "add",
                "move",
                "copy",
                "test"
              ],
              "description": "Operação a ser executada"
            },
            "path": {
              "type": "string",
              "description": "Propriedade a ser modificada"
            },
            "value": {
              "description": "Valor da propriedade"
            }
          }
        }
      },
      "PromotionRuleActionValueResource": {
        "allOf": [
          {
            "properties": {
              "id": {
                "type": "integer",
                "description": "ID gerado pelo ANYMARKET",
                "format": "int64"
              },
              "value": {
                "type": "number",
                "description": "Valor",
                "format": "double"
              }
            }
          }
        ],
        "type": "object"
      },
      "PromotionRuleActionResource": {
        "allOf": [
          {
            "properties": {
              "id": {
                "type": "integer",
                "description": "ID gerado pelo ANYMARKET",
                "format": "int64"
              },
              "type": {
                "type": "string",
                "description": "Tipo da ação",
                "enum": [
                  "PERCENT_VALUE",
                  "FIXED_VALUE",
                  "ADD_VALUE",
                  "ADD_PERCENT_VALUE"
                ]
              },
              "values": {
                "type": "array",
                "description": "Valores das ações",
                "items": {
                  "$ref": "#/components/schemas/PromotionRuleActionValueResource"
                }
              }
            }
          }
        ],
        "type": "object"
      },
      "PromotionRuleSubConditionValueResource": {
        "allOf": [
          {
            "properties": {
              "id": {
                "type": "integer",
                "description": "ID gerado pelo ANYMARKET",
                "format": "int64"
              },
              "value": {
                "type": "string",
                "description": "Valor da sub-condição"
              },
              "description": {
                "type": "string",
                "description": "Descrição"
              }
            }
          }
        ],
        "type": "object"
      },
      "PromotionRuleChildreenSubConditionResource": {
        "type": "object",
        "allOf": [
          {
            "properties": {
              "id": {
                "type": "integer",
                "description": "Id gerado pelo ANYMARKET",
                "format": "int64"
              },
              "subconditionType": {
                "type": "string",
                "description": "Tipo da sub condição",
                "enum": [
                  "LISTING_TYPE",
                  "CONDITION",
                  "SHIPPING_MODE",
                  "ACCOUNT",
                  "OFFICIAL_STORE"
                ]
              },
              "values": {
                "type": "array",
                "description": "Valores das sub-condições",
                "items": {
                  "$ref": "#/components/schemas/PromotionRuleSubConditionValueResource"
                }
              },
              "childrenSubConditions": {
                "type": "array",
                "description": "Valores das sub-condições",
                "items": {
                  "$ref": "#/components/schemas/PromotionRuleChildreenSubConditionResource"
                }
              }
            }
          }
        ]
      },
      "PromotionRuleSubConditionResource": {
        "type": "object",
        "allOf": [
          {
            "properties": {
              "id": {
                "type": "integer",
                "description": "Id gerado pelo ANYMARKET",
                "format": "int64"
              },
              "subconditionType": {
                "type": "string",
                "description": "Tipo da sub condição",
                "enum": [
                  "LISTING_TYPE",
                  "CONDITION",
                  "SHIPPING_MODE",
                  "ACCOUNT",
                  "OFFICIAL_STORE"
                ]
              },
              "values": {
                "type": "array",
                "description": "Valores das sub-condições",
                "items": {
                  "$ref": "#/components/schemas/PromotionRuleSubConditionValueResource"
                }
              },
              "childrenSubConditions": {
                "type": "array",
                "description": "Valores das sub-condições",
                "items": {
                  "$ref": "#/components/schemas/PromotionRuleChildreenSubConditionResource"
                }
              }
            }
          }
        ]
      },
      "PromotionRuleConditionValueResource": {
        "allOf": [
          {
            "properties": {
              "id": {
                "type": "integer",
                "description": "ID gerado pelo ANYMARKET",
                "format": "int64"
              },
              "value": {
                "type": "string",
                "description": "Valor da condição"
              },
              "subConditions": {
                "type": "array",
                "description": "Valores das sub-condições",
                "items": {
                  "$ref": "#/components/schemas/PromotionRuleSubConditionResource"
                }
              }
            }
          }
        ],
        "type": "object"
      },
      "PromotionRuleConditionResource": {
        "allOf": [
          {
            "properties": {
              "id": {
                "type": "integer",
                "description": "ID gerado pelo ANYMARKET",
                "format": "int64"
              },
              "type": {
                "type": "string",
                "description": "Tipo da condição",
                "enum": [
                  "PRODUCT",
                  "CATEGORY",
                  "MARKETPLACE",
                  "BRAND"
                ]
              },
              "values": {
                "type": "array",
                "description": "Valores das condições",
                "items": {
                  "$ref": "#/components/schemas/PromotionRuleConditionValueResource"
                }
              }
            }
          }
        ],
        "type": "object"
      },
      "Promotion": {
        "allOf": [
          {
            "properties": {
              "id": {
                "type": "integer",
                "description": "ID gerado pelo ANYMARKET",
                "format": "int64"
              },
              "description": {
                "type": "string",
                "description": "Descrição da regra de preço",
                "maxLength": 255
              },
              "initialDate": {
                "type": "string",
                "description": "Data inicial",
                "format": "date-time"
              },
              "finalDate": {
                "type": "string",
                "description": "Data final",
                "format": "date-time"
              },
              "active": {
                "type": "boolean",
                "description": "Indica se a regra de preço esta ativa"
              },
              "actions": {
                "type": "array",
                "description": "Ações programadas para a regra de preço",
                "items": {
                  "$ref": "#/components/schemas/PromotionRuleActionResource"
                }
              },
              "conditions": {
                "type": "array",
                "description": "Condições para a aplicação da regra de preços",
                "items": {
                  "$ref": "#/components/schemas/PromotionRuleConditionResource"
                }
              },
              "deleted": {
                "type": "boolean",
                "description": "Indica se o ANYMARKET deve encaminhar callback de pergunta"
              },
              "status": {
                "type": "string",
                "description": "Status relacionado a regra de preço",
                "enum": [
                  "UNSCHEDULED",
                  "SCHEDULED",
                  "APPLIED",
                  "FINALIZED"
                ]
              }
            }
          }
        ],
        "type": "object"
      },
      "SkuPost": {
        "type": "object",
        "required": [
          "amount",
          "price",
          "title"
        ],
        "properties": {
          "title": {
            "type": "string",
            "description": "Título de SKU",
            "maxLength": 150
          },
          "partnerId": {
            "type": "string",
            "description": "Código SKU de socio",
            "maxLength": 120
          },
          "ean": {
            "type": "string",
            "maxLength": 13
          },
          "amount": {
            "type": "number",
            "description": "SKU cantidad de existencias",
            "format": "double",
            "minimum": 0
          },
          "price": {
            "type": "number",
            "description": "SKU precio",
            "format": "double"
          },
          "additionalTime": {
            "type": "number",
            "description": "Plazo adicional para la entrega. También llamado 'crossdocking', es el momento de preparar cada producto para su envío. Utilizado en mercados como B2W y CNOVA. Si no se informa, se le asignará el valor por defecto 0.",
            "format": "double",
            "minimum": 0
          },
          "stockLocalId": {
            "type": "number",
            "description": "Código de ubicación del inventario, si este campo está vacío, se agrega a la ubicación predeterminada registrada en el sistema.",
            "format": "long",
            "minimum": 0
          },
          "variations": {
            "type": "object",
            "description": "Nombre y valor de la variación",
            "properties": {
              "variationName": {
                "type": "string",
                "description": "Nome da variação (substituir pelo nome de sua variação)",
                "enum": [
                  "VariationValue"
                ]
              }
            }
          },
          "additionalStocks": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/AdditionalStocks"
            }
          },
          "externalId": {
            "type": "string",
            "description": "ID externo, utilizado en algunos marketplaces para su control interno.",
            "maxLength": 100
          }
        },
        "example": {
          "title": "string",
          "partnerId": "string",
          "ean": "string",
          "amount": 0,
          "price": 0,
          "additionalTime": 0,
          "stockLocalId": 0,
          "variations": {
            "variationName": "VariationValue"
          },
          "additionalStocks": [
            {
              "price": 0,
              "amount": 0,
              "additionalTime": 0,
              "stockLocalId": 0
            }
          ],
          "externalId": "string"
        }
      },
      "SkuPut": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string",
            "description": "Título de SKU",
            "maxLength": 150
          },
          "partnerId": {
            "type": "string",
            "description": "Código SKU de socio",
            "maxLength": 120
          },
          "ean": {
            "type": "string",
            "maxLength": 13
          },
          "price": {
            "type": "number",
            "description": "Precio (modificable solo en el tipo de control \"Manual, controlo el precio por SKU\")",
            "format": "double"
          },
          "sellPrice": {
            "type": "number",
            "description": "Precio por SKU (se usa cuando el tipo de control es \"Manual, controlo el precio por el SKU\")",
            "format": "double"
          },
          "externalId": {
            "type": "string",
            "description": "ID externo, utilizado en algunos marketplaces para su control interno.",
            "maxLength": 100
          },
          "active": {
            "type": "boolean",
            "description": "Informa se o SKU está Ativo/Inativo"
          }
        },
        "example": {
          "title": "string",
          "partnerId": "string",
          "ean": "string",
          "price": 0,
          "sellPrice": 0,
          "externalId": "string"
        }
      },
      "SkuMergePatch": {
        "type": "object",
        "example": {
          "title": "NewTitle",
          "ean": "1234567890"
        },
        "properties": {
          "title": {
            "type": "string",
            "description": "Título de SKU",
            "maxLength": 150
          },
          "partnerId": {
            "type": "string",
            "description": "Código SKU de socio",
            "maxLength": 120
          },
          "ean": {
            "type": "string",
            "maxLength": 13
          },
          "price": {
            "type": "number",
            "description": "Precio (modificable solo en el tipo de control \"Manual, controlo el precio por SKU\")",
            "format": "double"
          },
          "sellPrice": {
            "type": "number",
            "description": "Precio por SKU (se usa cuando el tipo de control es \"Manual, controlo el precio por el SKU\")",
            "format": "double"
          },
          "externalId": {
            "type": "string",
            "description": "ID externo, utilizado en algunos marketplaces para su control interno.",
            "maxLength": 100
          },
          "active": {
            "description": "Informa se o SKU está Ativo/Inativo",
            "type": "boolean"
          }
        }
      },
      "SkuFileExport": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string",
            "description": "URL para descargar archivos",
            "format": "uri"
          },
          "dateTime": {
            "type": "string",
            "description": "Fecha de procesamiento del archivo exportado",
            "format": "date-time"
          },
          "documentId": {
            "type": "string",
            "description": "ID del documento exportado",
            "format": "uuid"
          },
          "linesProcessed": {
            "type": "integer",
            "description": "Líneas procesadas",
            "format": "int64",
            "minimum": 0
          },
          "countLines": {
            "type": "integer",
            "description": "Líneas contadas",
            "format": "int64",
            "minimum": 0
          },
          "FileExportStatus": {
            "type": "string",
            "description": "Status de procesamiento",
            "enum": [
              "WAITING",
              "FINISHED",
              "FINISHED_WITHOUT_DATA",
              "PROCESSING",
              "ERROR"
            ]
          },
          "marketPlace": {
            "type": "string",
            "description": "MARKETPLACE responsable de los SKUs (filtro)."
          }
        },
        "required": [
          "url"
        ]
      },
      "SkuMarketplaceField": {
        "type": "object",
        "description": "Información de anuncios específica por Marketplace",
        "properties": {
          "title": {
            "type": "string",
            "description": "B2W,WALMART,MERCADO LIVRE",
            "maxLength": 255
          },
          "template": {
            "type": "integer",
            "description": "ID de template proporcionado por ANYMARKET"
          },
          "priceFactor": {
            "type": "string",
            "description": "B2W,CNOVA,WALMART,ECOMMERCE,MERCADO LIVRE",
            "format": "int64",
            "example": "1.000000"
          },
          "DISCOUNT_TYPE": {
            "description": "B2W,CNOVA,WALMART,ECOMMERCE,MERCADO LIVRE",
            "enum": [
              "PERCENT",
              "VALUE"
            ]
          },
          "DISCOUNT_VALUE": {
            "type": "string",
            "description": "B2W,CNOVA,WALMART,ECOMMERCE,MERCADO LIVRE",
            "format": "int64",
            "example": "1.00"
          },
          "HAS_DISCOUNT": {
            "description": "B2W,CNOVA,ECOMMERCE",
            "enum": [
              true,
              false
            ]
          },
          "CONCAT_ATTRIBUTES": {
            "type": "string",
            "description": "B2W",
            "format": "int64"
          },
          "delivery_type": {
            "type": "string",
            "description": "B2W",
            "format": "int64"
          },
          "SHIPMENT": {
            "type": "string",
            "description": "B2W",
            "format": "int64"
          },
          "crossDocking": {
            "type": "string",
            "description": "B2W",
            "format": "int64"
          },
          "CUSTOM_DESCRIPTION": {
            "type": "string",
            "description": "B2W",
            "format": "int64"
          },
          "EAN": {
            "type": "string",
            "format": "int64",
            "description": "B2W,CNOVA"
          },
          "MANUFACTURING_TIME": {
            "type": "string",
            "description": "CNOVA",
            "format": "int64"
          },
          "VALUE": {
            "type": "string",
            "description": "WALMART,MERCADO LIVRE",
            "format": "int64"
          },
          "PERCENT": {
            "type": "string",
            "description": "WALMART,MERCADO LIVRE",
            "format": "int64"
          },
          "bronze_price": {
            "type": "string",
            "description": "MERCADO LIVRE",
            "format": "int64"
          },
          "bronze_price_factor": {
            "type": "string",
            "description": "MERCADO LIVRE",
            "format": "int64"
          },
          "buying_mode": {
            "description": "MERCADO LIVRE",
            "enum": [
              "buy_it_now",
              "auction"
            ]
          },
          "category_with_variation": {
            "type": "string",
            "description": "MERCADO LIVRE",
            "format": "int64"
          },
          "condition": {
            "type": "string",
            "format": "int64",
            "description": "MERCADO LIVRE",
            "example": "NEW"
          },
          "free_price": {
            "type": "string",
            "description": "MERCADO LIVRE",
            "format": "int64"
          },
          "free_price_factor": {
            "type": "string",
            "description": "MERCADO LIVRE",
            "format": "int64"
          },
          "free_shipping": {
            "description": "MERCADO LIVRE",
            "enum": [
              false,
              true
            ]
          },
          "gold_premium_price": {
            "type": "string",
            "description": "MERCADO LIVRE",
            "format": "int64"
          },
          "gold_premium_price_factor": {
            "type": "string",
            "description": "MERCADO LIVRE",
            "format": "int64"
          },
          "gold_price": {
            "type": "string",
            "description": "MERCADO LIVRE",
            "format": "int64"
          },
          "gold_price_factor": {
            "type": "string",
            "description": "MERCADO LIVRE",
            "format": "int64"
          },
          "gold_pro_price": {
            "type": "string",
            "description": "MERCADO LIVRE",
            "format": "int64"
          },
          "gold_pro_price_factor": {
            "type": "string",
            "description": "MERCADO LIVRE",
            "format": "int64"
          },
          "gold_special_price": {
            "type": "string",
            "description": "MERCADO LIVRE",
            "format": "int64"
          },
          "gold_special_price_factor": {
            "type": "string",
            "description": "MERCADO LIVRE",
            "format": "int64"
          },
          "listing_type_id": {
            "description": "MERCADO LIVRE",
            "enum": [
              "gold_special",
              "gold_pro",
              "bronze",
              "silver",
              "gold",
              "free"
            ]
          },
          "shipping_local_pick_up": {
            "description": "MERCADO LIVRE",
            "enum": [
              false,
              true
            ]
          },
          "shipping_mode": {
            "description": "MERCADO LIVRE",
            "enum": [
              "me1",
              "me2",
              "Id ANYMARKET da tabela de frete"
            ]
          },
          "silver_price": {
            "type": "string",
            "description": "MERCADO LIVRE",
            "format": "int64"
          },
          "silver_price_factor": {
            "type": "string",
            "description": "MERCADO LIVRE",
            "format": "int64"
          },
          "measurement_chart_id": {
            "type": "string",
            "format": "int64",
            "description": "Identificador ANYMARKET da tabela de medidas."
          },
          "warranty_time": {
            "type": "string",
            "example": "60",
            "description": "Tempo de garantia."
          },
          "HAS_FULFILLMENT": {
            "enum": [
              false,
              true
            ],
            "description": "Anúncio Fulfillment."
          },
          "official_store_id": {
            "type": "string",
            "description": "Código da loja oficial. (MERCADO LIVRE)"
          },
          "ml_channels": {
            "enum": [
              "marketplace",
              "mshops"
            ],
            "description": "Canal de exibição. (MERCADO L)"
          },
          "is_main_sku": {
            "enum": [
              true,
              false
            ],
            "description": "SKU Principal."
          },
          "is_match": {
            "description": "Match a anúncio existente. (VIA)",
            "enum": [
              false,
              true
            ]
          }
        },
        "example": {
          "title": "string",
          "template": -9223372036854776000,
          "priceFactor": "string",
          "DISCOUNT_TYPE": "string",
          "DISCOUNT_VALUE": "string",
          "HAS_DISCOUNT": "string",
          "CONCAT_ATTRIBUTES": "string",
          "delivery_type": "string",
          "SHIPMENT": "string",
          "crossDocking": "string",
          "CUSTOM_DESCRIPTION": "string",
          "EAN": "string",
          "MANUFACTURING_TIME": "string",
          "VALUE": "string",
          "PERCENT": "string",
          "bronze_price": "string",
          "bronze_price_factor": "string",
          "buying_mode": "string",
          "category_with_variation": "string",
          "condition": "string",
          "free_price": "string",
          "free_price_factor": "string",
          "free_shipping": "string",
          "gold_premium_price": "string",
          "gold_premium_price_factor": "string",
          "gold_price": "string",
          "gold_price_factor": "string",
          "gold_pro_price": "string",
          "gold_pro_price_factor": "string",
          "gold_special_price": "string",
          "gold_special_price_factor": "string",
          "listing_type_id": "string",
          "shipping_local_pick_up": "string",
          "shipping_mode": "string",
          "silver_price": "string",
          "silver_price_factor": "string",
          "measurement_chart_id": "string"
        }
      },
      "SkuMarketplace": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "description": "ID de anuncio en ANYMARKET",
            "format": "int64"
          },
          "accountName": {
            "type": "string",
            "description": "Identificador de cuenta del Marketplace"
          },
          "idAccount": {
            "type": "number",
            "description": "ID de cuenta generado automáticamente por ANYMARKET"
          },
          "marketPlace": {
            "description": "Identificador de Marketplace",
            "$ref": "#/components/schemas/EnumMarketplaces"
          },
          "idInMarketplace": {
            "type": "string",
            "description": "ID de anuncio en Marketplace",
            "maxLength": 255
          },
          "index": {
            "type": "integer",
            "description": "Índice de cotización por mercado",
            "format": "int64"
          },
          "publicationStatus": {
            "type": "string",
            "description": "Estado del anuncio en ANYMARKET",
            "enum": [
              "ACTIVE",
              "CLOSED",
              "CORRUPTED",
              "PAUSED",
              "UNPUBLISHED",
              "WITHOUT_STOCK"
            ]
          },
          "marketplaceStatus": {
            "type": "string",
            "description": "Estado del anuncio en el Marketplace",
            "maxLength": 255
          },
          "price": {
            "type": "number",
            "description": "Precio del anuncio",
            "format": "double"
          },
          "priceFactor": {
            "type": "number",
            "description": "Markup de transmisión",
            "format": "double"
          },
          "discountPrice": {
            "type": "number",
            "description": "Precio de anuncio con descuento",
            "format": "double"
          },
          "permalink": {
            "type": "string",
            "description": "Enlace a la publicación en el marketplace"
          },
          "skuInMarketplace": {
            "type": "string",
            "description": "Identificador de SKU en el Marketplace"
          },
          "fields": {
            "$ref": "#/components/schemas/SkuMarketplaceField"
          },
          "attributes": {
            "type": "object",
            "description": "Muestra los enlaces de tipo de variación y valor de variación de la publicación a los valores de mercado. Pueden ser texto o números según cada mercado.\n </br>\n {\n   \"63000\":\"71994\"\n }\n </br>\n Ejemplo de Mercado Livre donde se utilizan valores numéricos para el tipo de variación (color, tamaño, otros) y valores.\n",
            "additionalProperties": {
              "type": "string"
            }
          },
          "marketplaceItemCode": {
            "type": "string",
            "description": "Código de anuncio en el Marketplace"
          },
          "warnings": {
            "type": "array",
            "description": "Pila de Producto. Si hay alguna pendiente, el anuncio solo actualizará precio, stock y estado",
            "items": {
              "type": "string",
              "description": "Descrição da pendência"
            }
          }
        },
        "required": [
          "id",
          "accountName",
          "idAccount",
          "marketPlace",
          "index",
          "publicationStatus",
          "price",
          "priceFactor",
          "fields"
        ],
        "description": "",
        "title": "",
        "example": {
          "id": 0,
          "accountName": "string",
          "idAccount": 0,
          "marketPlace": "B2W",
          "idInMarketplace": "string",
          "index": 0,
          "publicationStatus": "ACTIVE",
          "marketplaceStatus": "string",
          "price": 0,
          "priceFactor": 0,
          "discountPrice": 0,
          "permalink": "string",
          "skuInMarketplace": "string",
          "fields": {
            "title": "string",
            "template": 0,
            "priceFactor": "string",
            "DISCOUNT_TYPE": "string",
            "DISCOUNT_VALUE": "string",
            "HAS_DISCOUNT": "string",
            "CONCAT_ATTRIBUTES": "string",
            "delivery_type": "string",
            "SHIPMENT": "string",
            "crossDocking": "string",
            "CUSTOM_DESCRIPTION": "string",
            "EAN": "string",
            "MANUFACTURING_TIME": "string",
            "VALUE": "string",
            "PERCENT": "string",
            "bronze_price": "string",
            "bronze_price_factor": "string",
            "buying_mode": "string",
            "category_with_variation": "string",
            "condition": "string",
            "free_price": "string",
            "free_price_factor": "string",
            "free_shipping": "string",
            "gold_premium_price": "string",
            "gold_premium_price_factor": "string",
            "gold_price": "string",
            "gold_price_factor": "string",
            "gold_pro_price": "string",
            "gold_pro_price_factor": "string",
            "gold_special_price": "string",
            "gold_special_price_factor": "string",
            "listing_type_id": "string",
            "shipping_local_pick_up": "string",
            "shipping_mode": "string",
            "silver_price": "string",
            "silver_price_factor": "string"
          },
          "attributes": {},
          "marketplaceItemCode": "string",
          "warnings": [
            "string"
          ]
        }
      },
      "StockReservationGet": {
        "type": "object",
        "description": "",
        "title": "StockReservationGet",
        "properties": {
          "reservedPending": {
            "type": "integer",
            "description": "Valor de reserva pendente",
            "format": "double"
          },
          "reservedPaid": {
            "type": "integer",
            "description": "Valor de reserva pago",
            "format": "double"
          },
          "reservedInvoiced": {
            "type": "integer",
            "format": "double",
            "description": "Valor de reserva faturado"
          }
        },
        "example": {
          "reservedPending": 0,
          "reservedPaid": 0,
          "reservedInvoiced": 0
        }
      },
      "PostSkuMarketplace": {
        "type": "object",
        "properties": {
          "idInMarketplace": {
            "type": "string",
            "description": "ID de anuncio en Marketplace",
            "maxLength": 255
          },
          "marketPlace": {
            "type": "string",
            "description": "Marketplace"
          },
          "accountName": {
            "type": "string",
            "description": "ID de cuenta del Marketplace"
          },
          "price": {
            "type": "number",
            "description": "Precio del anuncio",
            "format": "double"
          },
          "discountPrice": {
            "type": "number",
            "description": "Precio de anuncio con descuento",
            "format": "double"
          },
          "permalink": {
            "type": "string",
            "description": "Enlace a la publicación en el marketplace"
          },
          "skuInMarketplace": {
            "type": "string",
            "description": "ID do SKU no marketplace"
          },
          "fields": {
            "$ref": "#/components/schemas/SkuMarketplaceField"
          }
        },
        "required": [
          "marketPlace",
          "price",
          "discountPrice",
          "fields"
        ],
        "example": {
          "idInMarketplace": "string",
          "marketPlace": "string",
          "accountName": "string",
          "price": -1.7976931348623157e+308,
          "discountPrice": -1.7976931348623157e+308,
          "permalink": "string",
          "skuInMarketplace": "string",
          "fields": {
            "title": "string",
            "template": 0,
            "priceFactor": "1.000000",
            "DISCOUNT_TYPE": "PERCENT",
            "DISCOUNT_VALUE": "1.00",
            "HAS_DISCOUNT": true,
            "CONCAT_ATTRIBUTES": "string",
            "delivery_type": "string",
            "SHIPMENT": "string",
            "crossDocking": "string",
            "CUSTOM_DESCRIPTION": "string",
            "EAN": "string",
            "MANUFACTURING_TIME": "string",
            "VALUE": "string",
            "PERCENT": "string",
            "bronze_price": "string",
            "bronze_price_factor": "string",
            "buying_mode": "buy_it_now",
            "category_with_variation": "string",
            "condition": "NEW",
            "free_price": "string",
            "free_price_factor": "string",
            "free_shipping": false,
            "gold_premium_price": "string",
            "gold_premium_price_factor": "string",
            "gold_price": "string",
            "gold_price_factor": "string",
            "gold_pro_price": "string",
            "gold_pro_price_factor": "string",
            "gold_special_price": "string",
            "gold_special_price_factor": "string",
            "listing_type_id": "gold_special",
            "shipping_local_pick_up": false,
            "shipping_mode": "me1",
            "silver_price": "string",
            "silver_price_factor": "string",
            "measurement_chart_id": "string",
            "warranty_time": "60",
            "HAS_FULFILLMENT": false,
            "official_store_id": "string",
            "ml_channels": "marketplace",
            "is_main_sku": true,
            "is_match": false
          }
        }
      },
      "SkuMarketplaceDetail": {
        "allOf": [
          {
            "$ref": "#/components/schemas/SkuMarketplace"
          }
        ]
      },
      "SkuMarketplaceById": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "description": "ID de anuncio en ANYMARKET",
            "format": "int64"
          },
          "accountName": {
            "type": "string",
            "description": "Identificador de cuenta del Marketplace"
          },
          "idAccount": {
            "type": "number",
            "description": "ID de cuenta generado automáticamente por ANYMARKET"
          },
          "marketPlace": {
            "description": "identificador de Marketplace",
            "$ref": "#/components/schemas/EnumMarketplaces"
          },
          "idInMarketplace": {
            "type": "string",
            "description": "ID de anuncio en Marketplace",
            "maxLength": 255
          },
          "marketplaceItemCode": {
            "type": "string",
            "description": "ID de anuncio en Marketplace",
            "maxLength": 255
          },
          "index": {
            "type": "integer",
            "description": "Índice de cotización por mercado",
            "format": "int64"
          },
          "publicationStatus": {
            "type": "string",
            "description": "Estado del anuncio en ANYMARKET",
            "enum": [
              "ACTIVE",
              "CLOSED",
              "CORRUPTED",
              "PAUSED",
              "UNPUBLISHED",
              "WITHOUT_STOCK"
            ]
          },
          "marketplaceStatus": {
            "type": "string",
            "description": "Estado del anuncio en el mercado",
            "maxLength": 255
          },
          "price": {
            "type": "number",
            "description": "Precio del anuncio",
            "format": "double"
          },
          "priceFactor": {
            "type": "number",
            "description": "Markup de transmisión",
            "format": "double"
          },
          "discountPrice": {
            "type": "number",
            "description": "Precio de anuncio con descuento",
            "format": "double"
          },
          "permalink": {
            "type": "string",
            "description": "Enlace a la publicación en el marketplace"
          },
          "skuInMarketplace": {
            "type": "string",
            "description": "Identificador de SKU en el Marketplace"
          },
          "fields": {
            "$ref": "#/components/schemas/SkuMarketplaceField"
          },
          "availableStock": {
            "type": "object",
            "description": "Información inventario",
            "properties": {
              "amount": {
                "type": "number",
                "description": "Quantidade total",
                "format": "double"
              },
              "availableAmount": {
                "type": "number",
                "description": "Quantidade disponível",
                "format": "double"
              },
              "cost": {
                "type": "number",
                "description": "Custo médio do SKU no estoque. A partir desse custo será calculado o preço final do produto caso o tipo do cálculo de preço esteja como atutomático.",
                "format": "double"
              },
              "physicalAmount": {
                "type": "number",
                "description": "Quantidade em estoque físico",
                "format": "double"
              },
              "totalReservation": {
                "type": "number",
                "description": "Quantidade de estoque reservada",
                "format": "double"
              },
              "stockLocal": {
                "type": "string",
                "description": "Local do Estoque"
              }
            },
            "required": [
              "amount",
              "availableAmount",
              "cost",
              "physicalAmount",
              "totalReservation",
              "stockLocal"
            ]
          },
          "attributes": {
            "type": "object",
            "description": "Muestra los enlaces de tipo de variación y valor de variación de la publicación a los valores de mercado. Pueden ser texto o números según cada mercado.\n  </br>\n  {\n    \"63000\":\"71994\"\n  }\n  </br>\n  Ejemplo de Mercado Livre donde se utilizan valores numéricos para el tipo de variación (color, tamaño, otros) y valores.\n",
            "additionalProperties": {
              "type": "string"
            }
          },
          "warnings": {
            "type": "array",
            "description": "Pila de Producto. Si hay alguna pendiente, el anuncio solo actualizará precio, stock y estado",
            "items": {
              "type": "string",
              "description": "Descrição da pendência"
            }
          }
        },
        "required": [
          "id",
          "accountName",
          "idAccount",
          "marketPlace",
          "index",
          "publicationStatus",
          "price",
          "priceFactor",
          "fields"
        ],
        "example": {
          "id": 0,
          "accountName": "string",
          "idAccount": 0,
          "marketPlace": "B2W",
          "idInMarketplace": "string",
          "marketplaceItemCode": "string",
          "index": 0,
          "publicationStatus": "ACTIVE",
          "marketplaceStatus": "string",
          "price": 0,
          "priceFactor": 0,
          "discountPrice": 0,
          "permalink": "string",
          "skuInMarketplace": "string",
          "fields": {
            "title": "string",
            "template": 0,
            "priceFactor": "string",
            "DISCOUNT_TYPE": "string",
            "DISCOUNT_VALUE": "string",
            "HAS_DISCOUNT": "string",
            "CONCAT_ATTRIBUTES": "string",
            "delivery_type": "string",
            "SHIPMENT": "string",
            "crossDocking": "string",
            "CUSTOM_DESCRIPTION": "string",
            "EAN": "string",
            "MANUFACTURING_TIME": "string",
            "VALUE": "string",
            "PERCENT": "string",
            "bronze_price": "string",
            "bronze_price_factor": "string",
            "buying_mode": "string",
            "category_with_variation": "string",
            "condition": "string",
            "free_price": "string",
            "free_price_factor": "string",
            "free_shipping": "string",
            "gold_premium_price": "string",
            "gold_premium_price_factor": "string",
            "gold_price": "string",
            "gold_price_factor": "string",
            "gold_pro_price": "string",
            "gold_pro_price_factor": "string",
            "gold_special_price": "string",
            "gold_special_price_factor": "string",
            "listing_type_id": "string",
            "shipping_local_pick_up": "string",
            "shipping_mode": "string",
            "silver_price": "string",
            "silver_price_factor": "string"
          },
          "availableStock": {
            "amount": 0,
            "availableAmount": 0,
            "cost": 0,
            "physicalAmount": 0,
            "totalReservation": 0,
            "stockLocal": "string"
          },
          "attributes": {},
          "warnings": [
            "string"
          ]
        }
      },
      "PutSkuMarketplace": {
        "type": "object",
        "required": [
          "price"
        ],
        "properties": {
          "publicationStatus": {
            "type": "string",
            "description": "Estado del anuncio en ANYMARKET",
            "enum": [
              "ACTIVE",
              "CLOSED",
              "CORRUPTED",
              "PAUSED",
              "UNPUBLISHED",
              "WITHOUT_STOCK"
            ]
          },
          "marketplaceStatus": {
            "type": "string",
            "description": "Estado del anuncio en el mercado",
            "maxLength": 255
          },
          "price": {
            "type": "number",
            "description": "Precio del anuncio",
            "format": "double"
          },
          "discountPrice": {
            "type": "number",
            "description": "Precio de anuncio con descuento",
            "format": "double"
          },
          "priceFactor": {
            "type": "number",
            "description": "Markup de transmisión",
            "format": "double"
          },
          "permalink": {
            "type": "string",
            "description": "Enlace a la publicación en el marketplace"
          },
          "skuInMarketplace": {
            "type": "string",
            "description": "Identificador de SKU en el mercado. Solo se permite la actualización si el campo estado de la publicación está UNPUBLISHED, de lo contrario no será posible actualizar el campo."
          },
          "fields": {
            "$ref": "#/components/schemas/SkuMarketplaceField"
          }
        },
        "example": {
          "publicationStatus": "ACTIVE",
          "marketplaceStatus": "string",
          "price": 0,
          "discountPrice": 0,
          "priceFactor": 0,
          "permalink": "string",
          "skuInMarketplace": "string",
          "fields": {
            "title": "string",
            "template": 0,
            "priceFactor": "string",
            "DISCOUNT_TYPE": "string",
            "DISCOUNT_VALUE": "string",
            "HAS_DISCOUNT": "string",
            "CONCAT_ATTRIBUTES": "string",
            "delivery_type": "string",
            "SHIPMENT": "string",
            "crossDocking": "string",
            "CUSTOM_DESCRIPTION": "string",
            "EAN": "string",
            "MANUFACTURING_TIME": "string",
            "VALUE": "string",
            "PERCENT": "string",
            "bronze_price": "string",
            "bronze_price_factor": "string",
            "buying_mode": "string",
            "category_with_variation": "string",
            "condition": "string",
            "free_price": "string",
            "free_price_factor": "string",
            "free_shipping": "string",
            "gold_premium_price": "string",
            "gold_premium_price_factor": "string",
            "gold_price": "string",
            "gold_price_factor": "string",
            "gold_pro_price": "string",
            "gold_pro_price_factor": "string",
            "gold_special_price": "string",
            "gold_special_price_factor": "string",
            "listing_type_id": "string",
            "shipping_local_pick_up": "string",
            "shipping_mode": "string",
            "silver_price": "string",
            "silver_price_factor": "string"
          }
        }
      },
      "SkuMarketplaceMergePatch": {
        "type": "object",
        "required": [
          "price"
        ],
        "properties": {
          "publicationStatus": {
            "type": "string",
            "description": "Estado del anuncio en ANYMARKET",
            "enum": [
              "ACTIVE",
              "CLOSED",
              "CORRUPTED",
              "PAUSED",
              "UNPUBLISHED",
              "WITHOUT_STOCK"
            ]
          },
          "marketplaceStatus": {
            "type": "string",
            "description": "Estado del anuncio en el mercado",
            "maxLength": 255
          },
          "price": {
            "type": "number",
            "description": "Precio del anuncio",
            "format": "double"
          },
          "discountPrice": {
            "type": "number",
            "description": "Precio de anuncio con descuento",
            "format": "double"
          },
          "priceFactor": {
            "type": "number",
            "description": "Markup de transmisión",
            "format": "double"
          },
          "permalink": {
            "type": "string",
            "description": "Enlace a la publicación en el marketplace"
          },
          "skuInMarketplace": {
            "type": "string",
            "description": "Identificador de SKU en el mercado. Solo se permite la actualización si el campo estado de la publicación está UNPUBLISHED, de lo contrario no será posible actualizar el campo."
          },
          "fields": {
            "$ref": "#/components/schemas/SkuMarketplaceField"
          }
        },
        "example": {
          "publicationStatus": "ACTIVE",
          "marketplaceStatus": "string",
          "price": 0,
          "discountPrice": 0,
          "priceFactor": 0,
          "permalink": "string",
          "skuInMarketplace": "string",
          "fields": {
            "title": "string",
            "template": 0,
            "priceFactor": "string",
            "DISCOUNT_TYPE": "string",
            "DISCOUNT_VALUE": "string",
            "HAS_DISCOUNT": "string",
            "CONCAT_ATTRIBUTES": "string",
            "delivery_type": "string",
            "SHIPMENT": "string",
            "crossDocking": "string",
            "CUSTOM_DESCRIPTION": "string",
            "EAN": "string",
            "MANUFACTURING_TIME": "string",
            "VALUE": "string",
            "PERCENT": "string",
            "bronze_price": "string",
            "bronze_price_factor": "string",
            "buying_mode": "string",
            "category_with_variation": "string",
            "condition": "string",
            "free_price": "string",
            "free_price_factor": "string",
            "free_shipping": "string",
            "gold_premium_price": "string",
            "gold_premium_price_factor": "string",
            "gold_price": "string",
            "gold_price_factor": "string",
            "gold_pro_price": "string",
            "gold_pro_price_factor": "string",
            "gold_special_price": "string",
            "gold_special_price_factor": "string",
            "listing_type_id": "string",
            "shipping_local_pick_up": "string",
            "shipping_mode": "string",
            "silver_price": "string",
            "silver_price_factor": "string"
          }
        }
      },
      "SkuMarketplacePatch": {
        "type": "array",
        "description": "Nueva operación",
        "example": [
          {
            "op": "add",
            "patch": "/permalink",
            "value": "Link da publicação no marketplace"
          },
          {
            "op": "replace",
            "patch": "/skuInMarketplace",
            "value": "skuNovo"
          },
          {
            "op": "replace",
            "patch": "/fields/title",
            "value": "novo titulo"
          }
        ],
        "items": {
          "type": "object",
          "properties": {
            "op": {
              "enum": [
                "replace",
                "remove",
                "add",
                "move",
                "copy",
                "test"
              ],
              "description": "Operação a ser executada"
            },
            "path": {
              "type": "string",
              "description": "Propriedade a ser modificada"
            },
            "value": {
              "description": "Valor da propriedade"
            },
            "": {
              "type": "string"
            }
          }
        }
      },
      "SkuMarketplaceUpdatePricesResource": {
        "type": "object",
        "required": [
          "id",
          "price",
          "discountPrice"
        ],
        "description": "Precio desde e información de precio de un anuncio",
        "properties": {
          "id": {
            "type": "integer",
            "description": "ID de anuncio en ANYMARKET",
            "format": "int64"
          },
          "price": {
            "type": "number",
            "description": "Precio del anuncio",
            "format": "double"
          },
          "discountPrice": {
            "type": "number",
            "description": "Precio de anuncio con descuento",
            "format": "double"
          }
        }
      },
      "PutSkuMarketplaceUpdatePricesResource": {
        "type": "array",
        "description": "Lista que contiene la información de precio desde (price) y precio por (discountPrice) de los anuncios",
        "items": {
          "$ref": "#/components/schemas/SkuMarketplaceUpdatePricesResource"
        }
      },
      "SkuMarketplaceUpdatePricesResourceResponse": {
        "type": "object",
        "required": [
          "id",
          "errorMsg"
        ],
        "description": "Precio desde e información de precio de un anuncio",
        "properties": {
          "id": {
            "type": "integer",
            "description": "ID de anuncio en ANYMARKET",
            "format": "int64"
          },
          "errorMsg": {
            "type": "string",
            "description": "Mensaje de error"
          }
        }
      },
      "PutSkuMarketplaceUpdatePricesResourceResponse": {
        "type": "array",
        "description": "Lista que contiene la información de precio desde (price) y precio por (discountPrice) de los anuncios",
        "items": {
          "$ref": "#/components/schemas/SkuMarketplaceUpdatePricesResourceResponse"
        },
        "example": [
          {
            "id": 0,
            "errorMsg": "string"
          }
        ]
      },
      "SkuMarketplacePricePost": {
        "type": "object",
        "description": "Datos de actualización de precios.",
        "properties": {
          "price": {
            "type": "number",
            "description": "Precio del anuncio"
          },
          "discountPrice": {
            "type": "number",
            "description": "Precio de anuncio con descuento"
          },
          "fields": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "key": {
                  "type": "string"
                },
                "value": {
                  "type": "string"
                }
              }
            }
          }
        }
      },
      "SkuMarketplaceUpdatePricesErrorResource": {
        "type": "object",
        "description": "Contiene una lista para mostrar los errores que ocurrieron al actualizar el precio.",
        "properties": {
          "errors": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "key": {
                  "type": "string",
                  "description": "chave do SkuMarketplace que não pode ser atualizado."
                },
                "value": {
                  "type": "string",
                  "description": "Mensagem de erro."
                }
              }
            }
          }
        }
      },
      "PostTemplate": {
        "allOf": [
          {
            "properties": {
              "name": {
                "type": "string",
                "description": "Identificador do template"
              },
              "content": {
                "type": "string",
                "description": "Conteúdo do template caso o template seja do tipo HTML"
              },
              "templateType": {
                "type": "string",
                "description": "Tipo do template",
                "enum": [
                  "HTML",
                  "PLAIN_TEXT"
                ]
              },
              "plainTextContent": {
                "type": "string",
                "description": "Conteúdo do template caso o template seja do tipo PLAIN_TEXT"
              },
              "includeDimensionAttributes": {
                "type": "boolean",
                "description": "Permite ou não a inclusão dos dados da embalagem na tabela de características"
              },
              "manualImageSize": {
                "type": "boolean",
                "description": "Permite ou não definir o tamanho da imagem"
              },
              "manualImgAttributes": {
                "type": "string",
                "description": "Atributos da imagem"
              },
              "isActive": {
                "type": "boolean",
                "description": "O status do template"
              },
              "removeDescriptionTableContent": {
                "type": "boolean",
                "description": "Remove ou não todo conteúdo descrito em tabelas HTML"
              },
              "marketPlace": {
                "type": "string",
                "description": "Descritivo de qual marketplace"
              }
            }
          }
        ],
        "type": "object",
        "example": {
          "name": "string",
          "content": "string",
          "templateType": "HTML",
          "plainTextContent": "string",
          "includeDimensionAttributes": true,
          "manualImageSize": true,
          "manualImgAttributes": "string",
          "isActive": true,
          "removeDescriptionTableContent": true,
          "marketPlace": "string"
        }
      },
      "Template": {
        "allOf": [
          {
            "properties": {
              "id": {
                "type": "integer",
                "description": "ID do Template gerado automático pelo ANYMARKET",
                "format": "int64"
              },
              "name": {
                "type": "string",
                "description": "Identificador do template"
              },
              "content": {
                "type": "string",
                "description": "Conteúdo do template caso o template seja do tipo HTML"
              },
              "templateType": {
                "type": "string",
                "description": "Tipo do template",
                "enum": [
                  "HTML",
                  "PLAIN_TEXT"
                ]
              },
              "plainTextContent": {
                "type": "string",
                "description": "Conteúdo do template caso o template seja do tipo PLAIN_TEXT"
              },
              "includeDimensionAttributes": {
                "type": "boolean",
                "description": "Permite ou não a inclusão dos dados da embalagem na tabela de características"
              },
              "manualImageSize": {
                "type": "boolean",
                "description": "Permite ou não definir o tamanho da imagem"
              },
              "manualImgAttributes": {
                "type": "string",
                "description": "Atributos da imagem"
              },
              "isActive": {
                "type": "boolean",
                "description": "O status do template"
              },
              "removeDescriptionTableContent": {
                "type": "boolean",
                "description": "Remove ou não todo conteúdo descrito em tabelas HTML"
              },
              "marketPlace": {
                "$ref": "#/components/schemas/EnumMarketplaces",
                "description": "ID do MARKETPLACE"
              }
            }
          }
        ],
        "type": "object",
        "example": {
          "id": 0,
          "name": "string",
          "content": "string",
          "templateType": "HTML",
          "plainTextContent": "string",
          "includeDimensionAttributes": true,
          "manualImageSize": true,
          "manualImgAttributes": "string",
          "isActive": true,
          "removeDescriptionTableContent": true,
          "marketPlace": "B2W"
        }
      },
      "Page_Template": {
        "title": "Page_Template",
        "allOf": [
          {
            "properties": {
              "links": {
                "type": "array",
                "description": "Referências de paginação",
                "uniqueItems": false,
                "minItems": 1,
                "maxItems": 1,
                "items": {
                  "$ref": "#/components/schemas/PageLinks"
                }
              },
              "content": {
                "type": "array",
                "description": "Lista de marcas",
                "items": {
                  "$ref": "#/components/schemas/Template"
                }
              },
              "page": {
                "$ref": "#/components/schemas/PageMetadata"
              }
            }
          }
        ],
        "description": "",
        "type": "object",
        "example": {
          "links": [
            {
              "rel": "next",
              "href": "https://.../v2/component?limit=5&offset=5"
            }
          ],
          "content": [
            {
              "id": 0,
              "name": "string",
              "content": "string",
              "templateType": "HTML",
              "plainTextContent": "string",
              "includeDimensionAttributes": true,
              "manualImageSize": true,
              "manualImgAttributes": "string",
              "isActive": true,
              "removeDescriptionTableContent": true,
              "marketPlace": "B2W"
            }
          ],
          "page": {
            "size": 0,
            "totalElements": 0,
            "totalPages": 0,
            "number": 0
          }
        }
      },
      "PutTemplate": {
        "required": [
          "name",
          "templateType"
        ],
        "allOf": [
          {
            "properties": {
              "name": {
                "type": "string",
                "description": "Identificador do template"
              },
              "content": {
                "type": "string",
                "description": "Conteúdo do template caso o template seja do tipo HTML"
              },
              "templateType": {
                "type": "string",
                "description": "Tipo do template",
                "enum": [
                  "HTML",
                  "PLAIN_TEXT"
                ]
              },
              "plainTextContent": {
                "type": "string",
                "description": "Conteúdo do template caso o template seja do tipo PLAIN_TEXT"
              },
              "includeDimensionAttributes": {
                "type": "boolean",
                "description": "Permite ou não a inclusão dos dados da embalagem na tabela de características"
              },
              "manualImageSize": {
                "type": "boolean",
                "description": "Permite ou não definir o tamanho da imagem"
              },
              "manualImgAttributes": {
                "type": "string",
                "description": "Atributos da imagem"
              },
              "isActive": {
                "type": "boolean",
                "description": "O status do template"
              },
              "removeDescriptionTableContent": {
                "type": "boolean",
                "description": "Remove ou não todo conteúdo descrito em tabelas HTML"
              }
            }
          }
        ]
      },
      "VariationValueGet": {
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "description": "Código de valor de variación"
          },
          "description": {
            "type": "string",
            "description": "Descripción del valor de variación"
          },
          "partnerId": {
            "type": "string",
            "description": "ID de valor en el socio"
          }
        }
      },
      "VariationGet": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "description": "ID de tipo de variación generado por ANYMARKET",
            "format": "int64"
          },
          "name": {
            "type": "string",
            "description": "Descripción de origen"
          },
          "partnerId": {
            "type": "string",
            "description": "Id. de variación en socio"
          },
          "values": {
            "type": "array",
            "description": "Valores de variación",
            "items": {
              "$ref": "#/components/schemas/VariationValueGet"
            }
          },
          "visualVariation": {
            "type": "boolean",
            "description": "Es visual"
          }
        },
        "example": {
          "id": 0,
          "name": "string",
          "partnerId": "string",
          "values": [
            {
              "id": 0,
              "description": "string",
              "partnerId": "string"
            }
          ],
          "visualVariation": true
        }
      },
      "Page_Variation": {
        "title": "Page_Order",
        "allOf": [
          {
            "properties": {
              "links": {
                "type": "array",
                "description": "Referências de paginação",
                "uniqueItems": false,
                "minItems": 1,
                "maxItems": 1,
                "items": {
                  "$ref": "#/components/schemas/PageLinks"
                }
              },
              "content": {
                "type": "array",
                "description": "Lista de pedidos",
                "items": {
                  "$ref": "#/components/schemas/VariationGet"
                }
              },
              "page": {
                "$ref": "#/components/schemas/PageMetadata"
              }
            }
          }
        ],
        "description": "",
        "type": "object"
      },
      "VariationTypePut": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Nombre del tipo de variación",
            "maxLength": 200
          },
          "partnerId": {
            "type": "string",
            "description": "ID de tipo de variación en socio",
            "maxLength": 40
          },
          "visualVariation": {
            "type": "boolean",
            "description": "Indica si el tipo de variación tiene variación visual"
          }
        }
      },
      "VariationValue": {
        "type": "array",
        "items": {},
        "example": {
          "Cor": "Azul"
        }
      },
      "TransmissionSku": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "description": "ID de SKU generado por ANYMARKET",
            "format": "int64"
          },
          "title": {
            "type": "string",
            "description": "Título de SKU"
          },
          "partnerId": {
            "type": "string",
            "description": "Código SKU de socio"
          },
          "ean": {
            "type": "string",
            "description": "Código de barras"
          },
          "price": {
            "type": "number",
            "description": "Precio del producto",
            "format": "double"
          },
          "amount": {
            "type": "number",
            "description": "Cantidad disponible",
            "format": "double"
          },
          "variations": {
            "type": "array",
            "description": "Valores de variación",
            "items": {
              "$ref": "#/components/schemas/VariationValue"
            }
          },
          "discountPrice": {
            "type": "number",
            "description": "Precio del producto con descuento",
            "format": "double"
          }
        },
        "required": [
          "id",
          "title",
          "price",
          "amount",
          "discountPrice"
        ]
      },
      "Transmission": {
        "allOf": [
          {
            "properties": {
              "id": {
                "type": "integer",
                "description": "ID da Transmissão gerado automático pelo ANYMARKET",
                "format": "int64"
              },
              "accountName": {
                "type": "string",
                "description": "Identificador da conta do Marketplace"
              },
              "description": {
                "type": "string",
                "description": "Descrição da transmissão enviada ao marketplace"
              },
              "category": {
                "description": "Categoria do produto. Posteriormente o cliente realizará o vinculo da categoria enviada com a categoria de cada marketplace",
                "type": "object",
                "properties": {
                  "id": {
                    "type": "number",
                    "description": "ID da categoria gerado pelo ANYMARKET"
                  },
                  "name": {
                    "type": "string",
                    "description": "Nome da Categoria"
                  },
                  "path": {
                    "type": "string",
                    "description": "Árvore de categorias até a categoria atual"
                  }
                },
                "required": [
                  "id",
                  "name",
                  "path"
                ]
              },
              "brand": {
                "type": "object",
                "description": "Marca do produto",
                "properties": {
                  "id": {
                    "type": "number",
                    "description": "ID da Marca gerado automático pelo ANYMARKET"
                  },
                  "name": {
                    "type": "string",
                    "description": "Nome da Marca"
                  }
                },
                "required": [
                  "id",
                  "name"
                ]
              },
              "product": {
                "$ref": "#/components/schemas/SimpleProduct"
              },
              "nbm": {
                "$ref": "#/components/schemas/Nbm"
              },
              "origin": {
                "$ref": "#/components/schemas/Origin"
              },
              "model": {
                "type": "string",
                "description": "Modelo do produto"
              },
              "videoUrl": {
                "type": "string",
                "description": "URL do produto"
              },
              "warrantyTime": {
                "type": "integer",
                "description": "Tempo da garantia",
                "format": "int32"
              },
              "warrantyText": {
                "type": "string",
                "description": "Texto sobre a garantia"
              },
              "height": {
                "type": "number",
                "description": "Altura da embalagem do produto (em centímetros)",
                "format": "double"
              },
              "width": {
                "type": "number",
                "description": "Largura da embalagem do produto (em centímetros)",
                "format": "double"
              },
              "weight": {
                "type": "number",
                "description": "Peso da embalagem do produto (em quilos)",
                "format": "double"
              },
              "length": {
                "type": "number",
                "description": "Profundidade da embalagem do produto (em centímetros)",
                "format": "double"
              },
              "status": {
                "type": "string",
                "description": "Status de transmissão</br></br>\n\n  **ACTIVATING**: Ativando tranmissão mas na fila para processamento (Usado pelo ANYMARKET para indicar progresso)</br>\n  **CLOSING**: Transmissão finalizada mas na fila para processamento (Usado pelo ANYMARKET para indicar progresso)</br>\n  **ERROR**: Erro na publicação no marketplace</br>\n  **OK**: Transmissão enviada com sucesso para o marketplace</br>\n  **PAUSING**: Pausando tranmissão no marketplace</br>\n  **SENDING**: Enviando ao marketplace mas não houve resposta de sucesso ainda</br>\n  **SYNCING**: Sincronizando status do marketplace com o ANYMARKET</br>\n  **WAITING_SYNC**: Ativado para o marketplace, mas não foi sincronizado com marketplace ainda</br>\n"
              },
              "transmissionMessage": {
                "type": "string",
                "description": "Campo para armazenar mensagem de retorno do parceiro para casos de problemas na transmissão."
              },
              "publicationStatus": {
                "type": "string",
                "description": "Status do anúncio no ANYMARKET",
                "enum": [
                  "ACTIVE",
                  "CLOSED",
                  "CORRUPTED",
                  "PAUSED",
                  "UNPUBLISHED",
                  "WITHOUT_STOCK"
                ]
              },
              "marketPlaceStatus": {
                "type": "string",
                "description": "Situação do pedido no marketplace. Cada marketplace possui situações diferentes. Ex: no mercado livre não existe a situação faturado\n"
              },
              "priceFactor": {
                "type": "number",
                "description": "Markup da transmissão",
                "format": "double"
              },
              "sku": {
                "$ref": "#/components/schemas/TransmissionSku"
              },
              "characteristics": {
                "type": "array",
                "description": "Define caracteristicas variaveis e específicas de cada produto. Por exemplo, no caso de uma raquete de tênis, a tensão da rede pode ser adicionada como caracteristica adicional.\n",
                "items": {
                  "$ref": "#/components/schemas/ProductCharacteristic"
                }
              },
              "images": {
                "type": "array",
                "description": "URL das imagens",
                "items": {
                  "$ref": "#/components/schemas/Image"
                }
              }
            }
          }
        ],
        "type": "object",
        "example": {
          "id": 0,
          "accountName": "string",
          "description": "string",
          "category": {
            "id": 0,
            "name": "string",
            "path": "string"
          },
          "brand": {
            "id": 0,
            "name": "string"
          },
          "product": {
            "id": 0,
            "title": "string"
          },
          "nbm": {
            "id": "string",
            "description": "string"
          },
          "origin": {
            "id": 0,
            "description": "string"
          },
          "model": "string",
          "videoUrl": "string",
          "warrantyTime": 0,
          "warrantyText": "string",
          "height": 0,
          "width": 0,
          "weight": 0,
          "length": 0,
          "status": "string",
          "transmissionMessage": "string",
          "publicationStatus": "ACTIVE",
          "marketPlaceStatus": "string",
          "priceFactor": 0,
          "sku": {
            "id": 0,
            "title": "string",
            "partnerId": "string",
            "ean": "string",
            "price": 0,
            "amount": 0,
            "variations": [
              {
                "id": 0,
                "description": "string",
                "type": {
                  "id": 0,
                  "name": "string",
                  "visualVariation": true
                }
              }
            ],
            "discountPrice": 0
          },
          "characteristics": [
            {
              "index": 0,
              "name": "string",
              "value": "string"
            }
          ],
          "images": [
            {
              "id": 0,
              "index": 0,
              "main": true,
              "url": "http://example.com",
              "thumbnailUrl": "http://example.com",
              "lowResolutionUrl": "http://example.com",
              "standardUrl": "http://example.com",
              "originalImage": "http://example.com",
              "variation": "string",
              "status": "UNPROCESSED",
              "statusMessage": "string",
              "standardWidth": 0,
              "standardHeight": 0,
              "originalWidth": 0,
              "originalHeight": 0
            }
          ]
        }
      },
      "Page_Transmission": {
        "title": "Page_Stock",
        "allOf": [
          {
            "properties": {
              "links": {
                "type": "array",
                "description": "Referências de paginação",
                "uniqueItems": false,
                "minItems": 1,
                "maxItems": 1,
                "items": {
                  "$ref": "#/components/schemas/PageLinks"
                }
              },
              "content": {
                "type": "array",
                "description": "Lista de marcas",
                "items": {
                  "$ref": "#/components/schemas/Transmission"
                }
              },
              "page": {
                "$ref": "#/components/schemas/PageMetadata"
              }
            }
          }
        ],
        "description": "",
        "type": "object"
      },
      "TransmissionPut": {
        "type": "object",
        "properties": {
          "publicationStatus": {
            "type": "string",
            "description": "Estado de publicación en ANYMARKET</br></br>\n\n   **ACTIVE**: transmisión activa en el mercado</br>\n   **CLOSED**: transmisión cerrada en el mercado</br>\n   **CORRUPTED**: Transmisión corrupta al enviar al mercado</br>\n   **PAUSED**: transmisión en pausa en el mercado</br>\n   **UNPUBLISHED**: transmisión no publicada en el mercado</br>\n   **WITHOUT_STOCK**: Transmisión sin stock en CUALQUIER MERCADO</br>\n",
            "enum": [
              "ACTIVE",
              "CLOSED",
              "CORRUPTED",
              "PAUSED",
              "UNPUBLISHED",
              "WITHOUT_STOCK"
            ]
          },
          "marketPlaceStatus": {
            "type": "string",
            "description": "Estado de transmisión en el Marketplace",
            "maxLength": 255
          }
        }
      },
      "Page_VariationValue": {
        "title": "Page_Order",
        "allOf": [
          {
            "properties": {
              "links": {
                "type": "array",
                "description": "Referências de paginação",
                "uniqueItems": false,
                "minItems": 1,
                "maxItems": 1,
                "items": {
                  "$ref": "#/components/schemas/PageLinks"
                }
              },
              "content": {
                "type": "array",
                "description": "Lista de pedidos",
                "items": {
                  "$ref": "#/components/schemas/VariationValueGet"
                }
              },
              "page": {
                "$ref": "#/components/schemas/PageMetadata"
              }
            }
          }
        ],
        "description": "",
        "type": "object",
        "example": {
          "links": [
            {
              "rel": "next",
              "href": "https://.../v2/component?limit=5&offset=5"
            }
          ],
          "content": [
            {
              "id": 0,
              "description": "string",
              "partnerId": "string"
            }
          ],
          "page": {
            "size": 0,
            "totalElements": 0,
            "totalPages": 0,
            "number": 0
          }
        }
      },
      "VariationValuePost": {
        "type": "object",
        "properties": {
          "description": {
            "type": "string",
            "description": "Descripción del valor de variación",
            "maxLength": 4000
          },
          "partnerId": {
            "type": "string",
            "description": "ID de tipo de variación en socio",
            "maxLength": 100
          }
        },
        "required": [
          "description"
        ]
      },
      "VariationValuePut": {
        "required": [
          "description"
        ],
        "type": "object",
        "properties": {
          "description": {
            "type": "string",
            "description": "Descripción del valor de variación",
            "maxLength": 4000
          },
          "partnerId": {
            "type": "string",
            "description": "ID de tipo de variación en socio",
            "maxLength": 100
          }
        },
        "example": {
          "description": "string",
          "partnerId": "string"
        }
      },
      "dateTypeGMT": {
        "title": "dateTypeGMT",
        "type": "string",
        "example": "2024-08-30T08:26:00-03:00",
        "pattern": "[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}-[0-9]{2}:[0-9]{2}",
        "description": "Modelo de data e hora com GMT"
      },
      "TransmissionPriceDiscount": {
        "type": "object",
        "title": "TransmissionPriceDiscount",
        "description": "Modelo de desconto da transmissão de preço",
        "properties": {
          "discountType": {
            "type": "string",
            "description": "Tipo de desconto"
          },
          "discountValue": {
            "type": "integer",
            "description": "Valor do desconto"
          }
        },
        "example": {
          "discountType": "PERCENT",
          "discountValue": 12.23
        }
      },
      "TransmissionPriceRule": {
        "type": "object",
        "title": "TransmissionPriceRule",
        "description": "Modelo de regra de preço da transmissão de preço",
        "properties": {
          "priceRuleRegular": {
            "type": "number",
            "description": "Preço DE"
          },
          "priceRuleDeal": {
            "type": "number",
            "description": "Preço POR"
          }
        },
        "example": {
          "priceRuleRegular": 1871.83,
          "priceRuleDeal": 1871.82
        }
      },
      "TransmissionPriceCampaign": {
        "type": "object",
        "title": "TransmissionPriceCampaign",
        "description": "Modelo de preço de campanha da transmissão de preço",
        "properties": {
          "campaignRegularPrice": {
            "type": "number",
            "description": "Preço DE"
          },
          "campaignDealPrice": {
            "type": "number",
            "description": "Preço POR"
          }
        },
        "example": {
          "campaignRegularPrice": 1871.83,
          "campaignDealPrice": 1871.82
        }
      },
      "TransmissionPrice": {
        "type": "object",
        "title": "TransmissionPrice",
        "description": "Modelo de transmissão de preço",
        "properties": {
          "id": {
            "type": "integer",
            "description": "ID da transmissão"
          },
          "title": {
            "type": "string",
            "description": "Título da transmissão"
          },
          "accountName": {
            "type": "string",
            "description": "Nome do marketplace"
          },
          "idAccount": {
            "type": "integer",
            "description": "Conta do marketplace"
          },
          "idSku": {
            "type": "integer",
            "description": "ID do SKU"
          },
          "basePrice": {
            "type": "number",
            "description": "Preço base do SKU"
          },
          "priceFactor": {
            "type": "number",
            "description": "Markup"
          },
          "originalPrice": {
            "type": "number",
            "description": "Preço DE"
          },
          "finalPrice": {
            "type": "number",
            "description": "Preço POR"
          },
          "discount": {
            "$ref": "#/components/schemas/TransmissionPriceDiscount"
          },
          "priceRule": {
            "$ref": "#/components/schemas/TransmissionPriceRule"
          },
          "campaign": {
            "$ref": "#/components/schemas/TransmissionPriceCampaign"
          }
        },
        "example": {
          "id": 9276,
          "title": "Kit 02 Poltrona 01 Namoradeira e 02 Puffs Dado Suede Amarelo",
          "accountName": "ECOMMERCE",
          "idAccount": 1,
          "idSku": 76579,
          "basePrice": 1039.9,
          "priceFactor": 1.8,
          "originalPrice": 1984.81,
          "finalPrice": 1875.81,
          "discount": {
            "discountType": "PERCENT",
            "discountValue": 12.78
          },
          "priceRule": {
            "priceRuleRegular": 1871.83,
            "priceRuleDeal": 1871.82
          },
          "campaign": {
            "campaignRegularPrice": 1871.83,
            "campaignDealPrice": 1871.82
          }
        }
      }
    },
    "responses": {
      "400": {
        "description": "Bad Request",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/400"
            }
          }
        }
      },
      "404": {
        "description": "Not Found",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/404"
            }
          }
        }
      },
      "422": {
        "description": "Unprocessable Entity",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/422"
            }
          }
        }
      }
    }
  }
}
