Skip to content

Polish Extensions

This guide covers Poland-specific identifier systems, breed registries, and conventions built into OVF’s core schema via the identifiers and breed_code fields on the Patient resource.

All microchips used in Poland comply with the ISO 11784/11785 standard.

  • Format: 15-digit numeric string
  • Country code: Poland is 616 (ISO 3166 numeric)
  • OVF system: iso-microchip-11784
{
"identifiers": [
{
"system": "iso-microchip-11784",
"value": "616000012345678"
}
]
}

The 15-digit format:

DigitsMeaning
1-3Country code (616 for Poland)
4-5Manufacturer code
6-15Unique animal identifier

SAFE-ANIMAL is Poland’s official pet registry for microchipped animals. It is the primary database used by clinics, shelters, and authorities to identify lost or stolen pets.

  • OVF system: safe-animal
  • Coverage: Dogs, cats, and other microchipped animals registered in Poland
{
"identifiers": [
{ "system": "safe-animal", "value": "SAFE-2025-98765" }
]
}

EUROPETNET connects national pet registries across Europe. SAFE-ANIMAL is a member, so Polish pets are searchable via EUROPETNET for cross-border identification.

  • OVF system: europetnet
{
"identifiers": [
{ "system": "europetnet", "value": "EPN-616000012345678" }
]
}

Required for travelling with pets within the EU. Issued by authorized veterinarians. Contains microchip number, rabies vaccination record, owner identification, and animal description.

Polish passports use the country prefix PL:

  • OVF system: eu-pet-passport
{
"identifiers": [
{ "system": "eu-pet-passport", "value": "PL-1234567" }
]
}

A fully identified Polish pet typically carries all four:

{
"identifiers": [
{ "system": "iso-microchip-11784", "value": "616000012345678" },
{ "system": "eu-pet-passport", "value": "PL-1234567" },
{ "system": "safe-animal", "value": "SAFE-2025-98765" },
{ "system": "europetnet", "value": "EPN-616000012345678" }
]
}

OVF supports standardized breed codes via the breed_code field on Patient.

The FCI (Federation Cynologique Internationale) is the standard for dog breed identification in Poland. Poland’s kennel club (ZKwP) is an FCI member.

  • OVF system: fci
FCI CodeBreed
122German Shepherd Dog
166Labrador Retriever
111Golden Retriever
86French Bulldog
65Dachshund (Standard)
252Yorkshire Terrier
218Siberian Husky
15Boxer
332Jack Russell Terrier
83Miniature Schnauzer
{
"breed": "Labrador Retriever",
"breed_code": { "system": "fci", "value": "166" }
}

FIFe (Federation Internationale Feline) is the largest cat registry in Europe. Uses the EMS code system.

  • OVF system: fife
FIFe CodeBreed
PERPersian
BRIBritish Shorthair
MCOMaine Coon
RAGRagdoll
BENBengal
SBISacred Birman
ABYAbyssinian
RUSRussian Blue
NFONorwegian Forest Cat
SIASiamese
{
"breed": "British Shorthair",
"breed_code": { "system": "fife", "value": "BRI" }
}

TICA (The International Cat Association) is another registry recognized in Poland. Uses two-letter codes.

  • OVF system: tica
TICA CodeBreed
PSPersian
BSBritish Shorthair
MCMaine Coon
RDRagdoll
BGBengal
BIBirman
ABAbyssinian
RBRussian Blue
NFNorwegian Forest Cat
SISiamese
{
"breed": "Maine Coon",
"breed_code": { "system": "tica", "value": "MC" }
}
  1. Microchip validation: Polish microchips always start with 616. Validate that iso-microchip-11784 values with a 616 prefix are exactly 15 digits.
  2. Breed code priority: When both FIFe and TICA codes apply for a cat, prefer FIFe as it is the dominant registry in Poland. Use x_secondary_breed_code for the alternate.
  3. EU Pet Passport expiry: The passport itself does not expire, but the rabies vaccination in it does. Track expiry via the Immunization resource’s expiration_date field.
  4. Cross-border travel: For pets travelling within the EU, include both iso-microchip-11784 and eu-pet-passport identifiers at minimum.