curl --request POST \
--url https://api.siftstack.com/api/v2/protobuf-descriptors:check-compatibility \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"protobufDescriptor": {
"messageTypeFullName": "<string>",
"fileDescriptorSet": "aSDinaTvuI8gbWludGxpZnk=",
"protoFileName": "<string>",
"namespace": "<string>",
"protobufDescriptorId": "<string>"
}
}
'{
"isValid": true,
"incompatibleProtobufDescriptorFields": [
{
"protobufDescriptorId": "<string>",
"messageFullName": "<string>",
"desiredFieldName": "<string>",
"currentFieldName": "<string>",
"fieldNumber": "<string>",
"reason": "<string>",
"details": "<string>",
"fieldKind": "<string>"
}
]
}Used to check if a protobuf descriptor is compatible with the existing descriptors.
curl --request POST \
--url https://api.siftstack.com/api/v2/protobuf-descriptors:check-compatibility \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"protobufDescriptor": {
"messageTypeFullName": "<string>",
"fileDescriptorSet": "aSDinaTvuI8gbWludGxpZnk=",
"protoFileName": "<string>",
"namespace": "<string>",
"protobufDescriptorId": "<string>"
}
}
'{
"isValid": true,
"incompatibleProtobufDescriptorFields": [
{
"protobufDescriptorId": "<string>",
"messageFullName": "<string>",
"desiredFieldName": "<string>",
"currentFieldName": "<string>",
"fieldNumber": "<string>",
"reason": "<string>",
"details": "<string>",
"fieldKind": "<string>"
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.siftstack.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
Was this page helpful?