Esquemas¶
Todos os modelos de dados utilizados pela API TRF Data.
Visão Geral¶
- AuthApiResponse
- AuthRequest
- AuthResult
- CdfType
- ConamaColor
- CtfModel
- CtfModelPagedApiResponse
- EnvironmentalDocumentModel
- EnvironmentalDocumentModelPagedApiResponse
- EnvironmentalDocumentTypeModel
- EnvironmentalLicenseModel
- EnvironmentalLicenseModelPagedApiResponse
- FcdrModel
- GeneratorModel
- InboundManifestModel
- IneaCdfModel
- IneaReceptionReportModel
- LicenseActivity
- LicenseAnnotationModel
- LicensePortSigreModel
- LicenseRenewalProtocolModel
- LicenseSupplementaryDocumentModel
- LicenseType
- LocationModel
- MeasuringUnit
- OperationalUnitModel
- OperationalUnitTreatmentPreferenceModel
- OperationalUnitType
- OrderModel
- OrderStatus
- OutboundBatchModel
- OutboundCdfModel
- OutboundManifestModel
- PackagingModel
- PeriodOfDay
- PortModel
- ProblemDetails
- ResidueClassification
- ResidueModel
- ResidueNameCompositionModel
- ResidueResolution
- ResidueState
- RoModel
- RtModel
- TreatmentModel
- TreatmentType
- VendorModel
- VendorType
- WasteTrackingItemModel
- WasteTrackingItemModelPagedApiResponse
- WeighingModel
- WeighingStatus
AuthApiResponse¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
result |
AuthResult | Não |
Exemplo:
AuthRequest¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
clientId |
string (uuid) | Sim | |
secretKey |
string | Sim | (anulável) |
Exemplo:
AuthResult¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
name |
string | Não | (anulável) |
token |
string | Não | (anulável) |
Exemplo:
CdfType¶
Tipo: enum (string)
Valores:
TransformaReceiver
ConamaColor¶
Tipo: enum (string)
Valores:
OrangeBlackBlueRedGreenYellowBrownGrayUnavailableWhite
CtfModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
vendor |
VendorModel | Não | |
number |
string | Não | (anulável) |
issuedDate |
string (date-time) | Não | (anulável) |
expirationDate |
string (date-time) | Não | (anulável) |
documentUrl |
string | Não | (anulável, somente leitura) |
Exemplo:
{
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"documentUrl": "string"
}
CtfModelPagedApiResponse¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
total |
integer (int32) | Não | (anulável) |
page |
integer (int32) | Não | (anulável) |
size |
integer (int32) | Não | (anulável) |
data |
array\<CtfModel> | Não | (anulável) |
Exemplo:
{
"total": 0,
"page": 0,
"size": 0,
"data": [
{
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"documentUrl": "string"
}
]
}
EnvironmentalDocumentModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
vendor |
VendorModel | Não | |
documentType |
EnvironmentalDocumentTypeModel | Não | |
number |
string | Não | (anulável) |
description |
string | Não | (anulável) |
issuedDate |
string (date-time) | Não | (anulável) |
expirationDate |
string (date-time) | Não | (anulável) |
enabled |
boolean | Não | |
documentUrl |
string | Não | (anulável, somente leitura) |
Exemplo:
{
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"documentType": {
"id": 0,
"name": "string",
"description": "string",
"enabled": true,
"expirable": true,
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"mandatoryVendorTypes": [
"OnlyReceiver"
]
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
EnvironmentalDocumentModelPagedApiResponse¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
total |
integer (int32) | Não | (anulável) |
page |
integer (int32) | Não | (anulável) |
size |
integer (int32) | Não | (anulável) |
data |
array\<EnvironmentalDocumentModel> | Não | (anulável) |
Exemplo:
{
"total": 0,
"page": 0,
"size": 0,
"data": [
{
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"documentType": {
"id": 0,
"name": "string",
"description": "string",
"enabled": true,
"expirable": true,
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"mandatoryVendorTypes": [
"..."
]
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
]
}
EnvironmentalDocumentTypeModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
name |
string | Não | (anulável) |
description |
string | Não | (anulável) |
enabled |
boolean | Não | |
expirable |
boolean | Não | |
issuedDate |
string (date-time) | Não | (anulável) |
expirationDate |
string (date-time) | Não | (anulável) |
mandatoryVendorTypes |
array\<VendorType> | Não | (anulável) |
Exemplo:
{
"id": 0,
"name": "string",
"description": "string",
"enabled": true,
"expirable": true,
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"mandatoryVendorTypes": [
"OnlyReceiver"
]
}
EnvironmentalLicenseModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
vendor |
VendorModel | Não | |
number |
string | Não | (anulável) |
description |
string | Não | (anulável) |
issuedDate |
string (date-time) | Não | (anulável) |
expirationDate |
string (date-time) | Não | (anulável) |
licenseType |
LicenseType | Não | |
licenseActivity |
LicenseActivity | Não | |
renewalProtocols |
array\<LicenseRenewalProtocolModel> | Não | (anulável) |
annotations |
array\<LicenseAnnotationModel> | Não | (anulável) |
supplementaryDocuments |
array\<LicenseSupplementaryDocumentModel> | Não | (anulável) |
licensePortSigres |
array\<LicensePortSigreModel> | Não | (anulável) |
licensedActivitiesCode |
string | Não | (anulável) |
scope |
string | Não | (anulável) |
organ |
string | Não | (anulável) |
state |
string | Não | (anulável) |
observation |
string | Não | (anulável) |
enabled |
boolean | Não | |
defaultDisposingVendorSigre |
string | Não | (anulável) |
documentUrl |
string | Não | (anulável, somente leitura) |
Exemplo:
{
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": 0,
"environmentalLicense": {
"id": 0,
"vendor": {
"id": "...",
"name": "...",
"cnpj": "...",
"isTransporter": "...",
"isReceiver": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
"..."
],
"annotations": [
"..."
],
"supplementaryDocuments": [
"..."
],
"licensePortSigres": [
"..."
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"annotations": [
{
"id": 0,
"environmentalLicense": {
"id": 0,
"vendor": {
"id": "...",
"name": "...",
"cnpj": "...",
"isTransporter": "...",
"isReceiver": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
"..."
],
"annotations": [
"..."
],
"supplementaryDocuments": [
"..."
],
"licensePortSigres": [
"..."
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"supplementaryDocuments": [
{
"id": 0,
"environmentalLicense": {
"id": 0,
"vendor": {
"id": "...",
"name": "...",
"cnpj": "...",
"isTransporter": "...",
"isReceiver": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
"..."
],
"annotations": [
"..."
],
"supplementaryDocuments": [
"..."
],
"licensePortSigres": [
"..."
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"number": "string",
"description": "string",
"type": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"licensePortSigres": [
{
"id": 0,
"environmentalLicense": {
"id": 0,
"vendor": {
"id": "...",
"name": "...",
"cnpj": "...",
"isTransporter": "...",
"isReceiver": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
"..."
],
"annotations": [
"..."
],
"supplementaryDocuments": [
"..."
],
"licensePortSigres": [
"..."
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"port": {
"id": 0,
"name": "string",
"distanceToUtrInKm": 0,
"location": {
"id": "...",
"name": "...",
"distanceUtr": "...",
"enabled": "..."
},
"enabled": true,
"address": "string",
"regionNtIbamaIdxPetrobras": 0,
"petrobrasName": "string"
},
"receiverSigreText": "string"
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
}
EnvironmentalLicenseModelPagedApiResponse¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
total |
integer (int32) | Não | (anulável) |
page |
integer (int32) | Não | (anulável) |
size |
integer (int32) | Não | (anulável) |
data |
array\<EnvironmentalLicenseModel> | Não | (anulável) |
Exemplo:
{
"total": 0,
"page": 0,
"size": 0,
"data": [
{
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"annotations": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"supplementaryDocuments": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"type": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"licensePortSigres": [
{
"id": "...",
"environmentalLicense": "...",
"port": "...",
"receiverSigreText": "..."
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
}
]
}
FcdrModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
number |
string | Não | (anulável) |
date |
string (date-time) | Não | (anulável) |
estimatedWeight |
number (double) | Não | (anulável) |
itemNumber |
number (double) | Não | (anulável) |
documentUrl |
string | Não | (anulável, somente leitura) |
Exemplo:
{
"id": 0,
"number": "string",
"date": "2024-01-15T10:30:00Z",
"estimatedWeight": 0.0,
"itemNumber": 0.0,
"documentUrl": "string"
}
GeneratorModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
string | Não | (anulável) |
name |
string | Não | (anulável) |
cnpj |
string | Não | (anulável) |
Exemplo:
InboundManifestModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
number |
string | Não | (anulável) |
residue |
ResidueModel | Não | |
residueNameComplement |
string | Não | (anulável) |
issuedDate |
string (date-time) | Não | |
quantity |
number (double) | Não | (anulável) |
measuringUnit |
MeasuringUnit | Não | |
treatment |
TreatmentModel | Não | |
packaging |
PackagingModel | Não | |
packagingIdentification |
string | Não | (anulável) |
generatorLicense |
EnvironmentalLicenseModel | Não | |
transporterLicense |
EnvironmentalLicenseModel | Não | |
driverName |
string | Não | (anulável) |
vehiclePlate |
string | Não | (anulável) |
receiverLicense |
EnvironmentalLicenseModel | Não | |
observation |
string | Não | (anulável) |
receivingTimestamp |
string (date-time) | Não | |
conclusionTimestamp |
string (date-time) | Não | |
documentUrl |
string | Não | (anulável, somente leitura) |
documentUrlCarbonCopies |
string | Não | (anulável, somente leitura) |
Exemplo:
{
"id": 0,
"number": "string",
"residue": {
"id": 0,
"code": "string",
"name": "string",
"sigreRef": "string",
"totalSaRef": "string",
"isChemicalProduct": true,
"conamaColor": "Orange",
"classification": "ClassI",
"phisicalState": "Solid",
"nameCompositions": [
{
"id": 0,
"name": "string",
"code": "string",
"resolution": "Nbr10004"
}
],
"observation": "string",
"petrobrasPackagingPlace": "string",
"petrobrasDefaultPackagingType": "string",
"inboundEnvironmentalLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"annotations": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"supplementaryDocuments": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"type": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"licensePortSigres": [
{
"id": "...",
"environmentalLicense": "...",
"port": "...",
"receiverSigreText": "..."
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
}
},
"residueNameComplement": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"quantity": 0.0,
"measuringUnit": "Kg",
"treatment": {
"id": 0,
"name": "string",
"type": "Inbound",
"sigreRef": "string"
},
"packaging": {
"id": 0,
"name": "string",
"sigreRef": "string"
},
"packagingIdentification": "string",
"generatorLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"annotations": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"supplementaryDocuments": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"type": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"licensePortSigres": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"port": {
"id": "...",
"name": "...",
"distanceToUtrInKm": "...",
"location": "...",
"enabled": "...",
"address": "...",
"regionNtIbamaIdxPetrobras": "...",
"petrobrasName": "..."
},
"receiverSigreText": "string"
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"transporterLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"annotations": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"supplementaryDocuments": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"type": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"licensePortSigres": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"port": {
"id": "...",
"name": "...",
"distanceToUtrInKm": "...",
"location": "...",
"enabled": "...",
"address": "...",
"regionNtIbamaIdxPetrobras": "...",
"petrobrasName": "..."
},
"receiverSigreText": "string"
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"driverName": "string",
"vehiclePlate": "string",
"receiverLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"annotations": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"supplementaryDocuments": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"type": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"licensePortSigres": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"port": {
"id": "...",
"name": "...",
"distanceToUtrInKm": "...",
"location": "...",
"enabled": "...",
"address": "...",
"regionNtIbamaIdxPetrobras": "...",
"petrobrasName": "..."
},
"receiverSigreText": "string"
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"observation": "string",
"receivingTimestamp": "2024-01-15T10:30:00Z",
"conclusionTimestamp": "2024-01-15T10:30:00Z",
"documentUrl": "string",
"documentUrlCarbonCopies": "string"
}
IneaCdfModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
receiver |
VendorModel | Não | |
number |
string | Não | (anulável) |
issuedDate |
string (date-time) | Não | |
inclusionDate |
string (date-time) | Não | |
periodStart |
string (date-time) | Não | |
periodEnd |
string (date-time) | Não | |
documentUrl |
string | Não | (anulável, somente leitura) |
Exemplo:
{
"id": 0,
"receiver": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"inclusionDate": "2024-01-15T10:30:00Z",
"periodStart": "2024-01-15T10:30:00Z",
"periodEnd": "2024-01-15T10:30:00Z",
"documentUrl": "string"
}
IneaReceptionReportModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
conclusionTimestamp |
string (date-time) | Não | |
manifestNumber |
string | Não | (anulável) |
receivingResponsible |
string | Não | (anulável) |
documentUrl |
string | Não | (anulável, somente leitura) |
Exemplo:
{
"id": 0,
"conclusionTimestamp": "2024-01-15T10:30:00Z",
"manifestNumber": "string",
"receivingResponsible": "string",
"documentUrl": "string"
}
LicenseActivity¶
Tipo: enum (string)
Valores:
ReceiverTransporterReceiverAndTransporter
LicenseAnnotationModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
environmentalLicense |
EnvironmentalLicenseModel | Não | |
number |
string | Não | (anulável) |
description |
string | Não | (anulável) |
issuedDate |
string (date-time) | Não | (anulável) |
enabled |
boolean | Não | |
documentUrl |
string | Não | (anulável, somente leitura) |
Exemplo:
{
"id": 0,
"environmentalLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"annotations": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"supplementaryDocuments": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"type": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"licensePortSigres": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"port": {
"id": "...",
"name": "...",
"distanceToUtrInKm": "...",
"location": "...",
"enabled": "...",
"address": "...",
"regionNtIbamaIdxPetrobras": "...",
"petrobrasName": "..."
},
"receiverSigreText": "string"
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
LicensePortSigreModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
environmentalLicense |
EnvironmentalLicenseModel | Não | |
port |
PortModel | Não | |
receiverSigreText |
string | Não | (anulável) |
Exemplo:
{
"id": 0,
"environmentalLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"annotations": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"supplementaryDocuments": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"type": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"licensePortSigres": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"port": {
"id": "...",
"name": "...",
"distanceToUtrInKm": "...",
"location": "...",
"enabled": "...",
"address": "...",
"regionNtIbamaIdxPetrobras": "...",
"petrobrasName": "..."
},
"receiverSigreText": "string"
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"port": {
"id": 0,
"name": "string",
"distanceToUtrInKm": 0,
"location": {
"id": 0,
"name": "string",
"distanceUtr": 0,
"enabled": true
},
"enabled": true,
"address": "string",
"regionNtIbamaIdxPetrobras": 0,
"petrobrasName": "string"
},
"receiverSigreText": "string"
}
LicenseRenewalProtocolModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
environmentalLicense |
EnvironmentalLicenseModel | Não | |
number |
string | Não | (anulável) |
description |
string | Não | (anulável) |
issuedDate |
string (date-time) | Não | (anulável) |
enabled |
boolean | Não | |
documentUrl |
string | Não | (anulável, somente leitura) |
Exemplo:
{
"id": 0,
"environmentalLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"annotations": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"supplementaryDocuments": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"type": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"licensePortSigres": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"port": {
"id": "...",
"name": "...",
"distanceToUtrInKm": "...",
"location": "...",
"enabled": "...",
"address": "...",
"regionNtIbamaIdxPetrobras": "...",
"petrobrasName": "..."
},
"receiverSigreText": "string"
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
LicenseSupplementaryDocumentModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
environmentalLicense |
EnvironmentalLicenseModel | Não | |
number |
string | Não | (anulável) |
description |
string | Não | (anulável) |
type |
string | Não | (anulável) |
issuedDate |
string (date-time) | Não | (anulável) |
enabled |
boolean | Não | |
documentUrl |
string | Não | (anulável, somente leitura) |
Exemplo:
{
"id": 0,
"environmentalLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"annotations": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"supplementaryDocuments": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"type": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"licensePortSigres": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"port": {
"id": "...",
"name": "...",
"distanceToUtrInKm": "...",
"location": "...",
"enabled": "...",
"address": "...",
"regionNtIbamaIdxPetrobras": "...",
"petrobrasName": "..."
},
"receiverSigreText": "string"
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"number": "string",
"description": "string",
"type": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
LicenseType¶
Tipo: enum (string)
Valores:
OperationOperationSimplifiedInstallationPriorInstallationInstallationAndOperation
LocationModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
name |
string | Não | (anulável) |
distanceUtr |
integer (int32) | Não | (anulável) |
enabled |
boolean | Não |
Exemplo:
MeasuringUnit¶
Tipo: enum (string)
Valores:
KgUnM3Lt
OperationalUnitModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
type |
OperationalUnitType | Não | |
name |
string | Não | (anulável) |
acronym |
string | Não | (anulável) |
location |
LocationModel | Não | |
vesselType |
string | Não | (anulável) |
treatmentPreferences |
array\<OperationalUnitTreatmentPreferenceModel> | Não | (anulável) |
petrobrasName |
string | Não | (anulável) |
petrobrasManagement |
string | Não | (anulável) |
regionNtIbamaIdxPetrobras |
integer (int32) | Não | (anulável) |
petrobrasGenerationPlace |
string | Não | (anulável) |
petrobrasPackagingType |
string | Não | (anulável) |
Exemplo:
{
"id": 0,
"type": "Base",
"name": "string",
"acronym": "string",
"location": {
"id": 0,
"name": "string",
"distanceUtr": 0,
"enabled": true
},
"vesselType": "string",
"treatmentPreferences": [
{
"id": 0,
"residue": {
"id": 0,
"code": "string",
"name": "string",
"sigreRef": "string",
"totalSaRef": "string",
"isChemicalProduct": true,
"conamaColor": "Orange",
"classification": "ClassI",
"phisicalState": "Solid",
"nameCompositions": [
"..."
],
"observation": "string",
"petrobrasPackagingPlace": "string",
"petrobrasDefaultPackagingType": "string",
"inboundEnvironmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
}
},
"measuringUnit": "Kg",
"treatment": {
"id": 0,
"name": "string",
"type": "Inbound",
"sigreRef": "string"
},
"environmentalLicense": {
"id": 0,
"vendor": {
"id": "...",
"name": "...",
"cnpj": "...",
"isTransporter": "...",
"isReceiver": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
"..."
],
"annotations": [
"..."
],
"supplementaryDocuments": [
"..."
],
"licensePortSigres": [
"..."
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
}
}
],
"petrobrasName": "string",
"petrobrasManagement": "string",
"regionNtIbamaIdxPetrobras": 0,
"petrobrasGenerationPlace": "string",
"petrobrasPackagingType": "string"
}
OperationalUnitTreatmentPreferenceModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
residue |
ResidueModel | Não | |
measuringUnit |
MeasuringUnit | Não | |
treatment |
TreatmentModel | Não | |
environmentalLicense |
EnvironmentalLicenseModel | Não |
Exemplo:
{
"id": 0,
"residue": {
"id": 0,
"code": "string",
"name": "string",
"sigreRef": "string",
"totalSaRef": "string",
"isChemicalProduct": true,
"conamaColor": "Orange",
"classification": "ClassI",
"phisicalState": "Solid",
"nameCompositions": [
{
"id": 0,
"name": "string",
"code": "string",
"resolution": "Nbr10004"
}
],
"observation": "string",
"petrobrasPackagingPlace": "string",
"petrobrasDefaultPackagingType": "string",
"inboundEnvironmentalLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"annotations": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"supplementaryDocuments": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"type": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"licensePortSigres": [
{
"id": "...",
"environmentalLicense": "...",
"port": "...",
"receiverSigreText": "..."
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
}
},
"measuringUnit": "Kg",
"treatment": {
"id": 0,
"name": "string",
"type": "Inbound",
"sigreRef": "string"
},
"environmentalLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"annotations": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"supplementaryDocuments": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"type": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"licensePortSigres": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"port": {
"id": "...",
"name": "...",
"distanceToUtrInKm": "...",
"location": "...",
"enabled": "...",
"address": "...",
"regionNtIbamaIdxPetrobras": "...",
"petrobrasName": "..."
},
"receiverSigreText": "string"
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
}
}
OperationalUnitType¶
Tipo: enum (string)
Valores:
BaseVessel
OrderModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
status |
OrderStatus | Não | |
customer |
GeneratorModel | Não | |
operationalUnit |
OperationalUnitModel | Não | |
periodOfDay |
PeriodOfDay | Não | |
observation |
string | Não | (anulável) |
executionDate |
string (date-time) | Não | |
transporter |
VendorModel | Não | |
documentUrl |
string | Não | (anulável, somente leitura) |
Exemplo:
{
"id": 0,
"status": "Scheduled",
"customer": {
"id": "string",
"name": "string",
"cnpj": "string"
},
"operationalUnit": {
"id": 0,
"type": "Base",
"name": "string",
"acronym": "string",
"location": {
"id": 0,
"name": "string",
"distanceUtr": 0,
"enabled": true
},
"vesselType": "string",
"treatmentPreferences": [
{
"id": 0,
"residue": {
"id": "...",
"code": "...",
"name": "...",
"sigreRef": "...",
"totalSaRef": "...",
"isChemicalProduct": "...",
"conamaColor": "...",
"classification": "...",
"phisicalState": "...",
"nameCompositions": "...",
"observation": "...",
"petrobrasPackagingPlace": "...",
"petrobrasDefaultPackagingType": "...",
"inboundEnvironmentalLicense": "..."
},
"measuringUnit": "Kg",
"treatment": {
"id": "...",
"name": "...",
"type": "...",
"sigreRef": "..."
},
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
}
}
],
"petrobrasName": "string",
"petrobrasManagement": "string",
"regionNtIbamaIdxPetrobras": 0,
"petrobrasGenerationPlace": "string",
"petrobrasPackagingType": "string"
},
"periodOfDay": "Morning",
"observation": "string",
"executionDate": "2024-01-15T10:30:00Z",
"transporter": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"documentUrl": "string"
}
OrderStatus¶
Tipo: enum (string)
Valores:
ScheduledStartedCompletedCancelledRescheduled
OutboundBatchModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
issuedDate |
string (date-time) | Não | |
residue |
ResidueModel | Não | |
outboundManifest |
OutboundManifestModel | Não | |
outboundCdf |
OutboundCdfModel | Não | |
treatment |
TreatmentModel | Não | |
transporterLicense |
EnvironmentalLicenseModel | Não | |
receiverLicense |
EnvironmentalLicenseModel | Não |
Exemplo:
{
"id": 0,
"issuedDate": "2024-01-15T10:30:00Z",
"residue": {
"id": 0,
"code": "string",
"name": "string",
"sigreRef": "string",
"totalSaRef": "string",
"isChemicalProduct": true,
"conamaColor": "Orange",
"classification": "ClassI",
"phisicalState": "Solid",
"nameCompositions": [
{
"id": 0,
"name": "string",
"code": "string",
"resolution": "Nbr10004"
}
],
"observation": "string",
"petrobrasPackagingPlace": "string",
"petrobrasDefaultPackagingType": "string",
"inboundEnvironmentalLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"annotations": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"supplementaryDocuments": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"type": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"licensePortSigres": [
{
"id": "...",
"environmentalLicense": "...",
"port": "...",
"receiverSigreText": "..."
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
}
},
"outboundManifest": {
"id": 0,
"outboundBatchId": 0,
"number": "string",
"residue": {
"id": 0,
"code": "string",
"name": "string",
"sigreRef": "string",
"totalSaRef": "string",
"isChemicalProduct": true,
"conamaColor": "Orange",
"classification": "ClassI",
"phisicalState": "Solid",
"nameCompositions": [
{
"id": "...",
"name": "...",
"code": "...",
"resolution": "..."
}
],
"observation": "string",
"petrobrasPackagingPlace": "string",
"petrobrasDefaultPackagingType": "string",
"inboundEnvironmentalLicense": {
"id": 0,
"vendor": {
"id": "...",
"name": "...",
"cnpj": "...",
"isTransporter": "...",
"isReceiver": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
"..."
],
"annotations": [
"..."
],
"supplementaryDocuments": [
"..."
],
"licensePortSigres": [
"..."
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
}
},
"residueNameComplement": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"quantity": 0.0,
"measuringUnit": "Kg",
"treatment": {
"id": 0,
"name": "string",
"type": "Inbound",
"sigreRef": "string"
},
"packaging": {
"id": 0,
"name": "string",
"sigreRef": "string"
},
"generatorLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"annotations": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"supplementaryDocuments": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"type": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"licensePortSigres": [
{
"id": "...",
"environmentalLicense": "...",
"port": "...",
"receiverSigreText": "..."
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"transporterLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"annotations": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"supplementaryDocuments": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"type": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"licensePortSigres": [
{
"id": "...",
"environmentalLicense": "...",
"port": "...",
"receiverSigreText": "..."
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"driverName": "string",
"vehiclePlate": "string",
"receiverLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"annotations": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"supplementaryDocuments": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"type": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"licensePortSigres": [
{
"id": "...",
"environmentalLicense": "...",
"port": "...",
"receiverSigreText": "..."
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"observation": "string",
"conclusionTimestamp": "2024-01-15T10:30:00Z",
"documentUrl": "string"
},
"outboundCdf": {
"id": 0,
"outboundBatchId": 0,
"receiver": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"inclusionDate": "2024-01-15T10:30:00Z",
"periodStart": "2024-01-15T10:30:00Z",
"periodEnd": "2024-01-15T10:30:00Z",
"cdfType": "Transforma",
"documentUrl": "string"
},
"treatment": {
"id": 0,
"name": "string",
"type": "Inbound",
"sigreRef": "string"
},
"transporterLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"annotations": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"supplementaryDocuments": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"type": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"licensePortSigres": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"port": {
"id": "...",
"name": "...",
"distanceToUtrInKm": "...",
"location": "...",
"enabled": "...",
"address": "...",
"regionNtIbamaIdxPetrobras": "...",
"petrobrasName": "..."
},
"receiverSigreText": "string"
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"receiverLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"annotations": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"supplementaryDocuments": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"type": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"licensePortSigres": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"port": {
"id": "...",
"name": "...",
"distanceToUtrInKm": "...",
"location": "...",
"enabled": "...",
"address": "...",
"regionNtIbamaIdxPetrobras": "...",
"petrobrasName": "..."
},
"receiverSigreText": "string"
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
}
}
OutboundCdfModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
outboundBatchId |
integer (int64) | Não | (anulável) |
receiver |
VendorModel | Não | |
number |
string | Não | (anulável) |
issuedDate |
string (date-time) | Não | |
inclusionDate |
string (date-time) | Não | |
periodStart |
string (date-time) | Não | (anulável) |
periodEnd |
string (date-time) | Não | (anulável) |
cdfType |
CdfType | Não | |
documentUrl |
string | Não | (anulável, somente leitura) |
Exemplo:
{
"id": 0,
"outboundBatchId": 0,
"receiver": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"inclusionDate": "2024-01-15T10:30:00Z",
"periodStart": "2024-01-15T10:30:00Z",
"periodEnd": "2024-01-15T10:30:00Z",
"cdfType": "Transforma",
"documentUrl": "string"
}
OutboundManifestModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
outboundBatchId |
integer (int64) | Não | (anulável) |
number |
string | Não | (anulável) |
residue |
ResidueModel | Não | |
residueNameComplement |
string | Não | (anulável) |
issuedDate |
string (date-time) | Não | |
quantity |
number (double) | Não | (anulável) |
measuringUnit |
MeasuringUnit | Não | |
treatment |
TreatmentModel | Não | |
packaging |
PackagingModel | Não | |
generatorLicense |
EnvironmentalLicenseModel | Não | |
transporterLicense |
EnvironmentalLicenseModel | Não | |
driverName |
string | Não | (anulável) |
vehiclePlate |
string | Não | (anulável) |
receiverLicense |
EnvironmentalLicenseModel | Não | |
observation |
string | Não | (anulável) |
conclusionTimestamp |
string (date-time) | Não | |
documentUrl |
string | Não | (anulável, somente leitura) |
Exemplo:
{
"id": 0,
"outboundBatchId": 0,
"number": "string",
"residue": {
"id": 0,
"code": "string",
"name": "string",
"sigreRef": "string",
"totalSaRef": "string",
"isChemicalProduct": true,
"conamaColor": "Orange",
"classification": "ClassI",
"phisicalState": "Solid",
"nameCompositions": [
{
"id": 0,
"name": "string",
"code": "string",
"resolution": "Nbr10004"
}
],
"observation": "string",
"petrobrasPackagingPlace": "string",
"petrobrasDefaultPackagingType": "string",
"inboundEnvironmentalLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"annotations": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"supplementaryDocuments": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"type": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"licensePortSigres": [
{
"id": "...",
"environmentalLicense": "...",
"port": "...",
"receiverSigreText": "..."
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
}
},
"residueNameComplement": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"quantity": 0.0,
"measuringUnit": "Kg",
"treatment": {
"id": 0,
"name": "string",
"type": "Inbound",
"sigreRef": "string"
},
"packaging": {
"id": 0,
"name": "string",
"sigreRef": "string"
},
"generatorLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"annotations": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"supplementaryDocuments": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"type": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"licensePortSigres": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"port": {
"id": "...",
"name": "...",
"distanceToUtrInKm": "...",
"location": "...",
"enabled": "...",
"address": "...",
"regionNtIbamaIdxPetrobras": "...",
"petrobrasName": "..."
},
"receiverSigreText": "string"
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"transporterLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"annotations": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"supplementaryDocuments": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"type": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"licensePortSigres": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"port": {
"id": "...",
"name": "...",
"distanceToUtrInKm": "...",
"location": "...",
"enabled": "...",
"address": "...",
"regionNtIbamaIdxPetrobras": "...",
"petrobrasName": "..."
},
"receiverSigreText": "string"
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"driverName": "string",
"vehiclePlate": "string",
"receiverLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"annotations": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"supplementaryDocuments": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"type": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"licensePortSigres": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"port": {
"id": "...",
"name": "...",
"distanceToUtrInKm": "...",
"location": "...",
"enabled": "...",
"address": "...",
"regionNtIbamaIdxPetrobras": "...",
"petrobrasName": "..."
},
"receiverSigreText": "string"
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"observation": "string",
"conclusionTimestamp": "2024-01-15T10:30:00Z",
"documentUrl": "string"
}
PackagingModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
name |
string | Não | (anulável) |
sigreRef |
string | Não | (anulável) |
Exemplo:
PeriodOfDay¶
Tipo: enum (string)
Valores:
MorningAfternoonNight
PortModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
name |
string | Não | (anulável) |
distanceToUtrInKm |
integer (int32) | Não | (anulável) |
location |
LocationModel | Não | |
enabled |
boolean | Não | |
address |
string | Não | (anulável) |
regionNtIbamaIdxPetrobras |
integer (int32) | Não | (anulável) |
petrobrasName |
string | Não | (anulável) |
Exemplo:
{
"id": 0,
"name": "string",
"distanceToUtrInKm": 0,
"location": {
"id": 0,
"name": "string",
"distanceUtr": 0,
"enabled": true
},
"enabled": true,
"address": "string",
"regionNtIbamaIdxPetrobras": 0,
"petrobrasName": "string"
}
ProblemDetails¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
type |
string | Não | (anulável) |
title |
string | Não | (anulável) |
status |
integer (int32) | Não | (anulável) |
detail |
string | Não | (anulável) |
instance |
string | Não | (anulável) |
Exemplo:
ResidueClassification¶
Tipo: enum (string)
Valores:
ClassIClass2AClass2BGroupAGroupB_K1GroupCGroupDGroupE
ResidueModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
code |
string | Não | (anulável) |
name |
string | Não | (anulável) |
sigreRef |
string | Não | (anulável) |
totalSaRef |
string | Não | (anulável) |
isChemicalProduct |
boolean | Não | (anulável) |
conamaColor |
ConamaColor | Não | |
classification |
ResidueClassification | Não | |
phisicalState |
ResidueState | Não | |
nameCompositions |
array\<ResidueNameCompositionModel> | Não | (anulável) |
observation |
string | Não | (anulável) |
petrobrasPackagingPlace |
string | Não | (anulável) |
petrobrasDefaultPackagingType |
string | Não | (anulável) |
inboundEnvironmentalLicense |
EnvironmentalLicenseModel | Não |
Exemplo:
{
"id": 0,
"code": "string",
"name": "string",
"sigreRef": "string",
"totalSaRef": "string",
"isChemicalProduct": true,
"conamaColor": "Orange",
"classification": "ClassI",
"phisicalState": "Solid",
"nameCompositions": [
{
"id": 0,
"name": "string",
"code": "string",
"resolution": "Nbr10004"
}
],
"observation": "string",
"petrobrasPackagingPlace": "string",
"petrobrasDefaultPackagingType": "string",
"inboundEnvironmentalLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"annotations": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"supplementaryDocuments": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"number": "string",
"description": "string",
"type": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"enabled": true,
"documentUrl": "string"
}
],
"licensePortSigres": [
{
"id": 0,
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"port": {
"id": "...",
"name": "...",
"distanceToUtrInKm": "...",
"location": "...",
"enabled": "...",
"address": "...",
"regionNtIbamaIdxPetrobras": "...",
"petrobrasName": "..."
},
"receiverSigreText": "string"
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
}
}
ResidueNameCompositionModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
name |
string | Não | (anulável) |
code |
string | Não | (anulável) |
resolution |
ResidueResolution | Não |
Exemplo:
ResidueResolution¶
Tipo: enum (string)
Valores:
Nbr10004IbamaPetrobrasOnDemand
ResidueState¶
Tipo: enum (string)
Valores:
SolidSemisolidLiquid
RoModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
number |
string | Não | (anulável) |
documentUrl |
string | Não | (anulável, somente leitura) |
Exemplo:
RtModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
number |
string | Não | (anulável) |
documentUrl |
string | Não | (anulável, somente leitura) |
Exemplo:
TreatmentModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
name |
string | Não | (anulável) |
type |
TreatmentType | Não | |
sigreRef |
string | Não | (anulável) |
Exemplo:
TreatmentType¶
Tipo: enum (string)
Valores:
InboundOutboundBoth
VendorModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
string | Não | (anulável) |
name |
string | Não | (anulável) |
cnpj |
string | Não | (anulável) |
isTransporter |
boolean | Não | (anulável) |
isReceiver |
boolean | Não | (anulável) |
Exemplo:
VendorType¶
Tipo: enum (string)
Valores:
OnlyReceiverOnlyTransporterReceiverAndTransporter
WasteTrackingItemModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
customer |
GeneratorModel | Não | |
operationalUnit |
OperationalUnitModel | Não | |
residue |
ResidueModel | Não | |
weighing |
WeighingModel | Não | |
order |
OrderModel | Não | |
inboundManifest |
InboundManifestModel | Não | |
outboundManifest |
OutboundManifestModel | Não | |
ineaReceptionReport |
IneaReceptionReportModel | Não | |
ineaCdf |
IneaCdfModel | Não | |
outboundBatch |
OutboundBatchModel | Não | |
fcdr |
FcdrModel | Não | |
ro |
RoModel | Não | |
rt |
RtModel | Não | |
drillship |
string | Não | (anulável) |
trellis |
string | Não | (anulável) |
orderIsUploaded |
boolean | Não | |
inboundManifestIsUploaded |
boolean | Não | |
outboundManifestIsUploaded |
boolean | Não | |
cdfIsUploaded |
boolean | Não | |
fcdrIsUploaded |
boolean | Não | |
customerId |
string | Não | (anulável) |
Exemplo:
{
"id": 0,
"customer": {
"id": "string",
"name": "string",
"cnpj": "string"
},
"operationalUnit": {
"id": 0,
"type": "Base",
"name": "string",
"acronym": "string",
"location": {
"id": 0,
"name": "string",
"distanceUtr": 0,
"enabled": true
},
"vesselType": "string",
"treatmentPreferences": [
{
"id": 0,
"residue": {
"id": "...",
"code": "...",
"name": "...",
"sigreRef": "...",
"totalSaRef": "...",
"isChemicalProduct": "...",
"conamaColor": "...",
"classification": "...",
"phisicalState": "...",
"nameCompositions": "...",
"observation": "...",
"petrobrasPackagingPlace": "...",
"petrobrasDefaultPackagingType": "...",
"inboundEnvironmentalLicense": "..."
},
"measuringUnit": "Kg",
"treatment": {
"id": "...",
"name": "...",
"type": "...",
"sigreRef": "..."
},
"environmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
}
}
],
"petrobrasName": "string",
"petrobrasManagement": "string",
"regionNtIbamaIdxPetrobras": 0,
"petrobrasGenerationPlace": "string",
"petrobrasPackagingType": "string"
},
"residue": {
"id": 0,
"code": "string",
"name": "string",
"sigreRef": "string",
"totalSaRef": "string",
"isChemicalProduct": true,
"conamaColor": "Orange",
"classification": "ClassI",
"phisicalState": "Solid",
"nameCompositions": [
{
"id": 0,
"name": "string",
"code": "string",
"resolution": "Nbr10004"
}
],
"observation": "string",
"petrobrasPackagingPlace": "string",
"petrobrasDefaultPackagingType": "string",
"inboundEnvironmentalLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"annotations": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"supplementaryDocuments": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"type": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"licensePortSigres": [
{
"id": "...",
"environmentalLicense": "...",
"port": "...",
"receiverSigreText": "..."
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
}
},
"weighing": {
"id": 0,
"weighingTimestamp": "2024-01-15T10:30:00Z",
"weighRegistrationTimestamp": "2024-01-15T10:30:00Z",
"inventoryDate": "2024-01-15T10:30:00Z",
"status": "Weighed",
"gross": 0.0,
"tare": 0.0,
"net": 0.0,
"convertedInUnits": 0.0,
"convertedInCubicMeters": 0.0,
"observation": "string",
"cancellationReason": "string",
"equipmentNumber": "string",
"fiscalDocumentNumber": "string",
"documentUrl": "string"
},
"order": {
"id": 0,
"status": "Scheduled",
"customer": {
"id": "string",
"name": "string",
"cnpj": "string"
},
"operationalUnit": {
"id": 0,
"type": "Base",
"name": "string",
"acronym": "string",
"location": {
"id": 0,
"name": "string",
"distanceUtr": 0,
"enabled": true
},
"vesselType": "string",
"treatmentPreferences": [
{
"id": "...",
"residue": "...",
"measuringUnit": "...",
"treatment": "...",
"environmentalLicense": "..."
}
],
"petrobrasName": "string",
"petrobrasManagement": "string",
"regionNtIbamaIdxPetrobras": 0,
"petrobrasGenerationPlace": "string",
"petrobrasPackagingType": "string"
},
"periodOfDay": "Morning",
"observation": "string",
"executionDate": "2024-01-15T10:30:00Z",
"transporter": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"documentUrl": "string"
},
"inboundManifest": {
"id": 0,
"number": "string",
"residue": {
"id": 0,
"code": "string",
"name": "string",
"sigreRef": "string",
"totalSaRef": "string",
"isChemicalProduct": true,
"conamaColor": "Orange",
"classification": "ClassI",
"phisicalState": "Solid",
"nameCompositions": [
{
"id": "...",
"name": "...",
"code": "...",
"resolution": "..."
}
],
"observation": "string",
"petrobrasPackagingPlace": "string",
"petrobrasDefaultPackagingType": "string",
"inboundEnvironmentalLicense": {
"id": 0,
"vendor": {
"id": "...",
"name": "...",
"cnpj": "...",
"isTransporter": "...",
"isReceiver": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
"..."
],
"annotations": [
"..."
],
"supplementaryDocuments": [
"..."
],
"licensePortSigres": [
"..."
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
}
},
"residueNameComplement": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"quantity": 0.0,
"measuringUnit": "Kg",
"treatment": {
"id": 0,
"name": "string",
"type": "Inbound",
"sigreRef": "string"
},
"packaging": {
"id": 0,
"name": "string",
"sigreRef": "string"
},
"packagingIdentification": "string",
"generatorLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"annotations": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"supplementaryDocuments": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"type": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"licensePortSigres": [
{
"id": "...",
"environmentalLicense": "...",
"port": "...",
"receiverSigreText": "..."
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"transporterLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"annotations": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"supplementaryDocuments": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"type": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"licensePortSigres": [
{
"id": "...",
"environmentalLicense": "...",
"port": "...",
"receiverSigreText": "..."
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"driverName": "string",
"vehiclePlate": "string",
"receiverLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"annotations": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"supplementaryDocuments": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"type": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"licensePortSigres": [
{
"id": "...",
"environmentalLicense": "...",
"port": "...",
"receiverSigreText": "..."
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"observation": "string",
"receivingTimestamp": "2024-01-15T10:30:00Z",
"conclusionTimestamp": "2024-01-15T10:30:00Z",
"documentUrl": "string",
"documentUrlCarbonCopies": "string"
},
"outboundManifest": {
"id": 0,
"outboundBatchId": 0,
"number": "string",
"residue": {
"id": 0,
"code": "string",
"name": "string",
"sigreRef": "string",
"totalSaRef": "string",
"isChemicalProduct": true,
"conamaColor": "Orange",
"classification": "ClassI",
"phisicalState": "Solid",
"nameCompositions": [
{
"id": "...",
"name": "...",
"code": "...",
"resolution": "..."
}
],
"observation": "string",
"petrobrasPackagingPlace": "string",
"petrobrasDefaultPackagingType": "string",
"inboundEnvironmentalLicense": {
"id": 0,
"vendor": {
"id": "...",
"name": "...",
"cnpj": "...",
"isTransporter": "...",
"isReceiver": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
"..."
],
"annotations": [
"..."
],
"supplementaryDocuments": [
"..."
],
"licensePortSigres": [
"..."
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
}
},
"residueNameComplement": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"quantity": 0.0,
"measuringUnit": "Kg",
"treatment": {
"id": 0,
"name": "string",
"type": "Inbound",
"sigreRef": "string"
},
"packaging": {
"id": 0,
"name": "string",
"sigreRef": "string"
},
"generatorLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"annotations": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"supplementaryDocuments": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"type": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"licensePortSigres": [
{
"id": "...",
"environmentalLicense": "...",
"port": "...",
"receiverSigreText": "..."
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"transporterLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"annotations": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"supplementaryDocuments": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"type": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"licensePortSigres": [
{
"id": "...",
"environmentalLicense": "...",
"port": "...",
"receiverSigreText": "..."
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"driverName": "string",
"vehiclePlate": "string",
"receiverLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"annotations": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"supplementaryDocuments": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"type": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"licensePortSigres": [
{
"id": "...",
"environmentalLicense": "...",
"port": "...",
"receiverSigreText": "..."
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"observation": "string",
"conclusionTimestamp": "2024-01-15T10:30:00Z",
"documentUrl": "string"
},
"ineaReceptionReport": {
"id": 0,
"conclusionTimestamp": "2024-01-15T10:30:00Z",
"manifestNumber": "string",
"receivingResponsible": "string",
"documentUrl": "string"
},
"ineaCdf": {
"id": 0,
"receiver": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"inclusionDate": "2024-01-15T10:30:00Z",
"periodStart": "2024-01-15T10:30:00Z",
"periodEnd": "2024-01-15T10:30:00Z",
"documentUrl": "string"
},
"outboundBatch": {
"id": 0,
"issuedDate": "2024-01-15T10:30:00Z",
"residue": {
"id": 0,
"code": "string",
"name": "string",
"sigreRef": "string",
"totalSaRef": "string",
"isChemicalProduct": true,
"conamaColor": "Orange",
"classification": "ClassI",
"phisicalState": "Solid",
"nameCompositions": [
{
"id": "...",
"name": "...",
"code": "...",
"resolution": "..."
}
],
"observation": "string",
"petrobrasPackagingPlace": "string",
"petrobrasDefaultPackagingType": "string",
"inboundEnvironmentalLicense": {
"id": 0,
"vendor": {
"id": "...",
"name": "...",
"cnpj": "...",
"isTransporter": "...",
"isReceiver": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
"..."
],
"annotations": [
"..."
],
"supplementaryDocuments": [
"..."
],
"licensePortSigres": [
"..."
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
}
},
"outboundManifest": {
"id": 0,
"outboundBatchId": 0,
"number": "string",
"residue": {
"id": 0,
"code": "string",
"name": "string",
"sigreRef": "string",
"totalSaRef": "string",
"isChemicalProduct": true,
"conamaColor": "Orange",
"classification": "ClassI",
"phisicalState": "Solid",
"nameCompositions": [
"..."
],
"observation": "string",
"petrobrasPackagingPlace": "string",
"petrobrasDefaultPackagingType": "string",
"inboundEnvironmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
}
},
"residueNameComplement": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"quantity": 0.0,
"measuringUnit": "Kg",
"treatment": {
"id": 0,
"name": "string",
"type": "Inbound",
"sigreRef": "string"
},
"packaging": {
"id": 0,
"name": "string",
"sigreRef": "string"
},
"generatorLicense": {
"id": 0,
"vendor": {
"id": "...",
"name": "...",
"cnpj": "...",
"isTransporter": "...",
"isReceiver": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
"..."
],
"annotations": [
"..."
],
"supplementaryDocuments": [
"..."
],
"licensePortSigres": [
"..."
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"transporterLicense": {
"id": 0,
"vendor": {
"id": "...",
"name": "...",
"cnpj": "...",
"isTransporter": "...",
"isReceiver": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
"..."
],
"annotations": [
"..."
],
"supplementaryDocuments": [
"..."
],
"licensePortSigres": [
"..."
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"driverName": "string",
"vehiclePlate": "string",
"receiverLicense": {
"id": 0,
"vendor": {
"id": "...",
"name": "...",
"cnpj": "...",
"isTransporter": "...",
"isReceiver": "..."
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
"..."
],
"annotations": [
"..."
],
"supplementaryDocuments": [
"..."
],
"licensePortSigres": [
"..."
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"observation": "string",
"conclusionTimestamp": "2024-01-15T10:30:00Z",
"documentUrl": "string"
},
"outboundCdf": {
"id": 0,
"outboundBatchId": 0,
"receiver": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"inclusionDate": "2024-01-15T10:30:00Z",
"periodStart": "2024-01-15T10:30:00Z",
"periodEnd": "2024-01-15T10:30:00Z",
"cdfType": "Transforma",
"documentUrl": "string"
},
"treatment": {
"id": 0,
"name": "string",
"type": "Inbound",
"sigreRef": "string"
},
"transporterLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"annotations": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"supplementaryDocuments": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"type": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"licensePortSigres": [
{
"id": "...",
"environmentalLicense": "...",
"port": "...",
"receiverSigreText": "..."
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
},
"receiverLicense": {
"id": 0,
"vendor": {
"id": "string",
"name": "string",
"cnpj": "string",
"isTransporter": true,
"isReceiver": true
},
"number": "string",
"description": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"expirationDate": "2024-01-15T10:30:00Z",
"licenseType": "Operation",
"licenseActivity": "Receiver",
"renewalProtocols": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"annotations": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"supplementaryDocuments": [
{
"id": "...",
"environmentalLicense": "...",
"number": "...",
"description": "...",
"type": "...",
"issuedDate": "...",
"enabled": "...",
"documentUrl": "..."
}
],
"licensePortSigres": [
{
"id": "...",
"environmentalLicense": "...",
"port": "...",
"receiverSigreText": "..."
}
],
"licensedActivitiesCode": "string",
"scope": "string",
"organ": "string",
"state": "string",
"observation": "string",
"enabled": true,
"defaultDisposingVendorSigre": "string",
"documentUrl": "string"
}
},
"fcdr": {
"id": 0,
"number": "string",
"date": "2024-01-15T10:30:00Z",
"estimatedWeight": 0.0,
"itemNumber": 0.0,
"documentUrl": "string"
},
"ro": {
"id": 0,
"number": "string",
"documentUrl": "string"
},
"rt": {
"id": 0,
"number": "string",
"documentUrl": "string"
},
"drillship": "string",
"trellis": "string",
"orderIsUploaded": true,
"inboundManifestIsUploaded": true,
"outboundManifestIsUploaded": true,
"cdfIsUploaded": true,
"fcdrIsUploaded": true,
"customerId": "string"
}
WasteTrackingItemModelPagedApiResponse¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
total |
integer (int32) | Não | (anulável) |
page |
integer (int32) | Não | (anulável) |
size |
integer (int32) | Não | (anulável) |
data |
array\<WasteTrackingItemModel> | Não | (anulável) |
Exemplo:
{
"total": 0,
"page": 0,
"size": 0,
"data": [
{
"id": 0,
"customer": {
"id": "string",
"name": "string",
"cnpj": "string"
},
"operationalUnit": {
"id": 0,
"type": "Base",
"name": "string",
"acronym": "string",
"location": {
"id": "...",
"name": "...",
"distanceUtr": "...",
"enabled": "..."
},
"vesselType": "string",
"treatmentPreferences": [
"..."
],
"petrobrasName": "string",
"petrobrasManagement": "string",
"regionNtIbamaIdxPetrobras": 0,
"petrobrasGenerationPlace": "string",
"petrobrasPackagingType": "string"
},
"residue": {
"id": 0,
"code": "string",
"name": "string",
"sigreRef": "string",
"totalSaRef": "string",
"isChemicalProduct": true,
"conamaColor": "Orange",
"classification": "ClassI",
"phisicalState": "Solid",
"nameCompositions": [
"..."
],
"observation": "string",
"petrobrasPackagingPlace": "string",
"petrobrasDefaultPackagingType": "string",
"inboundEnvironmentalLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
}
},
"weighing": {
"id": 0,
"weighingTimestamp": "2024-01-15T10:30:00Z",
"weighRegistrationTimestamp": "2024-01-15T10:30:00Z",
"inventoryDate": "2024-01-15T10:30:00Z",
"status": "Weighed",
"gross": 0.0,
"tare": 0.0,
"net": 0.0,
"convertedInUnits": 0.0,
"convertedInCubicMeters": 0.0,
"observation": "string",
"cancellationReason": "string",
"equipmentNumber": "string",
"fiscalDocumentNumber": "string",
"documentUrl": "string"
},
"order": {
"id": 0,
"status": "Scheduled",
"customer": {
"id": "...",
"name": "...",
"cnpj": "..."
},
"operationalUnit": {
"id": "...",
"type": "...",
"name": "...",
"acronym": "...",
"location": "...",
"vesselType": "...",
"treatmentPreferences": "...",
"petrobrasName": "...",
"petrobrasManagement": "...",
"regionNtIbamaIdxPetrobras": "...",
"petrobrasGenerationPlace": "...",
"petrobrasPackagingType": "..."
},
"periodOfDay": "Morning",
"observation": "string",
"executionDate": "2024-01-15T10:30:00Z",
"transporter": {
"id": "...",
"name": "...",
"cnpj": "...",
"isTransporter": "...",
"isReceiver": "..."
},
"documentUrl": "string"
},
"inboundManifest": {
"id": 0,
"number": "string",
"residue": {
"id": "...",
"code": "...",
"name": "...",
"sigreRef": "...",
"totalSaRef": "...",
"isChemicalProduct": "...",
"conamaColor": "...",
"classification": "...",
"phisicalState": "...",
"nameCompositions": "...",
"observation": "...",
"petrobrasPackagingPlace": "...",
"petrobrasDefaultPackagingType": "...",
"inboundEnvironmentalLicense": "..."
},
"residueNameComplement": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"quantity": 0.0,
"measuringUnit": "Kg",
"treatment": {
"id": "...",
"name": "...",
"type": "...",
"sigreRef": "..."
},
"packaging": {
"id": "...",
"name": "...",
"sigreRef": "..."
},
"packagingIdentification": "string",
"generatorLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"transporterLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"driverName": "string",
"vehiclePlate": "string",
"receiverLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"observation": "string",
"receivingTimestamp": "2024-01-15T10:30:00Z",
"conclusionTimestamp": "2024-01-15T10:30:00Z",
"documentUrl": "string",
"documentUrlCarbonCopies": "string"
},
"outboundManifest": {
"id": 0,
"outboundBatchId": 0,
"number": "string",
"residue": {
"id": "...",
"code": "...",
"name": "...",
"sigreRef": "...",
"totalSaRef": "...",
"isChemicalProduct": "...",
"conamaColor": "...",
"classification": "...",
"phisicalState": "...",
"nameCompositions": "...",
"observation": "...",
"petrobrasPackagingPlace": "...",
"petrobrasDefaultPackagingType": "...",
"inboundEnvironmentalLicense": "..."
},
"residueNameComplement": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"quantity": 0.0,
"measuringUnit": "Kg",
"treatment": {
"id": "...",
"name": "...",
"type": "...",
"sigreRef": "..."
},
"packaging": {
"id": "...",
"name": "...",
"sigreRef": "..."
},
"generatorLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"transporterLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"driverName": "string",
"vehiclePlate": "string",
"receiverLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"observation": "string",
"conclusionTimestamp": "2024-01-15T10:30:00Z",
"documentUrl": "string"
},
"ineaReceptionReport": {
"id": 0,
"conclusionTimestamp": "2024-01-15T10:30:00Z",
"manifestNumber": "string",
"receivingResponsible": "string",
"documentUrl": "string"
},
"ineaCdf": {
"id": 0,
"receiver": {
"id": "...",
"name": "...",
"cnpj": "...",
"isTransporter": "...",
"isReceiver": "..."
},
"number": "string",
"issuedDate": "2024-01-15T10:30:00Z",
"inclusionDate": "2024-01-15T10:30:00Z",
"periodStart": "2024-01-15T10:30:00Z",
"periodEnd": "2024-01-15T10:30:00Z",
"documentUrl": "string"
},
"outboundBatch": {
"id": 0,
"issuedDate": "2024-01-15T10:30:00Z",
"residue": {
"id": "...",
"code": "...",
"name": "...",
"sigreRef": "...",
"totalSaRef": "...",
"isChemicalProduct": "...",
"conamaColor": "...",
"classification": "...",
"phisicalState": "...",
"nameCompositions": "...",
"observation": "...",
"petrobrasPackagingPlace": "...",
"petrobrasDefaultPackagingType": "...",
"inboundEnvironmentalLicense": "..."
},
"outboundManifest": {
"id": "...",
"outboundBatchId": "...",
"number": "...",
"residue": "...",
"residueNameComplement": "...",
"issuedDate": "...",
"quantity": "...",
"measuringUnit": "...",
"treatment": "...",
"packaging": "...",
"generatorLicense": "...",
"transporterLicense": "...",
"driverName": "...",
"vehiclePlate": "...",
"receiverLicense": "...",
"observation": "...",
"conclusionTimestamp": "...",
"documentUrl": "..."
},
"outboundCdf": {
"id": "...",
"outboundBatchId": "...",
"receiver": "...",
"number": "...",
"issuedDate": "...",
"inclusionDate": "...",
"periodStart": "...",
"periodEnd": "...",
"cdfType": "...",
"documentUrl": "..."
},
"treatment": {
"id": "...",
"name": "...",
"type": "...",
"sigreRef": "..."
},
"transporterLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
},
"receiverLicense": {
"id": "...",
"vendor": "...",
"number": "...",
"description": "...",
"issuedDate": "...",
"expirationDate": "...",
"licenseType": "...",
"licenseActivity": "...",
"renewalProtocols": "...",
"annotations": "...",
"supplementaryDocuments": "...",
"licensePortSigres": "...",
"licensedActivitiesCode": "...",
"scope": "...",
"organ": "...",
"state": "...",
"observation": "...",
"enabled": "...",
"defaultDisposingVendorSigre": "...",
"documentUrl": "..."
}
},
"fcdr": {
"id": 0,
"number": "string",
"date": "2024-01-15T10:30:00Z",
"estimatedWeight": 0.0,
"itemNumber": 0.0,
"documentUrl": "string"
},
"ro": {
"id": 0,
"number": "string",
"documentUrl": "string"
},
"rt": {
"id": 0,
"number": "string",
"documentUrl": "string"
},
"drillship": "string",
"trellis": "string",
"orderIsUploaded": true,
"inboundManifestIsUploaded": true,
"outboundManifestIsUploaded": true,
"cdfIsUploaded": true,
"fcdrIsUploaded": true,
"customerId": "string"
}
]
}
WeighingModel¶
Tipo: object
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
id |
integer (int64) | Não | |
weighingTimestamp |
string (date-time) | Não | |
weighRegistrationTimestamp |
string (date-time) | Não | |
inventoryDate |
string (date-time) | Não | |
status |
WeighingStatus | Não | |
gross |
number (double) | Não | (anulável) |
tare |
number (double) | Não | (anulável) |
net |
number (double) | Não | (anulável) |
convertedInUnits |
number (double) | Não | (anulável) |
convertedInCubicMeters |
number (double) | Não | (anulável) |
observation |
string | Não | (anulável) |
cancellationReason |
string | Não | (anulável) |
equipmentNumber |
string | Não | (anulável) |
fiscalDocumentNumber |
string | Não | (anulável) |
documentUrl |
string | Não | (anulável, somente leitura) |
Exemplo:
{
"id": 0,
"weighingTimestamp": "2024-01-15T10:30:00Z",
"weighRegistrationTimestamp": "2024-01-15T10:30:00Z",
"inventoryDate": "2024-01-15T10:30:00Z",
"status": "Weighed",
"gross": 0.0,
"tare": 0.0,
"net": 0.0,
"convertedInUnits": 0.0,
"convertedInCubicMeters": 0.0,
"observation": "string",
"cancellationReason": "string",
"equipmentNumber": "string",
"fiscalDocumentNumber": "string",
"documentUrl": "string"
}
WeighingStatus¶
Tipo: enum (string)
Valores:
WeighedReleasedMeasuredFrozenCancelledInternal