JSON

Blood Types - JSON

Blood types are biological characteristics classified by the types of antigens present on the surface of red blood cells. Eight main blood types are defined by the combination of the ABO blood group system (Type A, B, O, and AB) and the Rh factor (positive or negative). The ABO blood group system, discovered by Karl Landsteiner in 1901, forms the foundation of transfusion medicine and is an essential classification system for preventing the dangers of incompatible blood transfusions. The Rh factor, discovered in 1937, plays a particularly important role in preventing hemolytic disease of the newborn caused by maternal-fetal Rh incompatibility during pregnancy.

blood type ABO system Rh factor blood transfusion medicine hematology
[
  {
    "code": "A+",
    "slug": "a-positive",
    "name": "A Positive",
    "description": "One of the most common blood types with A antigen and RhD antigen.",
    "aboType": "A",
    "rhFactor": "positive"
  },
  {
    "code": "A-",
    "slug": "a-negative",
    "name": "A Negative",
    "description": "Universal platelet type with A antigen but lacking RhD antigen.",
    "aboType": "A",
    "rhFactor": "negative"
  },
  {
    "code": "B+",
    "slug": "b-positive",
    "name": "B Positive",
    "description": "Blood type with B antigen and RhD antigen.",
    "aboType": "B",
    "rhFactor": "positive"
  },
  {
    "code": "B-",
    "slug": "b-negative",
    "name": "B Negative",
    "description": "Rare blood type with B antigen but lacking RhD antigen.",
    "aboType": "B",
    "rhFactor": "negative"
  },
  {
    "code": "AB+",
    "slug": "ab-positive",
    "name": "AB Positive",
    "description": "Universal recipient with A, B antigens and RhD antigen.",
    "aboType": "AB",
    "rhFactor": "positive"
  },
  {
    "code": "AB-",
    "slug": "ab-negative",
    "name": "AB Negative",
    "description": "The rarest universal recipient among the eight main blood types.",
    "aboType": "AB",
    "rhFactor": "negative"
  },
  {
    "code": "O+",
    "slug": "o-positive",
    "name": "O Positive",
    "description": "The most common blood type with RhD antigen.",
    "aboType": "O",
    "rhFactor": "positive"
  },
  {
    "code": "O-",
    "slug": "o-negative",
    "name": "O Negative",
    "description": "Valuable universal donor blood type for emergencies.",
    "aboType": "O",
    "rhFactor": "negative"
  }
]