Class: Pubid::Bsi::Identifiers::DetailedSpecification

Inherits:
SingleIdentifier
  • Object
show all
Defined in:
lib/pubid/bsi/identifiers/detailed_specification.rb

Overview

Detailed Specification identifier with N or C notation Examples: "BS 9074 N002:1974", "BS 9300 C155-168:1971"

Constant Summary collapse

TYPED_STAGES =
[
  Pubid::Components::TypedStage.new(
    code: :detailed_spec,
    stage_code: :published,
    type_code: :detailed_specification,
    abbr: ["DETAILED SPEC"],
    name: "Detailed Specification",
    harmonized_stages: %w[60.00 60.60],
  ),
].freeze

Class Method Summary collapse

Class Method Details

.typeObject



22
23
24
25
26
27
28
# File 'lib/pubid/bsi/identifiers/detailed_specification.rb', line 22

def self.type
  {
    key: :detailed_specification,
    title: "Detailed Specification",
    short: "DETAILED SPEC",
  }
end