Files
marka/registry/schema-org/OrganizationRole.schema.json
Max Richter c687eff53d big tings
2025-08-17 15:16:17 +02:00

23 lines
1.1 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:OrganizationRole",
"title": "OrganizationRole",
"description": "A subclass of Role used to describe roles within organizations.",
"type": "object",
"allOf": [
{
"description": "Represents additional information about a relationship or property. For example a Role can be used to say that a 'member' role linking some SportsTeam to a player occurred during a particular time period. Or that a Person's 'actor' role in a Movie was for some particular characterName. Such properties can be attached to a Role entity, which is then associated with the main entities using ordinary properties like 'member' or 'actor'.\\n\\nSee also [blog post](http://blog.schema.org/2014/06/introducing-role.html).",
"$ref": "schema:Role"
}
],
"properties": {
"numberedPosition": {
"description": "A number associated with a role in an organization, for example, the number on an athlete's jersey.",
"oneOf": [
{ "type": "number" },
{ "type": "array", "items": { "type": "number" } }
]
}
}
}