{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "description": "Example of a simple GeoJSON Feature specialisation",
  "$defs": {
    "MyFeature": {
      "allOf": [
        {
          "$ref": "https://opengeospatial.github.io/bblocks/annotated-schemas/geo/features/feature/schema.json"
        },
        {
          "properties": {
            "properties": {
              "$ref": "https://ogcincubator.github.io/bblocks-focal/build/annotated/focal/forestStandProperties/schema.json"
            }
          }
        }
      ]
    }
  },
  "anyOf": [
    {
      "$ref": "#/$defs/MyFeature"
    }
  ]
}