Skip to content

Instantly share code, notes, and snippets.

@jackmcdade
Created May 6, 2016 17:46
Show Gist options
  • Save jackmcdade/827086b492b3a91b5ed1fd19c6cc730c to your computer and use it in GitHub Desktop.
Save jackmcdade/827086b492b3a91b5ed1fd19c6cc730c to your computer and use it in GitHub Desktop.
Statamic v2 Import Schema
{
"taxonomies": {
"categories": ["category_one", "category_two"],
"tags": ["tag_one", "tag_two"],
"foo": ["foo_one", "foo_two"],
},
"settings": {
"site_url": "http://mysite.com",
"site_name": "My Site",
"timezone": "America/New_York"
},
"pages": {
"/": {
"order": null,
"data": {
"title": "Home Page",
"content": "This is the content.",
"custom_field_one": "Hello",
"custom_field_two": "World"
}
},
"/about": {
"order": 1,
"data": {
"title": "About Us",
"content": "This is the content.",
"custom_field_one": "Hello",
"custom_field_two": "World"
}
},
"/another-page": { ... }
},
"collections": {
"posts": {
"/posts/post-on-new-years-day": {
"order": "2012-01-01",
"data": {
"title": "Post on New Years Day",
"content": "This is the content.",
"custom_field_one": "Hello",
"custom_field_two": "World"
}
},
"/posts/another-post": { ... }
},
"clients": {
"/portfolio/project-one": {
"order": 1,
"data": {
"title": "Project One",
"content": "This is the content.",
"custom_field_one": "Hello",
"custom_field_two": "World"
}
},
"/clients/another-client": { ... }
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment