Sha256: c3d2d4e9ad1fd2deb9342f932af5db7c810bd333af9bba31cacd8d188ded5e57

Contents?: true

Size: 1.02 KB

Versions: 4

Compression:

Stored size: 1.02 KB

Contents

# Simple yaml config-driven schema which is used to define model attributes,
# index key names, and form properties.
#
# Attributes must have a type but all other configuration options are optional.
# Please note: If using Valkyrie's Fedora Metadata Adapter, predicates for attributes
# must be placed here.
#
# attributes:
#   attribute_name:
#     type: string
#     multiple: false
#     index_keys:
#       - "attribute_name_sim"
#     form:
#       required: true
#       primary: true
#       multiple: false
#
# @see config/metadata/basic_metadata.yaml for an example configuration
#
# Generated via
#  `rails generate hyrax:collection_resource CollectionResource`

attributes:
  target_audience:
    type: string
    form:
      primary: true
      multiple: true
    predicate: http://hyrax-example.com/target_audience
  department:
    type: string
    form:
      primary: true
    predicate: http://hyrax-example.com/department
  course:
    type: string
    form:
      primary: false
    predicate: http://hyrax-example.com/course

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
hyrax-5.0.2 .koppie/config/metadata/collection_resource.yaml
hyrax-5.0.1 .koppie/config/metadata/collection_resource.yaml
hyrax-5.0.0 .koppie/config/metadata/collection_resource.yaml
hyrax-5.0.0.rc3 .koppie/config/metadata/collection_resource.yaml