1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- ---
- label: Anything
- description: Superclass of every resource type in the system.
- abstract: true
- properties:
- "pas:id":
- label: DRS ID
- type: string
- min_cardinality: 1
- max_cardinality: 1
- "pas:refId":
- label: DRS ID
- type: string
- max_cardinality: 1
- "pas:prefLabel":
- label: Preferred Label
- type: string
- max_cardinality: 1
- "pas:altLabel":
- label: Alternative Label
- type: string
- "pas:created":
- label: Created On
- type: timestamp
- min_cardinality: 1
- max_cardinality: 1
- "pas:updated":
- label: Last Updated On
- type: timestamp
- min_cardinality: 1
- max_cardinality: 1
- "pas:createdBy":
- label: Created By
- type: rel
- range: ["pas:Agent"]
- "pas:updatedBy":
- label: Last Updated By
- type: rel
- range: ["pas:Agent"]
|