This package is part of Sanity Studio v2, which has been superseded by Sanity Studio v3, the current major version released on Dec 7th, 2022. This package is no longer used/needed for Sanity Studio in its current version and will be retired on Dec 7th, 2023. The core packages for Sanity Studio v2 will only receive critical bug fixes until this date.
Please head over to the documentation for Sanity Studio v3 to learn more.
There is an example of a consumer app in the ./example
that can be started with npm start
Polymorphic arrays may only contain elements of one primitive type. Thus, this is invalid:
{
"types": [
{
"name": "myType",
"type": "array",
"of": [
{"type": "string", "title": "Street"},
{"type": "string", "title": "E-mail"}
]
}
]
}
Types are the building blocks for your schema. A type defines the structure and behavior of your data model.
There is a distiction between primitive types and container types.
A container type is a type that contains data of other types, e.g. array
or object
. A primitive type only represents one simple value, like the number 3
or the string foobar
If you define an object type, you must also define its fields. E.g. if you are defining a person
type, it may look like this:
{
"name": "person",
"type": "object",
"fields": [
{
"name": "firstName",
"title": "First name",
"type": "string"
},
{
"name": "lastName",
"title": "Last name",
"type": "string"
}
]
}
You cannot create an object type that has no fields. We haven't yet had the need for a hash
type that can have arbitrary key => value pairs (where keys are strings and value can be anything), but will consider supporting it in the future.
All input fields must follow a simple convention based protocol. Every input field must:
value
prop which is the field's valueonChange
function as prop which is called whenever a value changesWhen writing a schema, type
is implicitly object
, unless otherwise specified. You're not allowed to set type: 'object' (redundant definition).
Only built-in types can take options. Below, email.placeholder
is an option to string
and versions.of
is an option to list
.
const schema = {
name: 'someSchema',
types: [
{
name: 'user',
fields: [
{
name: 'email',
type: 'string',
title: 'E-mail address',
placeholder: 'murgh@example.com',
},
{
name: 'profilePicture',
type: 'image',
},
],
},
{
name: 'image',
fields: [
{
name: 'fullSizeUrl',
type: 'string',
},
{
name: 'aspectRatio',
type: 'number',
},
{
name: 'versions',
type: 'list',
of: [{type: 'imageVersion'}],
},
],
},
{
name: 'imageVersion',
fields: [
{
name: 'width',
type: 'number',
},
{
name: 'square',
type: 'boolean',
},
{
name: 'url',
type: 'string',
},
],
},
],
}
Version | Tag | Published |
---|---|---|
2.35.7 | latest | 15d ago |
2.35.7 | v2 | 15d ago |
2.34.3-cdr-ga-4.23 | cdr-ga-4 | 5mos ago |
2.34.3-cdr-ga-2.19 | cdr-ga-2 | 5mos ago |