{
  "id": "minecraft:horse.jump_strength",
  "title": "Horse Jump Strength",
  "description": "Determines the jump height for a horse or similar entity, like a donkey.",
  "fields": [
    {
      "id": "value",
      "title": "Value",
      "description": "Value of jump strength the entity has when spawned.",
      "dataType": 15,
      "subForm": {
        "description": "Describes the range of jump strength.",
        "fields": [
          {
            "id": "range_min",
            "title": "Range Minimum",
            "description": "Defines the minimum strength level.",
            "dataType": 0
          },
          {
            "id": "range_max",
            "title": "Range Maximum",
            "description": "Defines the maximum strength level.",
            "dataType": 0
          }
        ]
      },
      "alternates": [
        {
          "dataType": 0
        }
      ],
      "samples": {
        "/vanilla/behavior_pack/entities/donkey.json": [
          {
            "path": "/minecraft:entity/components/minecraft:horse.jump_strength/",
            "content": 0.5
          }
        ],
        "/vanilla/behavior_pack/entities/horse.json": [
          {
            "path": "/minecraft:entity/components/minecraft:horse.jump_strength/",
            "content": {
              "range_min": 0.4,
              "range_max": 1
            }
          }
        ],
        "/vanilla/behavior_pack/entities/mule.json": [
          {
            "path": "/minecraft:entity/components/minecraft:horse.jump_strength/",
            "content": 0.5
          }
        ],
        "/vanilla/behavior_pack/entities/skeleton_horse.json": [
          {
            "path": "/minecraft:entity/components/minecraft:horse.jump_strength/",
            "content": {
              "range_min": 0.4,
              "range_max": 1
            }
          }
        ]
      }
    }
  ],
  "samples": {
    "/vanilla/behavior_pack/entities/donkey.json": [
      {
        "path": "/minecraft:entity/components/minecraft:horse.jump_strength/",
        "content": {
          "value": 0.5
        }
      }
    ],
    "/vanilla/behavior_pack/entities/horse.json": [
      {
        "path": "/minecraft:entity/components/minecraft:horse.jump_strength/",
        "content": {
          "value": {
            "range_min": 0.4,
            "range_max": 1
          }
        }
      }
    ],
    "/vanilla/behavior_pack/entities/mule.json": [
      {
        "path": "/minecraft:entity/components/minecraft:horse.jump_strength/",
        "content": {
          "value": 0.5
        }
      }
    ],
    "/vanilla/behavior_pack/entities/skeleton_horse.json": [
      {
        "path": "/minecraft:entity/components/minecraft:horse.jump_strength/",
        "content": {
          "value": {
            "range_min": 0.4,
            "range_max": 1
          }
        }
      }
    ],
    "/vanilla/behavior_pack/entities/zombie_horse.json": [
      {
        "path": "/minecraft:entity/components/minecraft:horse.jump_strength/",
        "content": {
          "value": {
            "range_min": 0.4,
            "range_max": 1
          }
        }
      }
    ]
  }
}