Link Search Menu Expand Document

Assessment

An assessment of a student’s activity.

The closest schema.org type to oer:Assessment is CreativeWork, of which it is a subtype, and so oer:Assessment inherits all properties of schema.org CreativeWork and may be used wherever the range of a property includes CreativeWork.

Properties

Property Type Description
identifier Text | URL | PropertyValue Any kind of identifier (uuid, url, etc).
url URL URL of the item.
name Text The name of the item.
alternateName Text An alias for the item.
description Text A description of the item.
about Thing The subject matter of the content.
accessibilitySummary Text A human-readable summary of specific accessibility features or deficiencies, consistent with the other accessibility metadata but expressing subtleties such as “short descriptions are present but long descriptions will be needed for non-visual users” or “short descriptions are present and no long descriptions are needed.”
audience EducationalAudience An intended audience, i.e. a group for whom the resource being described was created. Use the educationalRole property of the EducationalAudience object to state whether the intended audience is teacher, student, parent, etc. See the LRMI Educational Audience Role concept scheme for more values.
author Organization or Person The author of the assessment.
citation CreativeWork or Text A citation or reference to another creative work, such as another publication, web page, scholarly article, etc.
contributor Organization or Person A secondary contributor to the assessment
dateCreated Date The date on which the resource was created.
dateModified Date The date on which the resource was updated.
educationalAlignment AlignmentObject An alignment to an established educational framework. The alignment object can be used to provide information such as educational- (grade-) level of the assessment and competences being taught or assessed
educationalUse Text ‘The purpose of the work in the context of education. Ex: “assignment”, “group work”’ Special values: progressive: the activity is worked on throughout the class, and not as a one-off task; texts: the activity is a reference text.
     
encoding MediaObject A media object that encodes this assessment. Use when the same digital document is available in different formats.
hasPart CreativeWork Indicates a CreativeWork that is part of this assessment (in some sense). Inverse property: isPartOf.
inLanguage Language or Text The language of the content of the assessment. Please use one of the language codes from the IETF BCP 47 standard.
isBasedOn CreativeWork or URL A resource from which this assessment is derived or of which it is a modification or adaption.
isPartOf CreativeWork Indicates a CreativeWork that this assessment is (in some sense) part of. Inverse property: hasPart.
keywords Text Keywords or tags used to describe this content. Multiple entries in a keywords list are typically delimited by commas.
learningResourceType Text The predominant type or kind characterizing the assessment.
provider Organization The service provider, service operator, or service performer; the goods producer. Use to identify the Organization which is responsible for providing the educational input for the assessment, e.g. providing content, educational events, assessments, accreditation etc.
publisher Organization The organization credited with publishing the assessment.
timeRequired Duration Approximate or typical time it takes to work with or through this assessment for the typical intended target audience, e.g. ‘P30M’, ‘PT1H25M’.
typicalAgeRange Text The typical expected age in years of the learners on this assessment. For OCX the suggestion is to use a list to indicate a closed range of ages, e.g. [“9”,”10”,”11”], and values like “18-“ for an open range.
ocx:material ocx:AssociatedMaterial Material assiociated with a resource which is SupplementalMaterial, ReferencedMaterial or SupportingMaterial
ocx:optionality Text Whether the assessment is optional. Special values: optional.
     
ocx:totalPoints Number How many points the activity is worth when grading
ocx:assignmentModality Text Describes the way an assignment is presented. Special values: read-listen, annotation, discussion, graphic organizer, short answer, essay, presentation, multiple choice
     
ocx:collaborationType Text Describes how an activity is collaborated on. Special values: independent: the activity is worked on individually by a student; pair: the activity is worked on by a pair of students; group: the activity is worked on by a group of students; class: the activity is worked on by the entire class.
     
ocx:totalPoints Number How many points the activity is worth when grading
assessing Activity The activity the assessment is assessing.
gradingFormat GradeFormat | Text The grading format for this resource
oer:forCourse oer:Course The Course in which the resource is meant for.
doTask Task Which tasks are to be completed for a LearningComponent
hasLearningObjective LearningObjective A LearningObjective gained as a result of an InstructionalPattern .
forTopic Topic The Topic the resource is associated with.
cc:license Text | License A Work has license a License (a subproperty of dc:license, the same as xhtml:license).
cc:morePermissions Text A related resource which describes additional permissions or alternative licenses for a Work which may be available.
cc:attributionName Text The name the creator of a Work would like used when attributing re-use.
cc:attributionURL URL The URL the creator of a Work would like used when attributing re-use.
cc:useGuidelines Text A related resource which defines non-binding use guidelines for the work.

This description is available in CSV format.

Non-preferred properties

The following OER Schema properties should not be used as there are similar properties in schema.org:

OER Schema Property preferred schema.org equivalent
duration learningTime (from CreativeWork)
hasComponent hasPart (from CreativWork)
forComponent isPartOf (from CreativeWork)
prerequisite coursePrerequisites (from Course)
parentOf hasPart (from CreativeWork)
childOf isPartOf (from CreativeWork)
all properties of oer:Thing all have equivalents in schema.org Thing

Examples

Taken from https://pilot.unbounded.org/ela/grade-6/module-1/unit-2/lesson-8

{  
  "@context": [
    "http://schema.org/",
    {
      "oer": "http://oerschema.org/",
      "cc": "http://creativecommons.org/ns#"
    }
  ],
  "@type": ["oer:Assessment","CreativeWork"],
  "@id": "http://pilot.unbounded.org/materials/652#A",
  "identifier": {
    "@type": "PropertyValue",
    "propertyID": "UnboundEd resource identifier",
    "value": "652"
  },
  "name": "Mid-Unit 2 Assessment: Analyzing Structure and Theme in Stanza 4 of “If” and Bud, Not Buddy",
  "educationalUse": "Interim assessment",
  "audience": {
    "@type": "EducationalAudience",
    "educationalRole": "student"
  },
  "encoding": [{
    "@type": "MediaObject",
    "url": "https://drive.google.com/open?id=1VPFJFcgMMdMhc_hHmxRCVJN4BKZnWfEussOo9fFUl_4",
    "encodingFormat":  "application/vnd.google-apps.document"      
  }, {
    "@type": "MediaObject",
    "url": "https://ubpilot-uploads.s3.amazonaws.com/documents/227/ELA-G6-M1-U2-L8-Assess-Mid-Unit%202%20Assessment_v791992.pdf",
    "encodingFormat":  "application/pdf"
  }],
  "material" : [{
    "@type": ["oer:SupportingMaterial","CreativeWork"],
    "@id": "http://pilot.unbounded.org/materials/653#A",
    "name": "Assessment Text: “If” by Rudyard Kipling"
  }],
  "isPartOf": {
    "@type": "http://oerschema.org/SupportingMaterial",
    "@id": "http://pilot.unbounded.org/documents/227#A"
    }
}