Class: Resource

URI: frictionless:Resource

 classDiagram
    class Resource
      Resource : description
        
      Resource : dialect
        
      Resource : name
        
      Resource : path
        
      Resource : profile
        
          Resource --> profile_enum : profile
        
      Resource : schema
        
          Resource --> Schema : schema
        
      Resource : title
        
      

Slots

Name

Cardinality and Range

Description

Inheritance

profile

0..1
ProfileEnum

direct

name

1..1
String

direct

title

0..1
String

direct

path

0..1
String

direct

dialect

0..1
String

direct

description

0..*
String

direct

schema

0..1
Schema

direct

Usages

used by

used in

type

used

Package

resources

range

Resource

Identifier and Mapping Information

Schema Source

  • from schema: https://w3id.org/linkml/frictionless

Mappings

Mapping Type

Mapped Value

self

frictionless:Resource

native

frictionless:Resource

LinkML Source

Direct

```yaml name: Resource from_schema: https://w3id.org/linkml/frictionless slots: - profile - name - title - path - dialect - description - schema
</details>

### Induced

<details>
```yaml
name: Resource
from_schema: https://w3id.org/linkml/frictionless
attributes:
  profile:
    name: profile
    examples:
    - value: tabular-data-resource
    from_schema: https://w3id.org/linkml/frictionless
    rank: 1000
    alias: profile
    owner: Resource
    domain_of:
    - Resource
    - Package
    range: profile_enum
  name:
    name: name
    examples:
    - value: description
    from_schema: https://w3id.org/linkml/frictionless
    rank: 1000
    slot_uri: linkml:name
    identifier: true
    alias: name
    owner: Resource
    domain_of:
    - Field
    - Resource
    - Package
    range: string
    required: true
  title:
    name: title
    examples:
    - value: id_namespace
    from_schema: https://w3id.org/linkml/frictionless
    rank: 1000
    slot_uri: linkml:title
    alias: title
    owner: Resource
    domain_of:
    - Resource
    - Package
    range: string
  path:
    name: path
    examples:
    - value: id_namespace.tsv
    from_schema: https://w3id.org/linkml/frictionless
    rank: 1000
    alias: path
    owner: Resource
    domain_of:
    - Resource
    range: string
  dialect:
    name: dialect
    from_schema: https://w3id.org/linkml/frictionless
    rank: 1000
    alias: dialect
    owner: Resource
    domain_of:
    - Resource
    range: string
  description:
    name: description
    examples:
    - value: A human-readable description of this identifier namespace
    from_schema: https://w3id.org/linkml/frictionless
    rank: 1000
    slot_uri: linkml:description
    multivalued: true
    alias: description
    owner: Resource
    domain_of:
    - Field
    - Resource
    range: string
  schema:
    name: schema
    from_schema: https://w3id.org/linkml/frictionless
    close_mappings:
    - linkml:ClassDefinition
    rank: 1000
    alias: schema
    owner: Resource
    domain_of:
    - Resource
    range: Schema