I’m trying to manually install netlify cms to a site. I get the following error:
'collections[3]' should have required property 'files'
'collections[3]' should have required property 'folder'
'collections[3]' should match exactly one schema in oneOf
'collections[4]' should have required property 'files'
'collections[4]' should have required property 'folder'
'collections[4]' should match exactly one schema in oneOf
However, I have “folder” in both collections. They look like this:
- name: people
label: Our Team
folder: /src/team/
create: true
extension: md
slug: '{{slug}}'
identifier_field: personname
fields:
- widget: string
name: personname
label: Name
required: true
What am I doing wrong? I read collection doc, and all seems normal.