12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- ---
- label: Anything
- description: Superclass of every resource type in the system.
- abstract: true
- properties:
- "pas:id":
- label: Primary ID
- type: string
- min_cardinality: 1
- max_cardinality: 1
- "pas:refId":
- label: External system ID
- type: string
- "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"]
|