Scott Foresman · JSON Structure

Scott Foresman Educational Content Structure

Field-level documentation for K-12 educational content items from Scott Foresman / Savvas Learning Company

Type: Properties: 0
EducationPublishingK-12E-LearningTextbooks

Scott Foresman Educational Content Structure is a JSON Structure definition published by Scott Foresman.

Meta-schema:

JSON Structure

scott-foresman-educational-content-structure.json Raw ↑
{
  "name": "Scott Foresman Educational Content Structure",
  "description": "Field-level documentation for K-12 educational content items from Scott Foresman / Savvas Learning Company",
  "version": "1.0.0",
  "fields": [
    {
      "name": "id",
      "type": "string",
      "required": true,
      "description": "Unique identifier for the educational content item",
      "example": "SF-RS-2019-G3"
    },
    {
      "name": "title",
      "type": "string",
      "required": true,
      "description": "Full title of the educational content or textbook",
      "example": "Reading Street Grade 3 Student Edition"
    },
    {
      "name": "series",
      "type": "string",
      "required": false,
      "description": "The textbook series name (e.g., 'Reading Street', 'enVision Math')",
      "example": "Reading Street"
    },
    {
      "name": "gradeLevel",
      "type": "string",
      "required": true,
      "description": "Target grade level of the content",
      "allowedValues": ["PreK", "K", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"],
      "example": "3"
    },
    {
      "name": "subjectArea",
      "type": "string",
      "required": true,
      "description": "Academic subject area",
      "allowedValues": ["Reading", "Language Arts", "Mathematics", "Science", "Social Studies", "Health", "Art", "Music"],
      "example": "Reading"
    },
    {
      "name": "publisher",
      "type": "string",
      "required": true,
      "description": "Publisher name — historically Scott Foresman, then Pearson, now Savvas Learning Company",
      "example": "Savvas Learning Company"
    },
    {
      "name": "publicationYear",
      "type": "integer",
      "required": false,
      "description": "Year the content was published. Scott Foresman was founded in 1896 and operated until the Savvas rebrand in 2020.",
      "example": 2019
    },
    {
      "name": "isbn",
      "type": "string",
      "required": false,
      "description": "ISBN-10 or ISBN-13 identifier for print editions",
      "example": "978-0328827572"
    },
    {
      "name": "edition",
      "type": "string",
      "required": false,
      "description": "Edition or copyright year of the textbook",
      "example": "2019 Edition"
    },
    {
      "name": "contentType",
      "type": "string",
      "required": false,
      "description": "Type of educational content or program component",
      "allowedValues": ["Student Edition", "Teacher Edition", "Practice Book", "Workbook", "Assessment", "Digital Platform", "Manipulatives"],
      "example": "Student Edition"
    },
    {
      "name": "curriculumStandards",
      "type": "array",
      "required": false,
      "description": "Educational standards this content is aligned with",
      "example": ["Common Core State Standards", "CCSS.ELA-LITERACY.RL.3.1"]
    },
    {
      "name": "digitalPlatform",
      "type": "string",
      "required": false,
      "description": "Digital delivery platform for the content",
      "example": "Savvas Realize"
    },
    {
      "name": "components",
      "type": "array",
      "required": false,
      "description": "Individual components that make up the educational program (print, digital, audio, video)",
      "example": [
        {"name": "Student Edition", "type": "print"},
        {"name": "Teacher Resource DVD", "type": "digital"},
        {"name": "Practice Book", "type": "print"}
      ]
    }
  ]
}