Hello there,
In our pipelines we validate `bitbucket-pipelines.yml` against the official schema published at api.bitbucket.org/schemas/pipelines-configuration
However, this simple example below which imports and runs a pipeline from another repo which exports it fails on validation
```
jsonschema.exceptions.ValidationError: {'import': 'bitbucket-pipeline-templates:main:generic-pr-pipeline'} is not of type 'array'Failed validating 'type' in schema['properties']['pipelines']['properties']['pull-requests']['additionalProperties']:{'description': 'List of steps, stages and parallel groups of the ''pipeline.','items': {'oneOf': [{'$ref': '#/components/schemas/step_item'},{'$ref': '#/components/schemas/parallel_item'},{'$ref': '#/components/schemas/stage_item'},{'$ref': '#/components/schemas/final_item'}]},'minItems': 1,'title': 'Pipeline Items','type': 'array'}On instance['pipelines']['pull-requests']['**']:{'import': 'bitbucket-pipeline-templates:main:generic-pr-pipeline'}