how to create the schema,
AND USING SCHEMA HOW TO create tables under the schemas
how to create the schema,
AND USING SCHEMA HOW TO create tables under the schemas
CREATE SCHEMA RTFM AUTHORIZATION dbo
GO
CREATE TABLE RTFM.foo (bar int NOT NULL)
GO
GRANT SELECT ON ::RTFM TO MyRole
GO
CREATE SCHEMA and GRANT