Sha256: acec5541dd3e5be90a4304b3067abf69eeb15a76a70d86286b50ae7f5194432c

Contents?: true

Size: 1.13 KB

Versions: 8

Compression:

Stored size: 1.13 KB

Contents

# frozen_string_literal: true

module Cocina
  module Models
    class Identification < Struct
      # A barcode
      attribute? :barcode, Types::Nominal::Any
      attribute :catalogLinks, Types::Strict::Array.of(CatalogLink).default([].freeze)
      # Digital Object Identifier (https://www.doi.org)
      attribute? :doi, Types::Nominal::Any
      # Unique identifier in some other system. This is because a large proportion of what is deposited in SDR, historically and currently, are representations of objects that are also represented in other systems. For example, digitized paper and A/V collections have physical manifestations, and those physical objects are managed in systems that have their own identifiers. Similarly, books have barcodes, archival materials have collection numbers and physical locations, etc. The sourceId allows determining if an item has been deposited before and where to look for the original item if you're looking at its SDR representation. The format is: "namespace:identifier"

      # example: sul:PC0170_s3_Fiesta_Bowl_2012-01-02_210609_2026
      attribute :sourceId, Types::Strict::String
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
cocina-models-0.86.0 lib/cocina/models/identification.rb
cocina-models-0.85.0 lib/cocina/models/identification.rb
cocina-models-0.84.5 lib/cocina/models/identification.rb
cocina-models-0.84.4 lib/cocina/models/identification.rb
cocina-models-0.84.3 lib/cocina/models/identification.rb
cocina-models-0.84.2 lib/cocina/models/identification.rb
cocina-models-0.84.1 lib/cocina/models/identification.rb
cocina-models-0.84.0 lib/cocina/models/identification.rb