SocialIndicator

Properties

@type

Inherited from Entity.@type

@id

Inherited from RefEntity.@id

name

Inherited from RefEntity.name

description

Inherited from RefEntity.description

category

Inherited from RootEntity.category

lastChange

Inherited from RootEntity.lastChange

tags

Inherited from RootEntity.tags

version

Inherited from RootEntity.version

activityQuantity

The quantity of the activity variable.

activityUnit

The unit of the activity variable.

  • Type: Ref of Unit
  • Proto-Index: 11

activityVariable

The name of the activity variable of the indicator.

evaluationScheme

Documentation of the evaluation scheme of the indicator.

unitOfMeasurement

The unit in which the indicator is measured.

Python class stub

The snippet below shows the names of the properties of the corresponding Python class of the olca-schema package. Note that this is not the full class definition but just shows the names of the class and its properties.


@dataclass
class SocialIndicator:
  id: str
  activity_quantity: Ref
  activity_unit: Ref
  activity_variable: str
  category: str
  description: str
  evaluation_scheme: str
  last_change: str
  name: str
  tags: List[str]
  unit_of_measurement: str
  version: str

JSON example

{
  "@type": "SocialIndicator",
  "@id": "685bea55-61bf-44e5-87c3-71038cebd0b0",
  "name": "Gender wage gap",
  "category": "Discrimination",
  "activityVariable": "Worker hours",
  "activityQuantity": {
    "@type": "FlowProperty",
    "@id": "c0447923-0e60-4b3c-97c2-a86dddd9eea5",
    "name": "Duration"
  },
  "activityUnit": {
    "@type": "Unit",
    "@id": "227a54d9-44e7-468c-b8bb-f2dd1ae68c7a",
    "name": "h"
  },
  "unitOfMeasurement": "%",
  "evaluationScheme": "0% = no risk; 0% - <5% and 0% - >-5%= very low risk; 5% - <10% and -5% - >-10% = low risk; 10% - <20% and -10% - >-20% = medium risk; 20% - <30% and -20% - >-30% = high risk; >=30% and <=-30 = very high risk; n.a. = no data"
}