Created
May 6, 2016 17:46
-
-
Save jackmcdade/827086b492b3a91b5ed1fd19c6cc730c to your computer and use it in GitHub Desktop.
Statamic v2 Import Schema
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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