Skip to content

Commit

Permalink
add missing typicalAgeRange to schema.ora
Browse files Browse the repository at this point in the history
  • Loading branch information
calmacx committed Oct 26, 2023
1 parent 6dd94c4 commit 298ef99
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 0 deletions.
9 changes: 9 additions & 0 deletions hdr_schemata/models/SchemaOrg/BioSchema/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,15 @@
"description": "Indicates a legal jurisdiction, e.g. of some legislation, or where some government service is based.",
"title": "Jurisdiction"
},
"typicalAgeRange": {
"allOf": [
{
"$ref": "#/$defs/Text"
}
],
"default": null,
"description": "The typical expected age range, e.g. '7-9', '11-'."
},
"temporalCoverage": {
"anyOf": [
{
Expand Down
9 changes: 9 additions & 0 deletions hdr_schemata/models/SchemaOrg/GoogleRecommended/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,15 @@
"description": "Indicates a legal jurisdiction, e.g. of some legislation, or where some government service is based.",
"title": "Jurisdiction"
},
"typicalAgeRange": {
"allOf": [
{
"$ref": "#/$defs/Text"
}
],
"default": null,
"description": "The typical expected age range, e.g. '7-9', '11-'."
},
"temporalCoverage": {
"anyOf": [
{
Expand Down
5 changes: 5 additions & 0 deletions hdr_schemata/models/SchemaOrg/base/CreativeWork.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,11 @@ class CreativeWork(BaseModel):
description="Indicates a legal jurisdiction, e.g. of some legislation, or where some government service is based."
)

typicalAgeRange: Text = Field(
None,
description="The typical expected age range, e.g. '7-9', '11-'."
)

temporalCoverage: Optional[Text] = Field(
None,
title='temporalCoverage',
Expand Down
18 changes: 18 additions & 0 deletions hdr_schemata/models/SchemaOrg/default/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,15 @@
"description": "Indicates a legal jurisdiction, e.g. of some legislation, or where some government service is based.",
"title": "Jurisdiction"
},
"typicalAgeRange": {
"allOf": [
{
"$ref": "#/$defs/Text"
}
],
"default": null,
"description": "The typical expected age range, e.g. '7-9', '11-'."
},
"temporalCoverage": {
"anyOf": [
{
Expand Down Expand Up @@ -690,6 +699,15 @@
"description": "Indicates a legal jurisdiction, e.g. of some legislation, or where some government service is based.",
"title": "Jurisdiction"
},
"typicalAgeRange": {
"allOf": [
{
"$ref": "#/$defs/Text"
}
],
"default": null,
"description": "The typical expected age range, e.g. '7-9', '11-'."
},
"temporalCoverage": {
"anyOf": [
{
Expand Down

0 comments on commit 298ef99

Please sign in to comment.