{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/NoteCollection", "title": "NoteCollection", "type": "object", "properties": { "type": { "type": "string", "enum": [ "FeatureCollection" ] }, "features": { "type": "array", "items": { "$ref": "#/components/schemas/Note" } } } }